From 246bad66dd6dd0d911f0de4c087c8794ad0cb003 Mon Sep 17 00:00:00 2001 From: Max Brunsfeld Date: Mon, 1 Oct 2018 13:29:04 -0700 Subject: [PATCH] Add double-paren expression * Use the external scanner for regexes * Add some missing operators Fixes #22 Fixes #32 --- corpus/literals.txt | 2 +- grammar.js | 26 +- script/known-failures.txt | 2 - src/grammar.json | 104 +- src/parser.c | 151673 ++++++++++++++++++----------------- src/scanner.cc | 58 + 6 files changed, 78723 insertions(+), 73142 deletions(-) diff --git a/corpus/literals.txt b/corpus/literals.txt index 33036fb..36b785b 100644 --- a/corpus/literals.txt +++ b/corpus/literals.txt @@ -90,7 +90,7 @@ F="${G%% *}" (string (expansion (subscript (variable_name) (word))))) (variable_assignment (variable_name) - (string (expansion (variable_name) (regex) (word) (word)))) + (string (expansion (variable_name) (regex)))) (variable_assignment (variable_name) (string (expansion (variable_name) (word) (word))))) diff --git a/grammar.js b/grammar.js index fbb5dfb..0076136 100644 --- a/grammar.js +++ b/grammar.js @@ -34,6 +34,7 @@ module.exports = grammar({ $._empty_value, $._concat, $.variable_name, // Variable name followed by an operator like '=' or '+=' + $.regex, '}', ']', '\n', @@ -229,7 +230,8 @@ module.exports = grammar({ test_command: $ => seq( choice( seq('[', $._expression, ']'), - seq('[[', $._expression, ']]') + seq('[[', $._expression, ']]'), + seq('((', $._expression, '))') ), repeat(choice( $.file_redirect, @@ -265,7 +267,7 @@ module.exports = grammar({ $._literal, seq( choice('=~', '=='), - choice($.regex, $._literal) + choice($._literal, $.regex) ) )), repeat(choice( @@ -338,13 +340,20 @@ module.exports = grammar({ $._literal, $.unary_expression, $.binary_expression, + $.postfix_expression, $.parenthesized_expression ), binary_expression: $ => prec.left(choice( seq( $._expression, - choice('==', '=', '=~', '!=', '<', '>', '||', '&&', $.test_operator), + choice( + '=', '==', '=~', '!=', + '+', '-', '+=', '-=', + '<', '>', '<=', '>=', + '||', '&&', + $.test_operator + ), $._expression ), seq( @@ -359,6 +368,11 @@ module.exports = grammar({ $._expression )), + postfix_expression: $ => seq( + $._expression, + choice('++', '--'), + ), + parenthesized_expression: $ => seq( '(', $._expression, @@ -453,7 +467,7 @@ module.exports = grammar({ ), optional(seq( token(prec(1, '/')), - alias($.regex_without_right_brace, $.regex) + optional($.regex) )), repeat(choice( $._literal, @@ -488,10 +502,6 @@ module.exports = grammar({ test_operator: $ => token(prec(1, seq('-', /[a-zA-Z]+/))), - regex: $ => /([^"\s]|\\.)([^\s]|\\.)*/, - - regex_without_right_brace: $ => /([^"\s}]|\\.)([^\s}]|\\.)*/, - _terminator: $ => choice(';', ';;', '\n', '&') } }); diff --git a/script/known-failures.txt b/script/known-failures.txt index b1c9d89..ec77d16 100644 --- a/script/known-failures.txt +++ b/script/known-failures.txt @@ -4,7 +4,6 @@ examples/bash-it/plugins/available/go.plugin.bash examples/bash-it/install.sh examples/bash-it/completion/available/svn.completion.bash examples/bash-it/completion/available/docker-compose.completion.bash -examples/bash-it/completion/available/jboss7.completion.bash examples/bash-it/completion/available/gh.completion.bash examples/bash-it/completion/available/drush.completion.bash examples/bash-it/completion/available/hub.completion.bash @@ -12,7 +11,6 @@ examples/bash-it/completion/available/docker-machine.completion.bash examples/bash-it/completion/available/git.completion.bash examples/bash-it/completion/available/defaults.completion.bash examples/bash-it/completion/available/packer.completion.bash -examples/bash-it/completion/available/vault.completion.bash examples/bash-it/completion/available/docker.completion.bash examples/bash-it/completion/available/tmux.completion.bash examples/bash-it/lib/preexec.bash diff --git a/src/grammar.json b/src/grammar.json index 3a97e2a..61a0bea 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -858,6 +858,23 @@ "value": "]]" } ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "((" + }, + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "STRING", + "value": "))" + } + ] } ] }, @@ -1031,11 +1048,11 @@ "members": [ { "type": "SYMBOL", - "name": "regex" + "name": "_literal" }, { "type": "SYMBOL", - "name": "_literal" + "name": "regex" } ] } @@ -1326,6 +1343,10 @@ "type": "SYMBOL", "name": "binary_expression" }, + { + "type": "SYMBOL", + "name": "postfix_expression" + }, { "type": "SYMBOL", "name": "parenthesized_expression" @@ -1350,11 +1371,11 @@ "members": [ { "type": "STRING", - "value": "==" + "value": "=" }, { "type": "STRING", - "value": "=" + "value": "==" }, { "type": "STRING", @@ -1364,6 +1385,22 @@ "type": "STRING", "value": "!=" }, + { + "type": "STRING", + "value": "+" + }, + { + "type": "STRING", + "value": "-" + }, + { + "type": "STRING", + "value": "+=" + }, + { + "type": "STRING", + "value": "-=" + }, { "type": "STRING", "value": "<" @@ -1372,6 +1409,14 @@ "type": "STRING", "value": ">" }, + { + "type": "STRING", + "value": "<=" + }, + { + "type": "STRING", + "value": ">=" + }, { "type": "STRING", "value": "||" @@ -1447,6 +1492,28 @@ ] } }, + "postfix_expression": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "++" + }, + { + "type": "STRING", + "value": "--" + } + ] + } + ] + }, "parenthesized_expression": { "type": "SEQ", "members": [ @@ -1874,13 +1941,16 @@ } }, { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "regex_without_right_brace" - }, - "named": true, - "value": "regex" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "regex" + }, + { + "type": "BLANK" + } + ] } ] }, @@ -2114,14 +2184,6 @@ } } }, - "regex": { - "type": "PATTERN", - "value": "([^\"\\s]|\\\\.)([^\\s]|\\\\.)*" - }, - "regex_without_right_brace": { - "type": "PATTERN", - "value": "([^\"\\s}]|\\\\.)([^\\s}]|\\\\.)*" - }, "_terminator": { "type": "CHOICE", "members": [ @@ -2192,6 +2254,10 @@ "type": "SYMBOL", "name": "variable_name" }, + { + "type": "SYMBOL", + "name": "regex" + }, { "type": "STRING", "value": "}" diff --git a/src/parser.c b/src/parser.c index 29c57c6..179f330 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,11 +6,11 @@ #endif #define LANGUAGE_VERSION 9 -#define STATE_COUNT 2824 -#define SYMBOL_COUNT 147 +#define STATE_COUNT 2882 +#define SYMBOL_COUNT 153 #define ALIAS_COUNT 2 -#define TOKEN_COUNT 92 -#define EXTERNAL_TOKEN_COUNT 12 +#define TOKEN_COUNT 97 +#define EXTERNAL_TOKEN_COUNT 13 #define MAX_ALIAS_SEQUENCE_LENGTH 8 enum { @@ -23,145 +23,151 @@ enum { sym__empty_value = 7, sym__concat = 8, sym_variable_name = 9, - anon_sym_for = 10, - anon_sym_in = 11, - anon_sym_LPAREN_LPAREN = 12, - anon_sym_RPAREN_RPAREN = 13, - anon_sym_SEMI = 14, - anon_sym_while = 15, - anon_sym_do = 16, - anon_sym_done = 17, - anon_sym_if = 18, - anon_sym_then = 19, - anon_sym_fi = 20, - anon_sym_elif = 21, - anon_sym_else = 22, - anon_sym_case = 23, - anon_sym_esac = 24, - anon_sym_PIPE = 25, - anon_sym_RPAREN = 26, - anon_sym_SEMI_SEMI = 27, - anon_sym_function = 28, - anon_sym_LPAREN = 29, - anon_sym_LBRACE = 30, - anon_sym_RBRACE = 31, - anon_sym_PIPE_AMP = 32, - anon_sym_AMP_AMP = 33, - anon_sym_PIPE_PIPE = 34, - anon_sym_BANG = 35, - anon_sym_LBRACK = 36, - anon_sym_RBRACK = 37, - anon_sym_LBRACK_LBRACK = 38, - anon_sym_RBRACK_RBRACK = 39, - anon_sym_declare = 40, - anon_sym_typeset = 41, - anon_sym_export = 42, - anon_sym_readonly = 43, - anon_sym_local = 44, - anon_sym_unset = 45, - anon_sym_unsetenv = 46, - anon_sym_EQ_TILDE = 47, - anon_sym_EQ_EQ = 48, - anon_sym_EQ = 49, - anon_sym_PLUS_EQ = 50, - anon_sym_LT = 51, - anon_sym_GT = 52, - anon_sym_GT_GT = 53, - anon_sym_AMP_GT = 54, - anon_sym_AMP_GT_GT = 55, - anon_sym_LT_AMP = 56, - anon_sym_GT_AMP = 57, - anon_sym_LT_LT = 58, - anon_sym_LT_LT_DASH = 59, - anon_sym_LT_LT_LT = 60, - anon_sym_BANG_EQ = 61, - sym__special_characters = 62, - anon_sym_DQUOTE = 63, - anon_sym_DOLLAR = 64, - sym__string_content = 65, - sym_raw_string = 66, - anon_sym_POUND = 67, - anon_sym_DOLLAR_LBRACE = 68, - anon_sym_SLASH = 69, - anon_sym_COLON = 70, - anon_sym_COLON_QMARK = 71, - anon_sym_COLON_DASH = 72, - anon_sym_PERCENT = 73, - anon_sym_DASH = 74, - anon_sym_DOLLAR_LPAREN = 75, - anon_sym_BQUOTE = 76, - anon_sym_LT_LPAREN = 77, - anon_sym_GT_LPAREN = 78, - sym_comment = 79, - aux_sym_SLASH_BSLASHw_PLUS_SLASH = 80, - anon_sym_STAR = 81, - anon_sym_AT = 82, - anon_sym_QMARK = 83, - anon_sym_0 = 84, - anon_sym__ = 85, - sym_word = 86, - sym_test_operator = 87, - sym_regex = 88, - sym_regex_without_right_brace = 89, - anon_sym_LF = 90, - anon_sym_AMP = 91, - sym_program = 92, - sym__terminated_statement = 93, - sym_for_statement = 94, - sym_c_style_for_statement = 95, - sym_while_statement = 96, - sym_do_group = 97, - sym_if_statement = 98, - sym_elif_clause = 99, - sym_else_clause = 100, - sym_case_statement = 101, - sym_case_item = 102, - sym_last_case_item = 103, - sym_function_definition = 104, - sym_compound_statement = 105, - sym_subshell = 106, - sym_pipeline = 107, - sym_list = 108, - sym_negated_command = 109, - sym_test_command = 110, - sym_declaration_command = 111, - sym_unset_command = 112, - sym_command = 113, - sym_command_name = 114, - sym_variable_assignment = 115, - sym_subscript = 116, - sym_file_redirect = 117, - sym_heredoc_redirect = 118, - sym_heredoc_body = 119, - sym_herestring_redirect = 120, - sym__expression = 121, - sym_binary_expression = 122, - sym_unary_expression = 123, - sym_parenthesized_expression = 124, - sym_concatenation = 125, - sym_string = 126, - sym_array = 127, - sym_simple_expansion = 128, - sym_string_expansion = 129, - sym_expansion = 130, - sym_command_substitution = 131, - sym_process_substitution = 132, - aux_sym__statements_repeat1 = 133, - aux_sym_for_statement_repeat1 = 134, - aux_sym_while_statement_repeat1 = 135, - aux_sym_if_statement_repeat1 = 136, - aux_sym_case_statement_repeat1 = 137, - aux_sym_case_item_repeat1 = 138, - aux_sym_declaration_command_repeat1 = 139, - aux_sym_unset_command_repeat1 = 140, - aux_sym_command_repeat1 = 141, - aux_sym_command_repeat2 = 142, - aux_sym_heredoc_body_repeat1 = 143, - aux_sym_concatenation_repeat1 = 144, - aux_sym_string_repeat1 = 145, - aux_sym_expansion_repeat1 = 146, - alias_sym_special_variable_name = 147, - alias_sym_word = 148, + sym_regex = 10, + anon_sym_for = 11, + anon_sym_in = 12, + anon_sym_LPAREN_LPAREN = 13, + anon_sym_RPAREN_RPAREN = 14, + anon_sym_SEMI = 15, + anon_sym_while = 16, + anon_sym_do = 17, + anon_sym_done = 18, + anon_sym_if = 19, + anon_sym_then = 20, + anon_sym_fi = 21, + anon_sym_elif = 22, + anon_sym_else = 23, + anon_sym_case = 24, + anon_sym_esac = 25, + anon_sym_PIPE = 26, + anon_sym_RPAREN = 27, + anon_sym_SEMI_SEMI = 28, + anon_sym_function = 29, + anon_sym_LPAREN = 30, + anon_sym_LBRACE = 31, + anon_sym_RBRACE = 32, + anon_sym_PIPE_AMP = 33, + anon_sym_AMP_AMP = 34, + anon_sym_PIPE_PIPE = 35, + anon_sym_BANG = 36, + anon_sym_LBRACK = 37, + anon_sym_RBRACK = 38, + anon_sym_LBRACK_LBRACK = 39, + anon_sym_RBRACK_RBRACK = 40, + anon_sym_declare = 41, + anon_sym_typeset = 42, + anon_sym_export = 43, + anon_sym_readonly = 44, + anon_sym_local = 45, + anon_sym_unset = 46, + anon_sym_unsetenv = 47, + anon_sym_EQ_TILDE = 48, + anon_sym_EQ_EQ = 49, + anon_sym_EQ = 50, + anon_sym_PLUS_EQ = 51, + anon_sym_LT = 52, + anon_sym_GT = 53, + anon_sym_GT_GT = 54, + anon_sym_AMP_GT = 55, + anon_sym_AMP_GT_GT = 56, + anon_sym_LT_AMP = 57, + anon_sym_GT_AMP = 58, + anon_sym_LT_LT = 59, + anon_sym_LT_LT_DASH = 60, + anon_sym_LT_LT_LT = 61, + anon_sym_BANG_EQ = 62, + anon_sym_PLUS = 63, + anon_sym_DASH = 64, + anon_sym_DASH_EQ = 65, + anon_sym_LT_EQ = 66, + anon_sym_GT_EQ = 67, + anon_sym_PLUS_PLUS = 68, + anon_sym_DASH_DASH = 69, + sym__special_characters = 70, + anon_sym_DQUOTE = 71, + anon_sym_DOLLAR = 72, + sym__string_content = 73, + sym_raw_string = 74, + anon_sym_POUND = 75, + anon_sym_DOLLAR_LBRACE = 76, + anon_sym_SLASH = 77, + anon_sym_COLON = 78, + anon_sym_COLON_QMARK = 79, + anon_sym_COLON_DASH = 80, + anon_sym_PERCENT = 81, + anon_sym_DOLLAR_LPAREN = 82, + anon_sym_BQUOTE = 83, + anon_sym_LT_LPAREN = 84, + anon_sym_GT_LPAREN = 85, + sym_comment = 86, + aux_sym_SLASH_BSLASHw_PLUS_SLASH = 87, + anon_sym_STAR = 88, + anon_sym_AT = 89, + anon_sym_QMARK = 90, + anon_sym_0 = 91, + anon_sym__ = 92, + sym_word = 93, + sym_test_operator = 94, + anon_sym_LF = 95, + anon_sym_AMP = 96, + sym_program = 97, + sym__terminated_statement = 98, + sym_for_statement = 99, + sym_c_style_for_statement = 100, + sym_while_statement = 101, + sym_do_group = 102, + sym_if_statement = 103, + sym_elif_clause = 104, + sym_else_clause = 105, + sym_case_statement = 106, + sym_case_item = 107, + sym_last_case_item = 108, + sym_function_definition = 109, + sym_compound_statement = 110, + sym_subshell = 111, + sym_pipeline = 112, + sym_list = 113, + sym_negated_command = 114, + sym_test_command = 115, + sym_declaration_command = 116, + sym_unset_command = 117, + sym_command = 118, + sym_command_name = 119, + sym_variable_assignment = 120, + sym_subscript = 121, + sym_file_redirect = 122, + sym_heredoc_redirect = 123, + sym_heredoc_body = 124, + sym_herestring_redirect = 125, + sym__expression = 126, + sym_binary_expression = 127, + sym_unary_expression = 128, + sym_postfix_expression = 129, + sym_parenthesized_expression = 130, + sym_concatenation = 131, + sym_string = 132, + sym_array = 133, + sym_simple_expansion = 134, + sym_string_expansion = 135, + sym_expansion = 136, + sym_command_substitution = 137, + sym_process_substitution = 138, + aux_sym__statements_repeat1 = 139, + aux_sym_for_statement_repeat1 = 140, + aux_sym_while_statement_repeat1 = 141, + aux_sym_if_statement_repeat1 = 142, + aux_sym_case_statement_repeat1 = 143, + aux_sym_case_item_repeat1 = 144, + aux_sym_declaration_command_repeat1 = 145, + aux_sym_unset_command_repeat1 = 146, + aux_sym_command_repeat1 = 147, + aux_sym_command_repeat2 = 148, + aux_sym_heredoc_body_repeat1 = 149, + aux_sym_concatenation_repeat1 = 150, + aux_sym_string_repeat1 = 151, + aux_sym_expansion_repeat1 = 152, + alias_sym_special_variable_name = 153, + alias_sym_word = 154, }; static const char *ts_symbol_names[] = { @@ -174,6 +180,7 @@ static const char *ts_symbol_names[] = { [sym__empty_value] = "_empty_value", [sym__concat] = "_concat", [sym_variable_name] = "variable_name", + [sym_regex] = "regex", [ts_builtin_sym_end] = "END", [anon_sym_for] = "for", [anon_sym_in] = "in", @@ -227,6 +234,13 @@ static const char *ts_symbol_names[] = { [anon_sym_LT_LT_DASH] = "<<-", [anon_sym_LT_LT_LT] = "<<<", [anon_sym_BANG_EQ] = "!=", + [anon_sym_PLUS] = "+", + [anon_sym_DASH] = "-", + [anon_sym_DASH_EQ] = "-=", + [anon_sym_LT_EQ] = "<=", + [anon_sym_GT_EQ] = ">=", + [anon_sym_PLUS_PLUS] = "++", + [anon_sym_DASH_DASH] = "--", [sym__special_characters] = "_special_characters", [anon_sym_DQUOTE] = "\"", [anon_sym_DOLLAR] = "$", @@ -239,7 +253,6 @@ static const char *ts_symbol_names[] = { [anon_sym_COLON_QMARK] = ":?", [anon_sym_COLON_DASH] = ":-", [anon_sym_PERCENT] = "%", - [anon_sym_DASH] = "-", [anon_sym_DOLLAR_LPAREN] = "$(", [anon_sym_BQUOTE] = "`", [anon_sym_LT_LPAREN] = "<(", @@ -253,8 +266,6 @@ static const char *ts_symbol_names[] = { [anon_sym__] = "special_variable_name", [sym_word] = "word", [sym_test_operator] = "test_operator", - [sym_regex] = "regex", - [sym_regex_without_right_brace] = "regex", [anon_sym_LF] = "\n", [anon_sym_AMP] = "&", [sym_program] = "program", @@ -289,6 +300,7 @@ static const char *ts_symbol_names[] = { [sym__expression] = "_expression", [sym_binary_expression] = "binary_expression", [sym_unary_expression] = "unary_expression", + [sym_postfix_expression] = "postfix_expression", [sym_parenthesized_expression] = "parenthesized_expression", [sym_concatenation] = "concatenation", [sym_string] = "string", @@ -353,6 +365,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_regex] = { + .visible = true, + .named = true, + }, [ts_builtin_sym_end] = { .visible = false, .named = true, @@ -565,6 +581,34 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_PLUS] = { + .visible = true, + .named = false, + }, + [anon_sym_DASH] = { + .visible = true, + .named = false, + }, + [anon_sym_DASH_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_LT_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_GT_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_PLUS_PLUS] = { + .visible = true, + .named = false, + }, + [anon_sym_DASH_DASH] = { + .visible = true, + .named = false, + }, [sym__special_characters] = { .visible = false, .named = true, @@ -613,10 +657,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_DASH] = { - .visible = true, - .named = false, - }, [anon_sym_DOLLAR_LPAREN] = { .visible = true, .named = false, @@ -669,14 +709,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_regex] = { - .visible = true, - .named = true, - }, - [sym_regex_without_right_brace] = { - .visible = true, - .named = true, - }, [anon_sym_LF] = { .visible = true, .named = false, @@ -813,6 +845,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_postfix_expression] = { + .visible = true, + .named = true, + }, [sym_parenthesized_expression] = { .visible = true, .named = true, @@ -964,51 +1000,51 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '(') ADVANCE(18); if (lookahead == ')') - ADVANCE(19); - if (lookahead == '*') ADVANCE(20); - if (lookahead == '+') + if (lookahead == '*') ADVANCE(21); + if (lookahead == '+') + ADVANCE(22); if (lookahead == '-') - ADVANCE(23); - if (lookahead == '/') - ADVANCE(24); - if (lookahead == '0') ADVANCE(25); - if (lookahead == ':') - ADVANCE(26); - if (lookahead == ';') + if (lookahead == '/') ADVANCE(29); - if (lookahead == '<') + if (lookahead == '0') + ADVANCE(30); + if (lookahead == ':') ADVANCE(31); + if (lookahead == ';') + ADVANCE(34); + if (lookahead == '<') + ADVANCE(36); if (lookahead == '=') - ADVANCE(37); + ADVANCE(43); if (lookahead == '>') - ADVANCE(40); - if (lookahead == '?') - ADVANCE(44); - if (lookahead == '@') - ADVANCE(45); - if (lookahead == '[') ADVANCE(46); - if (lookahead == '\\') - ADVANCE(48); - if (lookahead == ']') - ADVANCE(49); - if (lookahead == '_') + if (lookahead == '?') ADVANCE(51); - if (lookahead == '`') + if (lookahead == '@') ADVANCE(52); - if (lookahead == 'e') + if (lookahead == '[') ADVANCE(53); - if (lookahead == 'i') - ADVANCE(57); - if (lookahead == '{') + if (lookahead == '\\') + ADVANCE(55); + if (lookahead == ']') + ADVANCE(56); + if (lookahead == '_') + ADVANCE(58); + if (lookahead == '`') ADVANCE(59); - if (lookahead == '|') + if (lookahead == 'e') ADVANCE(60); + if (lookahead == 'i') + ADVANCE(64); + if (lookahead == '{') + ADVANCE(66); + if (lookahead == '|') + ADVANCE(67); if (lookahead == '}') - ADVANCE(63); + ADVANCE(70); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') @@ -1134,11 +1170,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 18: ACCEPT_TOKEN(anon_sym_LPAREN); + if (lookahead == '(') + ADVANCE(19); END_STATE(); case 19: - ACCEPT_TOKEN(anon_sym_RPAREN); + ACCEPT_TOKEN(anon_sym_LPAREN_LPAREN); END_STATE(); case 20: + ACCEPT_TOKEN(anon_sym_RPAREN); + END_STATE(); + case 21: ACCEPT_TOKEN(anon_sym_STAR); if (lookahead == '\\') ADVANCE(4); @@ -1157,10 +1198,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(5); END_STATE(); - case 21: - ACCEPT_TOKEN(sym_word); + case 22: + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') + ADVANCE(23); if (lookahead == '=') - ADVANCE(22); + ADVANCE(24); if (lookahead == '\\') ADVANCE(4); if (lookahead != 0 && @@ -1176,27 +1219,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(5); END_STATE(); - case 22: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); - if (lookahead == '\\') - ADVANCE(4); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < '[' || lookahead > ']') && - lookahead != '`' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(5); - END_STATE(); case 23: - ACCEPT_TOKEN(anon_sym_DASH); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS); if (lookahead == '\\') ADVANCE(4); if (lookahead != 0 && @@ -1215,10 +1239,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(5); END_STATE(); case 24: - ACCEPT_TOKEN(anon_sym_SLASH); - END_STATE(); - case 25: - ACCEPT_TOKEN(anon_sym_0); + ACCEPT_TOKEN(anon_sym_PLUS_EQ); if (lookahead == '\\') ADVANCE(4); if (lookahead != 0 && @@ -1236,12 +1257,31 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(5); END_STATE(); - case 26: - ACCEPT_TOKEN(anon_sym_COLON); + case 25: + ACCEPT_TOKEN(anon_sym_DASH); if (lookahead == '-') + ADVANCE(26); + if (lookahead == '=') ADVANCE(27); - if (lookahead == '?') + if (lookahead == '\\') + ADVANCE(4); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(28); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + (lookahead < ';' || lookahead > '>') && + (lookahead < 'A' || lookahead > ']') && + (lookahead < '`' || lookahead > '}')) + ADVANCE(5); + END_STATE(); + case 26: + ACCEPT_TOKEN(anon_sym_DASH_DASH); if (lookahead == '\\') ADVANCE(4); if (lookahead != 0 && @@ -1254,14 +1294,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '<' && lookahead != '>' && - lookahead != '?' && (lookahead < '[' || lookahead > ']') && lookahead != '`' && (lookahead < '{' || lookahead > '}')) ADVANCE(5); END_STATE(); case 27: - ACCEPT_TOKEN(anon_sym_COLON_DASH); + ACCEPT_TOKEN(anon_sym_DASH_EQ); if (lookahead == '\\') ADVANCE(4); if (lookahead != 0 && @@ -1280,6 +1319,77 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(5); END_STATE(); case 28: + ACCEPT_TOKEN(sym_test_operator); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(28); + END_STATE(); + case 29: + ACCEPT_TOKEN(anon_sym_SLASH); + END_STATE(); + case 30: + ACCEPT_TOKEN(anon_sym_0); + if (lookahead == '\\') + ADVANCE(4); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(5); + END_STATE(); + case 31: + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == '-') + ADVANCE(32); + if (lookahead == '?') + ADVANCE(33); + if (lookahead == '\\') + ADVANCE(4); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + lookahead != '?' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(5); + END_STATE(); + case 32: + ACCEPT_TOKEN(anon_sym_COLON_DASH); + if (lookahead == '\\') + ADVANCE(4); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(5); + END_STATE(); + case 33: ACCEPT_TOKEN(anon_sym_COLON_QMARK); if (lookahead == '\\') ADVANCE(4); @@ -1298,50 +1408,55 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(5); END_STATE(); - case 29: + case 34: ACCEPT_TOKEN(anon_sym_SEMI); if (lookahead == ';') - ADVANCE(30); - END_STATE(); - case 30: - ACCEPT_TOKEN(anon_sym_SEMI_SEMI); - END_STATE(); - case 31: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') - ADVANCE(32); - if (lookahead == '(') - ADVANCE(33); - if (lookahead == '<') - ADVANCE(34); - END_STATE(); - case 32: - ACCEPT_TOKEN(anon_sym_LT_AMP); - END_STATE(); - case 33: - ACCEPT_TOKEN(anon_sym_LT_LPAREN); - END_STATE(); - case 34: - ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '-') ADVANCE(35); - if (lookahead == '<') - ADVANCE(36); END_STATE(); case 35: - ACCEPT_TOKEN(anon_sym_LT_LT_DASH); + ACCEPT_TOKEN(anon_sym_SEMI_SEMI); END_STATE(); case 36: - ACCEPT_TOKEN(anon_sym_LT_LT_LT); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '&') + ADVANCE(37); + if (lookahead == '(') + ADVANCE(38); + if (lookahead == '<') + ADVANCE(39); + if (lookahead == '=') + ADVANCE(42); END_STATE(); case 37: + ACCEPT_TOKEN(anon_sym_LT_AMP); + END_STATE(); + case 38: + ACCEPT_TOKEN(anon_sym_LT_LPAREN); + END_STATE(); + case 39: + ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '-') + ADVANCE(40); + if (lookahead == '<') + ADVANCE(41); + END_STATE(); + case 40: + ACCEPT_TOKEN(anon_sym_LT_LT_DASH); + END_STATE(); + case 41: + ACCEPT_TOKEN(anon_sym_LT_LT_LT); + END_STATE(); + case 42: + ACCEPT_TOKEN(anon_sym_LT_EQ); + END_STATE(); + case 43: ACCEPT_TOKEN(anon_sym_EQ); if (lookahead == '=') - ADVANCE(38); + ADVANCE(44); if (lookahead == '\\') ADVANCE(4); if (lookahead == '~') - ADVANCE(39); + ADVANCE(45); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -1355,7 +1470,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '~')) ADVANCE(5); END_STATE(); - case 38: + case 44: ACCEPT_TOKEN(anon_sym_EQ_EQ); if (lookahead == '\\') ADVANCE(4); @@ -1374,7 +1489,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(5); END_STATE(); - case 39: + case 45: ACCEPT_TOKEN(anon_sym_EQ_TILDE); if (lookahead == '\\') ADVANCE(4); @@ -1393,89 +1508,31 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(5); END_STATE(); - case 40: + case 46: ACCEPT_TOKEN(anon_sym_GT); if (lookahead == '&') - ADVANCE(41); - if (lookahead == '(') - ADVANCE(42); - if (lookahead == '>') - ADVANCE(43); - END_STATE(); - case 41: - ACCEPT_TOKEN(anon_sym_GT_AMP); - END_STATE(); - case 42: - ACCEPT_TOKEN(anon_sym_GT_LPAREN); - END_STATE(); - case 43: - ACCEPT_TOKEN(anon_sym_GT_GT); - END_STATE(); - case 44: - ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '\\') - ADVANCE(4); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < '[' || lookahead > ']') && - lookahead != '`' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(5); - END_STATE(); - case 45: - ACCEPT_TOKEN(anon_sym_AT); - if (lookahead == '\\') - ADVANCE(4); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < '[' || lookahead > ']') && - lookahead != '`' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(5); - END_STATE(); - case 46: - ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '[') ADVANCE(47); - END_STATE(); - case 47: - ACCEPT_TOKEN(anon_sym_LBRACK_LBRACK); - END_STATE(); - case 48: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(0); - if (lookahead != 0) - ADVANCE(5); - END_STATE(); - case 49: - ACCEPT_TOKEN(anon_sym_RBRACK); - if (lookahead == ']') + if (lookahead == '(') + ADVANCE(48); + if (lookahead == '=') + ADVANCE(49); + if (lookahead == '>') ADVANCE(50); END_STATE(); + case 47: + ACCEPT_TOKEN(anon_sym_GT_AMP); + END_STATE(); + case 48: + ACCEPT_TOKEN(anon_sym_GT_LPAREN); + END_STATE(); + case 49: + ACCEPT_TOKEN(anon_sym_GT_EQ); + END_STATE(); case 50: - ACCEPT_TOKEN(anon_sym_RBRACK_RBRACK); + ACCEPT_TOKEN(anon_sym_GT_GT); END_STATE(); case 51: - ACCEPT_TOKEN(anon_sym__); + ACCEPT_TOKEN(anon_sym_QMARK); if (lookahead == '\\') ADVANCE(4); if (lookahead != 0 && @@ -1494,114 +1551,51 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(5); END_STATE(); case 52: - ACCEPT_TOKEN(anon_sym_BQUOTE); + ACCEPT_TOKEN(anon_sym_AT); + if (lookahead == '\\') + ADVANCE(4); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(5); END_STATE(); case 53: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(4); - if (lookahead == 's') + ACCEPT_TOKEN(anon_sym_LBRACK); + if (lookahead == '[') ADVANCE(54); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < '[' || lookahead > ']') && - lookahead != '`' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(5); END_STATE(); case 54: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(4); - if (lookahead == 'a') - ADVANCE(55); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < '[' || lookahead > ']') && - lookahead != '`' && - lookahead != 'a' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(5); + ACCEPT_TOKEN(anon_sym_LBRACK_LBRACK); END_STATE(); case 55: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(4); - if (lookahead == 'c') - ADVANCE(56); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < '[' || lookahead > ']') && - lookahead != '`' && - (lookahead < '{' || lookahead > '}')) + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(0); + if (lookahead != 0) ADVANCE(5); END_STATE(); case 56: - ACCEPT_TOKEN(anon_sym_esac); - if (lookahead == '\\') - ADVANCE(4); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < '[' || lookahead > ']') && - lookahead != '`' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(5); + ACCEPT_TOKEN(anon_sym_RBRACK); + if (lookahead == ']') + ADVANCE(57); END_STATE(); case 57: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(4); - if (lookahead == 'n') - ADVANCE(58); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < '[' || lookahead > ']') && - lookahead != '`' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(5); + ACCEPT_TOKEN(anon_sym_RBRACK_RBRACK); END_STATE(); case 58: - ACCEPT_TOKEN(anon_sym_in); + ACCEPT_TOKEN(anon_sym__); if (lookahead == '\\') ADVANCE(4); if (lookahead != 0 && @@ -1620,25 +1614,151 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(5); END_STATE(); case 59: - ACCEPT_TOKEN(anon_sym_LBRACE); + ACCEPT_TOKEN(anon_sym_BQUOTE); END_STATE(); case 60: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '&') + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(4); + if (lookahead == 's') ADVANCE(61); - if (lookahead == '|') - ADVANCE(62); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(5); END_STATE(); case 61: - ACCEPT_TOKEN(anon_sym_PIPE_AMP); + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(4); + if (lookahead == 'a') + ADVANCE(62); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + lookahead != 'a' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(5); END_STATE(); case 62: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(4); + if (lookahead == 'c') + ADVANCE(63); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(5); END_STATE(); case 63: - ACCEPT_TOKEN(anon_sym_RBRACE); + ACCEPT_TOKEN(anon_sym_esac); + if (lookahead == '\\') + ADVANCE(4); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(5); END_STATE(); case 64: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(4); + if (lookahead == 'n') + ADVANCE(65); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(5); + END_STATE(); + case 65: + ACCEPT_TOKEN(anon_sym_in); + if (lookahead == '\\') + ADVANCE(4); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(5); + END_STATE(); + case 66: + ACCEPT_TOKEN(anon_sym_LBRACE); + END_STATE(); + case 67: + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '&') + ADVANCE(68); + if (lookahead == '|') + ADVANCE(69); + END_STATE(); + case 68: + ACCEPT_TOKEN(anon_sym_PIPE_AMP); + END_STATE(); + case 69: + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + END_STATE(); + case 70: + ACCEPT_TOKEN(anon_sym_RBRACE); + END_STATE(); + case 71: if (lookahead == 0) ADVANCE(1); if (lookahead == '!') @@ -1646,293 +1766,200 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\"') ADVANCE(6); if (lookahead == '#') - ADVANCE(65); + ADVANCE(72); if (lookahead == '$') ADVANCE(8); if (lookahead == '&') - ADVANCE(66); + ADVANCE(73); if (lookahead == '\'') ADVANCE(16); if (lookahead == '(') ADVANCE(18); if (lookahead == '<') - ADVANCE(67); + ADVANCE(74); if (lookahead == '>') - ADVANCE(40); + ADVANCE(75); if (lookahead == '[') - ADVANCE(46); + ADVANCE(53); if (lookahead == '\\') - ADVANCE(68); + ADVANCE(76); if (lookahead == ']') - ADVANCE(69); + ADVANCE(77); if (lookahead == '`') - ADVANCE(52); + ADVANCE(59); if (lookahead == '{') - ADVANCE(69); + ADVANCE(77); if (lookahead == '}') - ADVANCE(69); + ADVANCE(77); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(64); + SKIP(71); if ((lookahead < '&' || lookahead > ')') && lookahead != ';' && lookahead != '<' && (lookahead < '{' || lookahead > '}')) ADVANCE(5); END_STATE(); - case 65: + case 72: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && lookahead != '\n') - ADVANCE(65); + ADVANCE(72); END_STATE(); - case 66: + case 73: if (lookahead == '>') ADVANCE(14); END_STATE(); - case 67: + case 74: ACCEPT_TOKEN(anon_sym_LT); if (lookahead == '&') - ADVANCE(32); + ADVANCE(37); if (lookahead == '(') - ADVANCE(33); + ADVANCE(38); END_STATE(); - case 68: + case 75: + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '&') + ADVANCE(47); + if (lookahead == '(') + ADVANCE(48); + if (lookahead == '>') + ADVANCE(50); + END_STATE(); + case 76: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(64); + SKIP(71); if (lookahead != 0) ADVANCE(5); END_STATE(); - case 69: + case 77: ACCEPT_TOKEN(sym__special_characters); if (lookahead == '[') - ADVANCE(69); + ADVANCE(77); if (lookahead == ']') - ADVANCE(69); + ADVANCE(77); if (lookahead == '{') - ADVANCE(69); + ADVANCE(77); if (lookahead == '}') - ADVANCE(69); + ADVANCE(77); END_STATE(); - case 70: + case 78: if (lookahead == '#') - ADVANCE(65); + ADVANCE(72); + if (lookahead == ')') + ADVANCE(20); if (lookahead == '+') - ADVANCE(71); + ADVANCE(79); if (lookahead == '=') - ADVANCE(73); + ADVANCE(81); if (lookahead == '[') - ADVANCE(74); + ADVANCE(82); if (lookahead == '\\') - SKIP(75); + SKIP(83); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(70); + SKIP(78); END_STATE(); - case 71: + case 79: if (lookahead == '=') - ADVANCE(72); + ADVANCE(80); END_STATE(); - case 72: + case 80: ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); - case 73: + case 81: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); - case 74: + case 82: ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); - case 75: + case 83: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(70); + SKIP(78); END_STATE(); - case 76: + case 84: if (lookahead == '#') - ADVANCE(65); + ADVANCE(72); if (lookahead == '(') - ADVANCE(77); + ADVANCE(85); if (lookahead == '\\') - SKIP(79); + SKIP(86); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(76); + SKIP(84); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(80); + ADVANCE(87); END_STATE(); - case 77: + case 85: if (lookahead == '(') - ADVANCE(78); + ADVANCE(19); END_STATE(); - case 78: - ACCEPT_TOKEN(anon_sym_LPAREN_LPAREN); - END_STATE(); - case 79: + case 86: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(76); + SKIP(84); END_STATE(); - case 80: + case 87: ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(80); + ADVANCE(87); END_STATE(); - case 81: - if (lookahead == '\"') - ADVANCE(6); - if (lookahead == '#') - ADVANCE(65); - if (lookahead == '$') - ADVANCE(8); - if (lookahead == '&') - ADVANCE(66); - if (lookahead == '\'') - ADVANCE(16); - if (lookahead == '<') - ADVANCE(67); - if (lookahead == '>') - ADVANCE(40); - if (lookahead == '[') - ADVANCE(69); - if (lookahead == '\\') - ADVANCE(82); - if (lookahead == ']') - ADVANCE(69); - if (lookahead == '`') - ADVANCE(52); - if (lookahead == '{') - ADVANCE(69); - if (lookahead == '}') - ADVANCE(69); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(81); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(5); - END_STATE(); - case 82: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(81); - if (lookahead != 0) - ADVANCE(5); - END_STATE(); - case 83: - if (lookahead == '\"') - ADVANCE(6); - if (lookahead == '#') - ADVANCE(65); - if (lookahead == '$') - ADVANCE(8); - if (lookahead == '&') - ADVANCE(66); - if (lookahead == '\'') - ADVANCE(16); - if (lookahead == '(') - ADVANCE(18); - if (lookahead == ')') - ADVANCE(19); - if (lookahead == '<') - ADVANCE(67); - if (lookahead == '>') - ADVANCE(40); - if (lookahead == '[') - ADVANCE(46); - if (lookahead == '\\') - ADVANCE(84); - if (lookahead == ']') - ADVANCE(69); - if (lookahead == '`') - ADVANCE(52); - if (lookahead == '{') - ADVANCE(69); - if (lookahead == '}') - ADVANCE(69); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(83); - if (lookahead != 0 && - lookahead != ';' && - lookahead != '<' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(5); - END_STATE(); - case 84: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(83); - if (lookahead != 0) - ADVANCE(5); - END_STATE(); - case 85: + case 88: if (lookahead == '!') ADVANCE(3); if (lookahead == '\"') ADVANCE(6); if (lookahead == '#') - ADVANCE(65); + ADVANCE(72); if (lookahead == '$') ADVANCE(8); if (lookahead == '\'') ADVANCE(16); if (lookahead == '(') - ADVANCE(18); - if (lookahead == ')') - ADVANCE(86); + ADVANCE(89); if (lookahead == '-') - ADVANCE(88); - if (lookahead == '<') ADVANCE(90); - if (lookahead == '>') + if (lookahead == '<') ADVANCE(91); - if (lookahead == '[') - ADVANCE(69); - if (lookahead == '\\') + if (lookahead == '>') ADVANCE(92); + if (lookahead == '[') + ADVANCE(77); + if (lookahead == '\\') + ADVANCE(93); if (lookahead == ']') - ADVANCE(69); + ADVANCE(77); if (lookahead == '`') - ADVANCE(52); + ADVANCE(59); if (lookahead == '{') - ADVANCE(69); + ADVANCE(77); if (lookahead == '}') - ADVANCE(69); + ADVANCE(77); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(85); + SKIP(88); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && lookahead != ';' && @@ -1940,20 +1967,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(5); END_STATE(); - case 86: - if (lookahead == ')') - ADVANCE(87); + case 89: + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); - case 87: - ACCEPT_TOKEN(anon_sym_RPAREN_RPAREN); - END_STATE(); - case 88: + case 90: ACCEPT_TOKEN(sym_word); if (lookahead == '\\') ADVANCE(4); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(89); + ADVANCE(28); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -1968,30 +1991,122 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '`' || lookahead > '}')) ADVANCE(5); END_STATE(); - case 89: - ACCEPT_TOKEN(sym_test_operator); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(89); - END_STATE(); - case 90: - if (lookahead == '(') - ADVANCE(33); - END_STATE(); case 91: if (lookahead == '(') - ADVANCE(42); + ADVANCE(38); END_STATE(); case 92: + if (lookahead == '(') + ADVANCE(48); + END_STATE(); + case 93: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(85); + SKIP(88); if (lookahead != 0) ADVANCE(5); END_STATE(); - case 93: + case 94: + if (lookahead == '\"') + ADVANCE(6); + if (lookahead == '#') + ADVANCE(72); + if (lookahead == '$') + ADVANCE(8); + if (lookahead == '&') + ADVANCE(73); + if (lookahead == '\'') + ADVANCE(16); + if (lookahead == '<') + ADVANCE(74); + if (lookahead == '>') + ADVANCE(75); + if (lookahead == '[') + ADVANCE(77); + if (lookahead == '\\') + ADVANCE(95); + if (lookahead == ']') + ADVANCE(77); + if (lookahead == '`') + ADVANCE(59); + if (lookahead == '{') + ADVANCE(77); + if (lookahead == '}') + ADVANCE(77); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(94); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(5); + END_STATE(); + case 95: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(94); + if (lookahead != 0) + ADVANCE(5); + END_STATE(); + case 96: + if (lookahead == '\"') + ADVANCE(6); + if (lookahead == '#') + ADVANCE(72); + if (lookahead == '$') + ADVANCE(8); + if (lookahead == '&') + ADVANCE(73); + if (lookahead == '\'') + ADVANCE(16); + if (lookahead == '(') + ADVANCE(18); + if (lookahead == '<') + ADVANCE(74); + if (lookahead == '>') + ADVANCE(75); + if (lookahead == '[') + ADVANCE(53); + if (lookahead == '\\') + ADVANCE(97); + if (lookahead == ']') + ADVANCE(77); + if (lookahead == '`') + ADVANCE(59); + if (lookahead == '{') + ADVANCE(77); + if (lookahead == '}') + ADVANCE(77); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(96); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(5); + END_STATE(); + case 97: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(96); + if (lookahead != 0) + ADVANCE(5); + END_STATE(); + case 98: if (lookahead == 0) ADVANCE(1); if (lookahead == '\n') @@ -1999,59 +2114,59 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\"') ADVANCE(6); if (lookahead == '#') - ADVANCE(65); + ADVANCE(72); if (lookahead == '$') ADVANCE(8); if (lookahead == '&') - ADVANCE(94); + ADVANCE(99); if (lookahead == '\'') ADVANCE(16); if (lookahead == ';') - ADVANCE(29); + ADVANCE(34); if (lookahead == '<') - ADVANCE(90); - if (lookahead == '>') ADVANCE(91); + if (lookahead == '>') + ADVANCE(92); if (lookahead == '[') - ADVANCE(69); + ADVANCE(77); if (lookahead == '\\') - ADVANCE(95); + ADVANCE(100); if (lookahead == ']') - ADVANCE(69); + ADVANCE(77); if (lookahead == '`') - ADVANCE(52); + ADVANCE(59); if (lookahead == '{') - ADVANCE(69); + ADVANCE(77); if (lookahead == '|') - ADVANCE(60); + ADVANCE(67); if (lookahead == '}') - ADVANCE(69); + ADVANCE(77); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(93); + SKIP(98); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('_' <= lookahead && lookahead <= 'z')) - ADVANCE(96); + ADVANCE(101); if ((lookahead < '&' || lookahead > ')')) ADVANCE(5); END_STATE(); - case 94: + case 99: ACCEPT_TOKEN(anon_sym_AMP); if (lookahead == '&') ADVANCE(13); END_STATE(); - case 95: + case 100: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(93); + SKIP(98); if (lookahead != 0) ADVANCE(5); END_STATE(); - case 96: + case 101: ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); if (lookahead == '\\') ADVANCE(4); @@ -2059,7 +2174,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(96); + ADVANCE(101); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -2074,7 +2189,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '_' || lookahead > '}')) ADVANCE(5); END_STATE(); - case 97: + case 102: if (lookahead == 0) ADVANCE(1); if (lookahead == '\n') @@ -2082,7 +2197,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\"') ADVANCE(6); if (lookahead == '#') - ADVANCE(65); + ADVANCE(72); if (lookahead == '$') ADVANCE(8); if (lookahead == '&') @@ -2090,42 +2205,51 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\'') ADVANCE(16); if (lookahead == ';') - ADVANCE(29); + ADVANCE(34); if (lookahead == '<') - ADVANCE(31); + ADVANCE(103); if (lookahead == '=') - ADVANCE(98); + ADVANCE(104); if (lookahead == '>') - ADVANCE(40); + ADVANCE(75); if (lookahead == '[') - ADVANCE(69); + ADVANCE(77); if (lookahead == '\\') - ADVANCE(99); + ADVANCE(105); if (lookahead == ']') - ADVANCE(69); + ADVANCE(77); if (lookahead == '`') - ADVANCE(52); + ADVANCE(59); if (lookahead == '{') - ADVANCE(69); + ADVANCE(77); if (lookahead == '|') - ADVANCE(60); + ADVANCE(67); if (lookahead == '}') - ADVANCE(69); + ADVANCE(77); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(97); + SKIP(102); if ((lookahead < '&' || lookahead > ')')) ADVANCE(5); END_STATE(); - case 98: + case 103: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '&') + ADVANCE(37); + if (lookahead == '(') + ADVANCE(38); + if (lookahead == '<') + ADVANCE(39); + END_STATE(); + case 104: ACCEPT_TOKEN(sym_word); if (lookahead == '=') - ADVANCE(38); + ADVANCE(44); if (lookahead == '\\') ADVANCE(4); if (lookahead == '~') - ADVANCE(39); + ADVANCE(45); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -2139,292 +2263,190 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '~')) ADVANCE(5); END_STATE(); - case 99: + case 105: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(97); + SKIP(102); if (lookahead != 0) ADVANCE(5); END_STATE(); - case 100: + case 106: if (lookahead == '\"') ADVANCE(6); if (lookahead == '#') - ADVANCE(101); + ADVANCE(107); if (lookahead == '$') ADVANCE(8); if (lookahead == '\\') - ADVANCE(105); + ADVANCE(111); if (lookahead == '`') - ADVANCE(52); + ADVANCE(59); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - ADVANCE(106); + ADVANCE(112); if (lookahead != 0) - ADVANCE(102); + ADVANCE(108); END_STATE(); - case 101: + case 107: ACCEPT_TOKEN(sym__string_content); if (lookahead == '\n') - ADVANCE(102); + ADVANCE(108); if (lookahead == '\\') - ADVANCE(104); + ADVANCE(110); if (lookahead != 0 && lookahead != '\"' && lookahead != '$' && lookahead != '`') - ADVANCE(101); + ADVANCE(107); END_STATE(); - case 102: + case 108: ACCEPT_TOKEN(sym__string_content); if (lookahead == '\\') - ADVANCE(103); + ADVANCE(109); if (lookahead != 0 && lookahead != '\"' && lookahead != '$' && lookahead != '`') - ADVANCE(102); + ADVANCE(108); END_STATE(); - case 103: + case 109: ACCEPT_TOKEN(sym__string_content); if (lookahead == '\n') - ADVANCE(102); + ADVANCE(108); if (lookahead == '\\') - ADVANCE(103); + ADVANCE(109); if (lookahead == '\"' || lookahead == '$' || lookahead == '`') - ADVANCE(102); + ADVANCE(108); if (lookahead != 0) - ADVANCE(102); + ADVANCE(108); END_STATE(); - case 104: + case 110: ACCEPT_TOKEN(sym__string_content); if (lookahead == '\n') - ADVANCE(102); + ADVANCE(108); if (lookahead == '\\') - ADVANCE(104); + ADVANCE(110); if (lookahead == '\"' || lookahead == '$' || lookahead == '`') - ADVANCE(101); + ADVANCE(107); if (lookahead != 0) - ADVANCE(101); + ADVANCE(107); END_STATE(); - case 105: + case 111: ACCEPT_TOKEN(sym__string_content); if (lookahead == '\n') - ADVANCE(106); + ADVANCE(112); if (lookahead == '\\') - ADVANCE(103); + ADVANCE(109); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - ADVANCE(106); + ADVANCE(112); if (lookahead == '\"' || lookahead == '$' || lookahead == '`') - ADVANCE(102); + ADVANCE(108); if (lookahead != 0) - ADVANCE(102); + ADVANCE(108); END_STATE(); - case 106: + case 112: ACCEPT_TOKEN(sym__string_content); if (lookahead == '#') - ADVANCE(101); + ADVANCE(107); if (lookahead == '\\') - ADVANCE(105); + ADVANCE(111); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - ADVANCE(106); + ADVANCE(112); if (lookahead != 0 && (lookahead < '\"' || lookahead > '$') && lookahead != '`') - ADVANCE(102); - END_STATE(); - case 107: - if (lookahead == '!') ADVANCE(108); + END_STATE(); + case 113: + if (lookahead == '!') + ADVANCE(114); if (lookahead == '\"') ADVANCE(6); if (lookahead == '#') ADVANCE(7); if (lookahead == '$') - ADVANCE(109); + ADVANCE(115); if (lookahead == '\'') ADVANCE(16); if (lookahead == '*') - ADVANCE(110); - if (lookahead == '-') - ADVANCE(111); - if (lookahead == '0') - ADVANCE(112); - if (lookahead == '?') - ADVANCE(113); - if (lookahead == '@') - ADVANCE(114); - if (lookahead == '\\') - SKIP(115); - if (lookahead == '_') ADVANCE(116); + if (lookahead == '-') + ADVANCE(117); + if (lookahead == '0') + ADVANCE(118); + if (lookahead == '?') + ADVANCE(119); + if (lookahead == '@') + ADVANCE(120); + if (lookahead == '\\') + SKIP(121); + if (lookahead == '_') + ADVANCE(122); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(107); + SKIP(113); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(80); + ADVANCE(87); END_STATE(); - case 108: + case 114: ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); - case 109: + case 115: ACCEPT_TOKEN(anon_sym_DOLLAR); END_STATE(); - case 110: + case 116: ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); - case 111: + case 117: ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); - case 112: + case 118: ACCEPT_TOKEN(anon_sym_0); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(80); + ADVANCE(87); END_STATE(); - case 113: + case 119: ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); - case 114: + case 120: ACCEPT_TOKEN(anon_sym_AT); END_STATE(); - case 115: + case 121: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(107); + SKIP(113); END_STATE(); - case 116: + case 122: ACCEPT_TOKEN(anon_sym__); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(80); - END_STATE(); - case 117: - if (lookahead == 0) - ADVANCE(1); - if (lookahead == '\n') - ADVANCE(2); - if (lookahead == '\"') - ADVANCE(6); - if (lookahead == '#') - ADVANCE(65); - if (lookahead == '$') - ADVANCE(8); - if (lookahead == '&') - ADVANCE(12); - if (lookahead == '\'') - ADVANCE(16); - if (lookahead == '(') - ADVANCE(18); - if (lookahead == ';') - ADVANCE(29); - if (lookahead == '<') - ADVANCE(31); - if (lookahead == '=') - ADVANCE(98); - if (lookahead == '>') - ADVANCE(40); - if (lookahead == '[') - ADVANCE(69); - if (lookahead == '\\') - ADVANCE(118); - if (lookahead == ']') - ADVANCE(69); - if (lookahead == '`') - ADVANCE(52); - if (lookahead == '{') - ADVANCE(69); - if (lookahead == '|') - ADVANCE(60); - if (lookahead == '}') - ADVANCE(69); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - SKIP(117); - if ((lookahead < '&' || lookahead > ')')) - ADVANCE(5); - END_STATE(); - case 118: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(117); - if (lookahead != 0) - ADVANCE(5); - END_STATE(); - case 119: - if (lookahead == 0) - ADVANCE(1); - if (lookahead == '#') - ADVANCE(65); - if (lookahead == '\\') - SKIP(120); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(119); - END_STATE(); - case 120: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(119); - END_STATE(); - case 121: - if (lookahead == 0) - ADVANCE(1); - if (lookahead == '\n') - ADVANCE(2); - if (lookahead == '#') - ADVANCE(65); - if (lookahead == '&') - ADVANCE(94); - if (lookahead == ';') - ADVANCE(29); - if (lookahead == '\\') - SKIP(122); - if (lookahead == '|') - ADVANCE(60); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - SKIP(121); - END_STATE(); - case 122: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(121); + ADVANCE(87); END_STATE(); case 123: if (lookahead == 0) @@ -2434,33 +2456,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\"') ADVANCE(6); if (lookahead == '#') - ADVANCE(65); + ADVANCE(72); if (lookahead == '$') ADVANCE(8); if (lookahead == '&') ADVANCE(12); if (lookahead == '\'') ADVANCE(16); + if (lookahead == '(') + ADVANCE(89); if (lookahead == ';') - ADVANCE(29); + ADVANCE(34); if (lookahead == '<') - ADVANCE(67); + ADVANCE(103); + if (lookahead == '=') + ADVANCE(104); if (lookahead == '>') - ADVANCE(40); + ADVANCE(75); if (lookahead == '[') - ADVANCE(69); + ADVANCE(77); if (lookahead == '\\') ADVANCE(124); if (lookahead == ']') - ADVANCE(69); + ADVANCE(77); if (lookahead == '`') - ADVANCE(52); + ADVANCE(59); if (lookahead == '{') - ADVANCE(69); + ADVANCE(77); if (lookahead == '|') - ADVANCE(60); + ADVANCE(67); if (lookahead == '}') - ADVANCE(69); + ADVANCE(77); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') @@ -2480,48 +2506,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 125: if (lookahead == 0) ADVANCE(1); - if (lookahead == '\n') - ADVANCE(2); - if (lookahead == '\"') - ADVANCE(6); if (lookahead == '#') - ADVANCE(65); - if (lookahead == '$') - ADVANCE(8); - if (lookahead == '&') - ADVANCE(12); - if (lookahead == '\'') - ADVANCE(16); - if (lookahead == ')') - ADVANCE(19); - if (lookahead == ';') - ADVANCE(29); - if (lookahead == '<') - ADVANCE(31); - if (lookahead == '=') - ADVANCE(98); - if (lookahead == '>') - ADVANCE(40); - if (lookahead == '[') - ADVANCE(69); + ADVANCE(72); if (lookahead == '\\') - ADVANCE(126); - if (lookahead == ']') - ADVANCE(69); - if (lookahead == '`') - ADVANCE(52); - if (lookahead == '{') - ADVANCE(69); - if (lookahead == '|') - ADVANCE(60); - if (lookahead == '}') - ADVANCE(69); + SKIP(126); if (lookahead == '\t' || + lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(125); - if ((lookahead < '&' || lookahead > ')')) - ADVANCE(5); END_STATE(); case 126: if (lookahead == '\t' || @@ -2529,47 +2522,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\r' || lookahead == ' ') SKIP(125); - if (lookahead != 0) - ADVANCE(5); END_STATE(); case 127: - if (lookahead == '\"') - ADVANCE(6); + if (lookahead == 0) + ADVANCE(1); + if (lookahead == '\n') + ADVANCE(2); if (lookahead == '#') - ADVANCE(65); - if (lookahead == '$') - ADVANCE(8); - if (lookahead == '\'') - ADVANCE(16); - if (lookahead == '(') - ADVANCE(18); - if (lookahead == '<') - ADVANCE(90); - if (lookahead == '>') - ADVANCE(91); - if (lookahead == '[') - ADVANCE(69); + ADVANCE(72); + if (lookahead == '&') + ADVANCE(99); + if (lookahead == ';') + ADVANCE(34); if (lookahead == '\\') - ADVANCE(128); - if (lookahead == ']') - ADVANCE(69); - if (lookahead == '`') - ADVANCE(52); - if (lookahead == '{') - ADVANCE(69); - if (lookahead == '}') - ADVANCE(69); + SKIP(128); + if (lookahead == '|') + ADVANCE(67); if (lookahead == '\t' || - lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(127); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(5); END_STATE(); case 128: if (lookahead == '\t' || @@ -2577,10 +2549,162 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\r' || lookahead == ' ') SKIP(127); + END_STATE(); + case 129: + if (lookahead == 0) + ADVANCE(1); + if (lookahead == '\n') + ADVANCE(2); + if (lookahead == '\"') + ADVANCE(6); + if (lookahead == '#') + ADVANCE(72); + if (lookahead == '$') + ADVANCE(8); + if (lookahead == '&') + ADVANCE(12); + if (lookahead == '\'') + ADVANCE(16); + if (lookahead == ';') + ADVANCE(34); + if (lookahead == '<') + ADVANCE(74); + if (lookahead == '>') + ADVANCE(75); + if (lookahead == '[') + ADVANCE(77); + if (lookahead == '\\') + ADVANCE(130); + if (lookahead == ']') + ADVANCE(77); + if (lookahead == '`') + ADVANCE(59); + if (lookahead == '{') + ADVANCE(77); + if (lookahead == '|') + ADVANCE(67); + if (lookahead == '}') + ADVANCE(77); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(129); + if ((lookahead < '&' || lookahead > ')')) + ADVANCE(5); + END_STATE(); + case 130: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(129); if (lookahead != 0) ADVANCE(5); END_STATE(); - case 129: + case 131: + if (lookahead == 0) + ADVANCE(1); + if (lookahead == '\n') + ADVANCE(2); + if (lookahead == '\"') + ADVANCE(6); + if (lookahead == '#') + ADVANCE(72); + if (lookahead == '$') + ADVANCE(8); + if (lookahead == '&') + ADVANCE(12); + if (lookahead == '\'') + ADVANCE(16); + if (lookahead == ')') + ADVANCE(20); + if (lookahead == ';') + ADVANCE(34); + if (lookahead == '<') + ADVANCE(103); + if (lookahead == '=') + ADVANCE(104); + if (lookahead == '>') + ADVANCE(75); + if (lookahead == '[') + ADVANCE(77); + if (lookahead == '\\') + ADVANCE(132); + if (lookahead == ']') + ADVANCE(77); + if (lookahead == '`') + ADVANCE(59); + if (lookahead == '{') + ADVANCE(77); + if (lookahead == '|') + ADVANCE(67); + if (lookahead == '}') + ADVANCE(77); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(131); + if ((lookahead < '&' || lookahead > ')')) + ADVANCE(5); + END_STATE(); + case 132: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(131); + if (lookahead != 0) + ADVANCE(5); + END_STATE(); + case 133: + if (lookahead == '\"') + ADVANCE(6); + if (lookahead == '#') + ADVANCE(72); + if (lookahead == '$') + ADVANCE(8); + if (lookahead == '\'') + ADVANCE(16); + if (lookahead == '(') + ADVANCE(89); + if (lookahead == '<') + ADVANCE(91); + if (lookahead == '>') + ADVANCE(92); + if (lookahead == '[') + ADVANCE(77); + if (lookahead == '\\') + ADVANCE(134); + if (lookahead == ']') + ADVANCE(77); + if (lookahead == '`') + ADVANCE(59); + if (lookahead == '{') + ADVANCE(77); + if (lookahead == '}') + ADVANCE(77); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(133); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(5); + END_STATE(); + case 134: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(133); + if (lookahead != 0) + ADVANCE(5); + END_STATE(); + case 135: if (lookahead == '\n') ADVANCE(2); if (lookahead == '!') @@ -2588,157 +2712,73 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\"') ADVANCE(6); if (lookahead == '#') - ADVANCE(65); + ADVANCE(72); if (lookahead == '$') ADVANCE(8); if (lookahead == '&') - ADVANCE(130); + ADVANCE(136); if (lookahead == '\'') ADVANCE(16); if (lookahead == '(') - ADVANCE(18); + ADVANCE(89); if (lookahead == '-') - ADVANCE(88); - if (lookahead == ';') - ADVANCE(29); - if (lookahead == '<') ADVANCE(90); - if (lookahead == '>') + if (lookahead == ';') + ADVANCE(34); + if (lookahead == '<') ADVANCE(91); + if (lookahead == '>') + ADVANCE(92); if (lookahead == '[') - ADVANCE(69); + ADVANCE(77); if (lookahead == '\\') - ADVANCE(131); + ADVANCE(137); if (lookahead == ']') - ADVANCE(69); + ADVANCE(77); if (lookahead == '`') - ADVANCE(52); + ADVANCE(59); if (lookahead == '{') - ADVANCE(69); + ADVANCE(77); if (lookahead == '}') - ADVANCE(69); + ADVANCE(77); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(129); + SKIP(135); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && (lookahead < '{' || lookahead > '}')) ADVANCE(5); END_STATE(); - case 130: - ACCEPT_TOKEN(anon_sym_AMP); - END_STATE(); - case 131: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(129); - if (lookahead != 0) - ADVANCE(5); - END_STATE(); - case 132: - if (lookahead == '\n') - ADVANCE(2); - if (lookahead == '#') - ADVANCE(65); - if (lookahead == '&') - ADVANCE(130); - if (lookahead == ';') - ADVANCE(29); - if (lookahead == '\\') - SKIP(133); - if (lookahead == 'i') - ADVANCE(134); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - SKIP(132); - END_STATE(); - case 133: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(132); - END_STATE(); - case 134: - if (lookahead == 'n') - ADVANCE(135); - END_STATE(); - case 135: - ACCEPT_TOKEN(anon_sym_in); - END_STATE(); case 136: - if (lookahead == '#') - ADVANCE(65); - if (lookahead == '(') - ADVANCE(18); - if (lookahead == '\\') - SKIP(137); - if (lookahead == '{') - ADVANCE(59); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(136); + ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); case 137: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(136); + SKIP(135); + if (lookahead != 0) + ADVANCE(5); END_STATE(); case 138: - if (lookahead == 0) - ADVANCE(1); if (lookahead == '\n') ADVANCE(2); - if (lookahead == '\"') - ADVANCE(6); if (lookahead == '#') - ADVANCE(65); - if (lookahead == '$') - ADVANCE(8); + ADVANCE(72); if (lookahead == '&') - ADVANCE(94); - if (lookahead == '\'') - ADVANCE(16); - if (lookahead == ')') - ADVANCE(19); + ADVANCE(136); if (lookahead == ';') - ADVANCE(29); - if (lookahead == '<') - ADVANCE(90); - if (lookahead == '>') - ADVANCE(91); - if (lookahead == '[') - ADVANCE(69); + ADVANCE(34); if (lookahead == '\\') - ADVANCE(139); - if (lookahead == ']') - ADVANCE(69); - if (lookahead == '`') - ADVANCE(52); - if (lookahead == '{') - ADVANCE(69); - if (lookahead == '|') - ADVANCE(60); - if (lookahead == '}') - ADVANCE(69); + SKIP(139); + if (lookahead == 'i') + ADVANCE(140); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(138); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) - ADVANCE(96); - if ((lookahead < '&' || lookahead > ')')) - ADVANCE(5); END_STATE(); case 139: if (lookahead == '\t' || @@ -2746,16 +2786,213 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\r' || lookahead == ' ') SKIP(138); - if (lookahead != 0) - ADVANCE(5); END_STATE(); case 140: + if (lookahead == 'n') + ADVANCE(141); + END_STATE(); + case 141: + ACCEPT_TOKEN(anon_sym_in); + END_STATE(); + case 142: + if (lookahead == '!') + ADVANCE(143); + if (lookahead == '#') + ADVANCE(72); + if (lookahead == '&') + ADVANCE(145); + if (lookahead == ')') + ADVANCE(146); + if (lookahead == '+') + ADVANCE(148); + if (lookahead == '-') + ADVANCE(150); + if (lookahead == '<') + ADVANCE(154); + if (lookahead == '=') + ADVANCE(155); + if (lookahead == '>') + ADVANCE(158); + if (lookahead == '\\') + SKIP(159); + if (lookahead == '|') + ADVANCE(160); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(142); + END_STATE(); + case 143: + if (lookahead == '=') + ADVANCE(144); + END_STATE(); + case 144: + ACCEPT_TOKEN(anon_sym_BANG_EQ); + END_STATE(); + case 145: + if (lookahead == '&') + ADVANCE(13); + END_STATE(); + case 146: + if (lookahead == ')') + ADVANCE(147); + END_STATE(); + case 147: + ACCEPT_TOKEN(anon_sym_RPAREN_RPAREN); + END_STATE(); + case 148: + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') + ADVANCE(149); + if (lookahead == '=') + ADVANCE(80); + END_STATE(); + case 149: + ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + END_STATE(); + case 150: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') + ADVANCE(151); + if (lookahead == '=') + ADVANCE(152); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(153); + END_STATE(); + case 151: + ACCEPT_TOKEN(anon_sym_DASH_DASH); + END_STATE(); + case 152: + ACCEPT_TOKEN(anon_sym_DASH_EQ); + END_STATE(); + case 153: + ACCEPT_TOKEN(sym_test_operator); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(153); + END_STATE(); + case 154: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '=') + ADVANCE(42); + END_STATE(); + case 155: + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') + ADVANCE(156); + if (lookahead == '~') + ADVANCE(157); + END_STATE(); + case 156: + ACCEPT_TOKEN(anon_sym_EQ_EQ); + END_STATE(); + case 157: + ACCEPT_TOKEN(anon_sym_EQ_TILDE); + END_STATE(); + case 158: + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') + ADVANCE(49); + END_STATE(); + case 159: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(142); + END_STATE(); + case 160: + if (lookahead == '|') + ADVANCE(69); + END_STATE(); + case 161: + if (lookahead == '#') + ADVANCE(72); + if (lookahead == '(') + ADVANCE(89); + if (lookahead == '\\') + SKIP(162); + if (lookahead == '{') + ADVANCE(66); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(161); + END_STATE(); + case 162: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(161); + END_STATE(); + case 163: + if (lookahead == 0) + ADVANCE(1); if (lookahead == '\n') ADVANCE(2); if (lookahead == '\"') ADVANCE(6); if (lookahead == '#') - ADVANCE(65); + ADVANCE(72); + if (lookahead == '$') + ADVANCE(8); + if (lookahead == '&') + ADVANCE(99); + if (lookahead == '\'') + ADVANCE(16); + if (lookahead == ')') + ADVANCE(20); + if (lookahead == ';') + ADVANCE(34); + if (lookahead == '<') + ADVANCE(91); + if (lookahead == '>') + ADVANCE(92); + if (lookahead == '[') + ADVANCE(77); + if (lookahead == '\\') + ADVANCE(164); + if (lookahead == ']') + ADVANCE(77); + if (lookahead == '`') + ADVANCE(59); + if (lookahead == '{') + ADVANCE(77); + if (lookahead == '|') + ADVANCE(67); + if (lookahead == '}') + ADVANCE(77); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(163); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) + ADVANCE(101); + if ((lookahead < '&' || lookahead > ')')) + ADVANCE(5); + END_STATE(); + case 164: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(163); + if (lookahead != 0) + ADVANCE(5); + END_STATE(); + case 165: + if (lookahead == '\n') + ADVANCE(2); + if (lookahead == '\"') + ADVANCE(6); + if (lookahead == '#') + ADVANCE(72); if (lookahead == '$') ADVANCE(8); if (lookahead == '&') @@ -2763,48 +3000,48 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\'') ADVANCE(16); if (lookahead == '(') - ADVANCE(18); + ADVANCE(89); if (lookahead == ')') - ADVANCE(19); + ADVANCE(20); if (lookahead == ';') - ADVANCE(29); + ADVANCE(34); if (lookahead == '<') - ADVANCE(31); + ADVANCE(103); if (lookahead == '=') - ADVANCE(98); + ADVANCE(104); if (lookahead == '>') - ADVANCE(40); + ADVANCE(75); if (lookahead == '[') - ADVANCE(69); + ADVANCE(77); if (lookahead == '\\') - ADVANCE(141); + ADVANCE(166); if (lookahead == ']') - ADVANCE(69); + ADVANCE(77); if (lookahead == '`') - ADVANCE(52); + ADVANCE(59); if (lookahead == '{') - ADVANCE(69); + ADVANCE(77); if (lookahead == '|') - ADVANCE(60); + ADVANCE(67); if (lookahead == '}') - ADVANCE(69); + ADVANCE(77); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(140); + SKIP(165); if (lookahead != 0) ADVANCE(5); END_STATE(); - case 141: + case 166: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(140); + SKIP(165); if (lookahead != 0) ADVANCE(5); END_STATE(); - case 142: + case 167: if (lookahead == 0) ADVANCE(1); if (lookahead == '\n') @@ -2812,7 +3049,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\"') ADVANCE(6); if (lookahead == '#') - ADVANCE(65); + ADVANCE(72); if (lookahead == '$') ADVANCE(8); if (lookahead == '&') @@ -2820,355 +3057,314 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\'') ADVANCE(16); if (lookahead == ')') - ADVANCE(19); + ADVANCE(20); if (lookahead == ';') - ADVANCE(29); + ADVANCE(34); if (lookahead == '<') - ADVANCE(67); + ADVANCE(74); if (lookahead == '>') - ADVANCE(40); + ADVANCE(75); if (lookahead == '[') - ADVANCE(69); + ADVANCE(77); if (lookahead == '\\') - ADVANCE(143); + ADVANCE(168); if (lookahead == ']') - ADVANCE(69); + ADVANCE(77); if (lookahead == '`') - ADVANCE(52); + ADVANCE(59); if (lookahead == '{') - ADVANCE(69); + ADVANCE(77); if (lookahead == '|') - ADVANCE(60); + ADVANCE(67); if (lookahead == '}') - ADVANCE(69); + ADVANCE(77); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(142); + SKIP(167); if ((lookahead < '&' || lookahead > ')')) ADVANCE(5); END_STATE(); - case 143: + case 168: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(142); + SKIP(167); if (lookahead != 0) ADVANCE(5); END_STATE(); - case 144: + case 169: if (lookahead == 0) ADVANCE(1); if (lookahead == '\n') ADVANCE(2); if (lookahead == '#') - ADVANCE(65); + ADVANCE(72); if (lookahead == '&') - ADVANCE(94); + ADVANCE(99); if (lookahead == ')') - ADVANCE(19); + ADVANCE(20); if (lookahead == ';') - ADVANCE(29); + ADVANCE(34); if (lookahead == '\\') - SKIP(145); + SKIP(170); if (lookahead == '`') - ADVANCE(52); + ADVANCE(59); if (lookahead == 'e') - ADVANCE(146); + ADVANCE(171); if (lookahead == '|') - ADVANCE(60); + ADVANCE(67); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(144); + SKIP(169); END_STATE(); - case 145: + case 170: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(144); + SKIP(169); END_STATE(); - case 146: + case 171: if (lookahead == 's') - ADVANCE(147); + ADVANCE(172); END_STATE(); - case 147: + case 172: if (lookahead == 'a') - ADVANCE(148); + ADVANCE(173); END_STATE(); - case 148: + case 173: if (lookahead == 'c') - ADVANCE(149); + ADVANCE(174); END_STATE(); - case 149: + case 174: ACCEPT_TOKEN(anon_sym_esac); END_STATE(); - case 150: + case 175: if (lookahead == '!') - ADVANCE(151); + ADVANCE(143); if (lookahead == '#') - ADVANCE(65); + ADVANCE(72); if (lookahead == '&') - ADVANCE(153); + ADVANCE(145); + if (lookahead == '+') + ADVANCE(148); if (lookahead == '-') - ADVANCE(154); + ADVANCE(150); if (lookahead == '<') - ADVANCE(156); + ADVANCE(154); if (lookahead == '=') - ADVANCE(157); + ADVANCE(155); if (lookahead == '>') - ADVANCE(160); - if (lookahead == '\\') - SKIP(161); - if (lookahead == ']') - ADVANCE(162); - if (lookahead == '|') - ADVANCE(163); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(150); - END_STATE(); - case 151: - if (lookahead == '=') - ADVANCE(152); - END_STATE(); - case 152: - ACCEPT_TOKEN(anon_sym_BANG_EQ); - END_STATE(); - case 153: - if (lookahead == '&') - ADVANCE(13); - END_STATE(); - case 154: - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(155); - END_STATE(); - case 155: - ACCEPT_TOKEN(sym_test_operator); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(155); - END_STATE(); - case 156: - ACCEPT_TOKEN(anon_sym_LT); - END_STATE(); - case 157: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(158); - if (lookahead == '~') - ADVANCE(159); - END_STATE(); - case 158: - ACCEPT_TOKEN(anon_sym_EQ_EQ); - END_STATE(); - case 159: - ACCEPT_TOKEN(anon_sym_EQ_TILDE); - END_STATE(); - case 160: - ACCEPT_TOKEN(anon_sym_GT); - END_STATE(); - case 161: + if (lookahead == '\\') + SKIP(176); + if (lookahead == ']') + ADVANCE(177); + if (lookahead == '|') + ADVANCE(160); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(150); + SKIP(175); END_STATE(); - case 162: + case 176: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(175); + END_STATE(); + case 177: ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); - case 163: - if (lookahead == '|') - ADVANCE(62); - END_STATE(); - case 164: + case 178: if (lookahead == '!') - ADVANCE(151); + ADVANCE(143); if (lookahead == '#') - ADVANCE(65); + ADVANCE(72); if (lookahead == '&') - ADVANCE(153); + ADVANCE(145); + if (lookahead == '+') + ADVANCE(148); if (lookahead == '-') - ADVANCE(154); + ADVANCE(150); if (lookahead == '<') - ADVANCE(156); + ADVANCE(154); if (lookahead == '=') - ADVANCE(157); + ADVANCE(155); if (lookahead == '>') - ADVANCE(160); + ADVANCE(158); if (lookahead == '\\') - SKIP(165); + SKIP(179); if (lookahead == ']') - ADVANCE(166); + ADVANCE(180); if (lookahead == '|') - ADVANCE(163); + ADVANCE(160); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(164); + SKIP(178); END_STATE(); - case 165: + case 179: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(164); + SKIP(178); END_STATE(); - case 166: + case 180: if (lookahead == ']') - ADVANCE(50); + ADVANCE(57); END_STATE(); - case 167: + case 181: if (lookahead == '\"') ADVANCE(6); if (lookahead == '#') ADVANCE(7); if (lookahead == '$') - ADVANCE(109); + ADVANCE(115); if (lookahead == '*') - ADVANCE(110); + ADVANCE(116); if (lookahead == '-') - ADVANCE(111); + ADVANCE(117); if (lookahead == '0') - ADVANCE(168); + ADVANCE(182); if (lookahead == '?') - ADVANCE(113); + ADVANCE(119); if (lookahead == '@') - ADVANCE(114); + ADVANCE(120); if (lookahead == '\\') - ADVANCE(170); + ADVANCE(184); if (lookahead == '_') - ADVANCE(172); + ADVANCE(186); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - ADVANCE(171); + ADVANCE(185); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(169); + ADVANCE(183); if (lookahead != 0 && (lookahead < '_' || lookahead > 'z')) - ADVANCE(102); + ADVANCE(108); END_STATE(); - case 168: + case 182: ACCEPT_TOKEN(anon_sym_0); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(169); + ADVANCE(183); END_STATE(); - case 169: + case 183: ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(169); + ADVANCE(183); END_STATE(); - case 170: + case 184: ACCEPT_TOKEN(sym__string_content); if (lookahead == '\n') - ADVANCE(171); + ADVANCE(185); if (lookahead == '\\') - ADVANCE(103); + ADVANCE(109); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - ADVANCE(171); + ADVANCE(185); if (lookahead == '\"' || lookahead == '$' || lookahead == '`') - ADVANCE(102); + ADVANCE(108); if (lookahead != 0) - ADVANCE(102); + ADVANCE(108); END_STATE(); - case 171: + case 185: ACCEPT_TOKEN(sym__string_content); if (lookahead == '#') ADVANCE(7); if (lookahead == '*') - ADVANCE(110); + ADVANCE(116); if (lookahead == '-') - ADVANCE(111); + ADVANCE(117); if (lookahead == '0') - ADVANCE(168); + ADVANCE(182); if (lookahead == '?') - ADVANCE(113); + ADVANCE(119); if (lookahead == '@') - ADVANCE(114); + ADVANCE(120); if (lookahead == '\\') - ADVANCE(170); + ADVANCE(184); if (lookahead == '_') - ADVANCE(172); + ADVANCE(186); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - ADVANCE(171); + ADVANCE(185); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(169); + ADVANCE(183); if (lookahead != 0 && (lookahead < '\"' || lookahead > '$') && (lookahead < '_' || lookahead > 'z')) - ADVANCE(102); + ADVANCE(108); END_STATE(); - case 172: + case 186: ACCEPT_TOKEN(anon_sym__); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(169); + ADVANCE(183); END_STATE(); - case 173: + case 187: if (lookahead == '#') - ADVANCE(65); + ADVANCE(72); if (lookahead == '$') - ADVANCE(109); + ADVANCE(115); if (lookahead == '*') - ADVANCE(110); - if (lookahead == '-') - ADVANCE(111); - if (lookahead == '0') - ADVANCE(112); - if (lookahead == '?') - ADVANCE(113); - if (lookahead == '@') - ADVANCE(114); - if (lookahead == '\\') - SKIP(174); - if (lookahead == '_') ADVANCE(116); + if (lookahead == '-') + ADVANCE(117); + if (lookahead == '0') + ADVANCE(118); + if (lookahead == '?') + ADVANCE(119); + if (lookahead == '@') + ADVANCE(120); + if (lookahead == '\\') + SKIP(188); + if (lookahead == '_') + ADVANCE(122); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(173); + SKIP(187); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(80); + ADVANCE(87); END_STATE(); - case 174: + case 188: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(173); + SKIP(187); END_STATE(); - case 175: + case 189: if (lookahead == '\"') ADVANCE(6); if (lookahead == '#') @@ -3180,41 +3376,60 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\'') ADVANCE(16); if (lookahead == '-') - ADVANCE(23); + ADVANCE(190); if (lookahead == '/') - ADVANCE(24); + ADVANCE(29); if (lookahead == ':') - ADVANCE(26); + ADVANCE(31); if (lookahead == '<') - ADVANCE(90); - if (lookahead == '=') - ADVANCE(176); - if (lookahead == '>') ADVANCE(91); + if (lookahead == '=') + ADVANCE(191); + if (lookahead == '>') + ADVANCE(92); if (lookahead == '[') - ADVANCE(69); + ADVANCE(77); if (lookahead == '\\') - ADVANCE(177); + ADVANCE(192); if (lookahead == ']') - ADVANCE(69); + ADVANCE(77); if (lookahead == '`') - ADVANCE(52); + ADVANCE(59); if (lookahead == '{') - ADVANCE(69); + ADVANCE(77); if (lookahead == '}') - ADVANCE(63); + ADVANCE(70); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(175); + SKIP(189); if (lookahead != 0 && (lookahead < '\"' || lookahead > ')') && (lookahead < ':' || lookahead > '>') && (lookahead < '{' || lookahead > '}')) ADVANCE(5); END_STATE(); - case 176: + case 190: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '\\') + ADVANCE(4); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(5); + END_STATE(); + case 191: ACCEPT_TOKEN(anon_sym_EQ); if (lookahead == '\\') ADVANCE(4); @@ -3233,471 +3448,70 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(5); END_STATE(); - case 177: + case 192: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(175); + SKIP(189); if (lookahead != 0) ADVANCE(5); END_STATE(); - case 178: + case 193: if (lookahead == '#') - ADVANCE(65); + ADVANCE(72); if (lookahead == '$') - ADVANCE(179); + ADVANCE(194); if (lookahead == '\\') - SKIP(180); + SKIP(195); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(178); + SKIP(193); END_STATE(); - case 179: + case 194: ACCEPT_TOKEN(anon_sym_DOLLAR); if (lookahead == '{') ADVANCE(10); END_STATE(); - case 180: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(178); - END_STATE(); - case 181: - if (lookahead == '\"') - ADVANCE(6); - if (lookahead == '#') - ADVANCE(182); - if (lookahead == '$') - ADVANCE(184); - if (lookahead == '\'') - ADVANCE(189); - if (lookahead == '<') - ADVANCE(192); - if (lookahead == '>') - ADVANCE(194); - if (lookahead == '[') - ADVANCE(196); - if (lookahead == '\\') - ADVANCE(197); - if (lookahead == ']') - ADVANCE(196); - if (lookahead == '`') - ADVANCE(203); - if (lookahead == '{') - ADVANCE(196); - if (lookahead == '}') - ADVANCE(196); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(181); - if (('&' <= lookahead && lookahead <= ')') || - lookahead == ';' || - lookahead == '|') - ADVANCE(187); - if (lookahead != 0) - ADVANCE(200); - END_STATE(); - case 182: - ACCEPT_TOKEN(sym_regex); - if (lookahead == '\\') - ADVANCE(183); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(182); - END_STATE(); - case 183: - ACCEPT_TOKEN(sym_regex); - if (lookahead == '\\') - ADVANCE(183); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - ADVANCE(182); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n') - ADVANCE(182); - END_STATE(); - case 184: - ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '(') - ADVANCE(185); - if (lookahead == '\\') - ADVANCE(186); - if (lookahead == '{') - ADVANCE(188); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(187); - END_STATE(); - case 185: - ACCEPT_TOKEN(anon_sym_DOLLAR_LPAREN); - if (lookahead == '\\') - ADVANCE(186); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(187); - END_STATE(); - case 186: - ACCEPT_TOKEN(sym_regex); - if (lookahead == '\\') - ADVANCE(186); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - ADVANCE(187); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n') - ADVANCE(187); - END_STATE(); - case 187: - ACCEPT_TOKEN(sym_regex); - if (lookahead == '\\') - ADVANCE(186); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(187); - END_STATE(); - case 188: - ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACE); - if (lookahead == '\\') - ADVANCE(186); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(187); - END_STATE(); - case 189: - ACCEPT_TOKEN(sym_regex); - if (lookahead == '\'') - ADVANCE(190); - if (lookahead == '\\') - ADVANCE(191); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - ADVANCE(16); - if (lookahead != 0) - ADVANCE(189); - END_STATE(); - case 190: - ACCEPT_TOKEN(sym_raw_string); - if (lookahead == '\\') - ADVANCE(186); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(187); - END_STATE(); - case 191: - ACCEPT_TOKEN(sym_regex); - if (lookahead == '\n') - ADVANCE(16); - if (lookahead == '\'') - ADVANCE(190); - if (lookahead == '\\') - ADVANCE(191); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - ADVANCE(189); - if (lookahead != 0) - ADVANCE(189); - END_STATE(); - case 192: - ACCEPT_TOKEN(sym_regex); - if (lookahead == '(') - ADVANCE(193); - if (lookahead == '\\') - ADVANCE(186); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(187); - END_STATE(); - case 193: - ACCEPT_TOKEN(anon_sym_LT_LPAREN); - if (lookahead == '\\') - ADVANCE(186); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(187); - END_STATE(); - case 194: - ACCEPT_TOKEN(sym_regex); - if (lookahead == '(') - ADVANCE(195); - if (lookahead == '\\') - ADVANCE(186); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(187); - END_STATE(); case 195: - ACCEPT_TOKEN(anon_sym_GT_LPAREN); - if (lookahead == '\\') - ADVANCE(186); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(187); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(193); END_STATE(); case 196: - ACCEPT_TOKEN(sym_regex); - if (lookahead == '[') - ADVANCE(196); - if (lookahead == '\\') - ADVANCE(186); - if (lookahead == ']') - ADVANCE(196); - if (lookahead == '{') - ADVANCE(196); - if (lookahead == '}') - ADVANCE(196); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(187); - END_STATE(); - case 197: - ACCEPT_TOKEN(sym_regex); - if (lookahead == '\\') - ADVANCE(198); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - ADVANCE(201); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n') - ADVANCE(200); - END_STATE(); - case 198: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(199); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - ADVANCE(187); - if (('\"' <= lookahead && lookahead <= '$') || - ('&' <= lookahead && lookahead <= ')') || - lookahead == ';' || - lookahead == '<' || - lookahead == '>' || - ('[' <= lookahead && lookahead <= ']') || - lookahead == '`' || - ('{' <= lookahead && lookahead <= '}')) - ADVANCE(187); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n') - ADVANCE(200); - END_STATE(); - case 199: - ACCEPT_TOKEN(sym_regex); - if (lookahead == '\\') - ADVANCE(198); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - ADVANCE(187); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n') - ADVANCE(200); - END_STATE(); - case 200: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(199); - if (('\"' <= lookahead && lookahead <= '$') || - ('&' <= lookahead && lookahead <= ')') || - lookahead == ';' || - lookahead == '<' || - lookahead == '>' || - ('[' <= lookahead && lookahead <= ']') || - lookahead == '`' || - ('{' <= lookahead && lookahead <= '}')) - ADVANCE(187); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(200); - END_STATE(); - case 201: - ACCEPT_TOKEN(sym_regex); - if (lookahead == '\"') - ADVANCE(202); - if (lookahead == '#') - ADVANCE(182); - if (lookahead == '$') - ADVANCE(184); - if (lookahead == '\'') - ADVANCE(189); - if (lookahead == '<') - ADVANCE(192); - if (lookahead == '>') - ADVANCE(194); - if (lookahead == '[') - ADVANCE(196); - if (lookahead == '\\') - ADVANCE(197); - if (lookahead == ']') - ADVANCE(196); - if (lookahead == '`') - ADVANCE(203); - if (lookahead == '{') - ADVANCE(196); - if (lookahead == '}') - ADVANCE(196); - if (('&' <= lookahead && lookahead <= ')') || - lookahead == ';' || - lookahead == '|') - ADVANCE(187); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(200); - END_STATE(); - case 202: - ACCEPT_TOKEN(anon_sym_DQUOTE); - if (lookahead == '\\') - ADVANCE(186); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(187); - END_STATE(); - case 203: - ACCEPT_TOKEN(anon_sym_BQUOTE); - if (lookahead == '\\') - ADVANCE(186); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(187); - END_STATE(); - case 204: - if (lookahead == 0) - ADVANCE(1); - if (lookahead == '\n') - ADVANCE(2); - if (lookahead == '#') - ADVANCE(65); - if (lookahead == '&') - ADVANCE(12); - if (lookahead == ';') - ADVANCE(29); - if (lookahead == '<') - ADVANCE(205); - if (lookahead == '>') - ADVANCE(206); - if (lookahead == '\\') - SKIP(207); - if (lookahead == '|') - ADVANCE(60); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - SKIP(204); - END_STATE(); - case 205: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') - ADVANCE(32); - if (lookahead == '<') - ADVANCE(34); - END_STATE(); - case 206: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '&') - ADVANCE(41); - if (lookahead == '>') - ADVANCE(43); - END_STATE(); - case 207: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(204); - END_STATE(); - case 208: if (lookahead == '\"') ADVANCE(6); if (lookahead == '#') - ADVANCE(65); + ADVANCE(72); if (lookahead == '$') ADVANCE(8); if (lookahead == '\'') ADVANCE(16); if (lookahead == '<') - ADVANCE(90); - if (lookahead == '>') ADVANCE(91); + if (lookahead == '>') + ADVANCE(92); if (lookahead == '[') - ADVANCE(69); + ADVANCE(77); if (lookahead == '\\') - ADVANCE(209); + ADVANCE(197); if (lookahead == ']') - ADVANCE(162); + ADVANCE(77); if (lookahead == '`') - ADVANCE(52); + ADVANCE(59); if (lookahead == '{') - ADVANCE(69); + ADVANCE(77); if (lookahead == '}') - ADVANCE(69); + ADVANCE(77); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(208); + SKIP(196); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && lookahead != ';' && @@ -3705,53 +3519,257 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(5); END_STATE(); + case 197: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(196); + if (lookahead != 0) + ADVANCE(5); + END_STATE(); + case 198: + if (lookahead == 0) + ADVANCE(1); + if (lookahead == '\n') + ADVANCE(2); + if (lookahead == '#') + ADVANCE(72); + if (lookahead == '&') + ADVANCE(12); + if (lookahead == ';') + ADVANCE(34); + if (lookahead == '<') + ADVANCE(199); + if (lookahead == '>') + ADVANCE(200); + if (lookahead == '\\') + SKIP(201); + if (lookahead == '|') + ADVANCE(67); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(198); + END_STATE(); + case 199: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '&') + ADVANCE(37); + if (lookahead == '<') + ADVANCE(39); + END_STATE(); + case 200: + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '&') + ADVANCE(47); + if (lookahead == '>') + ADVANCE(50); + END_STATE(); + case 201: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(198); + END_STATE(); + case 202: + if (lookahead == '\"') + ADVANCE(6); + if (lookahead == '#') + ADVANCE(72); + if (lookahead == '$') + ADVANCE(8); + if (lookahead == '\'') + ADVANCE(16); + if (lookahead == '<') + ADVANCE(91); + if (lookahead == '>') + ADVANCE(92); + if (lookahead == '[') + ADVANCE(77); + if (lookahead == '\\') + ADVANCE(203); + if (lookahead == ']') + ADVANCE(177); + if (lookahead == '`') + ADVANCE(59); + if (lookahead == '{') + ADVANCE(77); + if (lookahead == '}') + ADVANCE(77); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(202); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(5); + END_STATE(); + case 203: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(202); + if (lookahead != 0) + ADVANCE(5); + END_STATE(); + case 204: + if (lookahead == '\"') + ADVANCE(6); + if (lookahead == '#') + ADVANCE(72); + if (lookahead == '$') + ADVANCE(8); + if (lookahead == '\'') + ADVANCE(16); + if (lookahead == ')') + ADVANCE(20); + if (lookahead == '<') + ADVANCE(91); + if (lookahead == '>') + ADVANCE(92); + if (lookahead == '[') + ADVANCE(77); + if (lookahead == '\\') + ADVANCE(205); + if (lookahead == ']') + ADVANCE(77); + if (lookahead == '`') + ADVANCE(59); + if (lookahead == '{') + ADVANCE(77); + if (lookahead == '}') + ADVANCE(77); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(204); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(5); + END_STATE(); + case 205: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(204); + if (lookahead != 0) + ADVANCE(5); + END_STATE(); + case 206: + if (lookahead == '\n') + ADVANCE(2); + if (lookahead == '!') + ADVANCE(143); + if (lookahead == '#') + ADVANCE(72); + if (lookahead == '&') + ADVANCE(99); + if (lookahead == '+') + ADVANCE(148); + if (lookahead == '-') + ADVANCE(150); + if (lookahead == ';') + ADVANCE(34); + if (lookahead == '<') + ADVANCE(154); + if (lookahead == '=') + ADVANCE(155); + if (lookahead == '>') + ADVANCE(158); + if (lookahead == '\\') + SKIP(207); + if (lookahead == '|') + ADVANCE(160); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(206); + END_STATE(); + case 207: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(206); + END_STATE(); + case 208: + if (lookahead == '!') + ADVANCE(143); + if (lookahead == '#') + ADVANCE(72); + if (lookahead == '&') + ADVANCE(145); + if (lookahead == ')') + ADVANCE(20); + if (lookahead == '+') + ADVANCE(148); + if (lookahead == '-') + ADVANCE(150); + if (lookahead == '<') + ADVANCE(154); + if (lookahead == '=') + ADVANCE(155); + if (lookahead == '>') + ADVANCE(158); + if (lookahead == '\\') + SKIP(209); + if (lookahead == '|') + ADVANCE(160); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(208); + END_STATE(); case 209: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(208); - if (lookahead != 0) - ADVANCE(5); END_STATE(); case 210: - if (lookahead == '\"') - ADVANCE(6); + if (lookahead == '!') + ADVANCE(143); if (lookahead == '#') - ADVANCE(65); - if (lookahead == '$') - ADVANCE(8); - if (lookahead == '\'') - ADVANCE(16); + ADVANCE(72); + if (lookahead == '&') + ADVANCE(145); if (lookahead == ')') - ADVANCE(19); + ADVANCE(146); + if (lookahead == '+') + ADVANCE(148); + if (lookahead == '-') + ADVANCE(150); if (lookahead == '<') - ADVANCE(90); + ADVANCE(154); + if (lookahead == '=') + ADVANCE(155); if (lookahead == '>') - ADVANCE(91); - if (lookahead == '[') - ADVANCE(69); + ADVANCE(158); if (lookahead == '\\') - ADVANCE(211); + SKIP(211); if (lookahead == ']') - ADVANCE(69); - if (lookahead == '`') - ADVANCE(52); - if (lookahead == '{') - ADVANCE(69); - if (lookahead == '}') - ADVANCE(69); + ADVANCE(180); + if (lookahead == '|') + ADVANCE(160); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(210); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(5); END_STATE(); case 211: if (lookahead == '\t' || @@ -3759,36 +3777,49 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\r' || lookahead == ' ') SKIP(210); - if (lookahead != 0) - ADVANCE(5); END_STATE(); case 212: - if (lookahead == '\n') - ADVANCE(2); if (lookahead == '!') - ADVANCE(151); + ADVANCE(3); + if (lookahead == '\"') + ADVANCE(6); if (lookahead == '#') - ADVANCE(65); + ADVANCE(72); + if (lookahead == '$') + ADVANCE(8); if (lookahead == '&') - ADVANCE(94); - if (lookahead == '-') - ADVANCE(154); - if (lookahead == ';') - ADVANCE(29); + ADVANCE(73); + if (lookahead == '\'') + ADVANCE(16); + if (lookahead == '(') + ADVANCE(18); if (lookahead == '<') - ADVANCE(156); - if (lookahead == '=') - ADVANCE(157); + ADVANCE(74); if (lookahead == '>') - ADVANCE(160); + ADVANCE(75); + if (lookahead == '[') + ADVANCE(53); if (lookahead == '\\') - SKIP(213); - if (lookahead == '|') - ADVANCE(163); + ADVANCE(213); + if (lookahead == ']') + ADVANCE(77); + if (lookahead == '`') + ADVANCE(59); + if (lookahead == '{') + ADVANCE(77); + if (lookahead == '}') + ADVANCE(70); if (lookahead == '\t' || + lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(212); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(5); END_STATE(); case 213: if (lookahead == '\t' || @@ -3796,175 +3827,169 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\r' || lookahead == ' ') SKIP(212); - END_STATE(); - case 214: - if (lookahead == '!') - ADVANCE(3); - if (lookahead == '\"') - ADVANCE(6); - if (lookahead == '#') - ADVANCE(65); - if (lookahead == '$') - ADVANCE(8); - if (lookahead == '&') - ADVANCE(66); - if (lookahead == '\'') - ADVANCE(16); - if (lookahead == '(') - ADVANCE(18); - if (lookahead == '<') - ADVANCE(67); - if (lookahead == '>') - ADVANCE(40); - if (lookahead == '[') - ADVANCE(46); - if (lookahead == '\\') - ADVANCE(215); - if (lookahead == ']') - ADVANCE(69); - if (lookahead == '`') - ADVANCE(52); - if (lookahead == '{') - ADVANCE(69); - if (lookahead == '}') - ADVANCE(63); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(214); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(5); - END_STATE(); - case 215: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(214); if (lookahead != 0) ADVANCE(5); END_STATE(); - case 216: + case 214: if (lookahead == 0) ADVANCE(1); if (lookahead == '\n') ADVANCE(2); if (lookahead == '#') - ADVANCE(65); + ADVANCE(72); if (lookahead == '&') ADVANCE(12); if (lookahead == ';') - ADVANCE(29); + ADVANCE(34); if (lookahead == '<') - ADVANCE(217); + ADVANCE(215); if (lookahead == '>') - ADVANCE(206); + ADVANCE(200); if (lookahead == '\\') - SKIP(218); + SKIP(216); if (lookahead == '|') - ADVANCE(60); + ADVANCE(67); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(216); + SKIP(214); END_STATE(); - case 217: + case 215: ACCEPT_TOKEN(anon_sym_LT); if (lookahead == '&') - ADVANCE(32); + ADVANCE(37); END_STATE(); - case 218: + case 216: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(216); + SKIP(214); END_STATE(); - case 219: + case 217: if (lookahead == '!') ADVANCE(3); if (lookahead == '\"') ADVANCE(6); if (lookahead == '#') - ADVANCE(65); + ADVANCE(72); if (lookahead == '$') ADVANCE(8); if (lookahead == '&') - ADVANCE(66); + ADVANCE(73); if (lookahead == '\'') ADVANCE(16); if (lookahead == '(') ADVANCE(18); if (lookahead == ')') - ADVANCE(19); + ADVANCE(20); if (lookahead == ';') - ADVANCE(220); + ADVANCE(218); if (lookahead == '<') - ADVANCE(67); + ADVANCE(74); if (lookahead == '>') - ADVANCE(40); + ADVANCE(75); if (lookahead == '[') - ADVANCE(46); + ADVANCE(53); if (lookahead == '\\') - ADVANCE(221); + ADVANCE(219); if (lookahead == ']') - ADVANCE(69); + ADVANCE(77); if (lookahead == '`') - ADVANCE(52); + ADVANCE(59); if (lookahead == '{') - ADVANCE(69); + ADVANCE(77); if (lookahead == '}') - ADVANCE(69); + ADVANCE(77); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(219); + SKIP(217); if (lookahead != 0 && (lookahead < '{' || lookahead > '}')) ADVANCE(5); END_STATE(); - case 220: + case 218: if (lookahead == ';') - ADVANCE(30); + ADVANCE(35); + END_STATE(); + case 219: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(217); + if (lookahead != 0) + ADVANCE(5); + END_STATE(); + case 220: + if (lookahead == '\n') + ADVANCE(2); + if (lookahead == '#') + ADVANCE(72); + if (lookahead == '&') + ADVANCE(12); + if (lookahead == ')') + ADVANCE(20); + if (lookahead == ';') + ADVANCE(34); + if (lookahead == '<') + ADVANCE(199); + if (lookahead == '>') + ADVANCE(200); + if (lookahead == '\\') + SKIP(221); + if (lookahead == '|') + ADVANCE(67); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(220); END_STATE(); case 221: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(219); - if (lookahead != 0) - ADVANCE(5); + SKIP(220); END_STATE(); case 222: - if (lookahead == '\n') - ADVANCE(2); + if (lookahead == '\"') + ADVANCE(6); if (lookahead == '#') - ADVANCE(65); - if (lookahead == '&') - ADVANCE(12); - if (lookahead == ')') - ADVANCE(19); - if (lookahead == ';') - ADVANCE(29); + ADVANCE(72); + if (lookahead == '$') + ADVANCE(8); + if (lookahead == '\'') + ADVANCE(16); if (lookahead == '<') - ADVANCE(205); + ADVANCE(91); if (lookahead == '>') - ADVANCE(206); + ADVANCE(92); + if (lookahead == '[') + ADVANCE(77); if (lookahead == '\\') - SKIP(223); - if (lookahead == '|') - ADVANCE(60); + ADVANCE(223); + if (lookahead == ']') + ADVANCE(77); + if (lookahead == '`') + ADVANCE(59); + if (lookahead == '{') + ADVANCE(77); + if (lookahead == '}') + ADVANCE(70); if (lookahead == '\t' || + lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(222); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(5); END_STATE(); case 223: if (lookahead == '\t' || @@ -3972,33 +3997,52 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\r' || lookahead == ' ') SKIP(222); + if (lookahead != 0) + ADVANCE(5); END_STATE(); case 224: - if (lookahead == '!') - ADVANCE(151); + if (lookahead == '\"') + ADVANCE(6); if (lookahead == '#') - ADVANCE(65); - if (lookahead == '&') - ADVANCE(153); - if (lookahead == ')') - ADVANCE(19); + ADVANCE(7); + if (lookahead == '$') + ADVANCE(8); + if (lookahead == '%') + ADVANCE(11); + if (lookahead == '\'') + ADVANCE(16); if (lookahead == '-') - ADVANCE(154); + ADVANCE(190); + if (lookahead == ':') + ADVANCE(31); if (lookahead == '<') - ADVANCE(156); + ADVANCE(91); if (lookahead == '=') - ADVANCE(157); + ADVANCE(191); if (lookahead == '>') - ADVANCE(160); + ADVANCE(92); + if (lookahead == '[') + ADVANCE(77); if (lookahead == '\\') - SKIP(225); - if (lookahead == '|') - ADVANCE(163); + ADVANCE(225); + if (lookahead == ']') + ADVANCE(77); + if (lookahead == '`') + ADVANCE(59); + if (lookahead == '{') + ADVANCE(77); + if (lookahead == '}') + ADVANCE(70); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(224); + if (lookahead != 0 && + (lookahead < '\"' || lookahead > ')') && + (lookahead < ':' || lookahead > '>') && + (lookahead < '{' || lookahead > '}')) + ADVANCE(5); END_STATE(); case 225: if (lookahead == '\t' || @@ -4006,241 +4050,229 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\r' || lookahead == ' ') SKIP(224); + if (lookahead != 0) + ADVANCE(5); END_STATE(); case 226: - if (lookahead == '!') - ADVANCE(227); - if (lookahead == '\"') - ADVANCE(6); + if (lookahead == '\n') + ADVANCE(2); if (lookahead == '#') - ADVANCE(182); - if (lookahead == '$') - ADVANCE(184); - if (lookahead == '\'') - ADVANCE(189); - if (lookahead == '(') - ADVANCE(228); - if (lookahead == '-') - ADVANCE(229); + ADVANCE(72); + if (lookahead == '&') + ADVANCE(12); + if (lookahead == ';') + ADVANCE(34); if (lookahead == '<') - ADVANCE(192); + ADVANCE(199); if (lookahead == '>') - ADVANCE(194); - if (lookahead == '[') - ADVANCE(196); + ADVANCE(200); if (lookahead == '\\') - ADVANCE(231); - if (lookahead == ']') - ADVANCE(196); + SKIP(227); if (lookahead == '`') - ADVANCE(203); - if (lookahead == '{') - ADVANCE(196); - if (lookahead == '}') - ADVANCE(196); + ADVANCE(59); + if (lookahead == '|') + ADVANCE(67); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(226); + END_STATE(); + case 227: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(226); - if (('&' <= lookahead && lookahead <= ')') || - lookahead == ';' || - lookahead == '|') - ADVANCE(187); - if (lookahead != 0) - ADVANCE(200); - END_STATE(); - case 227: - ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '\\') - ADVANCE(199); - if (('\"' <= lookahead && lookahead <= '$') || - ('&' <= lookahead && lookahead <= ')') || - lookahead == ';' || - lookahead == '<' || - lookahead == '>' || - ('[' <= lookahead && lookahead <= ']') || - lookahead == '`' || - ('{' <= lookahead && lookahead <= '}')) - ADVANCE(187); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(200); END_STATE(); case 228: - ACCEPT_TOKEN(anon_sym_LPAREN); + if (lookahead == 0) + ADVANCE(1); + if (lookahead == '\n') + ADVANCE(2); + if (lookahead == '#') + ADVANCE(72); + if (lookahead == '&') + ADVANCE(12); + if (lookahead == ')') + ADVANCE(20); + if (lookahead == ';') + ADVANCE(34); + if (lookahead == '<') + ADVANCE(199); + if (lookahead == '>') + ADVANCE(200); if (lookahead == '\\') - ADVANCE(186); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(187); + SKIP(229); + if (lookahead == '`') + ADVANCE(59); + if (lookahead == 'e') + ADVANCE(171); + if (lookahead == '|') + ADVANCE(67); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(228); END_STATE(); case 229: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(199); - if (('\"' <= lookahead && lookahead <= '$') || - ('&' <= lookahead && lookahead <= ')') || - lookahead == ';' || - lookahead == '<' || - lookahead == '>' || - ('[' <= lookahead && lookahead <= ']') || - lookahead == '`' || - ('{' <= lookahead && lookahead <= '}')) - ADVANCE(187); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(230); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(200); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(228); END_STATE(); case 230: - ACCEPT_TOKEN(sym_test_operator); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(230); + if (lookahead == '#') + ADVANCE(72); + if (lookahead == '+') + ADVANCE(79); + if (lookahead == '=') + ADVANCE(81); + if (lookahead == '\\') + SKIP(231); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(230); END_STATE(); case 231: - ACCEPT_TOKEN(sym_regex); - if (lookahead == '\\') - ADVANCE(198); if (lookahead == '\t' || + lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - ADVANCE(232); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n') - ADVANCE(200); + SKIP(230); END_STATE(); case 232: - ACCEPT_TOKEN(sym_regex); if (lookahead == '!') - ADVANCE(227); - if (lookahead == '\"') - ADVANCE(202); - if (lookahead == '#') - ADVANCE(182); - if (lookahead == '$') - ADVANCE(184); - if (lookahead == '\'') - ADVANCE(189); - if (lookahead == '(') - ADVANCE(228); - if (lookahead == '-') - ADVANCE(229); - if (lookahead == '<') - ADVANCE(192); - if (lookahead == '>') - ADVANCE(194); - if (lookahead == '[') - ADVANCE(196); - if (lookahead == '\\') - ADVANCE(231); - if (lookahead == ']') - ADVANCE(196); - if (lookahead == '`') - ADVANCE(203); - if (lookahead == '{') - ADVANCE(196); - if (lookahead == '}') - ADVANCE(196); - if (('&' <= lookahead && lookahead <= ')') || - lookahead == ';' || - lookahead == '|') - ADVANCE(187); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - (lookahead < ' ' || lookahead > '$')) - ADVANCE(200); - END_STATE(); - case 233: - if (lookahead == '!') - ADVANCE(151); - if (lookahead == '#') - ADVANCE(65); - if (lookahead == '&') - ADVANCE(153); - if (lookahead == ')') - ADVANCE(19); - if (lookahead == '-') - ADVANCE(154); - if (lookahead == '<') - ADVANCE(156); - if (lookahead == '=') - ADVANCE(157); - if (lookahead == '>') - ADVANCE(160); - if (lookahead == '\\') - SKIP(234); - if (lookahead == ']') - ADVANCE(166); - if (lookahead == '|') - ADVANCE(235); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(233); - END_STATE(); - case 234: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(233); - END_STATE(); - case 235: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') - ADVANCE(62); - END_STATE(); - case 236: + ADVANCE(3); if (lookahead == '\"') ADVANCE(6); if (lookahead == '#') - ADVANCE(65); + ADVANCE(72); if (lookahead == '$') ADVANCE(8); if (lookahead == '\'') ADVANCE(16); - if (lookahead == '<') + if (lookahead == '(') + ADVANCE(89); + if (lookahead == ')') + ADVANCE(146); + if (lookahead == '-') ADVANCE(90); - if (lookahead == '>') + if (lookahead == '<') ADVANCE(91); + if (lookahead == '>') + ADVANCE(92); if (lookahead == '[') - ADVANCE(69); + ADVANCE(77); + if (lookahead == '\\') + ADVANCE(233); + if (lookahead == ']') + ADVANCE(77); + if (lookahead == '`') + ADVANCE(59); + if (lookahead == '{') + ADVANCE(77); + if (lookahead == '}') + ADVANCE(77); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(232); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(5); + END_STATE(); + case 233: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(232); + if (lookahead != 0) + ADVANCE(5); + END_STATE(); + case 234: + if (lookahead == '\n') + ADVANCE(2); + if (lookahead == '!') + ADVANCE(143); + if (lookahead == '#') + ADVANCE(72); + if (lookahead == '&') + ADVANCE(99); + if (lookahead == '+') + ADVANCE(148); + if (lookahead == '-') + ADVANCE(150); + if (lookahead == ';') + ADVANCE(34); + if (lookahead == '<') + ADVANCE(154); + if (lookahead == '=') + ADVANCE(155); + if (lookahead == '>') + ADVANCE(158); + if (lookahead == '\\') + SKIP(235); + if (lookahead == 'e') + ADVANCE(171); + if (lookahead == '|') + ADVANCE(67); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(234); + END_STATE(); + case 235: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(234); + END_STATE(); + case 236: + if (lookahead == '\n') + ADVANCE(2); + if (lookahead == '\"') + ADVANCE(6); + if (lookahead == '#') + ADVANCE(72); + if (lookahead == '$') + ADVANCE(8); + if (lookahead == '&') + ADVANCE(136); + if (lookahead == '\'') + ADVANCE(16); + if (lookahead == ';') + ADVANCE(34); + if (lookahead == '<') + ADVANCE(91); + if (lookahead == '>') + ADVANCE(92); + if (lookahead == '[') + ADVANCE(77); if (lookahead == '\\') ADVANCE(237); if (lookahead == ']') - ADVANCE(69); + ADVANCE(77); if (lookahead == '`') - ADVANCE(52); + ADVANCE(59); if (lookahead == '{') - ADVANCE(69); + ADVANCE(77); if (lookahead == '}') - ADVANCE(63); + ADVANCE(77); if (lookahead == '\t' || - lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(236); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && (lookahead < '{' || lookahead > '}')) ADVANCE(5); END_STATE(); @@ -4254,48 +4286,33 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(5); END_STATE(); case 238: - if (lookahead == '\"') - ADVANCE(6); + if (lookahead == '!') + ADVANCE(143); if (lookahead == '#') - ADVANCE(7); - if (lookahead == '$') - ADVANCE(8); - if (lookahead == '%') - ADVANCE(11); - if (lookahead == '\'') - ADVANCE(16); + ADVANCE(72); + if (lookahead == '&') + ADVANCE(145); + if (lookahead == ')') + ADVANCE(20); + if (lookahead == '+') + ADVANCE(148); if (lookahead == '-') - ADVANCE(23); - if (lookahead == ':') - ADVANCE(26); + ADVANCE(150); if (lookahead == '<') - ADVANCE(90); + ADVANCE(154); if (lookahead == '=') - ADVANCE(176); + ADVANCE(155); if (lookahead == '>') - ADVANCE(91); - if (lookahead == '[') - ADVANCE(69); + ADVANCE(158); if (lookahead == '\\') - ADVANCE(239); - if (lookahead == ']') - ADVANCE(69); - if (lookahead == '`') - ADVANCE(52); - if (lookahead == '{') - ADVANCE(69); - if (lookahead == '}') - ADVANCE(63); + SKIP(239); + if (lookahead == '|') + ADVANCE(240); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(238); - if (lookahead != 0 && - (lookahead < '\"' || lookahead > ')') && - (lookahead < ':' || lookahead > '>') && - (lookahead < '{' || lookahead > '}')) - ADVANCE(5); END_STATE(); case 239: if (lookahead == '\t' || @@ -4303,201 +4320,174 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\r' || lookahead == ' ') SKIP(238); + END_STATE(); + case 240: + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '|') + ADVANCE(69); + END_STATE(); + case 241: + if (lookahead == '\"') + ADVANCE(6); + if (lookahead == '#') + ADVANCE(72); + if (lookahead == '$') + ADVANCE(8); + if (lookahead == '\'') + ADVANCE(16); + if (lookahead == '<') + ADVANCE(91); + if (lookahead == '>') + ADVANCE(92); + if (lookahead == '[') + ADVANCE(77); + if (lookahead == '\\') + ADVANCE(242); + if (lookahead == ']') + ADVANCE(77); + if (lookahead == '`') + ADVANCE(59); + if (lookahead == 'e') + ADVANCE(60); + if (lookahead == '{') + ADVANCE(77); + if (lookahead == '}') + ADVANCE(77); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(241); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(5); + END_STATE(); + case 242: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(241); if (lookahead != 0) ADVANCE(5); END_STATE(); - case 240: - if (lookahead == '#') - ADVANCE(241); - if (lookahead == '\\') - ADVANCE(243); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(240); - if (lookahead != 0 && - lookahead != '\"' && - lookahead != '#' && - lookahead != '}') - ADVANCE(245); - END_STATE(); - case 241: - ACCEPT_TOKEN(sym_regex_without_right_brace); - if (lookahead == '\\') - ADVANCE(242); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - lookahead != '}') - ADVANCE(241); - END_STATE(); - case 242: - ACCEPT_TOKEN(sym_regex_without_right_brace); - if (lookahead == '\\') - ADVANCE(242); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == '}') - ADVANCE(241); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n') - ADVANCE(241); - END_STATE(); case 243: - ACCEPT_TOKEN(sym_regex_without_right_brace); - if (lookahead == '\\') - ADVANCE(244); - if (lookahead == '}') - ADVANCE(245); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - ADVANCE(246); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n') - ADVANCE(245); - END_STATE(); - case 244: - ACCEPT_TOKEN(sym_regex_without_right_brace); - if (lookahead == '\\') - ADVANCE(244); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == '}') - ADVANCE(245); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n') - ADVANCE(245); - END_STATE(); - case 245: - ACCEPT_TOKEN(sym_regex_without_right_brace); - if (lookahead == '\\') - ADVANCE(244); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - lookahead != '}') - ADVANCE(245); - END_STATE(); - case 246: - ACCEPT_TOKEN(sym_regex_without_right_brace); - if (lookahead == '\"') - ADVANCE(245); - if (lookahead == '#') - ADVANCE(241); - if (lookahead == '\\') - ADVANCE(243); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - lookahead != '}') - ADVANCE(245); - END_STATE(); - case 247: - if (lookahead == '\n') - ADVANCE(2); - if (lookahead == '#') - ADVANCE(65); - if (lookahead == '&') - ADVANCE(12); - if (lookahead == ';') - ADVANCE(29); - if (lookahead == '<') - ADVANCE(205); - if (lookahead == '>') - ADVANCE(206); - if (lookahead == '\\') - SKIP(248); - if (lookahead == '`') - ADVANCE(52); - if (lookahead == '|') - ADVANCE(60); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - SKIP(247); - END_STATE(); - case 248: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(247); - END_STATE(); - case 249: if (lookahead == 0) ADVANCE(1); if (lookahead == '\n') ADVANCE(2); if (lookahead == '#') - ADVANCE(65); + ADVANCE(72); if (lookahead == '&') ADVANCE(12); if (lookahead == ')') - ADVANCE(19); + ADVANCE(20); if (lookahead == ';') - ADVANCE(29); + ADVANCE(34); if (lookahead == '<') - ADVANCE(205); + ADVANCE(215); if (lookahead == '>') - ADVANCE(206); + ADVANCE(200); if (lookahead == '\\') - SKIP(250); + SKIP(244); if (lookahead == '`') - ADVANCE(52); + ADVANCE(59); if (lookahead == 'e') - ADVANCE(146); + ADVANCE(171); if (lookahead == '|') - ADVANCE(60); + ADVANCE(67); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(249); + SKIP(243); END_STATE(); - case 250: + case 244: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') + SKIP(243); + END_STATE(); + case 245: + if (lookahead == '#') + ADVANCE(72); + if (lookahead == ';') + ADVANCE(246); + if (lookahead == '\\') + ADVANCE(247); + if (lookahead == '{') + ADVANCE(66); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(245); + if (lookahead != 0 && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(5); + END_STATE(); + case 246: + ACCEPT_TOKEN(anon_sym_SEMI); + END_STATE(); + case 247: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(245); + if (lookahead != 0) + ADVANCE(5); + END_STATE(); + case 248: + if (lookahead == '#') + ADVANCE(72); + if (lookahead == ')') + ADVANCE(20); + if (lookahead == '\\') SKIP(249); + if (lookahead == '|') + ADVANCE(250); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(248); + END_STATE(); + case 249: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(248); + END_STATE(); + case 250: + ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); case 251: if (lookahead == '\n') ADVANCE(2); - if (lookahead == '!') - ADVANCE(151); if (lookahead == '#') - ADVANCE(65); + ADVANCE(72); if (lookahead == '&') - ADVANCE(94); - if (lookahead == '-') - ADVANCE(154); + ADVANCE(99); if (lookahead == ';') - ADVANCE(29); - if (lookahead == '<') - ADVANCE(156); - if (lookahead == '=') - ADVANCE(157); - if (lookahead == '>') - ADVANCE(160); + ADVANCE(34); if (lookahead == '\\') SKIP(252); if (lookahead == 'e') - ADVANCE(146); + ADVANCE(171); if (lookahead == '|') - ADVANCE(60); + ADVANCE(67); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') @@ -4511,37 +4501,42 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { SKIP(251); END_STATE(); case 253: - if (lookahead == '\n') - ADVANCE(2); + if (lookahead == '!') + ADVANCE(3); if (lookahead == '\"') ADVANCE(6); if (lookahead == '#') - ADVANCE(65); + ADVANCE(72); if (lookahead == '$') ADVANCE(8); if (lookahead == '&') - ADVANCE(130); + ADVANCE(73); if (lookahead == '\'') ADVANCE(16); + if (lookahead == '(') + ADVANCE(18); if (lookahead == ';') - ADVANCE(29); + ADVANCE(218); if (lookahead == '<') - ADVANCE(90); + ADVANCE(74); if (lookahead == '>') - ADVANCE(91); + ADVANCE(75); if (lookahead == '[') - ADVANCE(69); + ADVANCE(53); if (lookahead == '\\') ADVANCE(254); if (lookahead == ']') - ADVANCE(69); + ADVANCE(77); if (lookahead == '`') - ADVANCE(52); + ADVANCE(59); + if (lookahead == 'e') + ADVANCE(60); if (lookahead == '{') - ADVANCE(69); + ADVANCE(77); if (lookahead == '}') - ADVANCE(69); + ADVANCE(77); if (lookahead == '\t' || + lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(253); @@ -4560,43 +4555,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(5); END_STATE(); case 255: - if (lookahead == '\"') - ADVANCE(6); + if (lookahead == '\n') + ADVANCE(2); if (lookahead == '#') - ADVANCE(65); - if (lookahead == '$') - ADVANCE(8); - if (lookahead == '\'') - ADVANCE(16); - if (lookahead == '<') - ADVANCE(90); - if (lookahead == '>') - ADVANCE(91); - if (lookahead == '[') - ADVANCE(69); + ADVANCE(72); + if (lookahead == '&') + ADVANCE(99); + if (lookahead == ')') + ADVANCE(20); + if (lookahead == ';') + ADVANCE(34); if (lookahead == '\\') - ADVANCE(256); - if (lookahead == ']') - ADVANCE(69); - if (lookahead == '`') - ADVANCE(52); - if (lookahead == 'e') - ADVANCE(53); - if (lookahead == '{') - ADVANCE(69); - if (lookahead == '}') - ADVANCE(69); + SKIP(256); + if (lookahead == '|') + ADVANCE(67); if (lookahead == '\t' || - lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(255); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(5); END_STATE(); case 256: if (lookahead == '\t' || @@ -4604,34 +4580,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\r' || lookahead == ' ') SKIP(255); - if (lookahead != 0) - ADVANCE(5); END_STATE(); case 257: - if (lookahead == 0) - ADVANCE(1); if (lookahead == '\n') ADVANCE(2); if (lookahead == '#') - ADVANCE(65); + ADVANCE(72); if (lookahead == '&') - ADVANCE(12); - if (lookahead == ')') - ADVANCE(19); + ADVANCE(99); if (lookahead == ';') - ADVANCE(29); - if (lookahead == '<') - ADVANCE(217); - if (lookahead == '>') - ADVANCE(206); + ADVANCE(34); if (lookahead == '\\') SKIP(258); if (lookahead == '`') - ADVANCE(52); - if (lookahead == 'e') - ADVANCE(146); + ADVANCE(59); if (lookahead == '|') - ADVANCE(60); + ADVANCE(67); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') @@ -4645,33 +4609,51 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { SKIP(257); END_STATE(); case 259: - if (lookahead == '!') - ADVANCE(151); + if (lookahead == '\n') + ADVANCE(2); + if (lookahead == '\"') + ADVANCE(6); if (lookahead == '#') - ADVANCE(65); + ADVANCE(72); + if (lookahead == '$') + ADVANCE(8); if (lookahead == '&') - ADVANCE(153); - if (lookahead == ')') - ADVANCE(19); - if (lookahead == '-') - ADVANCE(154); + ADVANCE(99); + if (lookahead == '\'') + ADVANCE(16); + if (lookahead == ';') + ADVANCE(34); if (lookahead == '<') - ADVANCE(156); - if (lookahead == '=') - ADVANCE(157); + ADVANCE(91); if (lookahead == '>') - ADVANCE(160); + ADVANCE(92); + if (lookahead == '[') + ADVANCE(77); if (lookahead == '\\') - SKIP(260); + ADVANCE(260); if (lookahead == ']') - ADVANCE(166); + ADVANCE(77); + if (lookahead == '`') + ADVANCE(59); + if (lookahead == 'e') + ADVANCE(261); + if (lookahead == '{') + ADVANCE(77); if (lookahead == '|') - ADVANCE(163); + ADVANCE(67); + if (lookahead == '}') + ADVANCE(77); if (lookahead == '\t' || - lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(259); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) + ADVANCE(101); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')')) + ADVANCE(5); END_STATE(); case 260: if (lookahead == '\t' || @@ -4679,122 +4661,259 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\r' || lookahead == ' ') SKIP(259); + if (lookahead != 0) + ADVANCE(5); END_STATE(); case 261: - if (lookahead == '#') - ADVANCE(65); - if (lookahead == ';') - ADVANCE(262); + ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); if (lookahead == '\\') - ADVANCE(263); - if (lookahead == '{') - ADVANCE(59); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(261); + ADVANCE(4); + if (lookahead == 's') + ADVANCE(262); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(101); if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && (lookahead < '\"' || lookahead > '$') && (lookahead < '&' || lookahead > ')') && lookahead != ';' && lookahead != '<' && lookahead != '>' && - (lookahead < '[' || lookahead > ']') && - lookahead != '`' && - (lookahead < '{' || lookahead > '}')) + (lookahead < 'A' || lookahead > ']') && + (lookahead < '_' || lookahead > '}')) ADVANCE(5); END_STATE(); case 262: - ACCEPT_TOKEN(anon_sym_SEMI); + ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); + if (lookahead == '\\') + ADVANCE(4); + if (lookahead == 'a') + ADVANCE(263); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) + ADVANCE(101); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < 'A' || lookahead > ']') && + (lookahead < '_' || lookahead > '}')) + ADVANCE(5); END_STATE(); case 263: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(261); - if (lookahead != 0) + ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); + if (lookahead == '\\') + ADVANCE(4); + if (lookahead == 'c') + ADVANCE(264); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(101); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < 'A' || lookahead > ']') && + (lookahead < '_' || lookahead > '}')) ADVANCE(5); END_STATE(); case 264: - if (lookahead == '!') - ADVANCE(151); - if (lookahead == '#') - ADVANCE(65); - if (lookahead == '&') - ADVANCE(153); - if (lookahead == ')') - ADVANCE(86); - if (lookahead == '-') - ADVANCE(154); - if (lookahead == '<') - ADVANCE(156); - if (lookahead == '=') - ADVANCE(157); - if (lookahead == '>') - ADVANCE(160); + ACCEPT_TOKEN(anon_sym_esac); if (lookahead == '\\') - SKIP(265); - if (lookahead == '|') - ADVANCE(163); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(264); + ADVANCE(4); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(101); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < 'A' || lookahead > ']') && + (lookahead < '_' || lookahead > '}')) + ADVANCE(5); END_STATE(); case 265: + if (lookahead == '\n') + ADVANCE(2); + if (lookahead == '\"') + ADVANCE(6); + if (lookahead == '#') + ADVANCE(72); + if (lookahead == '$') + ADVANCE(8); + if (lookahead == '&') + ADVANCE(12); + if (lookahead == '\'') + ADVANCE(16); + if (lookahead == ';') + ADVANCE(34); + if (lookahead == '<') + ADVANCE(103); + if (lookahead == '=') + ADVANCE(104); + if (lookahead == '>') + ADVANCE(75); + if (lookahead == '[') + ADVANCE(77); + if (lookahead == '\\') + ADVANCE(266); + if (lookahead == ']') + ADVANCE(77); + if (lookahead == '`') + ADVANCE(59); + if (lookahead == 'e') + ADVANCE(60); + if (lookahead == '{') + ADVANCE(77); + if (lookahead == '|') + ADVANCE(67); + if (lookahead == '}') + ADVANCE(77); if (lookahead == '\t' || - lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(264); + SKIP(265); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')')) + ADVANCE(5); END_STATE(); case 266: - if (lookahead == '#') - ADVANCE(65); - if (lookahead == ')') - ADVANCE(19); - if (lookahead == '\\') - SKIP(267); - if (lookahead == '|') - ADVANCE(268); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(266); + SKIP(265); + if (lookahead != 0) + ADVANCE(5); END_STATE(); case 267: + if (lookahead == '\n') + ADVANCE(2); + if (lookahead == '\"') + ADVANCE(6); + if (lookahead == '#') + ADVANCE(72); + if (lookahead == '$') + ADVANCE(8); + if (lookahead == '&') + ADVANCE(12); + if (lookahead == '\'') + ADVANCE(16); + if (lookahead == '(') + ADVANCE(89); + if (lookahead == ';') + ADVANCE(34); + if (lookahead == '<') + ADVANCE(103); + if (lookahead == '=') + ADVANCE(104); + if (lookahead == '>') + ADVANCE(75); + if (lookahead == '[') + ADVANCE(77); + if (lookahead == '\\') + ADVANCE(268); + if (lookahead == ']') + ADVANCE(77); + if (lookahead == '`') + ADVANCE(59); + if (lookahead == 'e') + ADVANCE(60); + if (lookahead == '{') + ADVANCE(77); + if (lookahead == '|') + ADVANCE(67); + if (lookahead == '}') + ADVANCE(77); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(267); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')')) + ADVANCE(5); + END_STATE(); + case 268: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(266); - END_STATE(); - case 268: - ACCEPT_TOKEN(anon_sym_PIPE); + SKIP(267); + if (lookahead != 0) + ADVANCE(5); END_STATE(); case 269: if (lookahead == '\n') ADVANCE(2); + if (lookahead == '\"') + ADVANCE(6); if (lookahead == '#') - ADVANCE(65); + ADVANCE(72); + if (lookahead == '$') + ADVANCE(8); if (lookahead == '&') - ADVANCE(94); + ADVANCE(12); + if (lookahead == '\'') + ADVANCE(16); if (lookahead == ';') - ADVANCE(29); + ADVANCE(34); + if (lookahead == '<') + ADVANCE(74); + if (lookahead == '>') + ADVANCE(75); + if (lookahead == '[') + ADVANCE(77); if (lookahead == '\\') - SKIP(270); + ADVANCE(270); + if (lookahead == ']') + ADVANCE(77); + if (lookahead == '`') + ADVANCE(59); if (lookahead == 'e') - ADVANCE(146); - if (lookahead == '|') ADVANCE(60); + if (lookahead == '{') + ADVANCE(77); + if (lookahead == '|') + ADVANCE(67); + if (lookahead == '}') + ADVANCE(77); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(269); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')')) + ADVANCE(5); END_STATE(); case 270: if (lookahead == '\t' || @@ -4802,51 +4921,32 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\r' || lookahead == ' ') SKIP(269); + if (lookahead != 0) + ADVANCE(5); END_STATE(); case 271: - if (lookahead == '!') - ADVANCE(3); - if (lookahead == '\"') - ADVANCE(6); + if (lookahead == '\n') + ADVANCE(2); if (lookahead == '#') - ADVANCE(65); - if (lookahead == '$') - ADVANCE(8); + ADVANCE(72); if (lookahead == '&') - ADVANCE(66); - if (lookahead == '\'') - ADVANCE(16); - if (lookahead == '(') - ADVANCE(18); + ADVANCE(12); if (lookahead == ';') - ADVANCE(220); + ADVANCE(34); if (lookahead == '<') - ADVANCE(67); + ADVANCE(199); if (lookahead == '>') - ADVANCE(40); - if (lookahead == '[') - ADVANCE(46); + ADVANCE(200); if (lookahead == '\\') - ADVANCE(272); - if (lookahead == ']') - ADVANCE(69); - if (lookahead == '`') - ADVANCE(52); + SKIP(272); if (lookahead == 'e') - ADVANCE(53); - if (lookahead == '{') - ADVANCE(69); - if (lookahead == '}') - ADVANCE(69); + ADVANCE(171); + if (lookahead == '|') + ADVANCE(67); if (lookahead == '\t' || - lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(271); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')') && - (lookahead < '{' || lookahead > '}')) - ADVANCE(5); END_STATE(); case 272: if (lookahead == '\t' || @@ -4854,24 +4954,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\r' || lookahead == ' ') SKIP(271); - if (lookahead != 0) - ADVANCE(5); END_STATE(); case 273: if (lookahead == '\n') ADVANCE(2); if (lookahead == '#') - ADVANCE(65); + ADVANCE(72); if (lookahead == '&') - ADVANCE(94); - if (lookahead == ')') - ADVANCE(19); + ADVANCE(12); if (lookahead == ';') - ADVANCE(29); + ADVANCE(34); + if (lookahead == '<') + ADVANCE(215); + if (lookahead == '>') + ADVANCE(200); if (lookahead == '\\') SKIP(274); + if (lookahead == 'e') + ADVANCE(171); if (lookahead == '|') - ADVANCE(60); + ADVANCE(67); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') @@ -4884,411 +4986,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(273); END_STATE(); - case 275: - if (lookahead == '\n') - ADVANCE(2); - if (lookahead == '#') - ADVANCE(65); - if (lookahead == '&') - ADVANCE(94); - if (lookahead == ';') - ADVANCE(29); - if (lookahead == '\\') - SKIP(276); - if (lookahead == '`') - ADVANCE(52); - if (lookahead == '|') - ADVANCE(60); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - SKIP(275); - END_STATE(); - case 276: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(275); - END_STATE(); - case 277: - if (lookahead == '\n') - ADVANCE(2); - if (lookahead == '\"') - ADVANCE(6); - if (lookahead == '#') - ADVANCE(65); - if (lookahead == '$') - ADVANCE(8); - if (lookahead == '&') - ADVANCE(94); - if (lookahead == '\'') - ADVANCE(16); - if (lookahead == ';') - ADVANCE(29); - if (lookahead == '<') - ADVANCE(90); - if (lookahead == '>') - ADVANCE(91); - if (lookahead == '[') - ADVANCE(69); - if (lookahead == '\\') - ADVANCE(278); - if (lookahead == ']') - ADVANCE(69); - if (lookahead == '`') - ADVANCE(52); - if (lookahead == 'e') - ADVANCE(279); - if (lookahead == '{') - ADVANCE(69); - if (lookahead == '|') - ADVANCE(60); - if (lookahead == '}') - ADVANCE(69); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - SKIP(277); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) - ADVANCE(96); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')')) - ADVANCE(5); - END_STATE(); - case 278: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(277); - if (lookahead != 0) - ADVANCE(5); - END_STATE(); - case 279: - ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); - if (lookahead == '\\') - ADVANCE(4); - if (lookahead == 's') - ADVANCE(280); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(96); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < 'A' || lookahead > ']') && - (lookahead < '_' || lookahead > '}')) - ADVANCE(5); - END_STATE(); - case 280: - ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); - if (lookahead == '\\') - ADVANCE(4); - if (lookahead == 'a') - ADVANCE(281); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) - ADVANCE(96); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < 'A' || lookahead > ']') && - (lookahead < '_' || lookahead > '}')) - ADVANCE(5); - END_STATE(); - case 281: - ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); - if (lookahead == '\\') - ADVANCE(4); - if (lookahead == 'c') - ADVANCE(282); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(96); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < 'A' || lookahead > ']') && - (lookahead < '_' || lookahead > '}')) - ADVANCE(5); - END_STATE(); - case 282: - ACCEPT_TOKEN(anon_sym_esac); - if (lookahead == '\\') - ADVANCE(4); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(96); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < 'A' || lookahead > ']') && - (lookahead < '_' || lookahead > '}')) - ADVANCE(5); - END_STATE(); - case 283: - if (lookahead == '\n') - ADVANCE(2); - if (lookahead == '\"') - ADVANCE(6); - if (lookahead == '#') - ADVANCE(65); - if (lookahead == '$') - ADVANCE(8); - if (lookahead == '&') - ADVANCE(12); - if (lookahead == '\'') - ADVANCE(16); - if (lookahead == ';') - ADVANCE(29); - if (lookahead == '<') - ADVANCE(31); - if (lookahead == '=') - ADVANCE(98); - if (lookahead == '>') - ADVANCE(40); - if (lookahead == '[') - ADVANCE(69); - if (lookahead == '\\') - ADVANCE(284); - if (lookahead == ']') - ADVANCE(69); - if (lookahead == '`') - ADVANCE(52); - if (lookahead == 'e') - ADVANCE(53); - if (lookahead == '{') - ADVANCE(69); - if (lookahead == '|') - ADVANCE(60); - if (lookahead == '}') - ADVANCE(69); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - SKIP(283); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')')) - ADVANCE(5); - END_STATE(); - case 284: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(283); - if (lookahead != 0) - ADVANCE(5); - END_STATE(); - case 285: - if (lookahead == '\n') - ADVANCE(2); - if (lookahead == '\"') - ADVANCE(6); - if (lookahead == '#') - ADVANCE(65); - if (lookahead == '$') - ADVANCE(8); - if (lookahead == '&') - ADVANCE(12); - if (lookahead == '\'') - ADVANCE(16); - if (lookahead == '(') - ADVANCE(18); - if (lookahead == ';') - ADVANCE(29); - if (lookahead == '<') - ADVANCE(31); - if (lookahead == '=') - ADVANCE(98); - if (lookahead == '>') - ADVANCE(40); - if (lookahead == '[') - ADVANCE(69); - if (lookahead == '\\') - ADVANCE(286); - if (lookahead == ']') - ADVANCE(69); - if (lookahead == '`') - ADVANCE(52); - if (lookahead == 'e') - ADVANCE(53); - if (lookahead == '{') - ADVANCE(69); - if (lookahead == '|') - ADVANCE(60); - if (lookahead == '}') - ADVANCE(69); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - SKIP(285); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')')) - ADVANCE(5); - END_STATE(); - case 286: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(285); - if (lookahead != 0) - ADVANCE(5); - END_STATE(); - case 287: - if (lookahead == '\n') - ADVANCE(2); - if (lookahead == '\"') - ADVANCE(6); - if (lookahead == '#') - ADVANCE(65); - if (lookahead == '$') - ADVANCE(8); - if (lookahead == '&') - ADVANCE(12); - if (lookahead == '\'') - ADVANCE(16); - if (lookahead == ';') - ADVANCE(29); - if (lookahead == '<') - ADVANCE(67); - if (lookahead == '>') - ADVANCE(40); - if (lookahead == '[') - ADVANCE(69); - if (lookahead == '\\') - ADVANCE(288); - if (lookahead == ']') - ADVANCE(69); - if (lookahead == '`') - ADVANCE(52); - if (lookahead == 'e') - ADVANCE(53); - if (lookahead == '{') - ADVANCE(69); - if (lookahead == '|') - ADVANCE(60); - if (lookahead == '}') - ADVANCE(69); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - SKIP(287); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')')) - ADVANCE(5); - END_STATE(); - case 288: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(287); - if (lookahead != 0) - ADVANCE(5); - END_STATE(); - case 289: - if (lookahead == '\n') - ADVANCE(2); - if (lookahead == '#') - ADVANCE(65); - if (lookahead == '&') - ADVANCE(12); - if (lookahead == ';') - ADVANCE(29); - if (lookahead == '<') - ADVANCE(205); - if (lookahead == '>') - ADVANCE(206); - if (lookahead == '\\') - SKIP(290); - if (lookahead == 'e') - ADVANCE(146); - if (lookahead == '|') - ADVANCE(60); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - SKIP(289); - END_STATE(); - case 290: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(289); - END_STATE(); - case 291: - if (lookahead == '\n') - ADVANCE(2); - if (lookahead == '#') - ADVANCE(65); - if (lookahead == '&') - ADVANCE(12); - if (lookahead == ';') - ADVANCE(29); - if (lookahead == '<') - ADVANCE(217); - if (lookahead == '>') - ADVANCE(206); - if (lookahead == '\\') - SKIP(292); - if (lookahead == 'e') - ADVANCE(146); - if (lookahead == '|') - ADVANCE(60); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - SKIP(291); - END_STATE(); - case 292: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(291); - END_STATE(); default: return false; } @@ -5620,2829 +5317,2887 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 64, .external_lex_state = 2}, - [2] = {.lex_state = 64}, - [3] = {.lex_state = 70}, - [4] = {.lex_state = 76}, - [5] = {.lex_state = 64, .external_lex_state = 2}, - [6] = {.lex_state = 64, .external_lex_state = 2}, - [7] = {.lex_state = 81}, - [8] = {.lex_state = 81}, - [9] = {.lex_state = 64, .external_lex_state = 2}, - [10] = {.lex_state = 83, .external_lex_state = 2}, - [11] = {.lex_state = 85}, - [12] = {.lex_state = 85}, - [13] = {.lex_state = 93, .external_lex_state = 3}, - [14] = {.lex_state = 93, .external_lex_state = 4}, - [15] = {.lex_state = 81}, - [16] = {.lex_state = 97, .external_lex_state = 5}, - [17] = {.lex_state = 100}, - [18] = {.lex_state = 107}, - [19] = {.lex_state = 97, .external_lex_state = 5}, - [20] = {.lex_state = 107, .external_lex_state = 6}, - [21] = {.lex_state = 64, .external_lex_state = 2}, - [22] = {.lex_state = 64, .external_lex_state = 2}, - [23] = {.lex_state = 64, .external_lex_state = 2}, - [24] = {.lex_state = 117, .external_lex_state = 5}, - [25] = {.lex_state = 119}, - [26] = {.lex_state = 121, .external_lex_state = 4}, - [27] = {.lex_state = 97, .external_lex_state = 7}, - [28] = {.lex_state = 123, .external_lex_state = 8}, - [29] = {.lex_state = 70}, - [30] = {.lex_state = 125, .external_lex_state = 7}, - [31] = {.lex_state = 64, .external_lex_state = 2}, - [32] = {.lex_state = 81, .external_lex_state = 2}, - [33] = {.lex_state = 81}, - [34] = {.lex_state = 81}, - [35] = {.lex_state = 127, .external_lex_state = 9}, - [36] = {.lex_state = 129, .external_lex_state = 4}, - [37] = {.lex_state = 132, .external_lex_state = 4}, - [38] = {.lex_state = 70}, - [39] = {.lex_state = 64, .external_lex_state = 2}, - [40] = {.lex_state = 81}, - [41] = {.lex_state = 83, .external_lex_state = 2}, - [42] = {.lex_state = 85}, - [43] = {.lex_state = 85}, - [44] = {.lex_state = 93, .external_lex_state = 3}, - [45] = {.lex_state = 93, .external_lex_state = 4}, - [46] = {.lex_state = 97, .external_lex_state = 5}, - [47] = {.lex_state = 97, .external_lex_state = 5}, - [48] = {.lex_state = 117, .external_lex_state = 5}, - [49] = {.lex_state = 81}, - [50] = {.lex_state = 93, .external_lex_state = 4}, - [51] = {.lex_state = 97, .external_lex_state = 7}, - [52] = {.lex_state = 123, .external_lex_state = 8}, - [53] = {.lex_state = 70}, - [54] = {.lex_state = 81, .external_lex_state = 2}, - [55] = {.lex_state = 81}, - [56] = {.lex_state = 132, .external_lex_state = 10}, - [57] = {.lex_state = 100}, - [58] = {.lex_state = 107}, - [59] = {.lex_state = 132, .external_lex_state = 10}, - [60] = {.lex_state = 107, .external_lex_state = 6}, - [61] = {.lex_state = 64, .external_lex_state = 2}, - [62] = {.lex_state = 64, .external_lex_state = 2}, - [63] = {.lex_state = 64, .external_lex_state = 2}, - [64] = {.lex_state = 132, .external_lex_state = 4}, - [65] = {.lex_state = 136}, - [66] = {.lex_state = 70}, - [67] = {.lex_state = 64, .external_lex_state = 2}, - [68] = {.lex_state = 81}, - [69] = {.lex_state = 83, .external_lex_state = 2}, - [70] = {.lex_state = 85}, - [71] = {.lex_state = 85}, - [72] = {.lex_state = 138, .external_lex_state = 3}, - [73] = {.lex_state = 138, .external_lex_state = 4}, - [74] = {.lex_state = 125, .external_lex_state = 5}, - [75] = {.lex_state = 125, .external_lex_state = 5}, - [76] = {.lex_state = 140, .external_lex_state = 5}, + [1] = {.lex_state = 71, .external_lex_state = 2}, + [2] = {.lex_state = 71}, + [3] = {.lex_state = 78}, + [4] = {.lex_state = 84}, + [5] = {.lex_state = 88}, + [6] = {.lex_state = 71, .external_lex_state = 2}, + [7] = {.lex_state = 71, .external_lex_state = 2}, + [8] = {.lex_state = 94}, + [9] = {.lex_state = 94}, + [10] = {.lex_state = 71, .external_lex_state = 2}, + [11] = {.lex_state = 96, .external_lex_state = 2}, + [12] = {.lex_state = 88}, + [13] = {.lex_state = 88}, + [14] = {.lex_state = 98, .external_lex_state = 3}, + [15] = {.lex_state = 98, .external_lex_state = 4}, + [16] = {.lex_state = 94}, + [17] = {.lex_state = 102, .external_lex_state = 5}, + [18] = {.lex_state = 106}, + [19] = {.lex_state = 113}, + [20] = {.lex_state = 102, .external_lex_state = 5}, + [21] = {.lex_state = 113, .external_lex_state = 6}, + [22] = {.lex_state = 71, .external_lex_state = 2}, + [23] = {.lex_state = 71, .external_lex_state = 2}, + [24] = {.lex_state = 71, .external_lex_state = 2}, + [25] = {.lex_state = 123, .external_lex_state = 5}, + [26] = {.lex_state = 125}, + [27] = {.lex_state = 127, .external_lex_state = 4}, + [28] = {.lex_state = 102, .external_lex_state = 7}, + [29] = {.lex_state = 129, .external_lex_state = 8}, + [30] = {.lex_state = 78}, + [31] = {.lex_state = 131, .external_lex_state = 7}, + [32] = {.lex_state = 71, .external_lex_state = 2}, + [33] = {.lex_state = 94, .external_lex_state = 2}, + [34] = {.lex_state = 94}, + [35] = {.lex_state = 94}, + [36] = {.lex_state = 133, .external_lex_state = 9}, + [37] = {.lex_state = 135, .external_lex_state = 4}, + [38] = {.lex_state = 138, .external_lex_state = 4}, + [39] = {.lex_state = 88}, + [40] = {.lex_state = 88}, + [41] = {.lex_state = 142, .external_lex_state = 10}, + [42] = {.lex_state = 106}, + [43] = {.lex_state = 113}, + [44] = {.lex_state = 142, .external_lex_state = 10}, + [45] = {.lex_state = 113, .external_lex_state = 6}, + [46] = {.lex_state = 71, .external_lex_state = 2}, + [47] = {.lex_state = 71, .external_lex_state = 2}, + [48] = {.lex_state = 71, .external_lex_state = 2}, + [49] = {.lex_state = 142}, + [50] = {.lex_state = 78}, + [51] = {.lex_state = 88}, + [52] = {.lex_state = 71, .external_lex_state = 2}, + [53] = {.lex_state = 94}, + [54] = {.lex_state = 96, .external_lex_state = 2}, + [55] = {.lex_state = 88}, + [56] = {.lex_state = 88}, + [57] = {.lex_state = 98, .external_lex_state = 3}, + [58] = {.lex_state = 98, .external_lex_state = 4}, + [59] = {.lex_state = 102, .external_lex_state = 5}, + [60] = {.lex_state = 102, .external_lex_state = 5}, + [61] = {.lex_state = 123, .external_lex_state = 5}, + [62] = {.lex_state = 94}, + [63] = {.lex_state = 98, .external_lex_state = 4}, + [64] = {.lex_state = 102, .external_lex_state = 7}, + [65] = {.lex_state = 129, .external_lex_state = 8}, + [66] = {.lex_state = 78}, + [67] = {.lex_state = 94, .external_lex_state = 2}, + [68] = {.lex_state = 94}, + [69] = {.lex_state = 138, .external_lex_state = 11}, + [70] = {.lex_state = 106}, + [71] = {.lex_state = 113}, + [72] = {.lex_state = 138, .external_lex_state = 11}, + [73] = {.lex_state = 113, .external_lex_state = 6}, + [74] = {.lex_state = 71, .external_lex_state = 2}, + [75] = {.lex_state = 71, .external_lex_state = 2}, + [76] = {.lex_state = 71, .external_lex_state = 2}, [77] = {.lex_state = 138, .external_lex_state = 4}, - [78] = {.lex_state = 125, .external_lex_state = 7}, - [79] = {.lex_state = 142, .external_lex_state = 8}, - [80] = {.lex_state = 70}, - [81] = {.lex_state = 64, .external_lex_state = 2}, - [82] = {.lex_state = 81, .external_lex_state = 2}, - [83] = {.lex_state = 70}, - [84] = {.lex_state = 144, .external_lex_state = 4}, - [85] = {.lex_state = 70}, - [86] = {.lex_state = 85}, - [87] = {.lex_state = 85}, - [88] = {.lex_state = 150, .external_lex_state = 11}, - [89] = {.lex_state = 100}, - [90] = {.lex_state = 107}, - [91] = {.lex_state = 150, .external_lex_state = 11}, - [92] = {.lex_state = 107, .external_lex_state = 6}, - [93] = {.lex_state = 64, .external_lex_state = 2}, - [94] = {.lex_state = 64, .external_lex_state = 2}, - [95] = {.lex_state = 64, .external_lex_state = 2}, - [96] = {.lex_state = 150, .external_lex_state = 12}, - [97] = {.lex_state = 85}, - [98] = {.lex_state = 85}, - [99] = {.lex_state = 164, .external_lex_state = 13}, - [100] = {.lex_state = 100}, - [101] = {.lex_state = 107}, - [102] = {.lex_state = 164, .external_lex_state = 13}, - [103] = {.lex_state = 107, .external_lex_state = 6}, - [104] = {.lex_state = 64, .external_lex_state = 2}, - [105] = {.lex_state = 64, .external_lex_state = 2}, - [106] = {.lex_state = 64, .external_lex_state = 2}, - [107] = {.lex_state = 164}, - [108] = {.lex_state = 70}, - [109] = {.lex_state = 93, .external_lex_state = 14}, - [110] = {.lex_state = 100}, - [111] = {.lex_state = 107}, - [112] = {.lex_state = 93, .external_lex_state = 14}, - [113] = {.lex_state = 107, .external_lex_state = 6}, - [114] = {.lex_state = 64, .external_lex_state = 2}, - [115] = {.lex_state = 64, .external_lex_state = 2}, - [116] = {.lex_state = 64, .external_lex_state = 2}, - [117] = {.lex_state = 70}, - [118] = {.lex_state = 93, .external_lex_state = 3}, - [119] = {.lex_state = 93, .external_lex_state = 10}, - [120] = {.lex_state = 100}, - [121] = {.lex_state = 107}, - [122] = {.lex_state = 93, .external_lex_state = 10}, - [123] = {.lex_state = 107, .external_lex_state = 6}, - [124] = {.lex_state = 64, .external_lex_state = 2}, - [125] = {.lex_state = 64, .external_lex_state = 2}, - [126] = {.lex_state = 64, .external_lex_state = 2}, - [127] = {.lex_state = 93, .external_lex_state = 4}, - [128] = {.lex_state = 81, .external_lex_state = 15}, - [129] = {.lex_state = 100}, - [130] = {.lex_state = 107}, - [131] = {.lex_state = 81, .external_lex_state = 15}, - [132] = {.lex_state = 107, .external_lex_state = 6}, - [133] = {.lex_state = 64, .external_lex_state = 2}, - [134] = {.lex_state = 64, .external_lex_state = 2}, - [135] = {.lex_state = 64, .external_lex_state = 2}, - [136] = {.lex_state = 81, .external_lex_state = 2}, - [137] = {.lex_state = 81}, - [138] = {.lex_state = 97, .external_lex_state = 5}, - [139] = {.lex_state = 125, .external_lex_state = 5}, - [140] = {.lex_state = 167}, - [141] = {.lex_state = 100, .external_lex_state = 13}, - [142] = {.lex_state = 107, .external_lex_state = 6}, - [143] = {.lex_state = 64, .external_lex_state = 2}, - [144] = {.lex_state = 64, .external_lex_state = 2}, - [145] = {.lex_state = 100}, - [146] = {.lex_state = 125, .external_lex_state = 5}, - [147] = {.lex_state = 125, .external_lex_state = 5}, - [148] = {.lex_state = 125, .external_lex_state = 5}, - [149] = {.lex_state = 70}, - [150] = {.lex_state = 173, .external_lex_state = 6}, - [151] = {.lex_state = 175, .external_lex_state = 16}, - [152] = {.lex_state = 175, .external_lex_state = 16}, - [153] = {.lex_state = 138, .external_lex_state = 4}, - [154] = {.lex_state = 142, .external_lex_state = 8}, - [155] = {.lex_state = 64, .external_lex_state = 2}, - [156] = {.lex_state = 64, .external_lex_state = 2}, - [157] = {.lex_state = 81}, - [158] = {.lex_state = 83, .external_lex_state = 2}, - [159] = {.lex_state = 85}, - [160] = {.lex_state = 85}, - [161] = {.lex_state = 93, .external_lex_state = 3}, - [162] = {.lex_state = 93, .external_lex_state = 4}, - [163] = {.lex_state = 117, .external_lex_state = 5}, - [164] = {.lex_state = 93, .external_lex_state = 4}, - [165] = {.lex_state = 97, .external_lex_state = 7}, - [166] = {.lex_state = 123, .external_lex_state = 8}, - [167] = {.lex_state = 64, .external_lex_state = 2}, - [168] = {.lex_state = 81, .external_lex_state = 2}, - [169] = {.lex_state = 138, .external_lex_state = 4}, - [170] = {.lex_state = 142, .external_lex_state = 8}, - [171] = {.lex_state = 64, .external_lex_state = 2}, - [172] = {.lex_state = 83}, - [173] = {.lex_state = 64, .external_lex_state = 2}, - [174] = {.lex_state = 64, .external_lex_state = 2}, - [175] = {.lex_state = 64, .external_lex_state = 2}, - [176] = {.lex_state = 144, .external_lex_state = 4}, - [177] = {.lex_state = 178, .external_lex_state = 17}, - [178] = {.lex_state = 64}, - [179] = {.lex_state = 181}, - [180] = {.lex_state = 81}, - [181] = {.lex_state = 64, .external_lex_state = 18}, - [182] = {.lex_state = 81}, - [183] = {.lex_state = 97, .external_lex_state = 5}, - [184] = {.lex_state = 97, .external_lex_state = 5}, - [185] = {.lex_state = 144, .external_lex_state = 4}, - [186] = {.lex_state = 204, .external_lex_state = 7}, - [187] = {.lex_state = 97, .external_lex_state = 7}, - [188] = {.lex_state = 121, .external_lex_state = 4}, - [189] = {.lex_state = 123, .external_lex_state = 8}, - [190] = {.lex_state = 64, .external_lex_state = 2}, - [191] = {.lex_state = 97, .external_lex_state = 7}, - [192] = {.lex_state = 81, .external_lex_state = 2}, - [193] = {.lex_state = 81, .external_lex_state = 15}, - [194] = {.lex_state = 81, .external_lex_state = 15}, - [195] = {.lex_state = 81, .external_lex_state = 2}, - [196] = {.lex_state = 208, .external_lex_state = 11}, - [197] = {.lex_state = 208, .external_lex_state = 11}, - [198] = {.lex_state = 208, .external_lex_state = 11}, - [199] = {.lex_state = 142, .external_lex_state = 8}, - [200] = {.lex_state = 210}, - [201] = {.lex_state = 123, .external_lex_state = 19}, - [202] = {.lex_state = 100}, - [203] = {.lex_state = 107}, - [204] = {.lex_state = 123, .external_lex_state = 19}, - [205] = {.lex_state = 107, .external_lex_state = 6}, - [206] = {.lex_state = 64, .external_lex_state = 2}, - [207] = {.lex_state = 64, .external_lex_state = 2}, - [208] = {.lex_state = 64, .external_lex_state = 2}, - [209] = {.lex_state = 129, .external_lex_state = 4}, - [210] = {.lex_state = 85}, - [211] = {.lex_state = 85}, - [212] = {.lex_state = 212, .external_lex_state = 10}, - [213] = {.lex_state = 100}, - [214] = {.lex_state = 107}, - [215] = {.lex_state = 212, .external_lex_state = 10}, - [216] = {.lex_state = 107, .external_lex_state = 6}, - [217] = {.lex_state = 64, .external_lex_state = 2}, - [218] = {.lex_state = 64, .external_lex_state = 2}, - [219] = {.lex_state = 64, .external_lex_state = 2}, - [220] = {.lex_state = 212, .external_lex_state = 4}, - [221] = {.lex_state = 81}, - [222] = {.lex_state = 81}, - [223] = {.lex_state = 127, .external_lex_state = 9}, - [224] = {.lex_state = 81}, - [225] = {.lex_state = 136}, - [226] = {.lex_state = 150, .external_lex_state = 12}, - [227] = {.lex_state = 164}, - [228] = {.lex_state = 70}, - [229] = {.lex_state = 93, .external_lex_state = 14}, - [230] = {.lex_state = 93, .external_lex_state = 14}, - [231] = {.lex_state = 70}, - [232] = {.lex_state = 93, .external_lex_state = 3}, - [233] = {.lex_state = 93, .external_lex_state = 10}, - [234] = {.lex_state = 93, .external_lex_state = 10}, - [235] = {.lex_state = 93, .external_lex_state = 4}, - [236] = {.lex_state = 97, .external_lex_state = 5}, - [237] = {.lex_state = 83}, - [238] = {.lex_state = 64, .external_lex_state = 2}, - [239] = {.lex_state = 204, .external_lex_state = 7}, - [240] = {.lex_state = 81}, - [241] = {.lex_state = 64, .external_lex_state = 2}, - [242] = {.lex_state = 64, .external_lex_state = 2}, - [243] = {.lex_state = 64}, - [244] = {.lex_state = 181}, - [245] = {.lex_state = 81}, - [246] = {.lex_state = 81}, - [247] = {.lex_state = 97, .external_lex_state = 5}, - [248] = {.lex_state = 97, .external_lex_state = 5}, - [249] = {.lex_state = 204, .external_lex_state = 7}, - [250] = {.lex_state = 97, .external_lex_state = 7}, - [251] = {.lex_state = 97, .external_lex_state = 7}, - [252] = {.lex_state = 64, .external_lex_state = 2}, - [253] = {.lex_state = 81}, - [254] = {.lex_state = 129, .external_lex_state = 4}, - [255] = {.lex_state = 132}, - [256] = {.lex_state = 132, .external_lex_state = 10}, - [257] = {.lex_state = 132, .external_lex_state = 10}, - [258] = {.lex_state = 167}, - [259] = {.lex_state = 100}, - [260] = {.lex_state = 132, .external_lex_state = 10}, - [261] = {.lex_state = 132, .external_lex_state = 10}, - [262] = {.lex_state = 132, .external_lex_state = 10}, - [263] = {.lex_state = 129, .external_lex_state = 4}, - [264] = {.lex_state = 132}, - [265] = {.lex_state = 70}, - [266] = {.lex_state = 173, .external_lex_state = 6}, - [267] = {.lex_state = 175, .external_lex_state = 16}, - [268] = {.lex_state = 175, .external_lex_state = 16}, - [269] = {.lex_state = 138, .external_lex_state = 4}, - [270] = {.lex_state = 142, .external_lex_state = 8}, - [271] = {.lex_state = 64, .external_lex_state = 2}, - [272] = {.lex_state = 93, .external_lex_state = 4}, - [273] = {.lex_state = 123, .external_lex_state = 8}, - [274] = {.lex_state = 64, .external_lex_state = 2}, - [275] = {.lex_state = 138, .external_lex_state = 4}, - [276] = {.lex_state = 142, .external_lex_state = 8}, - [277] = {.lex_state = 64, .external_lex_state = 2}, - [278] = {.lex_state = 83}, - [279] = {.lex_state = 214, .external_lex_state = 20}, - [280] = {.lex_state = 216, .external_lex_state = 21}, - [281] = {.lex_state = 127, .external_lex_state = 9}, - [282] = {.lex_state = 81}, - [283] = {.lex_state = 136}, - [284] = {.lex_state = 150, .external_lex_state = 12}, - [285] = {.lex_state = 164}, - [286] = {.lex_state = 70}, - [287] = {.lex_state = 138, .external_lex_state = 14}, - [288] = {.lex_state = 138, .external_lex_state = 14}, - [289] = {.lex_state = 70}, - [290] = {.lex_state = 138, .external_lex_state = 3}, - [291] = {.lex_state = 138, .external_lex_state = 10}, - [292] = {.lex_state = 138, .external_lex_state = 10}, - [293] = {.lex_state = 138, .external_lex_state = 4}, - [294] = {.lex_state = 125, .external_lex_state = 5}, - [295] = {.lex_state = 83}, - [296] = {.lex_state = 219, .external_lex_state = 2}, - [297] = {.lex_state = 64, .external_lex_state = 2}, - [298] = {.lex_state = 144, .external_lex_state = 4}, - [299] = {.lex_state = 64, .external_lex_state = 2}, - [300] = {.lex_state = 64}, - [301] = {.lex_state = 181}, - [302] = {.lex_state = 81}, - [303] = {.lex_state = 81}, - [304] = {.lex_state = 125, .external_lex_state = 5}, - [305] = {.lex_state = 125, .external_lex_state = 5}, - [306] = {.lex_state = 222, .external_lex_state = 7}, - [307] = {.lex_state = 125, .external_lex_state = 7}, - [308] = {.lex_state = 138, .external_lex_state = 4}, - [309] = {.lex_state = 142, .external_lex_state = 8}, - [310] = {.lex_state = 125, .external_lex_state = 7}, - [311] = {.lex_state = 127, .external_lex_state = 9}, - [312] = {.lex_state = 85}, - [313] = {.lex_state = 224, .external_lex_state = 13}, - [314] = {.lex_state = 224, .external_lex_state = 13}, - [315] = {.lex_state = 224}, - [316] = {.lex_state = 150, .external_lex_state = 12}, - [317] = {.lex_state = 81}, - [318] = {.lex_state = 150, .external_lex_state = 11}, - [319] = {.lex_state = 150, .external_lex_state = 11}, - [320] = {.lex_state = 167}, - [321] = {.lex_state = 100}, - [322] = {.lex_state = 150, .external_lex_state = 11}, - [323] = {.lex_state = 150, .external_lex_state = 11}, - [324] = {.lex_state = 150, .external_lex_state = 11}, - [325] = {.lex_state = 70}, - [326] = {.lex_state = 173, .external_lex_state = 6}, - [327] = {.lex_state = 175, .external_lex_state = 16}, - [328] = {.lex_state = 175, .external_lex_state = 16}, - [329] = {.lex_state = 138, .external_lex_state = 4}, - [330] = {.lex_state = 142, .external_lex_state = 8}, - [331] = {.lex_state = 64, .external_lex_state = 2}, - [332] = {.lex_state = 93, .external_lex_state = 4}, - [333] = {.lex_state = 123, .external_lex_state = 8}, - [334] = {.lex_state = 64, .external_lex_state = 2}, - [335] = {.lex_state = 138, .external_lex_state = 4}, - [336] = {.lex_state = 142, .external_lex_state = 8}, - [337] = {.lex_state = 64, .external_lex_state = 2}, - [338] = {.lex_state = 85}, - [339] = {.lex_state = 204, .external_lex_state = 21}, - [340] = {.lex_state = 226}, - [341] = {.lex_state = 224}, - [342] = {.lex_state = 164}, - [343] = {.lex_state = 81}, - [344] = {.lex_state = 164, .external_lex_state = 13}, - [345] = {.lex_state = 233, .external_lex_state = 13}, - [346] = {.lex_state = 167}, - [347] = {.lex_state = 100}, - [348] = {.lex_state = 233, .external_lex_state = 13}, - [349] = {.lex_state = 233, .external_lex_state = 13}, - [350] = {.lex_state = 233, .external_lex_state = 13}, - [351] = {.lex_state = 70}, - [352] = {.lex_state = 173, .external_lex_state = 6}, - [353] = {.lex_state = 175, .external_lex_state = 16}, - [354] = {.lex_state = 175, .external_lex_state = 16}, - [355] = {.lex_state = 138, .external_lex_state = 4}, - [356] = {.lex_state = 142, .external_lex_state = 8}, - [357] = {.lex_state = 64, .external_lex_state = 2}, - [358] = {.lex_state = 93, .external_lex_state = 4}, - [359] = {.lex_state = 123, .external_lex_state = 8}, - [360] = {.lex_state = 64, .external_lex_state = 2}, - [361] = {.lex_state = 138, .external_lex_state = 4}, - [362] = {.lex_state = 142, .external_lex_state = 8}, - [363] = {.lex_state = 64, .external_lex_state = 2}, - [364] = {.lex_state = 85}, - [365] = {.lex_state = 226}, - [366] = {.lex_state = 127, .external_lex_state = 9}, - [367] = {.lex_state = 81}, - [368] = {.lex_state = 93, .external_lex_state = 14}, - [369] = {.lex_state = 138, .external_lex_state = 14}, - [370] = {.lex_state = 167}, - [371] = {.lex_state = 100}, - [372] = {.lex_state = 138, .external_lex_state = 14}, - [373] = {.lex_state = 138, .external_lex_state = 14}, - [374] = {.lex_state = 138, .external_lex_state = 14}, - [375] = {.lex_state = 70}, - [376] = {.lex_state = 173, .external_lex_state = 6}, - [377] = {.lex_state = 175, .external_lex_state = 16}, - [378] = {.lex_state = 175, .external_lex_state = 16}, - [379] = {.lex_state = 138, .external_lex_state = 4}, - [380] = {.lex_state = 142, .external_lex_state = 8}, - [381] = {.lex_state = 64, .external_lex_state = 2}, - [382] = {.lex_state = 93, .external_lex_state = 4}, - [383] = {.lex_state = 123, .external_lex_state = 8}, - [384] = {.lex_state = 64, .external_lex_state = 2}, - [385] = {.lex_state = 138, .external_lex_state = 4}, - [386] = {.lex_state = 142, .external_lex_state = 8}, - [387] = {.lex_state = 64, .external_lex_state = 2}, - [388] = {.lex_state = 93, .external_lex_state = 3}, - [389] = {.lex_state = 81}, - [390] = {.lex_state = 93, .external_lex_state = 10}, - [391] = {.lex_state = 138, .external_lex_state = 10}, - [392] = {.lex_state = 167}, - [393] = {.lex_state = 100}, - [394] = {.lex_state = 138, .external_lex_state = 10}, - [395] = {.lex_state = 138, .external_lex_state = 10}, - [396] = {.lex_state = 138, .external_lex_state = 10}, - [397] = {.lex_state = 70}, - [398] = {.lex_state = 173, .external_lex_state = 6}, - [399] = {.lex_state = 175, .external_lex_state = 16}, - [400] = {.lex_state = 175, .external_lex_state = 16}, - [401] = {.lex_state = 138, .external_lex_state = 4}, - [402] = {.lex_state = 142, .external_lex_state = 8}, - [403] = {.lex_state = 64, .external_lex_state = 2}, - [404] = {.lex_state = 93, .external_lex_state = 4}, - [405] = {.lex_state = 123, .external_lex_state = 8}, - [406] = {.lex_state = 64, .external_lex_state = 2}, - [407] = {.lex_state = 138, .external_lex_state = 4}, - [408] = {.lex_state = 142, .external_lex_state = 8}, - [409] = {.lex_state = 64, .external_lex_state = 2}, - [410] = {.lex_state = 93, .external_lex_state = 4}, - [411] = {.lex_state = 81}, - [412] = {.lex_state = 81, .external_lex_state = 15}, - [413] = {.lex_state = 81, .external_lex_state = 15}, - [414] = {.lex_state = 167}, - [415] = {.lex_state = 100}, - [416] = {.lex_state = 81, .external_lex_state = 15}, - [417] = {.lex_state = 81, .external_lex_state = 15}, - [418] = {.lex_state = 81, .external_lex_state = 15}, - [419] = {.lex_state = 70}, - [420] = {.lex_state = 173, .external_lex_state = 6}, - [421] = {.lex_state = 175, .external_lex_state = 16}, - [422] = {.lex_state = 175, .external_lex_state = 16}, - [423] = {.lex_state = 138, .external_lex_state = 4}, - [424] = {.lex_state = 142, .external_lex_state = 8}, - [425] = {.lex_state = 64, .external_lex_state = 2}, - [426] = {.lex_state = 93, .external_lex_state = 4}, - [427] = {.lex_state = 123, .external_lex_state = 8}, - [428] = {.lex_state = 64, .external_lex_state = 2}, - [429] = {.lex_state = 138, .external_lex_state = 4}, - [430] = {.lex_state = 142, .external_lex_state = 8}, - [431] = {.lex_state = 64, .external_lex_state = 2}, - [432] = {.lex_state = 125, .external_lex_state = 5}, - [433] = {.lex_state = 97, .external_lex_state = 5}, - [434] = {.lex_state = 125, .external_lex_state = 5}, - [435] = {.lex_state = 100, .external_lex_state = 13}, - [436] = {.lex_state = 100, .external_lex_state = 13}, - [437] = {.lex_state = 100, .external_lex_state = 13}, - [438] = {.lex_state = 100}, - [439] = {.lex_state = 70}, - [440] = {.lex_state = 173, .external_lex_state = 6}, - [441] = {.lex_state = 175, .external_lex_state = 16}, - [442] = {.lex_state = 175, .external_lex_state = 16}, - [443] = {.lex_state = 138, .external_lex_state = 4}, - [444] = {.lex_state = 142, .external_lex_state = 8}, - [445] = {.lex_state = 64, .external_lex_state = 2}, - [446] = {.lex_state = 93, .external_lex_state = 4}, - [447] = {.lex_state = 123, .external_lex_state = 8}, - [448] = {.lex_state = 64, .external_lex_state = 2}, - [449] = {.lex_state = 167}, - [450] = {.lex_state = 100}, - [451] = {.lex_state = 81}, - [452] = {.lex_state = 236, .external_lex_state = 16}, - [453] = {.lex_state = 70}, - [454] = {.lex_state = 175, .external_lex_state = 16}, - [455] = {.lex_state = 175, .external_lex_state = 16}, - [456] = {.lex_state = 125, .external_lex_state = 5}, - [457] = {.lex_state = 238, .external_lex_state = 22}, - [458] = {.lex_state = 100}, - [459] = {.lex_state = 107}, - [460] = {.lex_state = 238, .external_lex_state = 22}, - [461] = {.lex_state = 107, .external_lex_state = 6}, - [462] = {.lex_state = 240}, - [463] = {.lex_state = 64, .external_lex_state = 2}, - [464] = {.lex_state = 64, .external_lex_state = 2}, - [465] = {.lex_state = 64, .external_lex_state = 2}, - [466] = {.lex_state = 238, .external_lex_state = 16}, - [467] = {.lex_state = 125, .external_lex_state = 5}, - [468] = {.lex_state = 240}, - [469] = {.lex_state = 238, .external_lex_state = 16}, - [470] = {.lex_state = 219, .external_lex_state = 2}, - [471] = {.lex_state = 125, .external_lex_state = 5}, - [472] = {.lex_state = 138, .external_lex_state = 4}, - [473] = {.lex_state = 142, .external_lex_state = 8}, - [474] = {.lex_state = 81}, - [475] = {.lex_state = 136}, - [476] = {.lex_state = 150, .external_lex_state = 12}, - [477] = {.lex_state = 164}, - [478] = {.lex_state = 93, .external_lex_state = 3}, - [479] = {.lex_state = 93, .external_lex_state = 4}, - [480] = {.lex_state = 83}, - [481] = {.lex_state = 64, .external_lex_state = 2}, - [482] = {.lex_state = 64, .external_lex_state = 2}, - [483] = {.lex_state = 64, .external_lex_state = 2}, - [484] = {.lex_state = 64}, - [485] = {.lex_state = 81}, - [486] = {.lex_state = 81}, - [487] = {.lex_state = 247, .external_lex_state = 7}, - [488] = {.lex_state = 97, .external_lex_state = 7}, - [489] = {.lex_state = 93, .external_lex_state = 4}, - [490] = {.lex_state = 123, .external_lex_state = 8}, - [491] = {.lex_state = 97, .external_lex_state = 7}, - [492] = {.lex_state = 219, .external_lex_state = 2}, - [493] = {.lex_state = 125, .external_lex_state = 5}, - [494] = {.lex_state = 138, .external_lex_state = 4}, - [495] = {.lex_state = 142, .external_lex_state = 8}, - [496] = {.lex_state = 136}, - [497] = {.lex_state = 144, .external_lex_state = 4}, - [498] = {.lex_state = 142, .external_lex_state = 8}, - [499] = {.lex_state = 121, .external_lex_state = 4}, - [500] = {.lex_state = 123, .external_lex_state = 8}, - [501] = {.lex_state = 144, .external_lex_state = 4}, - [502] = {.lex_state = 107}, - [503] = {.lex_state = 107, .external_lex_state = 6}, - [504] = {.lex_state = 178, .external_lex_state = 17}, - [505] = {.lex_state = 81}, - [506] = {.lex_state = 97, .external_lex_state = 5}, - [507] = {.lex_state = 97, .external_lex_state = 5}, - [508] = {.lex_state = 125, .external_lex_state = 7}, - [509] = {.lex_state = 204, .external_lex_state = 5}, - [510] = {.lex_state = 204, .external_lex_state = 5}, - [511] = {.lex_state = 249, .external_lex_state = 7}, - [512] = {.lex_state = 249, .external_lex_state = 7}, - [513] = {.lex_state = 204, .external_lex_state = 5}, - [514] = {.lex_state = 204, .external_lex_state = 5}, - [515] = {.lex_state = 249, .external_lex_state = 7}, - [516] = {.lex_state = 144, .external_lex_state = 4}, - [517] = {.lex_state = 204, .external_lex_state = 7}, - [518] = {.lex_state = 204, .external_lex_state = 7}, - [519] = {.lex_state = 97, .external_lex_state = 7}, - [520] = {.lex_state = 64, .external_lex_state = 2}, - [521] = {.lex_state = 93, .external_lex_state = 4}, - [522] = {.lex_state = 123, .external_lex_state = 8}, - [523] = {.lex_state = 97, .external_lex_state = 7}, - [524] = {.lex_state = 208, .external_lex_state = 12}, - [525] = {.lex_state = 70, .external_lex_state = 13}, - [526] = {.lex_state = 208, .external_lex_state = 11}, - [527] = {.lex_state = 208, .external_lex_state = 12}, - [528] = {.lex_state = 70, .external_lex_state = 13}, - [529] = {.lex_state = 150, .external_lex_state = 12}, - [530] = {.lex_state = 142, .external_lex_state = 8}, - [531] = {.lex_state = 210, .external_lex_state = 13}, - [532] = {.lex_state = 100}, - [533] = {.lex_state = 107}, - [534] = {.lex_state = 210, .external_lex_state = 13}, - [535] = {.lex_state = 107, .external_lex_state = 6}, - [536] = {.lex_state = 64, .external_lex_state = 2}, - [537] = {.lex_state = 64, .external_lex_state = 2}, - [538] = {.lex_state = 64, .external_lex_state = 2}, - [539] = {.lex_state = 210}, - [540] = {.lex_state = 81}, - [541] = {.lex_state = 123, .external_lex_state = 19}, - [542] = {.lex_state = 142, .external_lex_state = 19}, - [543] = {.lex_state = 167}, - [544] = {.lex_state = 100}, - [545] = {.lex_state = 142, .external_lex_state = 19}, - [546] = {.lex_state = 142, .external_lex_state = 19}, - [547] = {.lex_state = 142, .external_lex_state = 19}, - [548] = {.lex_state = 70}, - [549] = {.lex_state = 173, .external_lex_state = 6}, - [550] = {.lex_state = 175, .external_lex_state = 16}, - [551] = {.lex_state = 175, .external_lex_state = 16}, - [552] = {.lex_state = 138, .external_lex_state = 4}, - [553] = {.lex_state = 142, .external_lex_state = 8}, - [554] = {.lex_state = 64, .external_lex_state = 2}, - [555] = {.lex_state = 93, .external_lex_state = 4}, - [556] = {.lex_state = 123, .external_lex_state = 8}, - [557] = {.lex_state = 64, .external_lex_state = 2}, - [558] = {.lex_state = 138, .external_lex_state = 4}, - [559] = {.lex_state = 142, .external_lex_state = 8}, - [560] = {.lex_state = 64, .external_lex_state = 2}, - [561] = {.lex_state = 85}, - [562] = {.lex_state = 212, .external_lex_state = 4}, - [563] = {.lex_state = 224}, - [564] = {.lex_state = 212, .external_lex_state = 4}, - [565] = {.lex_state = 81}, - [566] = {.lex_state = 212, .external_lex_state = 10}, - [567] = {.lex_state = 251, .external_lex_state = 10}, - [568] = {.lex_state = 167}, - [569] = {.lex_state = 100}, - [570] = {.lex_state = 251, .external_lex_state = 10}, - [571] = {.lex_state = 251, .external_lex_state = 10}, - [572] = {.lex_state = 251, .external_lex_state = 10}, - [573] = {.lex_state = 70}, - [574] = {.lex_state = 173, .external_lex_state = 6}, - [575] = {.lex_state = 175, .external_lex_state = 16}, - [576] = {.lex_state = 175, .external_lex_state = 16}, - [577] = {.lex_state = 138, .external_lex_state = 4}, - [578] = {.lex_state = 142, .external_lex_state = 8}, - [579] = {.lex_state = 64, .external_lex_state = 2}, - [580] = {.lex_state = 93, .external_lex_state = 4}, - [581] = {.lex_state = 123, .external_lex_state = 8}, - [582] = {.lex_state = 64, .external_lex_state = 2}, - [583] = {.lex_state = 138, .external_lex_state = 4}, - [584] = {.lex_state = 142, .external_lex_state = 8}, - [585] = {.lex_state = 64, .external_lex_state = 2}, - [586] = {.lex_state = 129, .external_lex_state = 4}, - [587] = {.lex_state = 85}, - [588] = {.lex_state = 226}, - [589] = {.lex_state = 253, .external_lex_state = 10}, - [590] = {.lex_state = 100}, - [591] = {.lex_state = 107}, - [592] = {.lex_state = 253, .external_lex_state = 10}, - [593] = {.lex_state = 107, .external_lex_state = 6}, - [594] = {.lex_state = 64, .external_lex_state = 2}, - [595] = {.lex_state = 64, .external_lex_state = 2}, - [596] = {.lex_state = 64, .external_lex_state = 2}, - [597] = {.lex_state = 253, .external_lex_state = 4}, - [598] = {.lex_state = 64, .external_lex_state = 2}, - [599] = {.lex_state = 144, .external_lex_state = 4}, - [600] = {.lex_state = 123, .external_lex_state = 19}, - [601] = {.lex_state = 123, .external_lex_state = 19}, - [602] = {.lex_state = 204, .external_lex_state = 7}, - [603] = {.lex_state = 83}, - [604] = {.lex_state = 123, .external_lex_state = 21}, - [605] = {.lex_state = 204, .external_lex_state = 21}, - [606] = {.lex_state = 127, .external_lex_state = 9}, - [607] = {.lex_state = 93, .external_lex_state = 14}, - [608] = {.lex_state = 93, .external_lex_state = 3}, - [609] = {.lex_state = 93, .external_lex_state = 10}, - [610] = {.lex_state = 93, .external_lex_state = 4}, - [611] = {.lex_state = 97, .external_lex_state = 5}, - [612] = {.lex_state = 136}, - [613] = {.lex_state = 249, .external_lex_state = 7}, - [614] = {.lex_state = 64, .external_lex_state = 2}, - [615] = {.lex_state = 144, .external_lex_state = 4}, - [616] = {.lex_state = 204, .external_lex_state = 7}, - [617] = {.lex_state = 93, .external_lex_state = 4}, - [618] = {.lex_state = 123, .external_lex_state = 8}, - [619] = {.lex_state = 81}, - [620] = {.lex_state = 97, .external_lex_state = 5}, - [621] = {.lex_state = 97, .external_lex_state = 5}, - [622] = {.lex_state = 204, .external_lex_state = 5}, - [623] = {.lex_state = 204, .external_lex_state = 5}, - [624] = {.lex_state = 204, .external_lex_state = 5}, - [625] = {.lex_state = 204, .external_lex_state = 5}, - [626] = {.lex_state = 204, .external_lex_state = 7}, - [627] = {.lex_state = 204, .external_lex_state = 7}, - [628] = {.lex_state = 97, .external_lex_state = 7}, - [629] = {.lex_state = 97, .external_lex_state = 7}, - [630] = {.lex_state = 144, .external_lex_state = 4}, - [631] = {.lex_state = 64, .external_lex_state = 2}, - [632] = {.lex_state = 64, .external_lex_state = 2}, - [633] = {.lex_state = 81}, - [634] = {.lex_state = 64, .external_lex_state = 2}, - [635] = {.lex_state = 81}, - [636] = {.lex_state = 132, .external_lex_state = 10}, - [637] = {.lex_state = 255}, - [638] = {.lex_state = 129, .external_lex_state = 4}, - [639] = {.lex_state = 132, .external_lex_state = 10}, - [640] = {.lex_state = 132, .external_lex_state = 10}, - [641] = {.lex_state = 167}, - [642] = {.lex_state = 255}, - [643] = {.lex_state = 129, .external_lex_state = 4}, - [644] = {.lex_state = 236, .external_lex_state = 16}, - [645] = {.lex_state = 70}, - [646] = {.lex_state = 175, .external_lex_state = 16}, - [647] = {.lex_state = 175, .external_lex_state = 16}, - [648] = {.lex_state = 132, .external_lex_state = 10}, - [649] = {.lex_state = 240}, - [650] = {.lex_state = 238, .external_lex_state = 16}, - [651] = {.lex_state = 132, .external_lex_state = 10}, - [652] = {.lex_state = 240}, - [653] = {.lex_state = 238, .external_lex_state = 16}, - [654] = {.lex_state = 219, .external_lex_state = 2}, - [655] = {.lex_state = 132, .external_lex_state = 10}, - [656] = {.lex_state = 138, .external_lex_state = 4}, - [657] = {.lex_state = 142, .external_lex_state = 8}, - [658] = {.lex_state = 64, .external_lex_state = 2}, - [659] = {.lex_state = 93, .external_lex_state = 4}, - [660] = {.lex_state = 123, .external_lex_state = 8}, - [661] = {.lex_state = 219, .external_lex_state = 2}, - [662] = {.lex_state = 132, .external_lex_state = 10}, - [663] = {.lex_state = 138, .external_lex_state = 4}, - [664] = {.lex_state = 142, .external_lex_state = 8}, - [665] = {.lex_state = 136}, - [666] = {.lex_state = 257, .external_lex_state = 21}, - [667] = {.lex_state = 93, .external_lex_state = 4}, - [668] = {.lex_state = 123, .external_lex_state = 8}, - [669] = {.lex_state = 214, .external_lex_state = 20}, - [670] = {.lex_state = 64}, - [671] = {.lex_state = 81}, - [672] = {.lex_state = 144, .external_lex_state = 4}, - [673] = {.lex_state = 142, .external_lex_state = 19}, - [674] = {.lex_state = 142, .external_lex_state = 19}, - [675] = {.lex_state = 222, .external_lex_state = 7}, - [676] = {.lex_state = 83}, - [677] = {.lex_state = 142, .external_lex_state = 21}, - [678] = {.lex_state = 222, .external_lex_state = 21}, - [679] = {.lex_state = 127, .external_lex_state = 9}, - [680] = {.lex_state = 138, .external_lex_state = 14}, - [681] = {.lex_state = 138, .external_lex_state = 3}, - [682] = {.lex_state = 138, .external_lex_state = 10}, - [683] = {.lex_state = 138, .external_lex_state = 4}, - [684] = {.lex_state = 125, .external_lex_state = 5}, - [685] = {.lex_state = 136}, - [686] = {.lex_state = 144, .external_lex_state = 4}, - [687] = {.lex_state = 138, .external_lex_state = 4}, - [688] = {.lex_state = 142, .external_lex_state = 8}, - [689] = {.lex_state = 81}, - [690] = {.lex_state = 125, .external_lex_state = 5}, - [691] = {.lex_state = 125, .external_lex_state = 5}, - [692] = {.lex_state = 222, .external_lex_state = 5}, - [693] = {.lex_state = 222, .external_lex_state = 5}, - [694] = {.lex_state = 222, .external_lex_state = 5}, - [695] = {.lex_state = 222, .external_lex_state = 5}, - [696] = {.lex_state = 222, .external_lex_state = 7}, - [697] = {.lex_state = 222, .external_lex_state = 7}, - [698] = {.lex_state = 125, .external_lex_state = 7}, - [699] = {.lex_state = 219, .external_lex_state = 2}, - [700] = {.lex_state = 125, .external_lex_state = 7}, - [701] = {.lex_state = 81, .external_lex_state = 2}, - [702] = {.lex_state = 210}, - [703] = {.lex_state = 81, .external_lex_state = 15}, - [704] = {.lex_state = 81, .external_lex_state = 15}, - [705] = {.lex_state = 224}, - [706] = {.lex_state = 224, .external_lex_state = 13}, - [707] = {.lex_state = 150, .external_lex_state = 12}, - [708] = {.lex_state = 85}, - [709] = {.lex_state = 226}, - [710] = {.lex_state = 150, .external_lex_state = 11}, - [711] = {.lex_state = 150, .external_lex_state = 11}, - [712] = {.lex_state = 150, .external_lex_state = 11}, - [713] = {.lex_state = 167}, - [714] = {.lex_state = 236, .external_lex_state = 16}, - [715] = {.lex_state = 70}, - [716] = {.lex_state = 175, .external_lex_state = 16}, - [717] = {.lex_state = 175, .external_lex_state = 16}, - [718] = {.lex_state = 150, .external_lex_state = 11}, - [719] = {.lex_state = 240}, - [720] = {.lex_state = 238, .external_lex_state = 16}, - [721] = {.lex_state = 150, .external_lex_state = 11}, - [722] = {.lex_state = 240}, - [723] = {.lex_state = 238, .external_lex_state = 16}, - [724] = {.lex_state = 219, .external_lex_state = 2}, - [725] = {.lex_state = 150, .external_lex_state = 11}, - [726] = {.lex_state = 138, .external_lex_state = 4}, - [727] = {.lex_state = 142, .external_lex_state = 8}, - [728] = {.lex_state = 64, .external_lex_state = 2}, - [729] = {.lex_state = 93, .external_lex_state = 4}, - [730] = {.lex_state = 123, .external_lex_state = 8}, - [731] = {.lex_state = 219, .external_lex_state = 2}, - [732] = {.lex_state = 150, .external_lex_state = 11}, - [733] = {.lex_state = 138, .external_lex_state = 4}, - [734] = {.lex_state = 142, .external_lex_state = 8}, - [735] = {.lex_state = 150, .external_lex_state = 12}, - [736] = {.lex_state = 64}, - [737] = {.lex_state = 81}, - [738] = {.lex_state = 64, .external_lex_state = 18}, - [739] = {.lex_state = 81}, - [740] = {.lex_state = 204, .external_lex_state = 21}, - [741] = {.lex_state = 150, .external_lex_state = 12}, - [742] = {.lex_state = 259}, - [743] = {.lex_state = 233, .external_lex_state = 13}, - [744] = {.lex_state = 164, .external_lex_state = 13}, - [745] = {.lex_state = 233, .external_lex_state = 13}, - [746] = {.lex_state = 167}, - [747] = {.lex_state = 236, .external_lex_state = 16}, - [748] = {.lex_state = 70}, - [749] = {.lex_state = 175, .external_lex_state = 16}, - [750] = {.lex_state = 175, .external_lex_state = 16}, - [751] = {.lex_state = 233, .external_lex_state = 13}, - [752] = {.lex_state = 240}, - [753] = {.lex_state = 238, .external_lex_state = 16}, - [754] = {.lex_state = 233, .external_lex_state = 13}, - [755] = {.lex_state = 240}, - [756] = {.lex_state = 238, .external_lex_state = 16}, - [757] = {.lex_state = 219, .external_lex_state = 2}, - [758] = {.lex_state = 233, .external_lex_state = 13}, - [759] = {.lex_state = 138, .external_lex_state = 4}, - [760] = {.lex_state = 142, .external_lex_state = 8}, - [761] = {.lex_state = 64, .external_lex_state = 2}, - [762] = {.lex_state = 93, .external_lex_state = 4}, - [763] = {.lex_state = 123, .external_lex_state = 8}, - [764] = {.lex_state = 219, .external_lex_state = 2}, - [765] = {.lex_state = 233, .external_lex_state = 13}, - [766] = {.lex_state = 138, .external_lex_state = 4}, - [767] = {.lex_state = 142, .external_lex_state = 8}, - [768] = {.lex_state = 259}, - [769] = {.lex_state = 259}, - [770] = {.lex_state = 138, .external_lex_state = 3}, - [771] = {.lex_state = 210}, - [772] = {.lex_state = 93, .external_lex_state = 14}, - [773] = {.lex_state = 93, .external_lex_state = 14}, - [774] = {.lex_state = 138, .external_lex_state = 14}, - [775] = {.lex_state = 93, .external_lex_state = 14}, - [776] = {.lex_state = 138, .external_lex_state = 14}, - [777] = {.lex_state = 167}, - [778] = {.lex_state = 236, .external_lex_state = 16}, - [779] = {.lex_state = 70}, - [780] = {.lex_state = 175, .external_lex_state = 16}, - [781] = {.lex_state = 175, .external_lex_state = 16}, - [782] = {.lex_state = 138, .external_lex_state = 14}, - [783] = {.lex_state = 240}, - [784] = {.lex_state = 238, .external_lex_state = 16}, - [785] = {.lex_state = 138, .external_lex_state = 14}, - [786] = {.lex_state = 240}, - [787] = {.lex_state = 238, .external_lex_state = 16}, - [788] = {.lex_state = 219, .external_lex_state = 2}, - [789] = {.lex_state = 138, .external_lex_state = 14}, - [790] = {.lex_state = 138, .external_lex_state = 4}, - [791] = {.lex_state = 142, .external_lex_state = 8}, - [792] = {.lex_state = 64, .external_lex_state = 2}, - [793] = {.lex_state = 93, .external_lex_state = 4}, - [794] = {.lex_state = 123, .external_lex_state = 8}, - [795] = {.lex_state = 219, .external_lex_state = 2}, - [796] = {.lex_state = 138, .external_lex_state = 14}, - [797] = {.lex_state = 138, .external_lex_state = 4}, - [798] = {.lex_state = 142, .external_lex_state = 8}, - [799] = {.lex_state = 138, .external_lex_state = 10}, - [800] = {.lex_state = 93, .external_lex_state = 10}, - [801] = {.lex_state = 138, .external_lex_state = 10}, - [802] = {.lex_state = 167}, - [803] = {.lex_state = 236, .external_lex_state = 16}, - [804] = {.lex_state = 70}, - [805] = {.lex_state = 175, .external_lex_state = 16}, - [806] = {.lex_state = 175, .external_lex_state = 16}, - [807] = {.lex_state = 138, .external_lex_state = 10}, - [808] = {.lex_state = 240}, - [809] = {.lex_state = 238, .external_lex_state = 16}, - [810] = {.lex_state = 138, .external_lex_state = 10}, - [811] = {.lex_state = 240}, - [812] = {.lex_state = 238, .external_lex_state = 16}, - [813] = {.lex_state = 219, .external_lex_state = 2}, - [814] = {.lex_state = 138, .external_lex_state = 10}, - [815] = {.lex_state = 138, .external_lex_state = 4}, - [816] = {.lex_state = 142, .external_lex_state = 8}, - [817] = {.lex_state = 64, .external_lex_state = 2}, - [818] = {.lex_state = 93, .external_lex_state = 4}, - [819] = {.lex_state = 123, .external_lex_state = 8}, - [820] = {.lex_state = 219, .external_lex_state = 2}, - [821] = {.lex_state = 138, .external_lex_state = 10}, - [822] = {.lex_state = 138, .external_lex_state = 4}, - [823] = {.lex_state = 142, .external_lex_state = 8}, - [824] = {.lex_state = 81, .external_lex_state = 15}, - [825] = {.lex_state = 81, .external_lex_state = 15}, - [826] = {.lex_state = 81, .external_lex_state = 15}, - [827] = {.lex_state = 167}, - [828] = {.lex_state = 236, .external_lex_state = 16}, - [829] = {.lex_state = 70}, - [830] = {.lex_state = 175, .external_lex_state = 16}, - [831] = {.lex_state = 175, .external_lex_state = 16}, - [832] = {.lex_state = 81, .external_lex_state = 15}, - [833] = {.lex_state = 240}, - [834] = {.lex_state = 238, .external_lex_state = 16}, - [835] = {.lex_state = 81, .external_lex_state = 15}, - [836] = {.lex_state = 240}, - [837] = {.lex_state = 238, .external_lex_state = 16}, - [838] = {.lex_state = 219, .external_lex_state = 2}, - [839] = {.lex_state = 81, .external_lex_state = 15}, - [840] = {.lex_state = 138, .external_lex_state = 4}, - [841] = {.lex_state = 142, .external_lex_state = 8}, - [842] = {.lex_state = 64, .external_lex_state = 2}, - [843] = {.lex_state = 93, .external_lex_state = 4}, - [844] = {.lex_state = 123, .external_lex_state = 8}, - [845] = {.lex_state = 219, .external_lex_state = 2}, - [846] = {.lex_state = 81, .external_lex_state = 15}, - [847] = {.lex_state = 138, .external_lex_state = 4}, - [848] = {.lex_state = 142, .external_lex_state = 8}, - [849] = {.lex_state = 100}, - [850] = {.lex_state = 236, .external_lex_state = 16}, - [851] = {.lex_state = 70}, - [852] = {.lex_state = 175, .external_lex_state = 16}, - [853] = {.lex_state = 175, .external_lex_state = 16}, - [854] = {.lex_state = 100, .external_lex_state = 13}, - [855] = {.lex_state = 240}, - [856] = {.lex_state = 238, .external_lex_state = 16}, - [857] = {.lex_state = 100, .external_lex_state = 13}, - [858] = {.lex_state = 240}, - [859] = {.lex_state = 238, .external_lex_state = 16}, - [860] = {.lex_state = 219, .external_lex_state = 2}, - [861] = {.lex_state = 100, .external_lex_state = 13}, - [862] = {.lex_state = 138, .external_lex_state = 4}, - [863] = {.lex_state = 142, .external_lex_state = 8}, - [864] = {.lex_state = 64, .external_lex_state = 2}, - [865] = {.lex_state = 93, .external_lex_state = 4}, - [866] = {.lex_state = 123, .external_lex_state = 8}, - [867] = {.lex_state = 125, .external_lex_state = 5}, - [868] = {.lex_state = 167}, - [869] = {.lex_state = 208, .external_lex_state = 11}, - [870] = {.lex_state = 208, .external_lex_state = 11}, - [871] = {.lex_state = 208, .external_lex_state = 11}, - [872] = {.lex_state = 125, .external_lex_state = 5}, - [873] = {.lex_state = 214, .external_lex_state = 22}, - [874] = {.lex_state = 100}, - [875] = {.lex_state = 107}, - [876] = {.lex_state = 214, .external_lex_state = 22}, - [877] = {.lex_state = 107, .external_lex_state = 6}, - [878] = {.lex_state = 64, .external_lex_state = 2}, - [879] = {.lex_state = 64, .external_lex_state = 2}, - [880] = {.lex_state = 64, .external_lex_state = 2}, - [881] = {.lex_state = 214, .external_lex_state = 16}, - [882] = {.lex_state = 236, .external_lex_state = 16}, - [883] = {.lex_state = 125, .external_lex_state = 5}, - [884] = {.lex_state = 240}, - [885] = {.lex_state = 238, .external_lex_state = 16}, - [886] = {.lex_state = 240}, - [887] = {.lex_state = 238, .external_lex_state = 16}, - [888] = {.lex_state = 81}, - [889] = {.lex_state = 238, .external_lex_state = 22}, - [890] = {.lex_state = 238, .external_lex_state = 22}, - [891] = {.lex_state = 167}, - [892] = {.lex_state = 100}, - [893] = {.lex_state = 238, .external_lex_state = 22}, - [894] = {.lex_state = 238, .external_lex_state = 22}, - [895] = {.lex_state = 238, .external_lex_state = 22}, - [896] = {.lex_state = 70}, - [897] = {.lex_state = 173, .external_lex_state = 6}, - [898] = {.lex_state = 175, .external_lex_state = 16}, - [899] = {.lex_state = 175, .external_lex_state = 16}, - [900] = {.lex_state = 238, .external_lex_state = 16}, - [901] = {.lex_state = 138, .external_lex_state = 4}, - [902] = {.lex_state = 142, .external_lex_state = 8}, - [903] = {.lex_state = 64, .external_lex_state = 2}, - [904] = {.lex_state = 93, .external_lex_state = 4}, - [905] = {.lex_state = 123, .external_lex_state = 8}, - [906] = {.lex_state = 64, .external_lex_state = 2}, - [907] = {.lex_state = 138, .external_lex_state = 4}, - [908] = {.lex_state = 142, .external_lex_state = 8}, - [909] = {.lex_state = 64, .external_lex_state = 2}, - [910] = {.lex_state = 125, .external_lex_state = 5}, - [911] = {.lex_state = 238, .external_lex_state = 16}, - [912] = {.lex_state = 238, .external_lex_state = 16}, - [913] = {.lex_state = 125, .external_lex_state = 5}, - [914] = {.lex_state = 219, .external_lex_state = 2}, - [915] = {.lex_state = 247, .external_lex_state = 7}, - [916] = {.lex_state = 83}, - [917] = {.lex_state = 123, .external_lex_state = 21}, - [918] = {.lex_state = 247, .external_lex_state = 21}, - [919] = {.lex_state = 136}, - [920] = {.lex_state = 123, .external_lex_state = 8}, - [921] = {.lex_state = 93, .external_lex_state = 4}, - [922] = {.lex_state = 123, .external_lex_state = 8}, - [923] = {.lex_state = 81}, - [924] = {.lex_state = 247, .external_lex_state = 5}, - [925] = {.lex_state = 247, .external_lex_state = 5}, - [926] = {.lex_state = 247, .external_lex_state = 5}, - [927] = {.lex_state = 247, .external_lex_state = 5}, - [928] = {.lex_state = 247, .external_lex_state = 7}, - [929] = {.lex_state = 247, .external_lex_state = 7}, - [930] = {.lex_state = 64, .external_lex_state = 2}, - [931] = {.lex_state = 97, .external_lex_state = 7}, - [932] = {.lex_state = 125, .external_lex_state = 5}, - [933] = {.lex_state = 219, .external_lex_state = 2}, - [934] = {.lex_state = 216, .external_lex_state = 21}, - [935] = {.lex_state = 178, .external_lex_state = 17}, - [936] = {.lex_state = 178, .external_lex_state = 17}, - [937] = {.lex_state = 70}, - [938] = {.lex_state = 173, .external_lex_state = 6}, - [939] = {.lex_state = 175, .external_lex_state = 16}, - [940] = {.lex_state = 175, .external_lex_state = 16}, - [941] = {.lex_state = 144, .external_lex_state = 4}, - [942] = {.lex_state = 178, .external_lex_state = 17}, - [943] = {.lex_state = 204, .external_lex_state = 5}, - [944] = {.lex_state = 204, .external_lex_state = 5}, - [945] = {.lex_state = 249, .external_lex_state = 7}, - [946] = {.lex_state = 204, .external_lex_state = 5}, - [947] = {.lex_state = 144, .external_lex_state = 4}, - [948] = {.lex_state = 219, .external_lex_state = 2}, - [949] = {.lex_state = 204, .external_lex_state = 7}, - [950] = {.lex_state = 70, .external_lex_state = 13}, - [951] = {.lex_state = 70}, - [952] = {.lex_state = 208, .external_lex_state = 11}, - [953] = {.lex_state = 70, .external_lex_state = 13}, - [954] = {.lex_state = 70}, - [955] = {.lex_state = 81}, - [956] = {.lex_state = 210, .external_lex_state = 13}, - [957] = {.lex_state = 210, .external_lex_state = 13}, - [958] = {.lex_state = 167}, - [959] = {.lex_state = 100}, - [960] = {.lex_state = 210, .external_lex_state = 13}, - [961] = {.lex_state = 210, .external_lex_state = 13}, - [962] = {.lex_state = 210, .external_lex_state = 13}, - [963] = {.lex_state = 70}, - [964] = {.lex_state = 173, .external_lex_state = 6}, - [965] = {.lex_state = 175, .external_lex_state = 16}, - [966] = {.lex_state = 175, .external_lex_state = 16}, - [967] = {.lex_state = 138, .external_lex_state = 4}, - [968] = {.lex_state = 142, .external_lex_state = 8}, - [969] = {.lex_state = 64, .external_lex_state = 2}, - [970] = {.lex_state = 93, .external_lex_state = 4}, - [971] = {.lex_state = 123, .external_lex_state = 8}, - [972] = {.lex_state = 64, .external_lex_state = 2}, - [973] = {.lex_state = 138, .external_lex_state = 4}, - [974] = {.lex_state = 142, .external_lex_state = 8}, - [975] = {.lex_state = 64, .external_lex_state = 2}, - [976] = {.lex_state = 142, .external_lex_state = 8}, - [977] = {.lex_state = 210}, - [978] = {.lex_state = 142, .external_lex_state = 19}, - [979] = {.lex_state = 123, .external_lex_state = 19}, - [980] = {.lex_state = 142, .external_lex_state = 19}, - [981] = {.lex_state = 167}, - [982] = {.lex_state = 236, .external_lex_state = 16}, - [983] = {.lex_state = 70}, - [984] = {.lex_state = 175, .external_lex_state = 16}, - [985] = {.lex_state = 175, .external_lex_state = 16}, - [986] = {.lex_state = 142, .external_lex_state = 19}, - [987] = {.lex_state = 240}, - [988] = {.lex_state = 238, .external_lex_state = 16}, - [989] = {.lex_state = 142, .external_lex_state = 19}, - [990] = {.lex_state = 240}, - [991] = {.lex_state = 238, .external_lex_state = 16}, - [992] = {.lex_state = 219, .external_lex_state = 2}, - [993] = {.lex_state = 142, .external_lex_state = 19}, - [994] = {.lex_state = 138, .external_lex_state = 4}, - [995] = {.lex_state = 142, .external_lex_state = 8}, - [996] = {.lex_state = 64, .external_lex_state = 2}, - [997] = {.lex_state = 93, .external_lex_state = 4}, - [998] = {.lex_state = 123, .external_lex_state = 8}, - [999] = {.lex_state = 219, .external_lex_state = 2}, - [1000] = {.lex_state = 142, .external_lex_state = 19}, - [1001] = {.lex_state = 138, .external_lex_state = 4}, - [1002] = {.lex_state = 142, .external_lex_state = 8}, - [1003] = {.lex_state = 261}, - [1004] = {.lex_state = 85}, - [1005] = {.lex_state = 85}, - [1006] = {.lex_state = 264, .external_lex_state = 13}, - [1007] = {.lex_state = 100}, - [1008] = {.lex_state = 107}, - [1009] = {.lex_state = 264, .external_lex_state = 13}, - [1010] = {.lex_state = 107, .external_lex_state = 6}, - [1011] = {.lex_state = 64, .external_lex_state = 2}, - [1012] = {.lex_state = 64, .external_lex_state = 2}, - [1013] = {.lex_state = 64, .external_lex_state = 2}, - [1014] = {.lex_state = 264}, - [1015] = {.lex_state = 85}, - [1016] = {.lex_state = 212, .external_lex_state = 4}, - [1017] = {.lex_state = 251, .external_lex_state = 10}, - [1018] = {.lex_state = 212, .external_lex_state = 10}, - [1019] = {.lex_state = 251, .external_lex_state = 10}, - [1020] = {.lex_state = 167}, - [1021] = {.lex_state = 236, .external_lex_state = 16}, - [1022] = {.lex_state = 70}, - [1023] = {.lex_state = 175, .external_lex_state = 16}, - [1024] = {.lex_state = 175, .external_lex_state = 16}, - [1025] = {.lex_state = 251, .external_lex_state = 10}, - [1026] = {.lex_state = 240}, - [1027] = {.lex_state = 238, .external_lex_state = 16}, - [1028] = {.lex_state = 251, .external_lex_state = 10}, - [1029] = {.lex_state = 240}, - [1030] = {.lex_state = 238, .external_lex_state = 16}, - [1031] = {.lex_state = 219, .external_lex_state = 2}, - [1032] = {.lex_state = 251, .external_lex_state = 10}, - [1033] = {.lex_state = 138, .external_lex_state = 4}, - [1034] = {.lex_state = 142, .external_lex_state = 8}, - [1035] = {.lex_state = 64, .external_lex_state = 2}, - [1036] = {.lex_state = 93, .external_lex_state = 4}, - [1037] = {.lex_state = 123, .external_lex_state = 8}, - [1038] = {.lex_state = 219, .external_lex_state = 2}, - [1039] = {.lex_state = 251, .external_lex_state = 10}, - [1040] = {.lex_state = 138, .external_lex_state = 4}, - [1041] = {.lex_state = 142, .external_lex_state = 8}, - [1042] = {.lex_state = 212, .external_lex_state = 4}, - [1043] = {.lex_state = 212, .external_lex_state = 4}, - [1044] = {.lex_state = 212, .external_lex_state = 4}, - [1045] = {.lex_state = 81}, - [1046] = {.lex_state = 253, .external_lex_state = 10}, - [1047] = {.lex_state = 253, .external_lex_state = 10}, - [1048] = {.lex_state = 167}, - [1049] = {.lex_state = 100}, - [1050] = {.lex_state = 253, .external_lex_state = 10}, - [1051] = {.lex_state = 253, .external_lex_state = 10}, - [1052] = {.lex_state = 253, .external_lex_state = 10}, - [1053] = {.lex_state = 70}, - [1054] = {.lex_state = 173, .external_lex_state = 6}, - [1055] = {.lex_state = 175, .external_lex_state = 16}, - [1056] = {.lex_state = 175, .external_lex_state = 16}, - [1057] = {.lex_state = 138, .external_lex_state = 4}, - [1058] = {.lex_state = 142, .external_lex_state = 8}, - [1059] = {.lex_state = 64, .external_lex_state = 2}, - [1060] = {.lex_state = 93, .external_lex_state = 4}, - [1061] = {.lex_state = 123, .external_lex_state = 8}, - [1062] = {.lex_state = 64, .external_lex_state = 2}, - [1063] = {.lex_state = 138, .external_lex_state = 4}, - [1064] = {.lex_state = 142, .external_lex_state = 8}, - [1065] = {.lex_state = 64, .external_lex_state = 2}, - [1066] = {.lex_state = 81}, - [1067] = {.lex_state = 253, .external_lex_state = 4}, - [1068] = {.lex_state = 144, .external_lex_state = 4}, - [1069] = {.lex_state = 64, .external_lex_state = 2}, - [1070] = {.lex_state = 123, .external_lex_state = 19}, - [1071] = {.lex_state = 204, .external_lex_state = 7}, - [1072] = {.lex_state = 136}, - [1073] = {.lex_state = 64}, - [1074] = {.lex_state = 81}, - [1075] = {.lex_state = 64}, - [1076] = {.lex_state = 81}, - [1077] = {.lex_state = 81}, - [1078] = {.lex_state = 204, .external_lex_state = 21}, - [1079] = {.lex_state = 93, .external_lex_state = 14}, - [1080] = {.lex_state = 93, .external_lex_state = 14}, - [1081] = {.lex_state = 93, .external_lex_state = 14}, - [1082] = {.lex_state = 93, .external_lex_state = 10}, - [1083] = {.lex_state = 123, .external_lex_state = 21}, - [1084] = {.lex_state = 249, .external_lex_state = 7}, - [1085] = {.lex_state = 64, .external_lex_state = 2}, - [1086] = {.lex_state = 144, .external_lex_state = 4}, - [1087] = {.lex_state = 204, .external_lex_state = 5}, - [1088] = {.lex_state = 204, .external_lex_state = 5}, - [1089] = {.lex_state = 204, .external_lex_state = 5}, - [1090] = {.lex_state = 204, .external_lex_state = 7}, - [1091] = {.lex_state = 81}, - [1092] = {.lex_state = 64, .external_lex_state = 2}, - [1093] = {.lex_state = 144, .external_lex_state = 4}, - [1094] = {.lex_state = 81}, - [1095] = {.lex_state = 64, .external_lex_state = 2}, - [1096] = {.lex_state = 81}, - [1097] = {.lex_state = 81}, - [1098] = {.lex_state = 144, .external_lex_state = 4}, - [1099] = {.lex_state = 266, .external_lex_state = 13}, - [1100] = {.lex_state = 266, .external_lex_state = 13}, - [1101] = {.lex_state = 269}, - [1102] = {.lex_state = 266}, - [1103] = {.lex_state = 81}, - [1104] = {.lex_state = 255}, - [1105] = {.lex_state = 132, .external_lex_state = 10}, - [1106] = {.lex_state = 144, .external_lex_state = 4}, - [1107] = {.lex_state = 269}, - [1108] = {.lex_state = 81}, - [1109] = {.lex_state = 255}, - [1110] = {.lex_state = 132, .external_lex_state = 10}, - [1111] = {.lex_state = 214, .external_lex_state = 22}, - [1112] = {.lex_state = 214, .external_lex_state = 22}, - [1113] = {.lex_state = 214, .external_lex_state = 16}, - [1114] = {.lex_state = 236, .external_lex_state = 16}, - [1115] = {.lex_state = 132, .external_lex_state = 10}, - [1116] = {.lex_state = 240}, - [1117] = {.lex_state = 238, .external_lex_state = 16}, - [1118] = {.lex_state = 240}, - [1119] = {.lex_state = 238, .external_lex_state = 16}, - [1120] = {.lex_state = 238, .external_lex_state = 16}, - [1121] = {.lex_state = 132, .external_lex_state = 10}, - [1122] = {.lex_state = 238, .external_lex_state = 16}, - [1123] = {.lex_state = 132, .external_lex_state = 10}, - [1124] = {.lex_state = 219, .external_lex_state = 2}, - [1125] = {.lex_state = 64, .external_lex_state = 2}, - [1126] = {.lex_state = 132, .external_lex_state = 10}, - [1127] = {.lex_state = 219, .external_lex_state = 2}, - [1128] = {.lex_state = 216, .external_lex_state = 21}, - [1129] = {.lex_state = 214, .external_lex_state = 20}, - [1130] = {.lex_state = 257, .external_lex_state = 21}, - [1131] = {.lex_state = 214, .external_lex_state = 20}, - [1132] = {.lex_state = 81}, - [1133] = {.lex_state = 121, .external_lex_state = 10}, - [1134] = {.lex_state = 121, .external_lex_state = 10}, - [1135] = {.lex_state = 144, .external_lex_state = 4}, - [1136] = {.lex_state = 142, .external_lex_state = 19}, - [1137] = {.lex_state = 222, .external_lex_state = 7}, - [1138] = {.lex_state = 136}, - [1139] = {.lex_state = 64}, - [1140] = {.lex_state = 81}, - [1141] = {.lex_state = 64}, - [1142] = {.lex_state = 81}, - [1143] = {.lex_state = 81}, - [1144] = {.lex_state = 222, .external_lex_state = 21}, - [1145] = {.lex_state = 138, .external_lex_state = 14}, - [1146] = {.lex_state = 138, .external_lex_state = 14}, - [1147] = {.lex_state = 138, .external_lex_state = 14}, - [1148] = {.lex_state = 138, .external_lex_state = 10}, - [1149] = {.lex_state = 142, .external_lex_state = 21}, - [1150] = {.lex_state = 222, .external_lex_state = 5}, - [1151] = {.lex_state = 222, .external_lex_state = 5}, - [1152] = {.lex_state = 222, .external_lex_state = 5}, - [1153] = {.lex_state = 144, .external_lex_state = 4}, - [1154] = {.lex_state = 222, .external_lex_state = 7}, - [1155] = {.lex_state = 81, .external_lex_state = 2}, - [1156] = {.lex_state = 210}, - [1157] = {.lex_state = 224, .external_lex_state = 13}, - [1158] = {.lex_state = 150, .external_lex_state = 11}, - [1159] = {.lex_state = 150, .external_lex_state = 11}, - [1160] = {.lex_state = 214, .external_lex_state = 22}, - [1161] = {.lex_state = 214, .external_lex_state = 22}, - [1162] = {.lex_state = 214, .external_lex_state = 16}, - [1163] = {.lex_state = 236, .external_lex_state = 16}, - [1164] = {.lex_state = 150, .external_lex_state = 11}, - [1165] = {.lex_state = 240}, - [1166] = {.lex_state = 238, .external_lex_state = 16}, - [1167] = {.lex_state = 240}, - [1168] = {.lex_state = 238, .external_lex_state = 16}, - [1169] = {.lex_state = 238, .external_lex_state = 16}, - [1170] = {.lex_state = 150, .external_lex_state = 11}, - [1171] = {.lex_state = 238, .external_lex_state = 16}, - [1172] = {.lex_state = 150, .external_lex_state = 11}, - [1173] = {.lex_state = 219, .external_lex_state = 2}, - [1174] = {.lex_state = 64, .external_lex_state = 2}, - [1175] = {.lex_state = 150, .external_lex_state = 11}, - [1176] = {.lex_state = 219, .external_lex_state = 2}, - [1177] = {.lex_state = 81}, - [1178] = {.lex_state = 204, .external_lex_state = 23}, - [1179] = {.lex_state = 100}, - [1180] = {.lex_state = 107}, - [1181] = {.lex_state = 204, .external_lex_state = 23}, - [1182] = {.lex_state = 107, .external_lex_state = 6}, - [1183] = {.lex_state = 64, .external_lex_state = 2}, - [1184] = {.lex_state = 64, .external_lex_state = 2}, - [1185] = {.lex_state = 64, .external_lex_state = 2}, - [1186] = {.lex_state = 249, .external_lex_state = 21}, - [1187] = {.lex_state = 249, .external_lex_state = 21}, - [1188] = {.lex_state = 204, .external_lex_state = 23}, - [1189] = {.lex_state = 204, .external_lex_state = 23}, - [1190] = {.lex_state = 249, .external_lex_state = 21}, - [1191] = {.lex_state = 204, .external_lex_state = 21}, - [1192] = {.lex_state = 233, .external_lex_state = 13}, - [1193] = {.lex_state = 233, .external_lex_state = 13}, - [1194] = {.lex_state = 214, .external_lex_state = 22}, - [1195] = {.lex_state = 214, .external_lex_state = 22}, - [1196] = {.lex_state = 214, .external_lex_state = 16}, - [1197] = {.lex_state = 236, .external_lex_state = 16}, - [1198] = {.lex_state = 233, .external_lex_state = 13}, - [1199] = {.lex_state = 240}, - [1200] = {.lex_state = 238, .external_lex_state = 16}, - [1201] = {.lex_state = 240}, - [1202] = {.lex_state = 238, .external_lex_state = 16}, - [1203] = {.lex_state = 238, .external_lex_state = 16}, - [1204] = {.lex_state = 233, .external_lex_state = 13}, - [1205] = {.lex_state = 238, .external_lex_state = 16}, - [1206] = {.lex_state = 233, .external_lex_state = 13}, - [1207] = {.lex_state = 219, .external_lex_state = 2}, - [1208] = {.lex_state = 64, .external_lex_state = 2}, - [1209] = {.lex_state = 233, .external_lex_state = 13}, - [1210] = {.lex_state = 219, .external_lex_state = 2}, - [1211] = {.lex_state = 138, .external_lex_state = 3}, - [1212] = {.lex_state = 210}, - [1213] = {.lex_state = 138, .external_lex_state = 14}, - [1214] = {.lex_state = 138, .external_lex_state = 14}, - [1215] = {.lex_state = 214, .external_lex_state = 22}, - [1216] = {.lex_state = 214, .external_lex_state = 22}, - [1217] = {.lex_state = 214, .external_lex_state = 16}, - [1218] = {.lex_state = 236, .external_lex_state = 16}, - [1219] = {.lex_state = 138, .external_lex_state = 14}, - [1220] = {.lex_state = 240}, - [1221] = {.lex_state = 238, .external_lex_state = 16}, - [1222] = {.lex_state = 240}, - [1223] = {.lex_state = 238, .external_lex_state = 16}, - [1224] = {.lex_state = 238, .external_lex_state = 16}, - [1225] = {.lex_state = 138, .external_lex_state = 14}, - [1226] = {.lex_state = 238, .external_lex_state = 16}, - [1227] = {.lex_state = 138, .external_lex_state = 14}, - [1228] = {.lex_state = 219, .external_lex_state = 2}, - [1229] = {.lex_state = 64, .external_lex_state = 2}, - [1230] = {.lex_state = 138, .external_lex_state = 14}, - [1231] = {.lex_state = 219, .external_lex_state = 2}, - [1232] = {.lex_state = 138, .external_lex_state = 10}, - [1233] = {.lex_state = 138, .external_lex_state = 10}, - [1234] = {.lex_state = 214, .external_lex_state = 22}, - [1235] = {.lex_state = 214, .external_lex_state = 22}, - [1236] = {.lex_state = 214, .external_lex_state = 16}, - [1237] = {.lex_state = 236, .external_lex_state = 16}, - [1238] = {.lex_state = 138, .external_lex_state = 10}, - [1239] = {.lex_state = 240}, - [1240] = {.lex_state = 238, .external_lex_state = 16}, - [1241] = {.lex_state = 240}, - [1242] = {.lex_state = 238, .external_lex_state = 16}, - [1243] = {.lex_state = 238, .external_lex_state = 16}, - [1244] = {.lex_state = 138, .external_lex_state = 10}, - [1245] = {.lex_state = 238, .external_lex_state = 16}, - [1246] = {.lex_state = 138, .external_lex_state = 10}, - [1247] = {.lex_state = 219, .external_lex_state = 2}, - [1248] = {.lex_state = 64, .external_lex_state = 2}, - [1249] = {.lex_state = 138, .external_lex_state = 10}, - [1250] = {.lex_state = 219, .external_lex_state = 2}, - [1251] = {.lex_state = 81, .external_lex_state = 15}, - [1252] = {.lex_state = 81, .external_lex_state = 15}, - [1253] = {.lex_state = 214, .external_lex_state = 22}, - [1254] = {.lex_state = 214, .external_lex_state = 22}, - [1255] = {.lex_state = 214, .external_lex_state = 16}, - [1256] = {.lex_state = 236, .external_lex_state = 16}, - [1257] = {.lex_state = 81, .external_lex_state = 15}, - [1258] = {.lex_state = 240}, - [1259] = {.lex_state = 238, .external_lex_state = 16}, - [1260] = {.lex_state = 240}, - [1261] = {.lex_state = 238, .external_lex_state = 16}, - [1262] = {.lex_state = 238, .external_lex_state = 16}, - [1263] = {.lex_state = 81, .external_lex_state = 15}, - [1264] = {.lex_state = 238, .external_lex_state = 16}, - [1265] = {.lex_state = 81, .external_lex_state = 15}, - [1266] = {.lex_state = 219, .external_lex_state = 2}, - [1267] = {.lex_state = 64, .external_lex_state = 2}, - [1268] = {.lex_state = 81, .external_lex_state = 15}, - [1269] = {.lex_state = 219, .external_lex_state = 2}, - [1270] = {.lex_state = 100, .external_lex_state = 13}, - [1271] = {.lex_state = 214, .external_lex_state = 22}, - [1272] = {.lex_state = 214, .external_lex_state = 22}, - [1273] = {.lex_state = 214, .external_lex_state = 16}, - [1274] = {.lex_state = 236, .external_lex_state = 16}, - [1275] = {.lex_state = 100, .external_lex_state = 13}, - [1276] = {.lex_state = 240}, - [1277] = {.lex_state = 238, .external_lex_state = 16}, - [1278] = {.lex_state = 240}, - [1279] = {.lex_state = 238, .external_lex_state = 16}, - [1280] = {.lex_state = 238, .external_lex_state = 16}, - [1281] = {.lex_state = 100, .external_lex_state = 13}, - [1282] = {.lex_state = 238, .external_lex_state = 16}, - [1283] = {.lex_state = 100, .external_lex_state = 13}, - [1284] = {.lex_state = 219, .external_lex_state = 2}, - [1285] = {.lex_state = 64, .external_lex_state = 2}, - [1286] = {.lex_state = 208, .external_lex_state = 12}, - [1287] = {.lex_state = 175, .external_lex_state = 22}, - [1288] = {.lex_state = 208, .external_lex_state = 12}, - [1289] = {.lex_state = 175, .external_lex_state = 22}, - [1290] = {.lex_state = 150, .external_lex_state = 12}, - [1291] = {.lex_state = 81}, - [1292] = {.lex_state = 125, .external_lex_state = 5}, - [1293] = {.lex_state = 214, .external_lex_state = 22}, - [1294] = {.lex_state = 214, .external_lex_state = 22}, - [1295] = {.lex_state = 167}, - [1296] = {.lex_state = 100}, - [1297] = {.lex_state = 214, .external_lex_state = 22}, - [1298] = {.lex_state = 214, .external_lex_state = 22}, - [1299] = {.lex_state = 214, .external_lex_state = 22}, - [1300] = {.lex_state = 125, .external_lex_state = 5}, - [1301] = {.lex_state = 70}, - [1302] = {.lex_state = 173, .external_lex_state = 6}, - [1303] = {.lex_state = 175, .external_lex_state = 16}, - [1304] = {.lex_state = 175, .external_lex_state = 16}, - [1305] = {.lex_state = 138, .external_lex_state = 4}, - [1306] = {.lex_state = 142, .external_lex_state = 8}, - [1307] = {.lex_state = 64, .external_lex_state = 2}, - [1308] = {.lex_state = 93, .external_lex_state = 4}, - [1309] = {.lex_state = 123, .external_lex_state = 8}, - [1310] = {.lex_state = 64, .external_lex_state = 2}, - [1311] = {.lex_state = 138, .external_lex_state = 4}, - [1312] = {.lex_state = 142, .external_lex_state = 8}, - [1313] = {.lex_state = 64, .external_lex_state = 2}, - [1314] = {.lex_state = 214, .external_lex_state = 22}, - [1315] = {.lex_state = 214, .external_lex_state = 22}, - [1316] = {.lex_state = 214, .external_lex_state = 16}, - [1317] = {.lex_state = 238, .external_lex_state = 16}, - [1318] = {.lex_state = 125, .external_lex_state = 5}, - [1319] = {.lex_state = 238, .external_lex_state = 16}, - [1320] = {.lex_state = 238, .external_lex_state = 22}, - [1321] = {.lex_state = 238, .external_lex_state = 22}, - [1322] = {.lex_state = 238, .external_lex_state = 22}, - [1323] = {.lex_state = 167}, - [1324] = {.lex_state = 236, .external_lex_state = 16}, - [1325] = {.lex_state = 70}, - [1326] = {.lex_state = 175, .external_lex_state = 16}, - [1327] = {.lex_state = 175, .external_lex_state = 16}, - [1328] = {.lex_state = 238, .external_lex_state = 22}, - [1329] = {.lex_state = 240}, - [1330] = {.lex_state = 238, .external_lex_state = 16}, - [1331] = {.lex_state = 238, .external_lex_state = 22}, - [1332] = {.lex_state = 240}, - [1333] = {.lex_state = 238, .external_lex_state = 16}, - [1334] = {.lex_state = 125, .external_lex_state = 5}, - [1335] = {.lex_state = 238, .external_lex_state = 16}, - [1336] = {.lex_state = 219, .external_lex_state = 2}, - [1337] = {.lex_state = 238, .external_lex_state = 22}, - [1338] = {.lex_state = 138, .external_lex_state = 4}, - [1339] = {.lex_state = 142, .external_lex_state = 8}, - [1340] = {.lex_state = 64, .external_lex_state = 2}, - [1341] = {.lex_state = 93, .external_lex_state = 4}, - [1342] = {.lex_state = 123, .external_lex_state = 8}, - [1343] = {.lex_state = 219, .external_lex_state = 2}, - [1344] = {.lex_state = 238, .external_lex_state = 22}, - [1345] = {.lex_state = 138, .external_lex_state = 4}, - [1346] = {.lex_state = 142, .external_lex_state = 8}, - [1347] = {.lex_state = 238, .external_lex_state = 16}, - [1348] = {.lex_state = 125, .external_lex_state = 5}, - [1349] = {.lex_state = 247, .external_lex_state = 7}, - [1350] = {.lex_state = 136}, - [1351] = {.lex_state = 64}, - [1352] = {.lex_state = 81}, - [1353] = {.lex_state = 64}, - [1354] = {.lex_state = 81}, - [1355] = {.lex_state = 81}, - [1356] = {.lex_state = 247, .external_lex_state = 21}, - [1357] = {.lex_state = 123, .external_lex_state = 21}, - [1358] = {.lex_state = 247, .external_lex_state = 5}, - [1359] = {.lex_state = 247, .external_lex_state = 5}, - [1360] = {.lex_state = 247, .external_lex_state = 5}, - [1361] = {.lex_state = 247, .external_lex_state = 7}, - [1362] = {.lex_state = 125, .external_lex_state = 5}, - [1363] = {.lex_state = 144, .external_lex_state = 4}, - [1364] = {.lex_state = 236, .external_lex_state = 16}, - [1365] = {.lex_state = 70}, - [1366] = {.lex_state = 175, .external_lex_state = 16}, - [1367] = {.lex_state = 175, .external_lex_state = 16}, - [1368] = {.lex_state = 178, .external_lex_state = 17}, - [1369] = {.lex_state = 240}, - [1370] = {.lex_state = 238, .external_lex_state = 16}, - [1371] = {.lex_state = 178, .external_lex_state = 17}, - [1372] = {.lex_state = 240}, - [1373] = {.lex_state = 238, .external_lex_state = 16}, - [1374] = {.lex_state = 204, .external_lex_state = 5}, - [1375] = {.lex_state = 144, .external_lex_state = 4}, - [1376] = {.lex_state = 70}, - [1377] = {.lex_state = 70}, - [1378] = {.lex_state = 210, .external_lex_state = 13}, - [1379] = {.lex_state = 210, .external_lex_state = 13}, - [1380] = {.lex_state = 210, .external_lex_state = 13}, - [1381] = {.lex_state = 167}, - [1382] = {.lex_state = 236, .external_lex_state = 16}, - [1383] = {.lex_state = 70}, - [1384] = {.lex_state = 175, .external_lex_state = 16}, - [1385] = {.lex_state = 175, .external_lex_state = 16}, - [1386] = {.lex_state = 210, .external_lex_state = 13}, - [1387] = {.lex_state = 240}, - [1388] = {.lex_state = 238, .external_lex_state = 16}, - [1389] = {.lex_state = 210, .external_lex_state = 13}, - [1390] = {.lex_state = 240}, - [1391] = {.lex_state = 238, .external_lex_state = 16}, - [1392] = {.lex_state = 219, .external_lex_state = 2}, - [1393] = {.lex_state = 210, .external_lex_state = 13}, - [1394] = {.lex_state = 138, .external_lex_state = 4}, - [1395] = {.lex_state = 142, .external_lex_state = 8}, - [1396] = {.lex_state = 64, .external_lex_state = 2}, - [1397] = {.lex_state = 93, .external_lex_state = 4}, - [1398] = {.lex_state = 123, .external_lex_state = 8}, - [1399] = {.lex_state = 219, .external_lex_state = 2}, - [1400] = {.lex_state = 210, .external_lex_state = 13}, - [1401] = {.lex_state = 138, .external_lex_state = 4}, - [1402] = {.lex_state = 142, .external_lex_state = 8}, - [1403] = {.lex_state = 142, .external_lex_state = 19}, - [1404] = {.lex_state = 142, .external_lex_state = 19}, - [1405] = {.lex_state = 214, .external_lex_state = 22}, - [1406] = {.lex_state = 214, .external_lex_state = 22}, - [1407] = {.lex_state = 214, .external_lex_state = 16}, - [1408] = {.lex_state = 236, .external_lex_state = 16}, - [1409] = {.lex_state = 142, .external_lex_state = 19}, - [1410] = {.lex_state = 240}, - [1411] = {.lex_state = 238, .external_lex_state = 16}, - [1412] = {.lex_state = 240}, - [1413] = {.lex_state = 238, .external_lex_state = 16}, - [1414] = {.lex_state = 238, .external_lex_state = 16}, - [1415] = {.lex_state = 142, .external_lex_state = 19}, - [1416] = {.lex_state = 238, .external_lex_state = 16}, - [1417] = {.lex_state = 142, .external_lex_state = 19}, - [1418] = {.lex_state = 219, .external_lex_state = 2}, - [1419] = {.lex_state = 64, .external_lex_state = 2}, - [1420] = {.lex_state = 142, .external_lex_state = 19}, - [1421] = {.lex_state = 219, .external_lex_state = 2}, - [1422] = {.lex_state = 261}, - [1423] = {.lex_state = 214, .external_lex_state = 20}, - [1424] = {.lex_state = 144, .external_lex_state = 4}, - [1425] = {.lex_state = 224}, - [1426] = {.lex_state = 264}, - [1427] = {.lex_state = 81}, - [1428] = {.lex_state = 264, .external_lex_state = 13}, - [1429] = {.lex_state = 264, .external_lex_state = 13}, - [1430] = {.lex_state = 167}, - [1431] = {.lex_state = 100}, - [1432] = {.lex_state = 264, .external_lex_state = 13}, - [1433] = {.lex_state = 264, .external_lex_state = 13}, - [1434] = {.lex_state = 264, .external_lex_state = 13}, - [1435] = {.lex_state = 70}, - [1436] = {.lex_state = 173, .external_lex_state = 6}, - [1437] = {.lex_state = 175, .external_lex_state = 16}, - [1438] = {.lex_state = 175, .external_lex_state = 16}, - [1439] = {.lex_state = 138, .external_lex_state = 4}, - [1440] = {.lex_state = 142, .external_lex_state = 8}, - [1441] = {.lex_state = 64, .external_lex_state = 2}, - [1442] = {.lex_state = 93, .external_lex_state = 4}, - [1443] = {.lex_state = 123, .external_lex_state = 8}, - [1444] = {.lex_state = 64, .external_lex_state = 2}, - [1445] = {.lex_state = 138, .external_lex_state = 4}, - [1446] = {.lex_state = 142, .external_lex_state = 8}, - [1447] = {.lex_state = 64, .external_lex_state = 2}, - [1448] = {.lex_state = 261}, - [1449] = {.lex_state = 85}, - [1450] = {.lex_state = 226}, - [1451] = {.lex_state = 264}, - [1452] = {.lex_state = 251, .external_lex_state = 10}, - [1453] = {.lex_state = 251, .external_lex_state = 10}, - [1454] = {.lex_state = 214, .external_lex_state = 22}, - [1455] = {.lex_state = 214, .external_lex_state = 22}, - [1456] = {.lex_state = 214, .external_lex_state = 16}, - [1457] = {.lex_state = 236, .external_lex_state = 16}, - [1458] = {.lex_state = 251, .external_lex_state = 10}, - [1459] = {.lex_state = 240}, - [1460] = {.lex_state = 238, .external_lex_state = 16}, - [1461] = {.lex_state = 240}, - [1462] = {.lex_state = 238, .external_lex_state = 16}, - [1463] = {.lex_state = 238, .external_lex_state = 16}, - [1464] = {.lex_state = 251, .external_lex_state = 10}, - [1465] = {.lex_state = 238, .external_lex_state = 16}, - [1466] = {.lex_state = 251, .external_lex_state = 10}, - [1467] = {.lex_state = 219, .external_lex_state = 2}, - [1468] = {.lex_state = 64, .external_lex_state = 2}, - [1469] = {.lex_state = 251, .external_lex_state = 10}, - [1470] = {.lex_state = 219, .external_lex_state = 2}, - [1471] = {.lex_state = 85}, - [1472] = {.lex_state = 253, .external_lex_state = 10}, - [1473] = {.lex_state = 253, .external_lex_state = 10}, - [1474] = {.lex_state = 253, .external_lex_state = 10}, - [1475] = {.lex_state = 167}, - [1476] = {.lex_state = 236, .external_lex_state = 16}, - [1477] = {.lex_state = 70}, - [1478] = {.lex_state = 175, .external_lex_state = 16}, - [1479] = {.lex_state = 175, .external_lex_state = 16}, - [1480] = {.lex_state = 253, .external_lex_state = 10}, - [1481] = {.lex_state = 240}, - [1482] = {.lex_state = 238, .external_lex_state = 16}, - [1483] = {.lex_state = 253, .external_lex_state = 10}, - [1484] = {.lex_state = 240}, - [1485] = {.lex_state = 238, .external_lex_state = 16}, - [1486] = {.lex_state = 219, .external_lex_state = 2}, - [1487] = {.lex_state = 253, .external_lex_state = 10}, - [1488] = {.lex_state = 138, .external_lex_state = 4}, - [1489] = {.lex_state = 142, .external_lex_state = 8}, - [1490] = {.lex_state = 64, .external_lex_state = 2}, - [1491] = {.lex_state = 93, .external_lex_state = 4}, - [1492] = {.lex_state = 123, .external_lex_state = 8}, - [1493] = {.lex_state = 219, .external_lex_state = 2}, - [1494] = {.lex_state = 253, .external_lex_state = 10}, - [1495] = {.lex_state = 138, .external_lex_state = 4}, - [1496] = {.lex_state = 142, .external_lex_state = 8}, - [1497] = {.lex_state = 144, .external_lex_state = 4}, - [1498] = {.lex_state = 144, .external_lex_state = 4}, - [1499] = {.lex_state = 123, .external_lex_state = 19}, - [1500] = {.lex_state = 123, .external_lex_state = 21}, - [1501] = {.lex_state = 81}, - [1502] = {.lex_state = 121, .external_lex_state = 10}, - [1503] = {.lex_state = 121, .external_lex_state = 10}, - [1504] = {.lex_state = 81}, - [1505] = {.lex_state = 204, .external_lex_state = 23}, - [1506] = {.lex_state = 204, .external_lex_state = 23}, - [1507] = {.lex_state = 204, .external_lex_state = 23}, - [1508] = {.lex_state = 204, .external_lex_state = 23}, - [1509] = {.lex_state = 204, .external_lex_state = 21}, - [1510] = {.lex_state = 204, .external_lex_state = 5}, - [1511] = {.lex_state = 64, .external_lex_state = 2}, - [1512] = {.lex_state = 64, .external_lex_state = 2}, - [1513] = {.lex_state = 144, .external_lex_state = 4}, - [1514] = {.lex_state = 81}, - [1515] = {.lex_state = 81}, - [1516] = {.lex_state = 271, .external_lex_state = 2}, - [1517] = {.lex_state = 266}, - [1518] = {.lex_state = 266, .external_lex_state = 13}, - [1519] = {.lex_state = 271, .external_lex_state = 2}, - [1520] = {.lex_state = 266}, - [1521] = {.lex_state = 144, .external_lex_state = 4}, - [1522] = {.lex_state = 269}, - [1523] = {.lex_state = 81}, - [1524] = {.lex_state = 81}, - [1525] = {.lex_state = 144, .external_lex_state = 4}, - [1526] = {.lex_state = 269}, - [1527] = {.lex_state = 81}, - [1528] = {.lex_state = 132, .external_lex_state = 10}, - [1529] = {.lex_state = 132, .external_lex_state = 10}, - [1530] = {.lex_state = 214, .external_lex_state = 22}, - [1531] = {.lex_state = 214, .external_lex_state = 22}, - [1532] = {.lex_state = 214, .external_lex_state = 16}, - [1533] = {.lex_state = 238, .external_lex_state = 16}, - [1534] = {.lex_state = 132, .external_lex_state = 10}, - [1535] = {.lex_state = 238, .external_lex_state = 16}, - [1536] = {.lex_state = 132, .external_lex_state = 10}, - [1537] = {.lex_state = 238, .external_lex_state = 16}, - [1538] = {.lex_state = 238, .external_lex_state = 16}, - [1539] = {.lex_state = 132, .external_lex_state = 10}, - [1540] = {.lex_state = 132, .external_lex_state = 10}, - [1541] = {.lex_state = 144, .external_lex_state = 4}, - [1542] = {.lex_state = 121, .external_lex_state = 10}, - [1543] = {.lex_state = 121, .external_lex_state = 10}, - [1544] = {.lex_state = 144, .external_lex_state = 4}, - [1545] = {.lex_state = 121, .external_lex_state = 10}, - [1546] = {.lex_state = 142, .external_lex_state = 19}, - [1547] = {.lex_state = 142, .external_lex_state = 21}, - [1548] = {.lex_state = 81}, - [1549] = {.lex_state = 273, .external_lex_state = 10}, - [1550] = {.lex_state = 273, .external_lex_state = 10}, - [1551] = {.lex_state = 81}, - [1552] = {.lex_state = 222, .external_lex_state = 23}, - [1553] = {.lex_state = 222, .external_lex_state = 23}, - [1554] = {.lex_state = 222, .external_lex_state = 23}, - [1555] = {.lex_state = 222, .external_lex_state = 23}, - [1556] = {.lex_state = 222, .external_lex_state = 21}, - [1557] = {.lex_state = 222, .external_lex_state = 5}, - [1558] = {.lex_state = 81, .external_lex_state = 2}, - [1559] = {.lex_state = 150, .external_lex_state = 11}, - [1560] = {.lex_state = 150, .external_lex_state = 11}, - [1561] = {.lex_state = 214, .external_lex_state = 22}, - [1562] = {.lex_state = 214, .external_lex_state = 22}, - [1563] = {.lex_state = 214, .external_lex_state = 16}, - [1564] = {.lex_state = 238, .external_lex_state = 16}, - [1565] = {.lex_state = 150, .external_lex_state = 11}, - [1566] = {.lex_state = 238, .external_lex_state = 16}, - [1567] = {.lex_state = 150, .external_lex_state = 11}, - [1568] = {.lex_state = 238, .external_lex_state = 16}, - [1569] = {.lex_state = 238, .external_lex_state = 16}, - [1570] = {.lex_state = 150, .external_lex_state = 11}, - [1571] = {.lex_state = 150, .external_lex_state = 11}, - [1572] = {.lex_state = 204, .external_lex_state = 23}, - [1573] = {.lex_state = 204, .external_lex_state = 23}, - [1574] = {.lex_state = 249, .external_lex_state = 21}, - [1575] = {.lex_state = 81}, - [1576] = {.lex_state = 204, .external_lex_state = 23}, - [1577] = {.lex_state = 249, .external_lex_state = 23}, - [1578] = {.lex_state = 167}, - [1579] = {.lex_state = 100}, - [1580] = {.lex_state = 249, .external_lex_state = 23}, - [1581] = {.lex_state = 249, .external_lex_state = 23}, - [1582] = {.lex_state = 249, .external_lex_state = 23}, - [1583] = {.lex_state = 70}, - [1584] = {.lex_state = 173, .external_lex_state = 6}, - [1585] = {.lex_state = 175, .external_lex_state = 16}, - [1586] = {.lex_state = 175, .external_lex_state = 16}, - [1587] = {.lex_state = 138, .external_lex_state = 4}, - [1588] = {.lex_state = 142, .external_lex_state = 8}, - [1589] = {.lex_state = 64, .external_lex_state = 2}, - [1590] = {.lex_state = 93, .external_lex_state = 4}, - [1591] = {.lex_state = 123, .external_lex_state = 8}, - [1592] = {.lex_state = 64, .external_lex_state = 2}, - [1593] = {.lex_state = 138, .external_lex_state = 4}, - [1594] = {.lex_state = 142, .external_lex_state = 8}, - [1595] = {.lex_state = 64, .external_lex_state = 2}, - [1596] = {.lex_state = 233, .external_lex_state = 13}, - [1597] = {.lex_state = 233, .external_lex_state = 13}, - [1598] = {.lex_state = 214, .external_lex_state = 22}, - [1599] = {.lex_state = 214, .external_lex_state = 22}, - [1600] = {.lex_state = 214, .external_lex_state = 16}, - [1601] = {.lex_state = 238, .external_lex_state = 16}, - [1602] = {.lex_state = 233, .external_lex_state = 13}, - [1603] = {.lex_state = 238, .external_lex_state = 16}, - [1604] = {.lex_state = 233, .external_lex_state = 13}, - [1605] = {.lex_state = 238, .external_lex_state = 16}, - [1606] = {.lex_state = 238, .external_lex_state = 16}, - [1607] = {.lex_state = 233, .external_lex_state = 13}, - [1608] = {.lex_state = 233, .external_lex_state = 13}, - [1609] = {.lex_state = 138, .external_lex_state = 3}, - [1610] = {.lex_state = 138, .external_lex_state = 14}, - [1611] = {.lex_state = 138, .external_lex_state = 14}, - [1612] = {.lex_state = 214, .external_lex_state = 22}, - [1613] = {.lex_state = 214, .external_lex_state = 22}, - [1614] = {.lex_state = 214, .external_lex_state = 16}, - [1615] = {.lex_state = 238, .external_lex_state = 16}, - [1616] = {.lex_state = 138, .external_lex_state = 14}, - [1617] = {.lex_state = 238, .external_lex_state = 16}, - [1618] = {.lex_state = 138, .external_lex_state = 14}, - [1619] = {.lex_state = 238, .external_lex_state = 16}, - [1620] = {.lex_state = 238, .external_lex_state = 16}, - [1621] = {.lex_state = 138, .external_lex_state = 14}, - [1622] = {.lex_state = 138, .external_lex_state = 14}, - [1623] = {.lex_state = 138, .external_lex_state = 10}, - [1624] = {.lex_state = 138, .external_lex_state = 10}, - [1625] = {.lex_state = 214, .external_lex_state = 22}, - [1626] = {.lex_state = 214, .external_lex_state = 22}, - [1627] = {.lex_state = 214, .external_lex_state = 16}, - [1628] = {.lex_state = 238, .external_lex_state = 16}, - [1629] = {.lex_state = 138, .external_lex_state = 10}, - [1630] = {.lex_state = 238, .external_lex_state = 16}, - [1631] = {.lex_state = 138, .external_lex_state = 10}, - [1632] = {.lex_state = 238, .external_lex_state = 16}, - [1633] = {.lex_state = 238, .external_lex_state = 16}, - [1634] = {.lex_state = 138, .external_lex_state = 10}, - [1635] = {.lex_state = 138, .external_lex_state = 10}, - [1636] = {.lex_state = 81, .external_lex_state = 15}, - [1637] = {.lex_state = 81, .external_lex_state = 15}, - [1638] = {.lex_state = 214, .external_lex_state = 22}, - [1639] = {.lex_state = 214, .external_lex_state = 22}, - [1640] = {.lex_state = 214, .external_lex_state = 16}, - [1641] = {.lex_state = 238, .external_lex_state = 16}, - [1642] = {.lex_state = 81, .external_lex_state = 15}, - [1643] = {.lex_state = 238, .external_lex_state = 16}, - [1644] = {.lex_state = 81, .external_lex_state = 15}, - [1645] = {.lex_state = 238, .external_lex_state = 16}, - [1646] = {.lex_state = 238, .external_lex_state = 16}, - [1647] = {.lex_state = 81, .external_lex_state = 15}, - [1648] = {.lex_state = 81, .external_lex_state = 15}, - [1649] = {.lex_state = 100, .external_lex_state = 13}, - [1650] = {.lex_state = 100, .external_lex_state = 13}, - [1651] = {.lex_state = 214, .external_lex_state = 22}, - [1652] = {.lex_state = 214, .external_lex_state = 22}, - [1653] = {.lex_state = 214, .external_lex_state = 16}, - [1654] = {.lex_state = 238, .external_lex_state = 16}, - [1655] = {.lex_state = 100, .external_lex_state = 13}, - [1656] = {.lex_state = 238, .external_lex_state = 16}, - [1657] = {.lex_state = 100, .external_lex_state = 13}, - [1658] = {.lex_state = 238, .external_lex_state = 16}, - [1659] = {.lex_state = 238, .external_lex_state = 16}, - [1660] = {.lex_state = 100, .external_lex_state = 13}, - [1661] = {.lex_state = 175, .external_lex_state = 22}, - [1662] = {.lex_state = 175, .external_lex_state = 16}, - [1663] = {.lex_state = 175, .external_lex_state = 22}, - [1664] = {.lex_state = 175, .external_lex_state = 16}, - [1665] = {.lex_state = 214, .external_lex_state = 22}, - [1666] = {.lex_state = 214, .external_lex_state = 22}, - [1667] = {.lex_state = 214, .external_lex_state = 22}, - [1668] = {.lex_state = 167}, - [1669] = {.lex_state = 236, .external_lex_state = 16}, - [1670] = {.lex_state = 70}, - [1671] = {.lex_state = 175, .external_lex_state = 16}, - [1672] = {.lex_state = 175, .external_lex_state = 16}, - [1673] = {.lex_state = 214, .external_lex_state = 22}, - [1674] = {.lex_state = 240}, - [1675] = {.lex_state = 238, .external_lex_state = 16}, - [1676] = {.lex_state = 214, .external_lex_state = 22}, - [1677] = {.lex_state = 240}, - [1678] = {.lex_state = 238, .external_lex_state = 16}, - [1679] = {.lex_state = 219, .external_lex_state = 2}, - [1680] = {.lex_state = 214, .external_lex_state = 22}, - [1681] = {.lex_state = 138, .external_lex_state = 4}, - [1682] = {.lex_state = 142, .external_lex_state = 8}, - [1683] = {.lex_state = 64, .external_lex_state = 2}, - [1684] = {.lex_state = 93, .external_lex_state = 4}, - [1685] = {.lex_state = 123, .external_lex_state = 8}, - [1686] = {.lex_state = 219, .external_lex_state = 2}, - [1687] = {.lex_state = 214, .external_lex_state = 22}, - [1688] = {.lex_state = 138, .external_lex_state = 4}, - [1689] = {.lex_state = 142, .external_lex_state = 8}, - [1690] = {.lex_state = 125, .external_lex_state = 5}, - [1691] = {.lex_state = 125, .external_lex_state = 5}, - [1692] = {.lex_state = 125, .external_lex_state = 5}, - [1693] = {.lex_state = 238, .external_lex_state = 16}, - [1694] = {.lex_state = 238, .external_lex_state = 16}, - [1695] = {.lex_state = 238, .external_lex_state = 22}, - [1696] = {.lex_state = 238, .external_lex_state = 22}, - [1697] = {.lex_state = 214, .external_lex_state = 22}, - [1698] = {.lex_state = 214, .external_lex_state = 22}, - [1699] = {.lex_state = 214, .external_lex_state = 16}, - [1700] = {.lex_state = 236, .external_lex_state = 16}, - [1701] = {.lex_state = 238, .external_lex_state = 22}, - [1702] = {.lex_state = 240}, - [1703] = {.lex_state = 238, .external_lex_state = 16}, - [1704] = {.lex_state = 240}, - [1705] = {.lex_state = 238, .external_lex_state = 16}, - [1706] = {.lex_state = 238, .external_lex_state = 16}, - [1707] = {.lex_state = 238, .external_lex_state = 22}, - [1708] = {.lex_state = 238, .external_lex_state = 16}, - [1709] = {.lex_state = 125, .external_lex_state = 5}, - [1710] = {.lex_state = 238, .external_lex_state = 22}, - [1711] = {.lex_state = 219, .external_lex_state = 2}, - [1712] = {.lex_state = 64, .external_lex_state = 2}, - [1713] = {.lex_state = 238, .external_lex_state = 22}, - [1714] = {.lex_state = 219, .external_lex_state = 2}, - [1715] = {.lex_state = 123, .external_lex_state = 21}, - [1716] = {.lex_state = 81}, - [1717] = {.lex_state = 275, .external_lex_state = 10}, - [1718] = {.lex_state = 275, .external_lex_state = 10}, - [1719] = {.lex_state = 81}, - [1720] = {.lex_state = 247, .external_lex_state = 23}, - [1721] = {.lex_state = 247, .external_lex_state = 23}, - [1722] = {.lex_state = 247, .external_lex_state = 23}, - [1723] = {.lex_state = 247, .external_lex_state = 23}, - [1724] = {.lex_state = 247, .external_lex_state = 21}, - [1725] = {.lex_state = 247, .external_lex_state = 5}, - [1726] = {.lex_state = 178, .external_lex_state = 17}, - [1727] = {.lex_state = 214, .external_lex_state = 22}, - [1728] = {.lex_state = 214, .external_lex_state = 22}, - [1729] = {.lex_state = 214, .external_lex_state = 16}, - [1730] = {.lex_state = 236, .external_lex_state = 16}, - [1731] = {.lex_state = 178, .external_lex_state = 17}, - [1732] = {.lex_state = 240}, - [1733] = {.lex_state = 238, .external_lex_state = 16}, - [1734] = {.lex_state = 240}, - [1735] = {.lex_state = 238, .external_lex_state = 16}, - [1736] = {.lex_state = 238, .external_lex_state = 16}, - [1737] = {.lex_state = 178, .external_lex_state = 17}, - [1738] = {.lex_state = 238, .external_lex_state = 16}, - [1739] = {.lex_state = 210, .external_lex_state = 13}, - [1740] = {.lex_state = 210, .external_lex_state = 13}, - [1741] = {.lex_state = 214, .external_lex_state = 22}, - [1742] = {.lex_state = 214, .external_lex_state = 22}, - [1743] = {.lex_state = 214, .external_lex_state = 16}, - [1744] = {.lex_state = 236, .external_lex_state = 16}, - [1745] = {.lex_state = 210, .external_lex_state = 13}, - [1746] = {.lex_state = 240}, - [1747] = {.lex_state = 238, .external_lex_state = 16}, - [1748] = {.lex_state = 240}, - [1749] = {.lex_state = 238, .external_lex_state = 16}, - [1750] = {.lex_state = 238, .external_lex_state = 16}, - [1751] = {.lex_state = 210, .external_lex_state = 13}, - [1752] = {.lex_state = 238, .external_lex_state = 16}, - [1753] = {.lex_state = 210, .external_lex_state = 13}, - [1754] = {.lex_state = 219, .external_lex_state = 2}, - [1755] = {.lex_state = 64, .external_lex_state = 2}, - [1756] = {.lex_state = 210, .external_lex_state = 13}, - [1757] = {.lex_state = 219, .external_lex_state = 2}, - [1758] = {.lex_state = 142, .external_lex_state = 19}, - [1759] = {.lex_state = 142, .external_lex_state = 19}, - [1760] = {.lex_state = 214, .external_lex_state = 22}, - [1761] = {.lex_state = 214, .external_lex_state = 22}, - [1762] = {.lex_state = 214, .external_lex_state = 16}, - [1763] = {.lex_state = 238, .external_lex_state = 16}, - [1764] = {.lex_state = 142, .external_lex_state = 19}, - [1765] = {.lex_state = 238, .external_lex_state = 16}, - [1766] = {.lex_state = 142, .external_lex_state = 19}, - [1767] = {.lex_state = 238, .external_lex_state = 16}, - [1768] = {.lex_state = 238, .external_lex_state = 16}, - [1769] = {.lex_state = 142, .external_lex_state = 19}, - [1770] = {.lex_state = 142, .external_lex_state = 19}, - [1771] = {.lex_state = 144, .external_lex_state = 4}, - [1772] = {.lex_state = 144, .external_lex_state = 4}, - [1773] = {.lex_state = 214, .external_lex_state = 20}, - [1774] = {.lex_state = 264}, - [1775] = {.lex_state = 264, .external_lex_state = 13}, - [1776] = {.lex_state = 264, .external_lex_state = 13}, - [1777] = {.lex_state = 264, .external_lex_state = 13}, - [1778] = {.lex_state = 167}, - [1779] = {.lex_state = 236, .external_lex_state = 16}, - [1780] = {.lex_state = 70}, - [1781] = {.lex_state = 175, .external_lex_state = 16}, - [1782] = {.lex_state = 175, .external_lex_state = 16}, - [1783] = {.lex_state = 264, .external_lex_state = 13}, - [1784] = {.lex_state = 240}, - [1785] = {.lex_state = 238, .external_lex_state = 16}, - [1786] = {.lex_state = 264, .external_lex_state = 13}, - [1787] = {.lex_state = 240}, - [1788] = {.lex_state = 238, .external_lex_state = 16}, - [1789] = {.lex_state = 219, .external_lex_state = 2}, - [1790] = {.lex_state = 264, .external_lex_state = 13}, - [1791] = {.lex_state = 138, .external_lex_state = 4}, - [1792] = {.lex_state = 142, .external_lex_state = 8}, - [1793] = {.lex_state = 64, .external_lex_state = 2}, - [1794] = {.lex_state = 93, .external_lex_state = 4}, - [1795] = {.lex_state = 123, .external_lex_state = 8}, - [1796] = {.lex_state = 219, .external_lex_state = 2}, - [1797] = {.lex_state = 264, .external_lex_state = 13}, - [1798] = {.lex_state = 138, .external_lex_state = 4}, - [1799] = {.lex_state = 142, .external_lex_state = 8}, - [1800] = {.lex_state = 261}, - [1801] = {.lex_state = 264}, - [1802] = {.lex_state = 264}, - [1803] = {.lex_state = 261}, - [1804] = {.lex_state = 251, .external_lex_state = 10}, - [1805] = {.lex_state = 251, .external_lex_state = 10}, - [1806] = {.lex_state = 214, .external_lex_state = 22}, - [1807] = {.lex_state = 214, .external_lex_state = 22}, - [1808] = {.lex_state = 214, .external_lex_state = 16}, - [1809] = {.lex_state = 238, .external_lex_state = 16}, - [1810] = {.lex_state = 251, .external_lex_state = 10}, - [1811] = {.lex_state = 238, .external_lex_state = 16}, - [1812] = {.lex_state = 251, .external_lex_state = 10}, - [1813] = {.lex_state = 238, .external_lex_state = 16}, - [1814] = {.lex_state = 238, .external_lex_state = 16}, - [1815] = {.lex_state = 251, .external_lex_state = 10}, - [1816] = {.lex_state = 251, .external_lex_state = 10}, - [1817] = {.lex_state = 264}, - [1818] = {.lex_state = 253, .external_lex_state = 10}, - [1819] = {.lex_state = 253, .external_lex_state = 10}, - [1820] = {.lex_state = 214, .external_lex_state = 22}, - [1821] = {.lex_state = 214, .external_lex_state = 22}, - [1822] = {.lex_state = 214, .external_lex_state = 16}, - [1823] = {.lex_state = 236, .external_lex_state = 16}, - [1824] = {.lex_state = 253, .external_lex_state = 10}, - [1825] = {.lex_state = 240}, - [1826] = {.lex_state = 238, .external_lex_state = 16}, - [1827] = {.lex_state = 240}, - [1828] = {.lex_state = 238, .external_lex_state = 16}, - [1829] = {.lex_state = 238, .external_lex_state = 16}, - [1830] = {.lex_state = 253, .external_lex_state = 10}, - [1831] = {.lex_state = 238, .external_lex_state = 16}, - [1832] = {.lex_state = 253, .external_lex_state = 10}, - [1833] = {.lex_state = 219, .external_lex_state = 2}, - [1834] = {.lex_state = 64, .external_lex_state = 2}, - [1835] = {.lex_state = 253, .external_lex_state = 10}, - [1836] = {.lex_state = 219, .external_lex_state = 2}, - [1837] = {.lex_state = 121, .external_lex_state = 10}, - [1838] = {.lex_state = 121, .external_lex_state = 10}, - [1839] = {.lex_state = 121, .external_lex_state = 10}, - [1840] = {.lex_state = 204, .external_lex_state = 23}, - [1841] = {.lex_state = 204, .external_lex_state = 23}, - [1842] = {.lex_state = 204, .external_lex_state = 23}, - [1843] = {.lex_state = 64, .external_lex_state = 2}, - [1844] = {.lex_state = 144, .external_lex_state = 4}, - [1845] = {.lex_state = 266, .external_lex_state = 13}, - [1846] = {.lex_state = 266, .external_lex_state = 13}, - [1847] = {.lex_state = 266}, - [1848] = {.lex_state = 70}, - [1849] = {.lex_state = 64, .external_lex_state = 2}, - [1850] = {.lex_state = 255}, - [1851] = {.lex_state = 81}, - [1852] = {.lex_state = 83, .external_lex_state = 2}, - [1853] = {.lex_state = 85}, - [1854] = {.lex_state = 85}, - [1855] = {.lex_state = 277, .external_lex_state = 3}, - [1856] = {.lex_state = 277, .external_lex_state = 4}, - [1857] = {.lex_state = 283, .external_lex_state = 5}, - [1858] = {.lex_state = 100}, - [1859] = {.lex_state = 107}, - [1860] = {.lex_state = 283, .external_lex_state = 5}, - [1861] = {.lex_state = 107, .external_lex_state = 6}, - [1862] = {.lex_state = 64, .external_lex_state = 2}, - [1863] = {.lex_state = 64, .external_lex_state = 2}, - [1864] = {.lex_state = 64, .external_lex_state = 2}, - [1865] = {.lex_state = 285, .external_lex_state = 5}, - [1866] = {.lex_state = 269, .external_lex_state = 4}, - [1867] = {.lex_state = 283, .external_lex_state = 7}, - [1868] = {.lex_state = 287, .external_lex_state = 8}, - [1869] = {.lex_state = 70}, - [1870] = {.lex_state = 283, .external_lex_state = 7}, - [1871] = {.lex_state = 271, .external_lex_state = 2}, - [1872] = {.lex_state = 81, .external_lex_state = 2}, - [1873] = {.lex_state = 271, .external_lex_state = 2}, - [1874] = {.lex_state = 266}, - [1875] = {.lex_state = 266, .external_lex_state = 13}, - [1876] = {.lex_state = 255}, - [1877] = {.lex_state = 269, .external_lex_state = 4}, - [1878] = {.lex_state = 287, .external_lex_state = 8}, - [1879] = {.lex_state = 271, .external_lex_state = 2}, - [1880] = {.lex_state = 271, .external_lex_state = 2}, - [1881] = {.lex_state = 144, .external_lex_state = 4}, - [1882] = {.lex_state = 266, .external_lex_state = 13}, - [1883] = {.lex_state = 266, .external_lex_state = 13}, - [1884] = {.lex_state = 266}, - [1885] = {.lex_state = 269}, - [1886] = {.lex_state = 144, .external_lex_state = 4}, - [1887] = {.lex_state = 269}, - [1888] = {.lex_state = 132, .external_lex_state = 10}, - [1889] = {.lex_state = 132, .external_lex_state = 10}, - [1890] = {.lex_state = 132, .external_lex_state = 10}, - [1891] = {.lex_state = 238, .external_lex_state = 16}, - [1892] = {.lex_state = 238, .external_lex_state = 16}, - [1893] = {.lex_state = 132, .external_lex_state = 10}, - [1894] = {.lex_state = 121, .external_lex_state = 10}, - [1895] = {.lex_state = 273, .external_lex_state = 10}, - [1896] = {.lex_state = 273, .external_lex_state = 10}, - [1897] = {.lex_state = 273, .external_lex_state = 10}, - [1898] = {.lex_state = 222, .external_lex_state = 23}, - [1899] = {.lex_state = 222, .external_lex_state = 23}, - [1900] = {.lex_state = 222, .external_lex_state = 23}, - [1901] = {.lex_state = 150, .external_lex_state = 11}, - [1902] = {.lex_state = 150, .external_lex_state = 11}, - [1903] = {.lex_state = 150, .external_lex_state = 11}, - [1904] = {.lex_state = 238, .external_lex_state = 16}, - [1905] = {.lex_state = 238, .external_lex_state = 16}, - [1906] = {.lex_state = 150, .external_lex_state = 11}, - [1907] = {.lex_state = 249, .external_lex_state = 23}, - [1908] = {.lex_state = 204, .external_lex_state = 23}, - [1909] = {.lex_state = 249, .external_lex_state = 23}, - [1910] = {.lex_state = 167}, - [1911] = {.lex_state = 236, .external_lex_state = 16}, - [1912] = {.lex_state = 70}, - [1913] = {.lex_state = 175, .external_lex_state = 16}, - [1914] = {.lex_state = 175, .external_lex_state = 16}, - [1915] = {.lex_state = 249, .external_lex_state = 23}, - [1916] = {.lex_state = 240}, - [1917] = {.lex_state = 238, .external_lex_state = 16}, - [1918] = {.lex_state = 249, .external_lex_state = 23}, - [1919] = {.lex_state = 240}, - [1920] = {.lex_state = 238, .external_lex_state = 16}, - [1921] = {.lex_state = 219, .external_lex_state = 2}, - [1922] = {.lex_state = 249, .external_lex_state = 23}, - [1923] = {.lex_state = 138, .external_lex_state = 4}, - [1924] = {.lex_state = 142, .external_lex_state = 8}, - [1925] = {.lex_state = 64, .external_lex_state = 2}, - [1926] = {.lex_state = 93, .external_lex_state = 4}, - [1927] = {.lex_state = 123, .external_lex_state = 8}, - [1928] = {.lex_state = 219, .external_lex_state = 2}, - [1929] = {.lex_state = 249, .external_lex_state = 23}, - [1930] = {.lex_state = 138, .external_lex_state = 4}, - [1931] = {.lex_state = 142, .external_lex_state = 8}, - [1932] = {.lex_state = 233, .external_lex_state = 13}, - [1933] = {.lex_state = 233, .external_lex_state = 13}, - [1934] = {.lex_state = 233, .external_lex_state = 13}, - [1935] = {.lex_state = 238, .external_lex_state = 16}, - [1936] = {.lex_state = 238, .external_lex_state = 16}, - [1937] = {.lex_state = 233, .external_lex_state = 13}, - [1938] = {.lex_state = 138, .external_lex_state = 14}, - [1939] = {.lex_state = 138, .external_lex_state = 14}, - [1940] = {.lex_state = 138, .external_lex_state = 14}, - [1941] = {.lex_state = 238, .external_lex_state = 16}, - [1942] = {.lex_state = 238, .external_lex_state = 16}, - [1943] = {.lex_state = 138, .external_lex_state = 14}, - [1944] = {.lex_state = 138, .external_lex_state = 10}, - [1945] = {.lex_state = 138, .external_lex_state = 10}, - [1946] = {.lex_state = 138, .external_lex_state = 10}, - [1947] = {.lex_state = 238, .external_lex_state = 16}, - [1948] = {.lex_state = 238, .external_lex_state = 16}, - [1949] = {.lex_state = 138, .external_lex_state = 10}, - [1950] = {.lex_state = 81, .external_lex_state = 15}, - [1951] = {.lex_state = 81, .external_lex_state = 15}, - [1952] = {.lex_state = 81, .external_lex_state = 15}, - [1953] = {.lex_state = 238, .external_lex_state = 16}, - [1954] = {.lex_state = 238, .external_lex_state = 16}, - [1955] = {.lex_state = 81, .external_lex_state = 15}, - [1956] = {.lex_state = 100, .external_lex_state = 13}, - [1957] = {.lex_state = 100, .external_lex_state = 13}, - [1958] = {.lex_state = 100, .external_lex_state = 13}, - [1959] = {.lex_state = 238, .external_lex_state = 16}, - [1960] = {.lex_state = 238, .external_lex_state = 16}, - [1961] = {.lex_state = 100, .external_lex_state = 13}, - [1962] = {.lex_state = 175, .external_lex_state = 16}, - [1963] = {.lex_state = 175, .external_lex_state = 16}, - [1964] = {.lex_state = 214, .external_lex_state = 22}, - [1965] = {.lex_state = 214, .external_lex_state = 22}, - [1966] = {.lex_state = 214, .external_lex_state = 22}, - [1967] = {.lex_state = 214, .external_lex_state = 22}, - [1968] = {.lex_state = 214, .external_lex_state = 16}, - [1969] = {.lex_state = 236, .external_lex_state = 16}, - [1970] = {.lex_state = 214, .external_lex_state = 22}, - [1971] = {.lex_state = 240}, - [1972] = {.lex_state = 238, .external_lex_state = 16}, - [1973] = {.lex_state = 240}, - [1974] = {.lex_state = 238, .external_lex_state = 16}, - [1975] = {.lex_state = 238, .external_lex_state = 16}, - [1976] = {.lex_state = 214, .external_lex_state = 22}, - [1977] = {.lex_state = 238, .external_lex_state = 16}, - [1978] = {.lex_state = 214, .external_lex_state = 22}, - [1979] = {.lex_state = 219, .external_lex_state = 2}, - [1980] = {.lex_state = 64, .external_lex_state = 2}, - [1981] = {.lex_state = 214, .external_lex_state = 22}, - [1982] = {.lex_state = 219, .external_lex_state = 2}, - [1983] = {.lex_state = 125, .external_lex_state = 5}, - [1984] = {.lex_state = 125, .external_lex_state = 5}, - [1985] = {.lex_state = 238, .external_lex_state = 22}, - [1986] = {.lex_state = 238, .external_lex_state = 22}, - [1987] = {.lex_state = 214, .external_lex_state = 22}, - [1988] = {.lex_state = 214, .external_lex_state = 22}, - [1989] = {.lex_state = 214, .external_lex_state = 16}, - [1990] = {.lex_state = 238, .external_lex_state = 16}, - [1991] = {.lex_state = 238, .external_lex_state = 22}, - [1992] = {.lex_state = 238, .external_lex_state = 16}, - [1993] = {.lex_state = 238, .external_lex_state = 22}, - [1994] = {.lex_state = 238, .external_lex_state = 16}, - [1995] = {.lex_state = 238, .external_lex_state = 16}, - [1996] = {.lex_state = 238, .external_lex_state = 22}, - [1997] = {.lex_state = 238, .external_lex_state = 22}, - [1998] = {.lex_state = 275, .external_lex_state = 10}, - [1999] = {.lex_state = 275, .external_lex_state = 10}, - [2000] = {.lex_state = 275, .external_lex_state = 10}, - [2001] = {.lex_state = 247, .external_lex_state = 23}, - [2002] = {.lex_state = 247, .external_lex_state = 23}, - [2003] = {.lex_state = 247, .external_lex_state = 23}, - [2004] = {.lex_state = 178, .external_lex_state = 17}, - [2005] = {.lex_state = 178, .external_lex_state = 17}, - [2006] = {.lex_state = 214, .external_lex_state = 22}, - [2007] = {.lex_state = 214, .external_lex_state = 22}, - [2008] = {.lex_state = 214, .external_lex_state = 16}, - [2009] = {.lex_state = 238, .external_lex_state = 16}, - [2010] = {.lex_state = 178, .external_lex_state = 17}, - [2011] = {.lex_state = 238, .external_lex_state = 16}, - [2012] = {.lex_state = 178, .external_lex_state = 17}, - [2013] = {.lex_state = 238, .external_lex_state = 16}, - [2014] = {.lex_state = 238, .external_lex_state = 16}, - [2015] = {.lex_state = 210, .external_lex_state = 13}, - [2016] = {.lex_state = 210, .external_lex_state = 13}, - [2017] = {.lex_state = 214, .external_lex_state = 22}, - [2018] = {.lex_state = 214, .external_lex_state = 22}, - [2019] = {.lex_state = 214, .external_lex_state = 16}, - [2020] = {.lex_state = 238, .external_lex_state = 16}, - [2021] = {.lex_state = 210, .external_lex_state = 13}, - [2022] = {.lex_state = 238, .external_lex_state = 16}, - [2023] = {.lex_state = 210, .external_lex_state = 13}, - [2024] = {.lex_state = 238, .external_lex_state = 16}, - [2025] = {.lex_state = 238, .external_lex_state = 16}, - [2026] = {.lex_state = 210, .external_lex_state = 13}, - [2027] = {.lex_state = 210, .external_lex_state = 13}, - [2028] = {.lex_state = 142, .external_lex_state = 19}, - [2029] = {.lex_state = 142, .external_lex_state = 19}, - [2030] = {.lex_state = 142, .external_lex_state = 19}, - [2031] = {.lex_state = 238, .external_lex_state = 16}, - [2032] = {.lex_state = 238, .external_lex_state = 16}, - [2033] = {.lex_state = 142, .external_lex_state = 19}, - [2034] = {.lex_state = 144, .external_lex_state = 4}, - [2035] = {.lex_state = 264, .external_lex_state = 13}, - [2036] = {.lex_state = 264, .external_lex_state = 13}, - [2037] = {.lex_state = 214, .external_lex_state = 22}, - [2038] = {.lex_state = 214, .external_lex_state = 22}, - [2039] = {.lex_state = 214, .external_lex_state = 16}, - [2040] = {.lex_state = 236, .external_lex_state = 16}, - [2041] = {.lex_state = 264, .external_lex_state = 13}, - [2042] = {.lex_state = 240}, - [2043] = {.lex_state = 238, .external_lex_state = 16}, - [2044] = {.lex_state = 240}, - [2045] = {.lex_state = 238, .external_lex_state = 16}, - [2046] = {.lex_state = 238, .external_lex_state = 16}, - [2047] = {.lex_state = 264, .external_lex_state = 13}, - [2048] = {.lex_state = 238, .external_lex_state = 16}, - [2049] = {.lex_state = 264, .external_lex_state = 13}, - [2050] = {.lex_state = 219, .external_lex_state = 2}, - [2051] = {.lex_state = 64, .external_lex_state = 2}, - [2052] = {.lex_state = 264, .external_lex_state = 13}, - [2053] = {.lex_state = 219, .external_lex_state = 2}, - [2054] = {.lex_state = 144, .external_lex_state = 4}, - [2055] = {.lex_state = 261}, - [2056] = {.lex_state = 251, .external_lex_state = 10}, - [2057] = {.lex_state = 251, .external_lex_state = 10}, - [2058] = {.lex_state = 251, .external_lex_state = 10}, - [2059] = {.lex_state = 238, .external_lex_state = 16}, - [2060] = {.lex_state = 238, .external_lex_state = 16}, - [2061] = {.lex_state = 251, .external_lex_state = 10}, - [2062] = {.lex_state = 261}, - [2063] = {.lex_state = 253, .external_lex_state = 10}, - [2064] = {.lex_state = 253, .external_lex_state = 10}, - [2065] = {.lex_state = 214, .external_lex_state = 22}, - [2066] = {.lex_state = 214, .external_lex_state = 22}, - [2067] = {.lex_state = 214, .external_lex_state = 16}, - [2068] = {.lex_state = 238, .external_lex_state = 16}, - [2069] = {.lex_state = 253, .external_lex_state = 10}, - [2070] = {.lex_state = 238, .external_lex_state = 16}, - [2071] = {.lex_state = 253, .external_lex_state = 10}, - [2072] = {.lex_state = 238, .external_lex_state = 16}, - [2073] = {.lex_state = 238, .external_lex_state = 16}, - [2074] = {.lex_state = 253, .external_lex_state = 10}, - [2075] = {.lex_state = 253, .external_lex_state = 10}, - [2076] = {.lex_state = 121, .external_lex_state = 10}, - [2077] = {.lex_state = 204, .external_lex_state = 23}, - [2078] = {.lex_state = 127, .external_lex_state = 9}, - [2079] = {.lex_state = 81}, - [2080] = {.lex_state = 136}, - [2081] = {.lex_state = 150, .external_lex_state = 12}, - [2082] = {.lex_state = 164}, - [2083] = {.lex_state = 70}, - [2084] = {.lex_state = 277, .external_lex_state = 14}, - [2085] = {.lex_state = 100}, - [2086] = {.lex_state = 107}, - [2087] = {.lex_state = 277, .external_lex_state = 14}, - [2088] = {.lex_state = 107, .external_lex_state = 6}, - [2089] = {.lex_state = 64, .external_lex_state = 2}, - [2090] = {.lex_state = 64, .external_lex_state = 2}, - [2091] = {.lex_state = 64, .external_lex_state = 2}, - [2092] = {.lex_state = 70}, - [2093] = {.lex_state = 277, .external_lex_state = 3}, - [2094] = {.lex_state = 277, .external_lex_state = 10}, - [2095] = {.lex_state = 100}, - [2096] = {.lex_state = 107}, - [2097] = {.lex_state = 277, .external_lex_state = 10}, - [2098] = {.lex_state = 107, .external_lex_state = 6}, - [2099] = {.lex_state = 64, .external_lex_state = 2}, - [2100] = {.lex_state = 64, .external_lex_state = 2}, - [2101] = {.lex_state = 64, .external_lex_state = 2}, - [2102] = {.lex_state = 277, .external_lex_state = 4}, - [2103] = {.lex_state = 81}, - [2104] = {.lex_state = 283, .external_lex_state = 5}, - [2105] = {.lex_state = 283, .external_lex_state = 5}, - [2106] = {.lex_state = 167}, - [2107] = {.lex_state = 100}, - [2108] = {.lex_state = 283, .external_lex_state = 5}, - [2109] = {.lex_state = 283, .external_lex_state = 5}, - [2110] = {.lex_state = 283, .external_lex_state = 5}, - [2111] = {.lex_state = 70}, - [2112] = {.lex_state = 173, .external_lex_state = 6}, - [2113] = {.lex_state = 175, .external_lex_state = 16}, - [2114] = {.lex_state = 175, .external_lex_state = 16}, - [2115] = {.lex_state = 138, .external_lex_state = 4}, - [2116] = {.lex_state = 142, .external_lex_state = 8}, - [2117] = {.lex_state = 64, .external_lex_state = 2}, - [2118] = {.lex_state = 93, .external_lex_state = 4}, - [2119] = {.lex_state = 123, .external_lex_state = 8}, - [2120] = {.lex_state = 64, .external_lex_state = 2}, - [2121] = {.lex_state = 138, .external_lex_state = 4}, - [2122] = {.lex_state = 142, .external_lex_state = 8}, - [2123] = {.lex_state = 64, .external_lex_state = 2}, - [2124] = {.lex_state = 83}, - [2125] = {.lex_state = 271, .external_lex_state = 2}, - [2126] = {.lex_state = 64, .external_lex_state = 2}, - [2127] = {.lex_state = 271, .external_lex_state = 2}, - [2128] = {.lex_state = 64, .external_lex_state = 2}, - [2129] = {.lex_state = 64}, - [2130] = {.lex_state = 181}, - [2131] = {.lex_state = 81}, - [2132] = {.lex_state = 81}, - [2133] = {.lex_state = 283, .external_lex_state = 5}, - [2134] = {.lex_state = 283, .external_lex_state = 5}, - [2135] = {.lex_state = 289, .external_lex_state = 7}, - [2136] = {.lex_state = 283, .external_lex_state = 7}, - [2137] = {.lex_state = 255}, - [2138] = {.lex_state = 269, .external_lex_state = 4}, - [2139] = {.lex_state = 287, .external_lex_state = 8}, - [2140] = {.lex_state = 271, .external_lex_state = 2}, - [2141] = {.lex_state = 283, .external_lex_state = 7}, - [2142] = {.lex_state = 271, .external_lex_state = 2}, - [2143] = {.lex_state = 271, .external_lex_state = 2}, - [2144] = {.lex_state = 255}, - [2145] = {.lex_state = 269, .external_lex_state = 4}, - [2146] = {.lex_state = 287, .external_lex_state = 8}, - [2147] = {.lex_state = 271, .external_lex_state = 2}, - [2148] = {.lex_state = 219, .external_lex_state = 2}, - [2149] = {.lex_state = 266}, - [2150] = {.lex_state = 219, .external_lex_state = 2}, - [2151] = {.lex_state = 266}, - [2152] = {.lex_state = 144, .external_lex_state = 4}, - [2153] = {.lex_state = 144, .external_lex_state = 4}, - [2154] = {.lex_state = 132, .external_lex_state = 10}, - [2155] = {.lex_state = 132, .external_lex_state = 10}, - [2156] = {.lex_state = 273, .external_lex_state = 10}, - [2157] = {.lex_state = 222, .external_lex_state = 23}, - [2158] = {.lex_state = 150, .external_lex_state = 11}, - [2159] = {.lex_state = 150, .external_lex_state = 11}, - [2160] = {.lex_state = 249, .external_lex_state = 23}, - [2161] = {.lex_state = 249, .external_lex_state = 23}, - [2162] = {.lex_state = 214, .external_lex_state = 22}, - [2163] = {.lex_state = 214, .external_lex_state = 22}, - [2164] = {.lex_state = 214, .external_lex_state = 16}, - [2165] = {.lex_state = 236, .external_lex_state = 16}, - [2166] = {.lex_state = 249, .external_lex_state = 23}, - [2167] = {.lex_state = 240}, - [2168] = {.lex_state = 238, .external_lex_state = 16}, - [2169] = {.lex_state = 240}, - [2170] = {.lex_state = 238, .external_lex_state = 16}, - [2171] = {.lex_state = 238, .external_lex_state = 16}, - [2172] = {.lex_state = 249, .external_lex_state = 23}, - [2173] = {.lex_state = 238, .external_lex_state = 16}, - [2174] = {.lex_state = 249, .external_lex_state = 23}, - [2175] = {.lex_state = 219, .external_lex_state = 2}, - [2176] = {.lex_state = 64, .external_lex_state = 2}, - [2177] = {.lex_state = 249, .external_lex_state = 23}, - [2178] = {.lex_state = 219, .external_lex_state = 2}, - [2179] = {.lex_state = 233, .external_lex_state = 13}, - [2180] = {.lex_state = 233, .external_lex_state = 13}, - [2181] = {.lex_state = 138, .external_lex_state = 14}, - [2182] = {.lex_state = 138, .external_lex_state = 14}, - [2183] = {.lex_state = 138, .external_lex_state = 10}, - [2184] = {.lex_state = 138, .external_lex_state = 10}, - [2185] = {.lex_state = 81, .external_lex_state = 15}, - [2186] = {.lex_state = 81, .external_lex_state = 15}, - [2187] = {.lex_state = 100, .external_lex_state = 13}, - [2188] = {.lex_state = 100, .external_lex_state = 13}, - [2189] = {.lex_state = 214, .external_lex_state = 22}, - [2190] = {.lex_state = 214, .external_lex_state = 22}, - [2191] = {.lex_state = 214, .external_lex_state = 22}, - [2192] = {.lex_state = 214, .external_lex_state = 22}, - [2193] = {.lex_state = 214, .external_lex_state = 16}, - [2194] = {.lex_state = 238, .external_lex_state = 16}, - [2195] = {.lex_state = 214, .external_lex_state = 22}, - [2196] = {.lex_state = 238, .external_lex_state = 16}, - [2197] = {.lex_state = 214, .external_lex_state = 22}, - [2198] = {.lex_state = 238, .external_lex_state = 16}, - [2199] = {.lex_state = 238, .external_lex_state = 16}, - [2200] = {.lex_state = 214, .external_lex_state = 22}, - [2201] = {.lex_state = 214, .external_lex_state = 22}, - [2202] = {.lex_state = 238, .external_lex_state = 22}, - [2203] = {.lex_state = 238, .external_lex_state = 22}, - [2204] = {.lex_state = 238, .external_lex_state = 22}, - [2205] = {.lex_state = 238, .external_lex_state = 16}, - [2206] = {.lex_state = 238, .external_lex_state = 16}, - [2207] = {.lex_state = 238, .external_lex_state = 22}, - [2208] = {.lex_state = 275, .external_lex_state = 10}, - [2209] = {.lex_state = 247, .external_lex_state = 23}, - [2210] = {.lex_state = 178, .external_lex_state = 17}, - [2211] = {.lex_state = 178, .external_lex_state = 17}, - [2212] = {.lex_state = 178, .external_lex_state = 17}, - [2213] = {.lex_state = 238, .external_lex_state = 16}, - [2214] = {.lex_state = 238, .external_lex_state = 16}, - [2215] = {.lex_state = 178, .external_lex_state = 17}, - [2216] = {.lex_state = 210, .external_lex_state = 13}, - [2217] = {.lex_state = 210, .external_lex_state = 13}, - [2218] = {.lex_state = 210, .external_lex_state = 13}, - [2219] = {.lex_state = 238, .external_lex_state = 16}, - [2220] = {.lex_state = 238, .external_lex_state = 16}, - [2221] = {.lex_state = 210, .external_lex_state = 13}, - [2222] = {.lex_state = 142, .external_lex_state = 19}, - [2223] = {.lex_state = 142, .external_lex_state = 19}, - [2224] = {.lex_state = 264, .external_lex_state = 13}, - [2225] = {.lex_state = 264, .external_lex_state = 13}, - [2226] = {.lex_state = 214, .external_lex_state = 22}, - [2227] = {.lex_state = 214, .external_lex_state = 22}, - [2228] = {.lex_state = 214, .external_lex_state = 16}, - [2229] = {.lex_state = 238, .external_lex_state = 16}, - [2230] = {.lex_state = 264, .external_lex_state = 13}, - [2231] = {.lex_state = 238, .external_lex_state = 16}, - [2232] = {.lex_state = 264, .external_lex_state = 13}, - [2233] = {.lex_state = 238, .external_lex_state = 16}, - [2234] = {.lex_state = 238, .external_lex_state = 16}, - [2235] = {.lex_state = 264, .external_lex_state = 13}, - [2236] = {.lex_state = 264, .external_lex_state = 13}, - [2237] = {.lex_state = 144, .external_lex_state = 4}, - [2238] = {.lex_state = 251, .external_lex_state = 10}, - [2239] = {.lex_state = 251, .external_lex_state = 10}, - [2240] = {.lex_state = 261}, - [2241] = {.lex_state = 253, .external_lex_state = 10}, - [2242] = {.lex_state = 253, .external_lex_state = 10}, - [2243] = {.lex_state = 253, .external_lex_state = 10}, - [2244] = {.lex_state = 238, .external_lex_state = 16}, - [2245] = {.lex_state = 238, .external_lex_state = 16}, - [2246] = {.lex_state = 253, .external_lex_state = 10}, - [2247] = {.lex_state = 287, .external_lex_state = 8}, - [2248] = {.lex_state = 210}, - [2249] = {.lex_state = 287, .external_lex_state = 19}, - [2250] = {.lex_state = 100}, - [2251] = {.lex_state = 107}, - [2252] = {.lex_state = 287, .external_lex_state = 19}, - [2253] = {.lex_state = 107, .external_lex_state = 6}, - [2254] = {.lex_state = 64, .external_lex_state = 2}, - [2255] = {.lex_state = 64, .external_lex_state = 2}, - [2256] = {.lex_state = 64, .external_lex_state = 2}, - [2257] = {.lex_state = 289, .external_lex_state = 7}, - [2258] = {.lex_state = 83}, - [2259] = {.lex_state = 291, .external_lex_state = 21}, - [2260] = {.lex_state = 289, .external_lex_state = 21}, - [2261] = {.lex_state = 127, .external_lex_state = 9}, - [2262] = {.lex_state = 81}, - [2263] = {.lex_state = 277, .external_lex_state = 14}, - [2264] = {.lex_state = 277, .external_lex_state = 14}, - [2265] = {.lex_state = 167}, - [2266] = {.lex_state = 100}, - [2267] = {.lex_state = 277, .external_lex_state = 14}, - [2268] = {.lex_state = 277, .external_lex_state = 14}, - [2269] = {.lex_state = 277, .external_lex_state = 14}, - [2270] = {.lex_state = 70}, - [2271] = {.lex_state = 173, .external_lex_state = 6}, - [2272] = {.lex_state = 175, .external_lex_state = 16}, - [2273] = {.lex_state = 175, .external_lex_state = 16}, - [2274] = {.lex_state = 138, .external_lex_state = 4}, - [2275] = {.lex_state = 142, .external_lex_state = 8}, - [2276] = {.lex_state = 64, .external_lex_state = 2}, - [2277] = {.lex_state = 93, .external_lex_state = 4}, - [2278] = {.lex_state = 123, .external_lex_state = 8}, - [2279] = {.lex_state = 64, .external_lex_state = 2}, - [2280] = {.lex_state = 138, .external_lex_state = 4}, - [2281] = {.lex_state = 142, .external_lex_state = 8}, - [2282] = {.lex_state = 64, .external_lex_state = 2}, - [2283] = {.lex_state = 277, .external_lex_state = 3}, - [2284] = {.lex_state = 81}, - [2285] = {.lex_state = 277, .external_lex_state = 10}, - [2286] = {.lex_state = 277, .external_lex_state = 10}, - [2287] = {.lex_state = 167}, - [2288] = {.lex_state = 100}, - [2289] = {.lex_state = 277, .external_lex_state = 10}, - [2290] = {.lex_state = 277, .external_lex_state = 10}, - [2291] = {.lex_state = 277, .external_lex_state = 10}, - [2292] = {.lex_state = 70}, - [2293] = {.lex_state = 173, .external_lex_state = 6}, - [2294] = {.lex_state = 175, .external_lex_state = 16}, - [2295] = {.lex_state = 175, .external_lex_state = 16}, - [2296] = {.lex_state = 138, .external_lex_state = 4}, - [2297] = {.lex_state = 142, .external_lex_state = 8}, - [2298] = {.lex_state = 64, .external_lex_state = 2}, - [2299] = {.lex_state = 93, .external_lex_state = 4}, - [2300] = {.lex_state = 123, .external_lex_state = 8}, - [2301] = {.lex_state = 64, .external_lex_state = 2}, - [2302] = {.lex_state = 138, .external_lex_state = 4}, - [2303] = {.lex_state = 142, .external_lex_state = 8}, - [2304] = {.lex_state = 64, .external_lex_state = 2}, - [2305] = {.lex_state = 277, .external_lex_state = 4}, - [2306] = {.lex_state = 283, .external_lex_state = 5}, - [2307] = {.lex_state = 283, .external_lex_state = 5}, - [2308] = {.lex_state = 283, .external_lex_state = 5}, - [2309] = {.lex_state = 167}, - [2310] = {.lex_state = 236, .external_lex_state = 16}, - [2311] = {.lex_state = 70}, - [2312] = {.lex_state = 175, .external_lex_state = 16}, - [2313] = {.lex_state = 175, .external_lex_state = 16}, - [2314] = {.lex_state = 283, .external_lex_state = 5}, - [2315] = {.lex_state = 240}, - [2316] = {.lex_state = 238, .external_lex_state = 16}, - [2317] = {.lex_state = 283, .external_lex_state = 5}, - [2318] = {.lex_state = 240}, - [2319] = {.lex_state = 238, .external_lex_state = 16}, - [2320] = {.lex_state = 219, .external_lex_state = 2}, - [2321] = {.lex_state = 283, .external_lex_state = 5}, - [2322] = {.lex_state = 138, .external_lex_state = 4}, - [2323] = {.lex_state = 142, .external_lex_state = 8}, - [2324] = {.lex_state = 64, .external_lex_state = 2}, - [2325] = {.lex_state = 93, .external_lex_state = 4}, - [2326] = {.lex_state = 123, .external_lex_state = 8}, - [2327] = {.lex_state = 219, .external_lex_state = 2}, - [2328] = {.lex_state = 283, .external_lex_state = 5}, - [2329] = {.lex_state = 138, .external_lex_state = 4}, - [2330] = {.lex_state = 142, .external_lex_state = 8}, - [2331] = {.lex_state = 136}, - [2332] = {.lex_state = 287, .external_lex_state = 8}, - [2333] = {.lex_state = 269, .external_lex_state = 4}, - [2334] = {.lex_state = 287, .external_lex_state = 8}, - [2335] = {.lex_state = 81}, - [2336] = {.lex_state = 283, .external_lex_state = 5}, - [2337] = {.lex_state = 283, .external_lex_state = 5}, - [2338] = {.lex_state = 283, .external_lex_state = 7}, - [2339] = {.lex_state = 289, .external_lex_state = 5}, - [2340] = {.lex_state = 100}, - [2341] = {.lex_state = 107}, - [2342] = {.lex_state = 289, .external_lex_state = 5}, - [2343] = {.lex_state = 107, .external_lex_state = 6}, - [2344] = {.lex_state = 64, .external_lex_state = 2}, - [2345] = {.lex_state = 64, .external_lex_state = 2}, - [2346] = {.lex_state = 64, .external_lex_state = 2}, - [2347] = {.lex_state = 289, .external_lex_state = 5}, - [2348] = {.lex_state = 289, .external_lex_state = 5}, - [2349] = {.lex_state = 289, .external_lex_state = 7}, - [2350] = {.lex_state = 289, .external_lex_state = 7}, - [2351] = {.lex_state = 283, .external_lex_state = 7}, - [2352] = {.lex_state = 271, .external_lex_state = 2}, - [2353] = {.lex_state = 93, .external_lex_state = 4}, - [2354] = {.lex_state = 123, .external_lex_state = 8}, - [2355] = {.lex_state = 283, .external_lex_state = 7}, - [2356] = {.lex_state = 255}, - [2357] = {.lex_state = 269, .external_lex_state = 4}, - [2358] = {.lex_state = 287, .external_lex_state = 8}, - [2359] = {.lex_state = 271, .external_lex_state = 2}, - [2360] = {.lex_state = 255}, - [2361] = {.lex_state = 269, .external_lex_state = 4}, - [2362] = {.lex_state = 287, .external_lex_state = 8}, - [2363] = {.lex_state = 81}, - [2364] = {.lex_state = 93, .external_lex_state = 4}, - [2365] = {.lex_state = 123, .external_lex_state = 8}, - [2366] = {.lex_state = 219, .external_lex_state = 2}, - [2367] = {.lex_state = 219, .external_lex_state = 2}, - [2368] = {.lex_state = 81}, - [2369] = {.lex_state = 93, .external_lex_state = 4}, - [2370] = {.lex_state = 123, .external_lex_state = 8}, - [2371] = {.lex_state = 219, .external_lex_state = 2}, - [2372] = {.lex_state = 219, .external_lex_state = 2}, - [2373] = {.lex_state = 249, .external_lex_state = 23}, - [2374] = {.lex_state = 249, .external_lex_state = 23}, - [2375] = {.lex_state = 214, .external_lex_state = 22}, - [2376] = {.lex_state = 214, .external_lex_state = 22}, - [2377] = {.lex_state = 214, .external_lex_state = 16}, - [2378] = {.lex_state = 238, .external_lex_state = 16}, - [2379] = {.lex_state = 249, .external_lex_state = 23}, - [2380] = {.lex_state = 238, .external_lex_state = 16}, - [2381] = {.lex_state = 249, .external_lex_state = 23}, - [2382] = {.lex_state = 238, .external_lex_state = 16}, - [2383] = {.lex_state = 238, .external_lex_state = 16}, - [2384] = {.lex_state = 249, .external_lex_state = 23}, - [2385] = {.lex_state = 249, .external_lex_state = 23}, - [2386] = {.lex_state = 214, .external_lex_state = 22}, - [2387] = {.lex_state = 214, .external_lex_state = 22}, - [2388] = {.lex_state = 214, .external_lex_state = 22}, - [2389] = {.lex_state = 238, .external_lex_state = 16}, - [2390] = {.lex_state = 238, .external_lex_state = 16}, - [2391] = {.lex_state = 214, .external_lex_state = 22}, - [2392] = {.lex_state = 238, .external_lex_state = 22}, - [2393] = {.lex_state = 238, .external_lex_state = 22}, - [2394] = {.lex_state = 178, .external_lex_state = 17}, - [2395] = {.lex_state = 178, .external_lex_state = 17}, - [2396] = {.lex_state = 210, .external_lex_state = 13}, - [2397] = {.lex_state = 210, .external_lex_state = 13}, - [2398] = {.lex_state = 264, .external_lex_state = 13}, - [2399] = {.lex_state = 264, .external_lex_state = 13}, - [2400] = {.lex_state = 264, .external_lex_state = 13}, - [2401] = {.lex_state = 238, .external_lex_state = 16}, - [2402] = {.lex_state = 238, .external_lex_state = 16}, - [2403] = {.lex_state = 264, .external_lex_state = 13}, - [2404] = {.lex_state = 144, .external_lex_state = 4}, - [2405] = {.lex_state = 253, .external_lex_state = 10}, - [2406] = {.lex_state = 253, .external_lex_state = 10}, - [2407] = {.lex_state = 287, .external_lex_state = 8}, - [2408] = {.lex_state = 210}, - [2409] = {.lex_state = 81}, - [2410] = {.lex_state = 287, .external_lex_state = 19}, - [2411] = {.lex_state = 287, .external_lex_state = 19}, - [2412] = {.lex_state = 167}, - [2413] = {.lex_state = 100}, - [2414] = {.lex_state = 287, .external_lex_state = 19}, - [2415] = {.lex_state = 287, .external_lex_state = 19}, - [2416] = {.lex_state = 287, .external_lex_state = 19}, - [2417] = {.lex_state = 70}, - [2418] = {.lex_state = 173, .external_lex_state = 6}, - [2419] = {.lex_state = 175, .external_lex_state = 16}, - [2420] = {.lex_state = 175, .external_lex_state = 16}, - [2421] = {.lex_state = 138, .external_lex_state = 4}, - [2422] = {.lex_state = 142, .external_lex_state = 8}, - [2423] = {.lex_state = 64, .external_lex_state = 2}, - [2424] = {.lex_state = 93, .external_lex_state = 4}, - [2425] = {.lex_state = 123, .external_lex_state = 8}, - [2426] = {.lex_state = 64, .external_lex_state = 2}, - [2427] = {.lex_state = 138, .external_lex_state = 4}, - [2428] = {.lex_state = 142, .external_lex_state = 8}, - [2429] = {.lex_state = 64, .external_lex_state = 2}, - [2430] = {.lex_state = 289, .external_lex_state = 7}, - [2431] = {.lex_state = 136}, - [2432] = {.lex_state = 64}, - [2433] = {.lex_state = 81}, - [2434] = {.lex_state = 64}, - [2435] = {.lex_state = 81}, - [2436] = {.lex_state = 81}, - [2437] = {.lex_state = 289, .external_lex_state = 21}, - [2438] = {.lex_state = 277, .external_lex_state = 3}, - [2439] = {.lex_state = 210}, - [2440] = {.lex_state = 277, .external_lex_state = 14}, - [2441] = {.lex_state = 277, .external_lex_state = 14}, - [2442] = {.lex_state = 277, .external_lex_state = 14}, - [2443] = {.lex_state = 277, .external_lex_state = 14}, - [2444] = {.lex_state = 277, .external_lex_state = 14}, - [2445] = {.lex_state = 167}, - [2446] = {.lex_state = 236, .external_lex_state = 16}, - [2447] = {.lex_state = 70}, - [2448] = {.lex_state = 175, .external_lex_state = 16}, - [2449] = {.lex_state = 175, .external_lex_state = 16}, - [2450] = {.lex_state = 277, .external_lex_state = 14}, - [2451] = {.lex_state = 240}, - [2452] = {.lex_state = 238, .external_lex_state = 16}, - [2453] = {.lex_state = 277, .external_lex_state = 14}, - [2454] = {.lex_state = 240}, - [2455] = {.lex_state = 238, .external_lex_state = 16}, - [2456] = {.lex_state = 219, .external_lex_state = 2}, - [2457] = {.lex_state = 277, .external_lex_state = 14}, - [2458] = {.lex_state = 138, .external_lex_state = 4}, - [2459] = {.lex_state = 142, .external_lex_state = 8}, - [2460] = {.lex_state = 64, .external_lex_state = 2}, - [2461] = {.lex_state = 93, .external_lex_state = 4}, - [2462] = {.lex_state = 123, .external_lex_state = 8}, - [2463] = {.lex_state = 219, .external_lex_state = 2}, - [2464] = {.lex_state = 277, .external_lex_state = 14}, - [2465] = {.lex_state = 138, .external_lex_state = 4}, - [2466] = {.lex_state = 142, .external_lex_state = 8}, - [2467] = {.lex_state = 277, .external_lex_state = 10}, - [2468] = {.lex_state = 277, .external_lex_state = 10}, - [2469] = {.lex_state = 277, .external_lex_state = 10}, - [2470] = {.lex_state = 167}, - [2471] = {.lex_state = 236, .external_lex_state = 16}, - [2472] = {.lex_state = 70}, - [2473] = {.lex_state = 175, .external_lex_state = 16}, - [2474] = {.lex_state = 175, .external_lex_state = 16}, - [2475] = {.lex_state = 277, .external_lex_state = 10}, - [2476] = {.lex_state = 240}, - [2477] = {.lex_state = 238, .external_lex_state = 16}, - [2478] = {.lex_state = 277, .external_lex_state = 10}, - [2479] = {.lex_state = 240}, - [2480] = {.lex_state = 238, .external_lex_state = 16}, - [2481] = {.lex_state = 219, .external_lex_state = 2}, - [2482] = {.lex_state = 277, .external_lex_state = 10}, - [2483] = {.lex_state = 138, .external_lex_state = 4}, - [2484] = {.lex_state = 142, .external_lex_state = 8}, - [2485] = {.lex_state = 64, .external_lex_state = 2}, - [2486] = {.lex_state = 93, .external_lex_state = 4}, - [2487] = {.lex_state = 123, .external_lex_state = 8}, - [2488] = {.lex_state = 219, .external_lex_state = 2}, - [2489] = {.lex_state = 277, .external_lex_state = 10}, - [2490] = {.lex_state = 138, .external_lex_state = 4}, - [2491] = {.lex_state = 142, .external_lex_state = 8}, - [2492] = {.lex_state = 283, .external_lex_state = 5}, - [2493] = {.lex_state = 283, .external_lex_state = 5}, - [2494] = {.lex_state = 214, .external_lex_state = 22}, - [2495] = {.lex_state = 214, .external_lex_state = 22}, - [2496] = {.lex_state = 214, .external_lex_state = 16}, - [2497] = {.lex_state = 236, .external_lex_state = 16}, - [2498] = {.lex_state = 283, .external_lex_state = 5}, - [2499] = {.lex_state = 240}, - [2500] = {.lex_state = 238, .external_lex_state = 16}, - [2501] = {.lex_state = 240}, - [2502] = {.lex_state = 238, .external_lex_state = 16}, - [2503] = {.lex_state = 238, .external_lex_state = 16}, - [2504] = {.lex_state = 283, .external_lex_state = 5}, - [2505] = {.lex_state = 238, .external_lex_state = 16}, - [2506] = {.lex_state = 283, .external_lex_state = 5}, - [2507] = {.lex_state = 219, .external_lex_state = 2}, - [2508] = {.lex_state = 64, .external_lex_state = 2}, - [2509] = {.lex_state = 283, .external_lex_state = 5}, - [2510] = {.lex_state = 219, .external_lex_state = 2}, - [2511] = {.lex_state = 291, .external_lex_state = 21}, - [2512] = {.lex_state = 289, .external_lex_state = 5}, - [2513] = {.lex_state = 289, .external_lex_state = 5}, - [2514] = {.lex_state = 81}, - [2515] = {.lex_state = 289, .external_lex_state = 5}, - [2516] = {.lex_state = 289, .external_lex_state = 5}, - [2517] = {.lex_state = 167}, - [2518] = {.lex_state = 100}, - [2519] = {.lex_state = 289, .external_lex_state = 5}, - [2520] = {.lex_state = 289, .external_lex_state = 5}, - [2521] = {.lex_state = 289, .external_lex_state = 5}, - [2522] = {.lex_state = 70}, - [2523] = {.lex_state = 173, .external_lex_state = 6}, - [2524] = {.lex_state = 175, .external_lex_state = 16}, - [2525] = {.lex_state = 175, .external_lex_state = 16}, - [2526] = {.lex_state = 138, .external_lex_state = 4}, - [2527] = {.lex_state = 142, .external_lex_state = 8}, - [2528] = {.lex_state = 64, .external_lex_state = 2}, - [2529] = {.lex_state = 93, .external_lex_state = 4}, - [2530] = {.lex_state = 123, .external_lex_state = 8}, - [2531] = {.lex_state = 64, .external_lex_state = 2}, - [2532] = {.lex_state = 138, .external_lex_state = 4}, - [2533] = {.lex_state = 142, .external_lex_state = 8}, - [2534] = {.lex_state = 64, .external_lex_state = 2}, - [2535] = {.lex_state = 289, .external_lex_state = 7}, - [2536] = {.lex_state = 271, .external_lex_state = 2}, - [2537] = {.lex_state = 271, .external_lex_state = 2}, - [2538] = {.lex_state = 219, .external_lex_state = 2}, - [2539] = {.lex_state = 81}, - [2540] = {.lex_state = 93, .external_lex_state = 4}, - [2541] = {.lex_state = 123, .external_lex_state = 8}, - [2542] = {.lex_state = 219, .external_lex_state = 2}, - [2543] = {.lex_state = 219, .external_lex_state = 2}, - [2544] = {.lex_state = 219, .external_lex_state = 2}, - [2545] = {.lex_state = 81}, - [2546] = {.lex_state = 93, .external_lex_state = 4}, - [2547] = {.lex_state = 123, .external_lex_state = 8}, - [2548] = {.lex_state = 219, .external_lex_state = 2}, - [2549] = {.lex_state = 249, .external_lex_state = 23}, - [2550] = {.lex_state = 249, .external_lex_state = 23}, - [2551] = {.lex_state = 249, .external_lex_state = 23}, - [2552] = {.lex_state = 238, .external_lex_state = 16}, - [2553] = {.lex_state = 238, .external_lex_state = 16}, - [2554] = {.lex_state = 249, .external_lex_state = 23}, - [2555] = {.lex_state = 214, .external_lex_state = 22}, - [2556] = {.lex_state = 214, .external_lex_state = 22}, - [2557] = {.lex_state = 264, .external_lex_state = 13}, - [2558] = {.lex_state = 264, .external_lex_state = 13}, - [2559] = {.lex_state = 287, .external_lex_state = 8}, - [2560] = {.lex_state = 287, .external_lex_state = 19}, - [2561] = {.lex_state = 287, .external_lex_state = 19}, - [2562] = {.lex_state = 287, .external_lex_state = 19}, - [2563] = {.lex_state = 167}, - [2564] = {.lex_state = 236, .external_lex_state = 16}, - [2565] = {.lex_state = 70}, - [2566] = {.lex_state = 175, .external_lex_state = 16}, - [2567] = {.lex_state = 175, .external_lex_state = 16}, - [2568] = {.lex_state = 287, .external_lex_state = 19}, - [2569] = {.lex_state = 240}, - [2570] = {.lex_state = 238, .external_lex_state = 16}, - [2571] = {.lex_state = 287, .external_lex_state = 19}, - [2572] = {.lex_state = 240}, - [2573] = {.lex_state = 238, .external_lex_state = 16}, - [2574] = {.lex_state = 219, .external_lex_state = 2}, - [2575] = {.lex_state = 287, .external_lex_state = 19}, - [2576] = {.lex_state = 138, .external_lex_state = 4}, - [2577] = {.lex_state = 142, .external_lex_state = 8}, - [2578] = {.lex_state = 64, .external_lex_state = 2}, - [2579] = {.lex_state = 93, .external_lex_state = 4}, - [2580] = {.lex_state = 123, .external_lex_state = 8}, - [2581] = {.lex_state = 219, .external_lex_state = 2}, - [2582] = {.lex_state = 287, .external_lex_state = 19}, - [2583] = {.lex_state = 138, .external_lex_state = 4}, - [2584] = {.lex_state = 142, .external_lex_state = 8}, - [2585] = {.lex_state = 291, .external_lex_state = 21}, - [2586] = {.lex_state = 81}, - [2587] = {.lex_state = 269, .external_lex_state = 10}, - [2588] = {.lex_state = 269, .external_lex_state = 10}, - [2589] = {.lex_state = 81}, - [2590] = {.lex_state = 289, .external_lex_state = 23}, - [2591] = {.lex_state = 289, .external_lex_state = 23}, - [2592] = {.lex_state = 289, .external_lex_state = 23}, - [2593] = {.lex_state = 289, .external_lex_state = 23}, - [2594] = {.lex_state = 289, .external_lex_state = 21}, - [2595] = {.lex_state = 277, .external_lex_state = 3}, - [2596] = {.lex_state = 210}, - [2597] = {.lex_state = 277, .external_lex_state = 14}, - [2598] = {.lex_state = 277, .external_lex_state = 14}, - [2599] = {.lex_state = 214, .external_lex_state = 22}, - [2600] = {.lex_state = 214, .external_lex_state = 22}, - [2601] = {.lex_state = 214, .external_lex_state = 16}, - [2602] = {.lex_state = 236, .external_lex_state = 16}, - [2603] = {.lex_state = 277, .external_lex_state = 14}, - [2604] = {.lex_state = 240}, - [2605] = {.lex_state = 238, .external_lex_state = 16}, - [2606] = {.lex_state = 240}, - [2607] = {.lex_state = 238, .external_lex_state = 16}, - [2608] = {.lex_state = 238, .external_lex_state = 16}, - [2609] = {.lex_state = 277, .external_lex_state = 14}, - [2610] = {.lex_state = 238, .external_lex_state = 16}, - [2611] = {.lex_state = 277, .external_lex_state = 14}, - [2612] = {.lex_state = 219, .external_lex_state = 2}, - [2613] = {.lex_state = 64, .external_lex_state = 2}, - [2614] = {.lex_state = 277, .external_lex_state = 14}, - [2615] = {.lex_state = 219, .external_lex_state = 2}, - [2616] = {.lex_state = 277, .external_lex_state = 10}, - [2617] = {.lex_state = 277, .external_lex_state = 10}, - [2618] = {.lex_state = 214, .external_lex_state = 22}, - [2619] = {.lex_state = 214, .external_lex_state = 22}, - [2620] = {.lex_state = 214, .external_lex_state = 16}, - [2621] = {.lex_state = 236, .external_lex_state = 16}, - [2622] = {.lex_state = 277, .external_lex_state = 10}, - [2623] = {.lex_state = 240}, - [2624] = {.lex_state = 238, .external_lex_state = 16}, - [2625] = {.lex_state = 240}, - [2626] = {.lex_state = 238, .external_lex_state = 16}, - [2627] = {.lex_state = 238, .external_lex_state = 16}, - [2628] = {.lex_state = 277, .external_lex_state = 10}, - [2629] = {.lex_state = 238, .external_lex_state = 16}, - [2630] = {.lex_state = 277, .external_lex_state = 10}, - [2631] = {.lex_state = 219, .external_lex_state = 2}, - [2632] = {.lex_state = 64, .external_lex_state = 2}, - [2633] = {.lex_state = 277, .external_lex_state = 10}, - [2634] = {.lex_state = 219, .external_lex_state = 2}, - [2635] = {.lex_state = 283, .external_lex_state = 5}, - [2636] = {.lex_state = 283, .external_lex_state = 5}, - [2637] = {.lex_state = 214, .external_lex_state = 22}, - [2638] = {.lex_state = 214, .external_lex_state = 22}, - [2639] = {.lex_state = 214, .external_lex_state = 16}, - [2640] = {.lex_state = 238, .external_lex_state = 16}, - [2641] = {.lex_state = 283, .external_lex_state = 5}, - [2642] = {.lex_state = 238, .external_lex_state = 16}, - [2643] = {.lex_state = 283, .external_lex_state = 5}, - [2644] = {.lex_state = 238, .external_lex_state = 16}, - [2645] = {.lex_state = 238, .external_lex_state = 16}, - [2646] = {.lex_state = 283, .external_lex_state = 5}, - [2647] = {.lex_state = 283, .external_lex_state = 5}, - [2648] = {.lex_state = 289, .external_lex_state = 5}, - [2649] = {.lex_state = 289, .external_lex_state = 5}, - [2650] = {.lex_state = 289, .external_lex_state = 5}, - [2651] = {.lex_state = 167}, - [2652] = {.lex_state = 236, .external_lex_state = 16}, - [2653] = {.lex_state = 70}, - [2654] = {.lex_state = 175, .external_lex_state = 16}, - [2655] = {.lex_state = 175, .external_lex_state = 16}, - [2656] = {.lex_state = 289, .external_lex_state = 5}, - [2657] = {.lex_state = 240}, - [2658] = {.lex_state = 238, .external_lex_state = 16}, - [2659] = {.lex_state = 289, .external_lex_state = 5}, - [2660] = {.lex_state = 240}, - [2661] = {.lex_state = 238, .external_lex_state = 16}, - [2662] = {.lex_state = 219, .external_lex_state = 2}, - [2663] = {.lex_state = 289, .external_lex_state = 5}, - [2664] = {.lex_state = 138, .external_lex_state = 4}, - [2665] = {.lex_state = 142, .external_lex_state = 8}, - [2666] = {.lex_state = 64, .external_lex_state = 2}, - [2667] = {.lex_state = 93, .external_lex_state = 4}, - [2668] = {.lex_state = 123, .external_lex_state = 8}, - [2669] = {.lex_state = 219, .external_lex_state = 2}, - [2670] = {.lex_state = 289, .external_lex_state = 5}, - [2671] = {.lex_state = 138, .external_lex_state = 4}, - [2672] = {.lex_state = 142, .external_lex_state = 8}, - [2673] = {.lex_state = 219, .external_lex_state = 2}, - [2674] = {.lex_state = 81}, - [2675] = {.lex_state = 93, .external_lex_state = 4}, - [2676] = {.lex_state = 123, .external_lex_state = 8}, - [2677] = {.lex_state = 219, .external_lex_state = 2}, - [2678] = {.lex_state = 81}, - [2679] = {.lex_state = 93, .external_lex_state = 4}, - [2680] = {.lex_state = 123, .external_lex_state = 8}, - [2681] = {.lex_state = 249, .external_lex_state = 23}, - [2682] = {.lex_state = 249, .external_lex_state = 23}, - [2683] = {.lex_state = 287, .external_lex_state = 19}, - [2684] = {.lex_state = 287, .external_lex_state = 19}, - [2685] = {.lex_state = 214, .external_lex_state = 22}, - [2686] = {.lex_state = 214, .external_lex_state = 22}, - [2687] = {.lex_state = 214, .external_lex_state = 16}, - [2688] = {.lex_state = 236, .external_lex_state = 16}, - [2689] = {.lex_state = 287, .external_lex_state = 19}, - [2690] = {.lex_state = 240}, - [2691] = {.lex_state = 238, .external_lex_state = 16}, - [2692] = {.lex_state = 240}, - [2693] = {.lex_state = 238, .external_lex_state = 16}, - [2694] = {.lex_state = 238, .external_lex_state = 16}, - [2695] = {.lex_state = 287, .external_lex_state = 19}, - [2696] = {.lex_state = 238, .external_lex_state = 16}, - [2697] = {.lex_state = 287, .external_lex_state = 19}, - [2698] = {.lex_state = 219, .external_lex_state = 2}, - [2699] = {.lex_state = 64, .external_lex_state = 2}, - [2700] = {.lex_state = 287, .external_lex_state = 19}, - [2701] = {.lex_state = 219, .external_lex_state = 2}, - [2702] = {.lex_state = 269, .external_lex_state = 10}, - [2703] = {.lex_state = 269, .external_lex_state = 10}, - [2704] = {.lex_state = 269, .external_lex_state = 10}, - [2705] = {.lex_state = 289, .external_lex_state = 23}, - [2706] = {.lex_state = 289, .external_lex_state = 23}, - [2707] = {.lex_state = 289, .external_lex_state = 23}, - [2708] = {.lex_state = 277, .external_lex_state = 3}, - [2709] = {.lex_state = 277, .external_lex_state = 14}, - [2710] = {.lex_state = 277, .external_lex_state = 14}, - [2711] = {.lex_state = 214, .external_lex_state = 22}, - [2712] = {.lex_state = 214, .external_lex_state = 22}, - [2713] = {.lex_state = 214, .external_lex_state = 16}, - [2714] = {.lex_state = 238, .external_lex_state = 16}, - [2715] = {.lex_state = 277, .external_lex_state = 14}, - [2716] = {.lex_state = 238, .external_lex_state = 16}, - [2717] = {.lex_state = 277, .external_lex_state = 14}, - [2718] = {.lex_state = 238, .external_lex_state = 16}, - [2719] = {.lex_state = 238, .external_lex_state = 16}, - [2720] = {.lex_state = 277, .external_lex_state = 14}, - [2721] = {.lex_state = 277, .external_lex_state = 14}, - [2722] = {.lex_state = 277, .external_lex_state = 10}, - [2723] = {.lex_state = 277, .external_lex_state = 10}, - [2724] = {.lex_state = 214, .external_lex_state = 22}, - [2725] = {.lex_state = 214, .external_lex_state = 22}, - [2726] = {.lex_state = 214, .external_lex_state = 16}, - [2727] = {.lex_state = 238, .external_lex_state = 16}, - [2728] = {.lex_state = 277, .external_lex_state = 10}, - [2729] = {.lex_state = 238, .external_lex_state = 16}, - [2730] = {.lex_state = 277, .external_lex_state = 10}, - [2731] = {.lex_state = 238, .external_lex_state = 16}, - [2732] = {.lex_state = 238, .external_lex_state = 16}, - [2733] = {.lex_state = 277, .external_lex_state = 10}, - [2734] = {.lex_state = 277, .external_lex_state = 10}, - [2735] = {.lex_state = 283, .external_lex_state = 5}, - [2736] = {.lex_state = 283, .external_lex_state = 5}, - [2737] = {.lex_state = 283, .external_lex_state = 5}, - [2738] = {.lex_state = 238, .external_lex_state = 16}, - [2739] = {.lex_state = 238, .external_lex_state = 16}, - [2740] = {.lex_state = 283, .external_lex_state = 5}, - [2741] = {.lex_state = 289, .external_lex_state = 5}, - [2742] = {.lex_state = 289, .external_lex_state = 5}, - [2743] = {.lex_state = 214, .external_lex_state = 22}, - [2744] = {.lex_state = 214, .external_lex_state = 22}, - [2745] = {.lex_state = 214, .external_lex_state = 16}, - [2746] = {.lex_state = 236, .external_lex_state = 16}, - [2747] = {.lex_state = 289, .external_lex_state = 5}, - [2748] = {.lex_state = 240}, - [2749] = {.lex_state = 238, .external_lex_state = 16}, - [2750] = {.lex_state = 240}, - [2751] = {.lex_state = 238, .external_lex_state = 16}, - [2752] = {.lex_state = 238, .external_lex_state = 16}, - [2753] = {.lex_state = 289, .external_lex_state = 5}, - [2754] = {.lex_state = 238, .external_lex_state = 16}, - [2755] = {.lex_state = 289, .external_lex_state = 5}, - [2756] = {.lex_state = 219, .external_lex_state = 2}, - [2757] = {.lex_state = 64, .external_lex_state = 2}, - [2758] = {.lex_state = 289, .external_lex_state = 5}, - [2759] = {.lex_state = 219, .external_lex_state = 2}, - [2760] = {.lex_state = 219, .external_lex_state = 2}, - [2761] = {.lex_state = 219, .external_lex_state = 2}, - [2762] = {.lex_state = 287, .external_lex_state = 19}, - [2763] = {.lex_state = 287, .external_lex_state = 19}, - [2764] = {.lex_state = 214, .external_lex_state = 22}, - [2765] = {.lex_state = 214, .external_lex_state = 22}, - [2766] = {.lex_state = 214, .external_lex_state = 16}, - [2767] = {.lex_state = 238, .external_lex_state = 16}, - [2768] = {.lex_state = 287, .external_lex_state = 19}, - [2769] = {.lex_state = 238, .external_lex_state = 16}, - [2770] = {.lex_state = 287, .external_lex_state = 19}, - [2771] = {.lex_state = 238, .external_lex_state = 16}, - [2772] = {.lex_state = 238, .external_lex_state = 16}, - [2773] = {.lex_state = 287, .external_lex_state = 19}, - [2774] = {.lex_state = 287, .external_lex_state = 19}, - [2775] = {.lex_state = 269, .external_lex_state = 10}, - [2776] = {.lex_state = 289, .external_lex_state = 23}, - [2777] = {.lex_state = 277, .external_lex_state = 14}, - [2778] = {.lex_state = 277, .external_lex_state = 14}, - [2779] = {.lex_state = 277, .external_lex_state = 14}, - [2780] = {.lex_state = 238, .external_lex_state = 16}, - [2781] = {.lex_state = 238, .external_lex_state = 16}, - [2782] = {.lex_state = 277, .external_lex_state = 14}, - [2783] = {.lex_state = 277, .external_lex_state = 10}, - [2784] = {.lex_state = 277, .external_lex_state = 10}, - [2785] = {.lex_state = 277, .external_lex_state = 10}, - [2786] = {.lex_state = 238, .external_lex_state = 16}, - [2787] = {.lex_state = 238, .external_lex_state = 16}, - [2788] = {.lex_state = 277, .external_lex_state = 10}, - [2789] = {.lex_state = 283, .external_lex_state = 5}, - [2790] = {.lex_state = 283, .external_lex_state = 5}, - [2791] = {.lex_state = 289, .external_lex_state = 5}, - [2792] = {.lex_state = 289, .external_lex_state = 5}, - [2793] = {.lex_state = 214, .external_lex_state = 22}, - [2794] = {.lex_state = 214, .external_lex_state = 22}, - [2795] = {.lex_state = 214, .external_lex_state = 16}, - [2796] = {.lex_state = 238, .external_lex_state = 16}, - [2797] = {.lex_state = 289, .external_lex_state = 5}, - [2798] = {.lex_state = 238, .external_lex_state = 16}, - [2799] = {.lex_state = 289, .external_lex_state = 5}, - [2800] = {.lex_state = 238, .external_lex_state = 16}, - [2801] = {.lex_state = 238, .external_lex_state = 16}, - [2802] = {.lex_state = 289, .external_lex_state = 5}, - [2803] = {.lex_state = 289, .external_lex_state = 5}, - [2804] = {.lex_state = 287, .external_lex_state = 19}, - [2805] = {.lex_state = 287, .external_lex_state = 19}, - [2806] = {.lex_state = 287, .external_lex_state = 19}, - [2807] = {.lex_state = 238, .external_lex_state = 16}, - [2808] = {.lex_state = 238, .external_lex_state = 16}, - [2809] = {.lex_state = 287, .external_lex_state = 19}, - [2810] = {.lex_state = 277, .external_lex_state = 14}, - [2811] = {.lex_state = 277, .external_lex_state = 14}, - [2812] = {.lex_state = 277, .external_lex_state = 10}, - [2813] = {.lex_state = 277, .external_lex_state = 10}, - [2814] = {.lex_state = 289, .external_lex_state = 5}, - [2815] = {.lex_state = 289, .external_lex_state = 5}, - [2816] = {.lex_state = 289, .external_lex_state = 5}, - [2817] = {.lex_state = 238, .external_lex_state = 16}, - [2818] = {.lex_state = 238, .external_lex_state = 16}, - [2819] = {.lex_state = 289, .external_lex_state = 5}, - [2820] = {.lex_state = 287, .external_lex_state = 19}, - [2821] = {.lex_state = 287, .external_lex_state = 19}, - [2822] = {.lex_state = 289, .external_lex_state = 5}, - [2823] = {.lex_state = 289, .external_lex_state = 5}, + [78] = {.lex_state = 161}, + [79] = {.lex_state = 78}, + [80] = {.lex_state = 88}, + [81] = {.lex_state = 71, .external_lex_state = 2}, + [82] = {.lex_state = 94}, + [83] = {.lex_state = 96, .external_lex_state = 2}, + [84] = {.lex_state = 88}, + [85] = {.lex_state = 88}, + [86] = {.lex_state = 163, .external_lex_state = 3}, + [87] = {.lex_state = 163, .external_lex_state = 4}, + [88] = {.lex_state = 131, .external_lex_state = 5}, + [89] = {.lex_state = 131, .external_lex_state = 5}, + [90] = {.lex_state = 165, .external_lex_state = 5}, + [91] = {.lex_state = 163, .external_lex_state = 4}, + [92] = {.lex_state = 131, .external_lex_state = 7}, + [93] = {.lex_state = 167, .external_lex_state = 8}, + [94] = {.lex_state = 78}, + [95] = {.lex_state = 71, .external_lex_state = 2}, + [96] = {.lex_state = 94, .external_lex_state = 2}, + [97] = {.lex_state = 78}, + [98] = {.lex_state = 169, .external_lex_state = 4}, + [99] = {.lex_state = 78}, + [100] = {.lex_state = 88}, + [101] = {.lex_state = 88}, + [102] = {.lex_state = 175, .external_lex_state = 12}, + [103] = {.lex_state = 106}, + [104] = {.lex_state = 113}, + [105] = {.lex_state = 175, .external_lex_state = 12}, + [106] = {.lex_state = 113, .external_lex_state = 6}, + [107] = {.lex_state = 71, .external_lex_state = 2}, + [108] = {.lex_state = 71, .external_lex_state = 2}, + [109] = {.lex_state = 71, .external_lex_state = 2}, + [110] = {.lex_state = 175, .external_lex_state = 13}, + [111] = {.lex_state = 88}, + [112] = {.lex_state = 178, .external_lex_state = 10}, + [113] = {.lex_state = 178, .external_lex_state = 10}, + [114] = {.lex_state = 178}, + [115] = {.lex_state = 78}, + [116] = {.lex_state = 98, .external_lex_state = 14}, + [117] = {.lex_state = 106}, + [118] = {.lex_state = 113}, + [119] = {.lex_state = 98, .external_lex_state = 14}, + [120] = {.lex_state = 113, .external_lex_state = 6}, + [121] = {.lex_state = 71, .external_lex_state = 2}, + [122] = {.lex_state = 71, .external_lex_state = 2}, + [123] = {.lex_state = 71, .external_lex_state = 2}, + [124] = {.lex_state = 78}, + [125] = {.lex_state = 98, .external_lex_state = 3}, + [126] = {.lex_state = 98, .external_lex_state = 11}, + [127] = {.lex_state = 106}, + [128] = {.lex_state = 113}, + [129] = {.lex_state = 98, .external_lex_state = 11}, + [130] = {.lex_state = 113, .external_lex_state = 6}, + [131] = {.lex_state = 71, .external_lex_state = 2}, + [132] = {.lex_state = 71, .external_lex_state = 2}, + [133] = {.lex_state = 71, .external_lex_state = 2}, + [134] = {.lex_state = 98, .external_lex_state = 4}, + [135] = {.lex_state = 94, .external_lex_state = 15}, + [136] = {.lex_state = 106}, + [137] = {.lex_state = 113}, + [138] = {.lex_state = 94, .external_lex_state = 15}, + [139] = {.lex_state = 113, .external_lex_state = 6}, + [140] = {.lex_state = 71, .external_lex_state = 2}, + [141] = {.lex_state = 71, .external_lex_state = 2}, + [142] = {.lex_state = 71, .external_lex_state = 2}, + [143] = {.lex_state = 94, .external_lex_state = 2}, + [144] = {.lex_state = 94}, + [145] = {.lex_state = 102, .external_lex_state = 5}, + [146] = {.lex_state = 131, .external_lex_state = 5}, + [147] = {.lex_state = 181}, + [148] = {.lex_state = 106, .external_lex_state = 10}, + [149] = {.lex_state = 113, .external_lex_state = 6}, + [150] = {.lex_state = 71, .external_lex_state = 2}, + [151] = {.lex_state = 71, .external_lex_state = 2}, + [152] = {.lex_state = 106}, + [153] = {.lex_state = 131, .external_lex_state = 5}, + [154] = {.lex_state = 131, .external_lex_state = 5}, + [155] = {.lex_state = 131, .external_lex_state = 5}, + [156] = {.lex_state = 78}, + [157] = {.lex_state = 187, .external_lex_state = 6}, + [158] = {.lex_state = 189, .external_lex_state = 16}, + [159] = {.lex_state = 189, .external_lex_state = 16}, + [160] = {.lex_state = 163, .external_lex_state = 4}, + [161] = {.lex_state = 167, .external_lex_state = 8}, + [162] = {.lex_state = 71, .external_lex_state = 2}, + [163] = {.lex_state = 88}, + [164] = {.lex_state = 71, .external_lex_state = 2}, + [165] = {.lex_state = 94}, + [166] = {.lex_state = 96, .external_lex_state = 2}, + [167] = {.lex_state = 88}, + [168] = {.lex_state = 88}, + [169] = {.lex_state = 98, .external_lex_state = 3}, + [170] = {.lex_state = 98, .external_lex_state = 4}, + [171] = {.lex_state = 123, .external_lex_state = 5}, + [172] = {.lex_state = 98, .external_lex_state = 4}, + [173] = {.lex_state = 102, .external_lex_state = 7}, + [174] = {.lex_state = 129, .external_lex_state = 8}, + [175] = {.lex_state = 71, .external_lex_state = 2}, + [176] = {.lex_state = 94, .external_lex_state = 2}, + [177] = {.lex_state = 163, .external_lex_state = 4}, + [178] = {.lex_state = 167, .external_lex_state = 8}, + [179] = {.lex_state = 71, .external_lex_state = 2}, + [180] = {.lex_state = 78}, + [181] = {.lex_state = 71, .external_lex_state = 2}, + [182] = {.lex_state = 71, .external_lex_state = 2}, + [183] = {.lex_state = 71, .external_lex_state = 2}, + [184] = {.lex_state = 169, .external_lex_state = 4}, + [185] = {.lex_state = 193, .external_lex_state = 17}, + [186] = {.lex_state = 71}, + [187] = {.lex_state = 196, .external_lex_state = 18}, + [188] = {.lex_state = 94}, + [189] = {.lex_state = 71, .external_lex_state = 19}, + [190] = {.lex_state = 94}, + [191] = {.lex_state = 102, .external_lex_state = 5}, + [192] = {.lex_state = 102, .external_lex_state = 5}, + [193] = {.lex_state = 169, .external_lex_state = 4}, + [194] = {.lex_state = 198, .external_lex_state = 7}, + [195] = {.lex_state = 102, .external_lex_state = 7}, + [196] = {.lex_state = 127, .external_lex_state = 4}, + [197] = {.lex_state = 129, .external_lex_state = 8}, + [198] = {.lex_state = 71, .external_lex_state = 2}, + [199] = {.lex_state = 102, .external_lex_state = 7}, + [200] = {.lex_state = 94, .external_lex_state = 2}, + [201] = {.lex_state = 94, .external_lex_state = 15}, + [202] = {.lex_state = 94, .external_lex_state = 15}, + [203] = {.lex_state = 94, .external_lex_state = 2}, + [204] = {.lex_state = 202, .external_lex_state = 12}, + [205] = {.lex_state = 202, .external_lex_state = 12}, + [206] = {.lex_state = 202, .external_lex_state = 12}, + [207] = {.lex_state = 167, .external_lex_state = 8}, + [208] = {.lex_state = 204}, + [209] = {.lex_state = 129, .external_lex_state = 20}, + [210] = {.lex_state = 106}, + [211] = {.lex_state = 113}, + [212] = {.lex_state = 129, .external_lex_state = 20}, + [213] = {.lex_state = 113, .external_lex_state = 6}, + [214] = {.lex_state = 71, .external_lex_state = 2}, + [215] = {.lex_state = 71, .external_lex_state = 2}, + [216] = {.lex_state = 71, .external_lex_state = 2}, + [217] = {.lex_state = 135, .external_lex_state = 4}, + [218] = {.lex_state = 88}, + [219] = {.lex_state = 88}, + [220] = {.lex_state = 206, .external_lex_state = 11}, + [221] = {.lex_state = 106}, + [222] = {.lex_state = 113}, + [223] = {.lex_state = 206, .external_lex_state = 11}, + [224] = {.lex_state = 113, .external_lex_state = 6}, + [225] = {.lex_state = 71, .external_lex_state = 2}, + [226] = {.lex_state = 71, .external_lex_state = 2}, + [227] = {.lex_state = 71, .external_lex_state = 2}, + [228] = {.lex_state = 206, .external_lex_state = 4}, + [229] = {.lex_state = 94}, + [230] = {.lex_state = 94}, + [231] = {.lex_state = 88}, + [232] = {.lex_state = 88}, + [233] = {.lex_state = 208, .external_lex_state = 10}, + [234] = {.lex_state = 106}, + [235] = {.lex_state = 113}, + [236] = {.lex_state = 208, .external_lex_state = 10}, + [237] = {.lex_state = 113, .external_lex_state = 6}, + [238] = {.lex_state = 71, .external_lex_state = 2}, + [239] = {.lex_state = 71, .external_lex_state = 2}, + [240] = {.lex_state = 71, .external_lex_state = 2}, + [241] = {.lex_state = 208}, + [242] = {.lex_state = 142}, + [243] = {.lex_state = 94}, + [244] = {.lex_state = 142, .external_lex_state = 10}, + [245] = {.lex_state = 210, .external_lex_state = 10}, + [246] = {.lex_state = 181}, + [247] = {.lex_state = 106}, + [248] = {.lex_state = 210, .external_lex_state = 10}, + [249] = {.lex_state = 210, .external_lex_state = 10}, + [250] = {.lex_state = 210, .external_lex_state = 10}, + [251] = {.lex_state = 78}, + [252] = {.lex_state = 187, .external_lex_state = 6}, + [253] = {.lex_state = 189, .external_lex_state = 16}, + [254] = {.lex_state = 189, .external_lex_state = 16}, + [255] = {.lex_state = 163, .external_lex_state = 4}, + [256] = {.lex_state = 167, .external_lex_state = 8}, + [257] = {.lex_state = 71, .external_lex_state = 2}, + [258] = {.lex_state = 98, .external_lex_state = 4}, + [259] = {.lex_state = 129, .external_lex_state = 8}, + [260] = {.lex_state = 71, .external_lex_state = 2}, + [261] = {.lex_state = 163, .external_lex_state = 4}, + [262] = {.lex_state = 167, .external_lex_state = 8}, + [263] = {.lex_state = 71, .external_lex_state = 2}, + [264] = {.lex_state = 198, .external_lex_state = 21}, + [265] = {.lex_state = 88}, + [266] = {.lex_state = 88, .external_lex_state = 18}, + [267] = {.lex_state = 210}, + [268] = {.lex_state = 133, .external_lex_state = 9}, + [269] = {.lex_state = 142}, + [270] = {.lex_state = 94}, + [271] = {.lex_state = 161}, + [272] = {.lex_state = 175, .external_lex_state = 13}, + [273] = {.lex_state = 178}, + [274] = {.lex_state = 78}, + [275] = {.lex_state = 98, .external_lex_state = 14}, + [276] = {.lex_state = 98, .external_lex_state = 14}, + [277] = {.lex_state = 78}, + [278] = {.lex_state = 98, .external_lex_state = 3}, + [279] = {.lex_state = 98, .external_lex_state = 11}, + [280] = {.lex_state = 98, .external_lex_state = 11}, + [281] = {.lex_state = 98, .external_lex_state = 4}, + [282] = {.lex_state = 102, .external_lex_state = 5}, + [283] = {.lex_state = 78}, + [284] = {.lex_state = 71, .external_lex_state = 2}, + [285] = {.lex_state = 198, .external_lex_state = 7}, + [286] = {.lex_state = 94}, + [287] = {.lex_state = 71, .external_lex_state = 2}, + [288] = {.lex_state = 71, .external_lex_state = 2}, + [289] = {.lex_state = 71}, + [290] = {.lex_state = 196, .external_lex_state = 18}, + [291] = {.lex_state = 94}, + [292] = {.lex_state = 94}, + [293] = {.lex_state = 102, .external_lex_state = 5}, + [294] = {.lex_state = 102, .external_lex_state = 5}, + [295] = {.lex_state = 198, .external_lex_state = 7}, + [296] = {.lex_state = 102, .external_lex_state = 7}, + [297] = {.lex_state = 102, .external_lex_state = 7}, + [298] = {.lex_state = 71, .external_lex_state = 2}, + [299] = {.lex_state = 94}, + [300] = {.lex_state = 135, .external_lex_state = 4}, + [301] = {.lex_state = 138}, + [302] = {.lex_state = 138, .external_lex_state = 11}, + [303] = {.lex_state = 138, .external_lex_state = 11}, + [304] = {.lex_state = 181}, + [305] = {.lex_state = 106}, + [306] = {.lex_state = 138, .external_lex_state = 11}, + [307] = {.lex_state = 138, .external_lex_state = 11}, + [308] = {.lex_state = 138, .external_lex_state = 11}, + [309] = {.lex_state = 135, .external_lex_state = 4}, + [310] = {.lex_state = 138}, + [311] = {.lex_state = 78}, + [312] = {.lex_state = 187, .external_lex_state = 6}, + [313] = {.lex_state = 189, .external_lex_state = 16}, + [314] = {.lex_state = 189, .external_lex_state = 16}, + [315] = {.lex_state = 163, .external_lex_state = 4}, + [316] = {.lex_state = 167, .external_lex_state = 8}, + [317] = {.lex_state = 71, .external_lex_state = 2}, + [318] = {.lex_state = 98, .external_lex_state = 4}, + [319] = {.lex_state = 129, .external_lex_state = 8}, + [320] = {.lex_state = 71, .external_lex_state = 2}, + [321] = {.lex_state = 163, .external_lex_state = 4}, + [322] = {.lex_state = 167, .external_lex_state = 8}, + [323] = {.lex_state = 71, .external_lex_state = 2}, + [324] = {.lex_state = 78}, + [325] = {.lex_state = 212, .external_lex_state = 22}, + [326] = {.lex_state = 214, .external_lex_state = 21}, + [327] = {.lex_state = 133, .external_lex_state = 9}, + [328] = {.lex_state = 142}, + [329] = {.lex_state = 94}, + [330] = {.lex_state = 161}, + [331] = {.lex_state = 175, .external_lex_state = 13}, + [332] = {.lex_state = 178}, + [333] = {.lex_state = 78}, + [334] = {.lex_state = 163, .external_lex_state = 14}, + [335] = {.lex_state = 163, .external_lex_state = 14}, + [336] = {.lex_state = 78}, + [337] = {.lex_state = 163, .external_lex_state = 3}, + [338] = {.lex_state = 163, .external_lex_state = 11}, + [339] = {.lex_state = 163, .external_lex_state = 11}, + [340] = {.lex_state = 163, .external_lex_state = 4}, + [341] = {.lex_state = 131, .external_lex_state = 5}, + [342] = {.lex_state = 78}, + [343] = {.lex_state = 217, .external_lex_state = 2}, + [344] = {.lex_state = 71, .external_lex_state = 2}, + [345] = {.lex_state = 169, .external_lex_state = 4}, + [346] = {.lex_state = 71, .external_lex_state = 2}, + [347] = {.lex_state = 71}, + [348] = {.lex_state = 196, .external_lex_state = 18}, + [349] = {.lex_state = 94}, + [350] = {.lex_state = 94}, + [351] = {.lex_state = 131, .external_lex_state = 5}, + [352] = {.lex_state = 131, .external_lex_state = 5}, + [353] = {.lex_state = 220, .external_lex_state = 7}, + [354] = {.lex_state = 131, .external_lex_state = 7}, + [355] = {.lex_state = 163, .external_lex_state = 4}, + [356] = {.lex_state = 167, .external_lex_state = 8}, + [357] = {.lex_state = 131, .external_lex_state = 7}, + [358] = {.lex_state = 133, .external_lex_state = 9}, + [359] = {.lex_state = 208}, + [360] = {.lex_state = 175, .external_lex_state = 13}, + [361] = {.lex_state = 94}, + [362] = {.lex_state = 175, .external_lex_state = 12}, + [363] = {.lex_state = 175, .external_lex_state = 12}, + [364] = {.lex_state = 181}, + [365] = {.lex_state = 106}, + [366] = {.lex_state = 175, .external_lex_state = 12}, + [367] = {.lex_state = 175, .external_lex_state = 12}, + [368] = {.lex_state = 175, .external_lex_state = 12}, + [369] = {.lex_state = 78}, + [370] = {.lex_state = 187, .external_lex_state = 6}, + [371] = {.lex_state = 189, .external_lex_state = 16}, + [372] = {.lex_state = 189, .external_lex_state = 16}, + [373] = {.lex_state = 163, .external_lex_state = 4}, + [374] = {.lex_state = 167, .external_lex_state = 8}, + [375] = {.lex_state = 71, .external_lex_state = 2}, + [376] = {.lex_state = 98, .external_lex_state = 4}, + [377] = {.lex_state = 129, .external_lex_state = 8}, + [378] = {.lex_state = 71, .external_lex_state = 2}, + [379] = {.lex_state = 163, .external_lex_state = 4}, + [380] = {.lex_state = 167, .external_lex_state = 8}, + [381] = {.lex_state = 71, .external_lex_state = 2}, + [382] = {.lex_state = 88}, + [383] = {.lex_state = 88, .external_lex_state = 18}, + [384] = {.lex_state = 175, .external_lex_state = 13}, + [385] = {.lex_state = 178}, + [386] = {.lex_state = 178, .external_lex_state = 10}, + [387] = {.lex_state = 88}, + [388] = {.lex_state = 88, .external_lex_state = 18}, + [389] = {.lex_state = 133, .external_lex_state = 9}, + [390] = {.lex_state = 94}, + [391] = {.lex_state = 98, .external_lex_state = 14}, + [392] = {.lex_state = 163, .external_lex_state = 14}, + [393] = {.lex_state = 181}, + [394] = {.lex_state = 106}, + [395] = {.lex_state = 163, .external_lex_state = 14}, + [396] = {.lex_state = 163, .external_lex_state = 14}, + [397] = {.lex_state = 163, .external_lex_state = 14}, + [398] = {.lex_state = 78}, + [399] = {.lex_state = 187, .external_lex_state = 6}, + [400] = {.lex_state = 189, .external_lex_state = 16}, + [401] = {.lex_state = 189, .external_lex_state = 16}, + [402] = {.lex_state = 163, .external_lex_state = 4}, + [403] = {.lex_state = 167, .external_lex_state = 8}, + [404] = {.lex_state = 71, .external_lex_state = 2}, + [405] = {.lex_state = 98, .external_lex_state = 4}, + [406] = {.lex_state = 129, .external_lex_state = 8}, + [407] = {.lex_state = 71, .external_lex_state = 2}, + [408] = {.lex_state = 163, .external_lex_state = 4}, + [409] = {.lex_state = 167, .external_lex_state = 8}, + [410] = {.lex_state = 71, .external_lex_state = 2}, + [411] = {.lex_state = 98, .external_lex_state = 3}, + [412] = {.lex_state = 94}, + [413] = {.lex_state = 98, .external_lex_state = 11}, + [414] = {.lex_state = 163, .external_lex_state = 11}, + [415] = {.lex_state = 181}, + [416] = {.lex_state = 106}, + [417] = {.lex_state = 163, .external_lex_state = 11}, + [418] = {.lex_state = 163, .external_lex_state = 11}, + [419] = {.lex_state = 163, .external_lex_state = 11}, + [420] = {.lex_state = 78}, + [421] = {.lex_state = 187, .external_lex_state = 6}, + [422] = {.lex_state = 189, .external_lex_state = 16}, + [423] = {.lex_state = 189, .external_lex_state = 16}, + [424] = {.lex_state = 163, .external_lex_state = 4}, + [425] = {.lex_state = 167, .external_lex_state = 8}, + [426] = {.lex_state = 71, .external_lex_state = 2}, + [427] = {.lex_state = 98, .external_lex_state = 4}, + [428] = {.lex_state = 129, .external_lex_state = 8}, + [429] = {.lex_state = 71, .external_lex_state = 2}, + [430] = {.lex_state = 163, .external_lex_state = 4}, + [431] = {.lex_state = 167, .external_lex_state = 8}, + [432] = {.lex_state = 71, .external_lex_state = 2}, + [433] = {.lex_state = 98, .external_lex_state = 4}, + [434] = {.lex_state = 94}, + [435] = {.lex_state = 94, .external_lex_state = 15}, + [436] = {.lex_state = 94, .external_lex_state = 15}, + [437] = {.lex_state = 181}, + [438] = {.lex_state = 106}, + [439] = {.lex_state = 94, .external_lex_state = 15}, + [440] = {.lex_state = 94, .external_lex_state = 15}, + [441] = {.lex_state = 94, .external_lex_state = 15}, + [442] = {.lex_state = 78}, + [443] = {.lex_state = 187, .external_lex_state = 6}, + [444] = {.lex_state = 189, .external_lex_state = 16}, + [445] = {.lex_state = 189, .external_lex_state = 16}, + [446] = {.lex_state = 163, .external_lex_state = 4}, + [447] = {.lex_state = 167, .external_lex_state = 8}, + [448] = {.lex_state = 71, .external_lex_state = 2}, + [449] = {.lex_state = 98, .external_lex_state = 4}, + [450] = {.lex_state = 129, .external_lex_state = 8}, + [451] = {.lex_state = 71, .external_lex_state = 2}, + [452] = {.lex_state = 163, .external_lex_state = 4}, + [453] = {.lex_state = 167, .external_lex_state = 8}, + [454] = {.lex_state = 71, .external_lex_state = 2}, + [455] = {.lex_state = 131, .external_lex_state = 5}, + [456] = {.lex_state = 102, .external_lex_state = 5}, + [457] = {.lex_state = 106, .external_lex_state = 10}, + [458] = {.lex_state = 131, .external_lex_state = 5}, + [459] = {.lex_state = 106, .external_lex_state = 10}, + [460] = {.lex_state = 106, .external_lex_state = 10}, + [461] = {.lex_state = 106}, + [462] = {.lex_state = 78}, + [463] = {.lex_state = 187, .external_lex_state = 6}, + [464] = {.lex_state = 189, .external_lex_state = 16}, + [465] = {.lex_state = 189, .external_lex_state = 16}, + [466] = {.lex_state = 163, .external_lex_state = 4}, + [467] = {.lex_state = 167, .external_lex_state = 8}, + [468] = {.lex_state = 71, .external_lex_state = 2}, + [469] = {.lex_state = 98, .external_lex_state = 4}, + [470] = {.lex_state = 129, .external_lex_state = 8}, + [471] = {.lex_state = 71, .external_lex_state = 2}, + [472] = {.lex_state = 181}, + [473] = {.lex_state = 106}, + [474] = {.lex_state = 94}, + [475] = {.lex_state = 222, .external_lex_state = 16}, + [476] = {.lex_state = 78}, + [477] = {.lex_state = 189, .external_lex_state = 16}, + [478] = {.lex_state = 189, .external_lex_state = 16}, + [479] = {.lex_state = 131, .external_lex_state = 5}, + [480] = {.lex_state = 224, .external_lex_state = 23}, + [481] = {.lex_state = 106}, + [482] = {.lex_state = 113}, + [483] = {.lex_state = 224, .external_lex_state = 23}, + [484] = {.lex_state = 113, .external_lex_state = 6}, + [485] = {.lex_state = 224, .external_lex_state = 24}, + [486] = {.lex_state = 71, .external_lex_state = 2}, + [487] = {.lex_state = 71, .external_lex_state = 2}, + [488] = {.lex_state = 71, .external_lex_state = 2}, + [489] = {.lex_state = 224, .external_lex_state = 16}, + [490] = {.lex_state = 131, .external_lex_state = 5}, + [491] = {.lex_state = 224, .external_lex_state = 24}, + [492] = {.lex_state = 224, .external_lex_state = 16}, + [493] = {.lex_state = 217, .external_lex_state = 2}, + [494] = {.lex_state = 131, .external_lex_state = 5}, + [495] = {.lex_state = 163, .external_lex_state = 4}, + [496] = {.lex_state = 167, .external_lex_state = 8}, + [497] = {.lex_state = 142}, + [498] = {.lex_state = 94}, + [499] = {.lex_state = 161}, + [500] = {.lex_state = 175, .external_lex_state = 13}, + [501] = {.lex_state = 178}, + [502] = {.lex_state = 98, .external_lex_state = 3}, + [503] = {.lex_state = 98, .external_lex_state = 4}, + [504] = {.lex_state = 78}, + [505] = {.lex_state = 71, .external_lex_state = 2}, + [506] = {.lex_state = 71, .external_lex_state = 2}, + [507] = {.lex_state = 71, .external_lex_state = 2}, + [508] = {.lex_state = 71}, + [509] = {.lex_state = 94}, + [510] = {.lex_state = 94}, + [511] = {.lex_state = 226, .external_lex_state = 7}, + [512] = {.lex_state = 102, .external_lex_state = 7}, + [513] = {.lex_state = 98, .external_lex_state = 4}, + [514] = {.lex_state = 129, .external_lex_state = 8}, + [515] = {.lex_state = 102, .external_lex_state = 7}, + [516] = {.lex_state = 217, .external_lex_state = 2}, + [517] = {.lex_state = 131, .external_lex_state = 5}, + [518] = {.lex_state = 163, .external_lex_state = 4}, + [519] = {.lex_state = 167, .external_lex_state = 8}, + [520] = {.lex_state = 161}, + [521] = {.lex_state = 169, .external_lex_state = 4}, + [522] = {.lex_state = 167, .external_lex_state = 8}, + [523] = {.lex_state = 127, .external_lex_state = 4}, + [524] = {.lex_state = 129, .external_lex_state = 8}, + [525] = {.lex_state = 169, .external_lex_state = 4}, + [526] = {.lex_state = 113}, + [527] = {.lex_state = 113, .external_lex_state = 6}, + [528] = {.lex_state = 193, .external_lex_state = 17}, + [529] = {.lex_state = 94}, + [530] = {.lex_state = 131, .external_lex_state = 7}, + [531] = {.lex_state = 102, .external_lex_state = 5}, + [532] = {.lex_state = 102, .external_lex_state = 5}, + [533] = {.lex_state = 198, .external_lex_state = 5}, + [534] = {.lex_state = 198, .external_lex_state = 5}, + [535] = {.lex_state = 228, .external_lex_state = 7}, + [536] = {.lex_state = 228, .external_lex_state = 7}, + [537] = {.lex_state = 198, .external_lex_state = 5}, + [538] = {.lex_state = 198, .external_lex_state = 5}, + [539] = {.lex_state = 228, .external_lex_state = 7}, + [540] = {.lex_state = 169, .external_lex_state = 4}, + [541] = {.lex_state = 198, .external_lex_state = 7}, + [542] = {.lex_state = 198, .external_lex_state = 7}, + [543] = {.lex_state = 102, .external_lex_state = 7}, + [544] = {.lex_state = 71, .external_lex_state = 2}, + [545] = {.lex_state = 98, .external_lex_state = 4}, + [546] = {.lex_state = 129, .external_lex_state = 8}, + [547] = {.lex_state = 102, .external_lex_state = 7}, + [548] = {.lex_state = 202, .external_lex_state = 13}, + [549] = {.lex_state = 230, .external_lex_state = 10}, + [550] = {.lex_state = 202, .external_lex_state = 12}, + [551] = {.lex_state = 202, .external_lex_state = 13}, + [552] = {.lex_state = 230, .external_lex_state = 10}, + [553] = {.lex_state = 175, .external_lex_state = 13}, + [554] = {.lex_state = 167, .external_lex_state = 8}, + [555] = {.lex_state = 204, .external_lex_state = 10}, + [556] = {.lex_state = 106}, + [557] = {.lex_state = 113}, + [558] = {.lex_state = 204, .external_lex_state = 10}, + [559] = {.lex_state = 113, .external_lex_state = 6}, + [560] = {.lex_state = 71, .external_lex_state = 2}, + [561] = {.lex_state = 71, .external_lex_state = 2}, + [562] = {.lex_state = 71, .external_lex_state = 2}, + [563] = {.lex_state = 204}, + [564] = {.lex_state = 94}, + [565] = {.lex_state = 129, .external_lex_state = 20}, + [566] = {.lex_state = 167, .external_lex_state = 20}, + [567] = {.lex_state = 181}, + [568] = {.lex_state = 106}, + [569] = {.lex_state = 167, .external_lex_state = 20}, + [570] = {.lex_state = 167, .external_lex_state = 20}, + [571] = {.lex_state = 167, .external_lex_state = 20}, + [572] = {.lex_state = 78}, + [573] = {.lex_state = 187, .external_lex_state = 6}, + [574] = {.lex_state = 189, .external_lex_state = 16}, + [575] = {.lex_state = 189, .external_lex_state = 16}, + [576] = {.lex_state = 163, .external_lex_state = 4}, + [577] = {.lex_state = 167, .external_lex_state = 8}, + [578] = {.lex_state = 71, .external_lex_state = 2}, + [579] = {.lex_state = 98, .external_lex_state = 4}, + [580] = {.lex_state = 129, .external_lex_state = 8}, + [581] = {.lex_state = 71, .external_lex_state = 2}, + [582] = {.lex_state = 163, .external_lex_state = 4}, + [583] = {.lex_state = 167, .external_lex_state = 8}, + [584] = {.lex_state = 71, .external_lex_state = 2}, + [585] = {.lex_state = 232}, + [586] = {.lex_state = 206, .external_lex_state = 4}, + [587] = {.lex_state = 208}, + [588] = {.lex_state = 206, .external_lex_state = 4}, + [589] = {.lex_state = 94}, + [590] = {.lex_state = 206, .external_lex_state = 11}, + [591] = {.lex_state = 234, .external_lex_state = 11}, + [592] = {.lex_state = 181}, + [593] = {.lex_state = 106}, + [594] = {.lex_state = 234, .external_lex_state = 11}, + [595] = {.lex_state = 234, .external_lex_state = 11}, + [596] = {.lex_state = 234, .external_lex_state = 11}, + [597] = {.lex_state = 78}, + [598] = {.lex_state = 187, .external_lex_state = 6}, + [599] = {.lex_state = 189, .external_lex_state = 16}, + [600] = {.lex_state = 189, .external_lex_state = 16}, + [601] = {.lex_state = 163, .external_lex_state = 4}, + [602] = {.lex_state = 167, .external_lex_state = 8}, + [603] = {.lex_state = 71, .external_lex_state = 2}, + [604] = {.lex_state = 98, .external_lex_state = 4}, + [605] = {.lex_state = 129, .external_lex_state = 8}, + [606] = {.lex_state = 71, .external_lex_state = 2}, + [607] = {.lex_state = 163, .external_lex_state = 4}, + [608] = {.lex_state = 167, .external_lex_state = 8}, + [609] = {.lex_state = 71, .external_lex_state = 2}, + [610] = {.lex_state = 135, .external_lex_state = 4}, + [611] = {.lex_state = 88}, + [612] = {.lex_state = 88, .external_lex_state = 18}, + [613] = {.lex_state = 206, .external_lex_state = 4}, + [614] = {.lex_state = 236, .external_lex_state = 11}, + [615] = {.lex_state = 106}, + [616] = {.lex_state = 113}, + [617] = {.lex_state = 236, .external_lex_state = 11}, + [618] = {.lex_state = 113, .external_lex_state = 6}, + [619] = {.lex_state = 71, .external_lex_state = 2}, + [620] = {.lex_state = 71, .external_lex_state = 2}, + [621] = {.lex_state = 71, .external_lex_state = 2}, + [622] = {.lex_state = 236, .external_lex_state = 4}, + [623] = {.lex_state = 71, .external_lex_state = 2}, + [624] = {.lex_state = 169, .external_lex_state = 4}, + [625] = {.lex_state = 208}, + [626] = {.lex_state = 208}, + [627] = {.lex_state = 94}, + [628] = {.lex_state = 208, .external_lex_state = 10}, + [629] = {.lex_state = 238, .external_lex_state = 10}, + [630] = {.lex_state = 181}, + [631] = {.lex_state = 106}, + [632] = {.lex_state = 238, .external_lex_state = 10}, + [633] = {.lex_state = 238, .external_lex_state = 10}, + [634] = {.lex_state = 238, .external_lex_state = 10}, + [635] = {.lex_state = 78}, + [636] = {.lex_state = 187, .external_lex_state = 6}, + [637] = {.lex_state = 189, .external_lex_state = 16}, + [638] = {.lex_state = 189, .external_lex_state = 16}, + [639] = {.lex_state = 163, .external_lex_state = 4}, + [640] = {.lex_state = 167, .external_lex_state = 8}, + [641] = {.lex_state = 71, .external_lex_state = 2}, + [642] = {.lex_state = 98, .external_lex_state = 4}, + [643] = {.lex_state = 129, .external_lex_state = 8}, + [644] = {.lex_state = 71, .external_lex_state = 2}, + [645] = {.lex_state = 163, .external_lex_state = 4}, + [646] = {.lex_state = 167, .external_lex_state = 8}, + [647] = {.lex_state = 71, .external_lex_state = 2}, + [648] = {.lex_state = 210}, + [649] = {.lex_state = 88}, + [650] = {.lex_state = 88, .external_lex_state = 18}, + [651] = {.lex_state = 208}, + [652] = {.lex_state = 210, .external_lex_state = 10}, + [653] = {.lex_state = 142, .external_lex_state = 10}, + [654] = {.lex_state = 210, .external_lex_state = 10}, + [655] = {.lex_state = 181}, + [656] = {.lex_state = 222, .external_lex_state = 16}, + [657] = {.lex_state = 78}, + [658] = {.lex_state = 189, .external_lex_state = 16}, + [659] = {.lex_state = 189, .external_lex_state = 16}, + [660] = {.lex_state = 210, .external_lex_state = 10}, + [661] = {.lex_state = 224, .external_lex_state = 24}, + [662] = {.lex_state = 224, .external_lex_state = 16}, + [663] = {.lex_state = 210, .external_lex_state = 10}, + [664] = {.lex_state = 224, .external_lex_state = 24}, + [665] = {.lex_state = 224, .external_lex_state = 16}, + [666] = {.lex_state = 217, .external_lex_state = 2}, + [667] = {.lex_state = 210, .external_lex_state = 10}, + [668] = {.lex_state = 163, .external_lex_state = 4}, + [669] = {.lex_state = 167, .external_lex_state = 8}, + [670] = {.lex_state = 71, .external_lex_state = 2}, + [671] = {.lex_state = 98, .external_lex_state = 4}, + [672] = {.lex_state = 129, .external_lex_state = 8}, + [673] = {.lex_state = 217, .external_lex_state = 2}, + [674] = {.lex_state = 210, .external_lex_state = 10}, + [675] = {.lex_state = 163, .external_lex_state = 4}, + [676] = {.lex_state = 167, .external_lex_state = 8}, + [677] = {.lex_state = 71}, + [678] = {.lex_state = 94}, + [679] = {.lex_state = 71, .external_lex_state = 19}, + [680] = {.lex_state = 94}, + [681] = {.lex_state = 198, .external_lex_state = 21}, + [682] = {.lex_state = 210}, + [683] = {.lex_state = 210}, + [684] = {.lex_state = 129, .external_lex_state = 20}, + [685] = {.lex_state = 129, .external_lex_state = 20}, + [686] = {.lex_state = 198, .external_lex_state = 21}, + [687] = {.lex_state = 198, .external_lex_state = 7}, + [688] = {.lex_state = 78}, + [689] = {.lex_state = 129, .external_lex_state = 21}, + [690] = {.lex_state = 133, .external_lex_state = 9}, + [691] = {.lex_state = 98, .external_lex_state = 14}, + [692] = {.lex_state = 98, .external_lex_state = 3}, + [693] = {.lex_state = 98, .external_lex_state = 11}, + [694] = {.lex_state = 98, .external_lex_state = 4}, + [695] = {.lex_state = 102, .external_lex_state = 5}, + [696] = {.lex_state = 161}, + [697] = {.lex_state = 228, .external_lex_state = 7}, + [698] = {.lex_state = 71, .external_lex_state = 2}, + [699] = {.lex_state = 169, .external_lex_state = 4}, + [700] = {.lex_state = 198, .external_lex_state = 7}, + [701] = {.lex_state = 98, .external_lex_state = 4}, + [702] = {.lex_state = 129, .external_lex_state = 8}, + [703] = {.lex_state = 94}, + [704] = {.lex_state = 102, .external_lex_state = 5}, + [705] = {.lex_state = 102, .external_lex_state = 5}, + [706] = {.lex_state = 198, .external_lex_state = 5}, + [707] = {.lex_state = 198, .external_lex_state = 5}, + [708] = {.lex_state = 198, .external_lex_state = 5}, + [709] = {.lex_state = 198, .external_lex_state = 5}, + [710] = {.lex_state = 198, .external_lex_state = 7}, + [711] = {.lex_state = 198, .external_lex_state = 7}, + [712] = {.lex_state = 102, .external_lex_state = 7}, + [713] = {.lex_state = 102, .external_lex_state = 7}, + [714] = {.lex_state = 169, .external_lex_state = 4}, + [715] = {.lex_state = 71, .external_lex_state = 2}, + [716] = {.lex_state = 71, .external_lex_state = 2}, + [717] = {.lex_state = 94}, + [718] = {.lex_state = 71, .external_lex_state = 2}, + [719] = {.lex_state = 94}, + [720] = {.lex_state = 138, .external_lex_state = 11}, + [721] = {.lex_state = 241}, + [722] = {.lex_state = 135, .external_lex_state = 4}, + [723] = {.lex_state = 138, .external_lex_state = 11}, + [724] = {.lex_state = 138, .external_lex_state = 11}, + [725] = {.lex_state = 181}, + [726] = {.lex_state = 241}, + [727] = {.lex_state = 135, .external_lex_state = 4}, + [728] = {.lex_state = 222, .external_lex_state = 16}, + [729] = {.lex_state = 78}, + [730] = {.lex_state = 189, .external_lex_state = 16}, + [731] = {.lex_state = 189, .external_lex_state = 16}, + [732] = {.lex_state = 138, .external_lex_state = 11}, + [733] = {.lex_state = 224, .external_lex_state = 24}, + [734] = {.lex_state = 224, .external_lex_state = 16}, + [735] = {.lex_state = 138, .external_lex_state = 11}, + [736] = {.lex_state = 224, .external_lex_state = 24}, + [737] = {.lex_state = 224, .external_lex_state = 16}, + [738] = {.lex_state = 217, .external_lex_state = 2}, + [739] = {.lex_state = 138, .external_lex_state = 11}, + [740] = {.lex_state = 163, .external_lex_state = 4}, + [741] = {.lex_state = 167, .external_lex_state = 8}, + [742] = {.lex_state = 71, .external_lex_state = 2}, + [743] = {.lex_state = 98, .external_lex_state = 4}, + [744] = {.lex_state = 129, .external_lex_state = 8}, + [745] = {.lex_state = 217, .external_lex_state = 2}, + [746] = {.lex_state = 138, .external_lex_state = 11}, + [747] = {.lex_state = 163, .external_lex_state = 4}, + [748] = {.lex_state = 167, .external_lex_state = 8}, + [749] = {.lex_state = 161}, + [750] = {.lex_state = 243, .external_lex_state = 21}, + [751] = {.lex_state = 98, .external_lex_state = 4}, + [752] = {.lex_state = 129, .external_lex_state = 8}, + [753] = {.lex_state = 212, .external_lex_state = 22}, + [754] = {.lex_state = 71}, + [755] = {.lex_state = 94}, + [756] = {.lex_state = 169, .external_lex_state = 4}, + [757] = {.lex_state = 167, .external_lex_state = 20}, + [758] = {.lex_state = 167, .external_lex_state = 20}, + [759] = {.lex_state = 220, .external_lex_state = 21}, + [760] = {.lex_state = 220, .external_lex_state = 7}, + [761] = {.lex_state = 78}, + [762] = {.lex_state = 167, .external_lex_state = 21}, + [763] = {.lex_state = 133, .external_lex_state = 9}, + [764] = {.lex_state = 163, .external_lex_state = 14}, + [765] = {.lex_state = 163, .external_lex_state = 3}, + [766] = {.lex_state = 163, .external_lex_state = 11}, + [767] = {.lex_state = 163, .external_lex_state = 4}, + [768] = {.lex_state = 131, .external_lex_state = 5}, + [769] = {.lex_state = 161}, + [770] = {.lex_state = 169, .external_lex_state = 4}, + [771] = {.lex_state = 163, .external_lex_state = 4}, + [772] = {.lex_state = 167, .external_lex_state = 8}, + [773] = {.lex_state = 94}, + [774] = {.lex_state = 131, .external_lex_state = 5}, + [775] = {.lex_state = 131, .external_lex_state = 5}, + [776] = {.lex_state = 220, .external_lex_state = 5}, + [777] = {.lex_state = 220, .external_lex_state = 5}, + [778] = {.lex_state = 220, .external_lex_state = 5}, + [779] = {.lex_state = 220, .external_lex_state = 5}, + [780] = {.lex_state = 220, .external_lex_state = 7}, + [781] = {.lex_state = 220, .external_lex_state = 7}, + [782] = {.lex_state = 131, .external_lex_state = 7}, + [783] = {.lex_state = 217, .external_lex_state = 2}, + [784] = {.lex_state = 131, .external_lex_state = 7}, + [785] = {.lex_state = 94, .external_lex_state = 2}, + [786] = {.lex_state = 204}, + [787] = {.lex_state = 94, .external_lex_state = 15}, + [788] = {.lex_state = 94, .external_lex_state = 15}, + [789] = {.lex_state = 175, .external_lex_state = 13}, + [790] = {.lex_state = 175, .external_lex_state = 12}, + [791] = {.lex_state = 175, .external_lex_state = 12}, + [792] = {.lex_state = 175, .external_lex_state = 12}, + [793] = {.lex_state = 181}, + [794] = {.lex_state = 222, .external_lex_state = 16}, + [795] = {.lex_state = 78}, + [796] = {.lex_state = 189, .external_lex_state = 16}, + [797] = {.lex_state = 189, .external_lex_state = 16}, + [798] = {.lex_state = 175, .external_lex_state = 12}, + [799] = {.lex_state = 224, .external_lex_state = 24}, + [800] = {.lex_state = 224, .external_lex_state = 16}, + [801] = {.lex_state = 175, .external_lex_state = 12}, + [802] = {.lex_state = 224, .external_lex_state = 24}, + [803] = {.lex_state = 224, .external_lex_state = 16}, + [804] = {.lex_state = 217, .external_lex_state = 2}, + [805] = {.lex_state = 175, .external_lex_state = 12}, + [806] = {.lex_state = 163, .external_lex_state = 4}, + [807] = {.lex_state = 167, .external_lex_state = 8}, + [808] = {.lex_state = 71, .external_lex_state = 2}, + [809] = {.lex_state = 98, .external_lex_state = 4}, + [810] = {.lex_state = 129, .external_lex_state = 8}, + [811] = {.lex_state = 217, .external_lex_state = 2}, + [812] = {.lex_state = 175, .external_lex_state = 12}, + [813] = {.lex_state = 163, .external_lex_state = 4}, + [814] = {.lex_state = 167, .external_lex_state = 8}, + [815] = {.lex_state = 175, .external_lex_state = 13}, + [816] = {.lex_state = 175, .external_lex_state = 13}, + [817] = {.lex_state = 178, .external_lex_state = 10}, + [818] = {.lex_state = 163, .external_lex_state = 3}, + [819] = {.lex_state = 204}, + [820] = {.lex_state = 98, .external_lex_state = 14}, + [821] = {.lex_state = 98, .external_lex_state = 14}, + [822] = {.lex_state = 163, .external_lex_state = 14}, + [823] = {.lex_state = 98, .external_lex_state = 14}, + [824] = {.lex_state = 163, .external_lex_state = 14}, + [825] = {.lex_state = 181}, + [826] = {.lex_state = 222, .external_lex_state = 16}, + [827] = {.lex_state = 78}, + [828] = {.lex_state = 189, .external_lex_state = 16}, + [829] = {.lex_state = 189, .external_lex_state = 16}, + [830] = {.lex_state = 163, .external_lex_state = 14}, + [831] = {.lex_state = 224, .external_lex_state = 24}, + [832] = {.lex_state = 224, .external_lex_state = 16}, + [833] = {.lex_state = 163, .external_lex_state = 14}, + [834] = {.lex_state = 224, .external_lex_state = 24}, + [835] = {.lex_state = 224, .external_lex_state = 16}, + [836] = {.lex_state = 217, .external_lex_state = 2}, + [837] = {.lex_state = 163, .external_lex_state = 14}, + [838] = {.lex_state = 163, .external_lex_state = 4}, + [839] = {.lex_state = 167, .external_lex_state = 8}, + [840] = {.lex_state = 71, .external_lex_state = 2}, + [841] = {.lex_state = 98, .external_lex_state = 4}, + [842] = {.lex_state = 129, .external_lex_state = 8}, + [843] = {.lex_state = 217, .external_lex_state = 2}, + [844] = {.lex_state = 163, .external_lex_state = 14}, + [845] = {.lex_state = 163, .external_lex_state = 4}, + [846] = {.lex_state = 167, .external_lex_state = 8}, + [847] = {.lex_state = 163, .external_lex_state = 11}, + [848] = {.lex_state = 98, .external_lex_state = 11}, + [849] = {.lex_state = 163, .external_lex_state = 11}, + [850] = {.lex_state = 181}, + [851] = {.lex_state = 222, .external_lex_state = 16}, + [852] = {.lex_state = 78}, + [853] = {.lex_state = 189, .external_lex_state = 16}, + [854] = {.lex_state = 189, .external_lex_state = 16}, + [855] = {.lex_state = 163, .external_lex_state = 11}, + [856] = {.lex_state = 224, .external_lex_state = 24}, + [857] = {.lex_state = 224, .external_lex_state = 16}, + [858] = {.lex_state = 163, .external_lex_state = 11}, + [859] = {.lex_state = 224, .external_lex_state = 24}, + [860] = {.lex_state = 224, .external_lex_state = 16}, + [861] = {.lex_state = 217, .external_lex_state = 2}, + [862] = {.lex_state = 163, .external_lex_state = 11}, + [863] = {.lex_state = 163, .external_lex_state = 4}, + [864] = {.lex_state = 167, .external_lex_state = 8}, + [865] = {.lex_state = 71, .external_lex_state = 2}, + [866] = {.lex_state = 98, .external_lex_state = 4}, + [867] = {.lex_state = 129, .external_lex_state = 8}, + [868] = {.lex_state = 217, .external_lex_state = 2}, + [869] = {.lex_state = 163, .external_lex_state = 11}, + [870] = {.lex_state = 163, .external_lex_state = 4}, + [871] = {.lex_state = 167, .external_lex_state = 8}, + [872] = {.lex_state = 94, .external_lex_state = 15}, + [873] = {.lex_state = 94, .external_lex_state = 15}, + [874] = {.lex_state = 94, .external_lex_state = 15}, + [875] = {.lex_state = 181}, + [876] = {.lex_state = 222, .external_lex_state = 16}, + [877] = {.lex_state = 78}, + [878] = {.lex_state = 189, .external_lex_state = 16}, + [879] = {.lex_state = 189, .external_lex_state = 16}, + [880] = {.lex_state = 94, .external_lex_state = 15}, + [881] = {.lex_state = 224, .external_lex_state = 24}, + [882] = {.lex_state = 224, .external_lex_state = 16}, + [883] = {.lex_state = 94, .external_lex_state = 15}, + [884] = {.lex_state = 224, .external_lex_state = 24}, + [885] = {.lex_state = 224, .external_lex_state = 16}, + [886] = {.lex_state = 217, .external_lex_state = 2}, + [887] = {.lex_state = 94, .external_lex_state = 15}, + [888] = {.lex_state = 163, .external_lex_state = 4}, + [889] = {.lex_state = 167, .external_lex_state = 8}, + [890] = {.lex_state = 71, .external_lex_state = 2}, + [891] = {.lex_state = 98, .external_lex_state = 4}, + [892] = {.lex_state = 129, .external_lex_state = 8}, + [893] = {.lex_state = 217, .external_lex_state = 2}, + [894] = {.lex_state = 94, .external_lex_state = 15}, + [895] = {.lex_state = 163, .external_lex_state = 4}, + [896] = {.lex_state = 167, .external_lex_state = 8}, + [897] = {.lex_state = 106}, + [898] = {.lex_state = 222, .external_lex_state = 16}, + [899] = {.lex_state = 78}, + [900] = {.lex_state = 189, .external_lex_state = 16}, + [901] = {.lex_state = 189, .external_lex_state = 16}, + [902] = {.lex_state = 106, .external_lex_state = 10}, + [903] = {.lex_state = 224, .external_lex_state = 24}, + [904] = {.lex_state = 224, .external_lex_state = 16}, + [905] = {.lex_state = 106, .external_lex_state = 10}, + [906] = {.lex_state = 224, .external_lex_state = 24}, + [907] = {.lex_state = 224, .external_lex_state = 16}, + [908] = {.lex_state = 217, .external_lex_state = 2}, + [909] = {.lex_state = 106, .external_lex_state = 10}, + [910] = {.lex_state = 163, .external_lex_state = 4}, + [911] = {.lex_state = 167, .external_lex_state = 8}, + [912] = {.lex_state = 71, .external_lex_state = 2}, + [913] = {.lex_state = 98, .external_lex_state = 4}, + [914] = {.lex_state = 129, .external_lex_state = 8}, + [915] = {.lex_state = 131, .external_lex_state = 5}, + [916] = {.lex_state = 181}, + [917] = {.lex_state = 202, .external_lex_state = 12}, + [918] = {.lex_state = 202, .external_lex_state = 12}, + [919] = {.lex_state = 202, .external_lex_state = 12}, + [920] = {.lex_state = 131, .external_lex_state = 5}, + [921] = {.lex_state = 212, .external_lex_state = 23}, + [922] = {.lex_state = 106}, + [923] = {.lex_state = 113}, + [924] = {.lex_state = 212, .external_lex_state = 23}, + [925] = {.lex_state = 113, .external_lex_state = 6}, + [926] = {.lex_state = 71, .external_lex_state = 2}, + [927] = {.lex_state = 71, .external_lex_state = 2}, + [928] = {.lex_state = 71, .external_lex_state = 2}, + [929] = {.lex_state = 212, .external_lex_state = 16}, + [930] = {.lex_state = 222, .external_lex_state = 16}, + [931] = {.lex_state = 131, .external_lex_state = 5}, + [932] = {.lex_state = 224, .external_lex_state = 24}, + [933] = {.lex_state = 224, .external_lex_state = 16}, + [934] = {.lex_state = 224, .external_lex_state = 24}, + [935] = {.lex_state = 224, .external_lex_state = 16}, + [936] = {.lex_state = 94}, + [937] = {.lex_state = 224, .external_lex_state = 23}, + [938] = {.lex_state = 224, .external_lex_state = 23}, + [939] = {.lex_state = 181}, + [940] = {.lex_state = 106}, + [941] = {.lex_state = 224, .external_lex_state = 23}, + [942] = {.lex_state = 224, .external_lex_state = 23}, + [943] = {.lex_state = 224, .external_lex_state = 23}, + [944] = {.lex_state = 78}, + [945] = {.lex_state = 187, .external_lex_state = 6}, + [946] = {.lex_state = 189, .external_lex_state = 16}, + [947] = {.lex_state = 189, .external_lex_state = 16}, + [948] = {.lex_state = 224, .external_lex_state = 16}, + [949] = {.lex_state = 131, .external_lex_state = 5}, + [950] = {.lex_state = 224, .external_lex_state = 16}, + [951] = {.lex_state = 163, .external_lex_state = 4}, + [952] = {.lex_state = 167, .external_lex_state = 8}, + [953] = {.lex_state = 71, .external_lex_state = 2}, + [954] = {.lex_state = 98, .external_lex_state = 4}, + [955] = {.lex_state = 129, .external_lex_state = 8}, + [956] = {.lex_state = 71, .external_lex_state = 2}, + [957] = {.lex_state = 163, .external_lex_state = 4}, + [958] = {.lex_state = 167, .external_lex_state = 8}, + [959] = {.lex_state = 71, .external_lex_state = 2}, + [960] = {.lex_state = 224, .external_lex_state = 16}, + [961] = {.lex_state = 224, .external_lex_state = 16}, + [962] = {.lex_state = 131, .external_lex_state = 5}, + [963] = {.lex_state = 217, .external_lex_state = 2}, + [964] = {.lex_state = 226, .external_lex_state = 21}, + [965] = {.lex_state = 226, .external_lex_state = 7}, + [966] = {.lex_state = 78}, + [967] = {.lex_state = 129, .external_lex_state = 21}, + [968] = {.lex_state = 161}, + [969] = {.lex_state = 129, .external_lex_state = 8}, + [970] = {.lex_state = 98, .external_lex_state = 4}, + [971] = {.lex_state = 129, .external_lex_state = 8}, + [972] = {.lex_state = 94}, + [973] = {.lex_state = 226, .external_lex_state = 5}, + [974] = {.lex_state = 226, .external_lex_state = 5}, + [975] = {.lex_state = 226, .external_lex_state = 5}, + [976] = {.lex_state = 226, .external_lex_state = 5}, + [977] = {.lex_state = 226, .external_lex_state = 7}, + [978] = {.lex_state = 226, .external_lex_state = 7}, + [979] = {.lex_state = 71, .external_lex_state = 2}, + [980] = {.lex_state = 102, .external_lex_state = 7}, + [981] = {.lex_state = 131, .external_lex_state = 5}, + [982] = {.lex_state = 217, .external_lex_state = 2}, + [983] = {.lex_state = 214, .external_lex_state = 21}, + [984] = {.lex_state = 193, .external_lex_state = 17}, + [985] = {.lex_state = 193, .external_lex_state = 17}, + [986] = {.lex_state = 78}, + [987] = {.lex_state = 187, .external_lex_state = 6}, + [988] = {.lex_state = 189, .external_lex_state = 16}, + [989] = {.lex_state = 189, .external_lex_state = 16}, + [990] = {.lex_state = 169, .external_lex_state = 4}, + [991] = {.lex_state = 193, .external_lex_state = 17}, + [992] = {.lex_state = 198, .external_lex_state = 5}, + [993] = {.lex_state = 198, .external_lex_state = 5}, + [994] = {.lex_state = 228, .external_lex_state = 7}, + [995] = {.lex_state = 198, .external_lex_state = 5}, + [996] = {.lex_state = 169, .external_lex_state = 4}, + [997] = {.lex_state = 217, .external_lex_state = 2}, + [998] = {.lex_state = 198, .external_lex_state = 7}, + [999] = {.lex_state = 230, .external_lex_state = 10}, + [1000] = {.lex_state = 78}, + [1001] = {.lex_state = 202, .external_lex_state = 12}, + [1002] = {.lex_state = 230, .external_lex_state = 10}, + [1003] = {.lex_state = 78}, + [1004] = {.lex_state = 94}, + [1005] = {.lex_state = 204, .external_lex_state = 10}, + [1006] = {.lex_state = 204, .external_lex_state = 10}, + [1007] = {.lex_state = 181}, + [1008] = {.lex_state = 106}, + [1009] = {.lex_state = 204, .external_lex_state = 10}, + [1010] = {.lex_state = 204, .external_lex_state = 10}, + [1011] = {.lex_state = 204, .external_lex_state = 10}, + [1012] = {.lex_state = 78}, + [1013] = {.lex_state = 187, .external_lex_state = 6}, + [1014] = {.lex_state = 189, .external_lex_state = 16}, + [1015] = {.lex_state = 189, .external_lex_state = 16}, + [1016] = {.lex_state = 163, .external_lex_state = 4}, + [1017] = {.lex_state = 167, .external_lex_state = 8}, + [1018] = {.lex_state = 71, .external_lex_state = 2}, + [1019] = {.lex_state = 98, .external_lex_state = 4}, + [1020] = {.lex_state = 129, .external_lex_state = 8}, + [1021] = {.lex_state = 71, .external_lex_state = 2}, + [1022] = {.lex_state = 163, .external_lex_state = 4}, + [1023] = {.lex_state = 167, .external_lex_state = 8}, + [1024] = {.lex_state = 71, .external_lex_state = 2}, + [1025] = {.lex_state = 167, .external_lex_state = 8}, + [1026] = {.lex_state = 204}, + [1027] = {.lex_state = 167, .external_lex_state = 20}, + [1028] = {.lex_state = 129, .external_lex_state = 20}, + [1029] = {.lex_state = 167, .external_lex_state = 20}, + [1030] = {.lex_state = 181}, + [1031] = {.lex_state = 222, .external_lex_state = 16}, + [1032] = {.lex_state = 78}, + [1033] = {.lex_state = 189, .external_lex_state = 16}, + [1034] = {.lex_state = 189, .external_lex_state = 16}, + [1035] = {.lex_state = 167, .external_lex_state = 20}, + [1036] = {.lex_state = 224, .external_lex_state = 24}, + [1037] = {.lex_state = 224, .external_lex_state = 16}, + [1038] = {.lex_state = 167, .external_lex_state = 20}, + [1039] = {.lex_state = 224, .external_lex_state = 24}, + [1040] = {.lex_state = 224, .external_lex_state = 16}, + [1041] = {.lex_state = 217, .external_lex_state = 2}, + [1042] = {.lex_state = 167, .external_lex_state = 20}, + [1043] = {.lex_state = 163, .external_lex_state = 4}, + [1044] = {.lex_state = 167, .external_lex_state = 8}, + [1045] = {.lex_state = 71, .external_lex_state = 2}, + [1046] = {.lex_state = 98, .external_lex_state = 4}, + [1047] = {.lex_state = 129, .external_lex_state = 8}, + [1048] = {.lex_state = 217, .external_lex_state = 2}, + [1049] = {.lex_state = 167, .external_lex_state = 20}, + [1050] = {.lex_state = 163, .external_lex_state = 4}, + [1051] = {.lex_state = 167, .external_lex_state = 8}, + [1052] = {.lex_state = 245}, + [1053] = {.lex_state = 142}, + [1054] = {.lex_state = 232}, + [1055] = {.lex_state = 206, .external_lex_state = 4}, + [1056] = {.lex_state = 234, .external_lex_state = 11}, + [1057] = {.lex_state = 206, .external_lex_state = 11}, + [1058] = {.lex_state = 234, .external_lex_state = 11}, + [1059] = {.lex_state = 181}, + [1060] = {.lex_state = 222, .external_lex_state = 16}, + [1061] = {.lex_state = 78}, + [1062] = {.lex_state = 189, .external_lex_state = 16}, + [1063] = {.lex_state = 189, .external_lex_state = 16}, + [1064] = {.lex_state = 234, .external_lex_state = 11}, + [1065] = {.lex_state = 224, .external_lex_state = 24}, + [1066] = {.lex_state = 224, .external_lex_state = 16}, + [1067] = {.lex_state = 234, .external_lex_state = 11}, + [1068] = {.lex_state = 224, .external_lex_state = 24}, + [1069] = {.lex_state = 224, .external_lex_state = 16}, + [1070] = {.lex_state = 217, .external_lex_state = 2}, + [1071] = {.lex_state = 234, .external_lex_state = 11}, + [1072] = {.lex_state = 163, .external_lex_state = 4}, + [1073] = {.lex_state = 167, .external_lex_state = 8}, + [1074] = {.lex_state = 71, .external_lex_state = 2}, + [1075] = {.lex_state = 98, .external_lex_state = 4}, + [1076] = {.lex_state = 129, .external_lex_state = 8}, + [1077] = {.lex_state = 217, .external_lex_state = 2}, + [1078] = {.lex_state = 234, .external_lex_state = 11}, + [1079] = {.lex_state = 163, .external_lex_state = 4}, + [1080] = {.lex_state = 167, .external_lex_state = 8}, + [1081] = {.lex_state = 206, .external_lex_state = 4}, + [1082] = {.lex_state = 206, .external_lex_state = 4}, + [1083] = {.lex_state = 206, .external_lex_state = 4}, + [1084] = {.lex_state = 94}, + [1085] = {.lex_state = 236, .external_lex_state = 11}, + [1086] = {.lex_state = 236, .external_lex_state = 11}, + [1087] = {.lex_state = 181}, + [1088] = {.lex_state = 106}, + [1089] = {.lex_state = 236, .external_lex_state = 11}, + [1090] = {.lex_state = 236, .external_lex_state = 11}, + [1091] = {.lex_state = 236, .external_lex_state = 11}, + [1092] = {.lex_state = 78}, + [1093] = {.lex_state = 187, .external_lex_state = 6}, + [1094] = {.lex_state = 189, .external_lex_state = 16}, + [1095] = {.lex_state = 189, .external_lex_state = 16}, + [1096] = {.lex_state = 163, .external_lex_state = 4}, + [1097] = {.lex_state = 167, .external_lex_state = 8}, + [1098] = {.lex_state = 71, .external_lex_state = 2}, + [1099] = {.lex_state = 98, .external_lex_state = 4}, + [1100] = {.lex_state = 129, .external_lex_state = 8}, + [1101] = {.lex_state = 71, .external_lex_state = 2}, + [1102] = {.lex_state = 163, .external_lex_state = 4}, + [1103] = {.lex_state = 167, .external_lex_state = 8}, + [1104] = {.lex_state = 71, .external_lex_state = 2}, + [1105] = {.lex_state = 94}, + [1106] = {.lex_state = 236, .external_lex_state = 4}, + [1107] = {.lex_state = 169, .external_lex_state = 4}, + [1108] = {.lex_state = 71, .external_lex_state = 2}, + [1109] = {.lex_state = 208}, + [1110] = {.lex_state = 238, .external_lex_state = 10}, + [1111] = {.lex_state = 208, .external_lex_state = 10}, + [1112] = {.lex_state = 238, .external_lex_state = 10}, + [1113] = {.lex_state = 181}, + [1114] = {.lex_state = 222, .external_lex_state = 16}, + [1115] = {.lex_state = 78}, + [1116] = {.lex_state = 189, .external_lex_state = 16}, + [1117] = {.lex_state = 189, .external_lex_state = 16}, + [1118] = {.lex_state = 238, .external_lex_state = 10}, + [1119] = {.lex_state = 224, .external_lex_state = 24}, + [1120] = {.lex_state = 224, .external_lex_state = 16}, + [1121] = {.lex_state = 238, .external_lex_state = 10}, + [1122] = {.lex_state = 224, .external_lex_state = 24}, + [1123] = {.lex_state = 224, .external_lex_state = 16}, + [1124] = {.lex_state = 217, .external_lex_state = 2}, + [1125] = {.lex_state = 238, .external_lex_state = 10}, + [1126] = {.lex_state = 163, .external_lex_state = 4}, + [1127] = {.lex_state = 167, .external_lex_state = 8}, + [1128] = {.lex_state = 71, .external_lex_state = 2}, + [1129] = {.lex_state = 98, .external_lex_state = 4}, + [1130] = {.lex_state = 129, .external_lex_state = 8}, + [1131] = {.lex_state = 217, .external_lex_state = 2}, + [1132] = {.lex_state = 238, .external_lex_state = 10}, + [1133] = {.lex_state = 163, .external_lex_state = 4}, + [1134] = {.lex_state = 167, .external_lex_state = 8}, + [1135] = {.lex_state = 208}, + [1136] = {.lex_state = 208}, + [1137] = {.lex_state = 210, .external_lex_state = 10}, + [1138] = {.lex_state = 210, .external_lex_state = 10}, + [1139] = {.lex_state = 212, .external_lex_state = 23}, + [1140] = {.lex_state = 212, .external_lex_state = 23}, + [1141] = {.lex_state = 212, .external_lex_state = 16}, + [1142] = {.lex_state = 222, .external_lex_state = 16}, + [1143] = {.lex_state = 210, .external_lex_state = 10}, + [1144] = {.lex_state = 224, .external_lex_state = 24}, + [1145] = {.lex_state = 224, .external_lex_state = 16}, + [1146] = {.lex_state = 224, .external_lex_state = 24}, + [1147] = {.lex_state = 224, .external_lex_state = 16}, + [1148] = {.lex_state = 224, .external_lex_state = 16}, + [1149] = {.lex_state = 210, .external_lex_state = 10}, + [1150] = {.lex_state = 224, .external_lex_state = 16}, + [1151] = {.lex_state = 224, .external_lex_state = 16}, + [1152] = {.lex_state = 210, .external_lex_state = 10}, + [1153] = {.lex_state = 217, .external_lex_state = 2}, + [1154] = {.lex_state = 71, .external_lex_state = 2}, + [1155] = {.lex_state = 210, .external_lex_state = 10}, + [1156] = {.lex_state = 217, .external_lex_state = 2}, + [1157] = {.lex_state = 94}, + [1158] = {.lex_state = 198, .external_lex_state = 25}, + [1159] = {.lex_state = 106}, + [1160] = {.lex_state = 113}, + [1161] = {.lex_state = 198, .external_lex_state = 25}, + [1162] = {.lex_state = 113, .external_lex_state = 6}, + [1163] = {.lex_state = 71, .external_lex_state = 2}, + [1164] = {.lex_state = 71, .external_lex_state = 2}, + [1165] = {.lex_state = 71, .external_lex_state = 2}, + [1166] = {.lex_state = 228, .external_lex_state = 21}, + [1167] = {.lex_state = 228, .external_lex_state = 21}, + [1168] = {.lex_state = 198, .external_lex_state = 25}, + [1169] = {.lex_state = 198, .external_lex_state = 25}, + [1170] = {.lex_state = 228, .external_lex_state = 21}, + [1171] = {.lex_state = 198, .external_lex_state = 21}, + [1172] = {.lex_state = 129, .external_lex_state = 20}, + [1173] = {.lex_state = 71}, + [1174] = {.lex_state = 94}, + [1175] = {.lex_state = 94}, + [1176] = {.lex_state = 198, .external_lex_state = 21}, + [1177] = {.lex_state = 198, .external_lex_state = 7}, + [1178] = {.lex_state = 161}, + [1179] = {.lex_state = 71}, + [1180] = {.lex_state = 94}, + [1181] = {.lex_state = 98, .external_lex_state = 14}, + [1182] = {.lex_state = 98, .external_lex_state = 14}, + [1183] = {.lex_state = 98, .external_lex_state = 14}, + [1184] = {.lex_state = 98, .external_lex_state = 11}, + [1185] = {.lex_state = 129, .external_lex_state = 21}, + [1186] = {.lex_state = 228, .external_lex_state = 7}, + [1187] = {.lex_state = 71, .external_lex_state = 2}, + [1188] = {.lex_state = 169, .external_lex_state = 4}, + [1189] = {.lex_state = 198, .external_lex_state = 5}, + [1190] = {.lex_state = 198, .external_lex_state = 5}, + [1191] = {.lex_state = 198, .external_lex_state = 5}, + [1192] = {.lex_state = 198, .external_lex_state = 7}, + [1193] = {.lex_state = 94}, + [1194] = {.lex_state = 71, .external_lex_state = 2}, + [1195] = {.lex_state = 169, .external_lex_state = 4}, + [1196] = {.lex_state = 94}, + [1197] = {.lex_state = 71, .external_lex_state = 2}, + [1198] = {.lex_state = 94}, + [1199] = {.lex_state = 94}, + [1200] = {.lex_state = 169, .external_lex_state = 4}, + [1201] = {.lex_state = 248, .external_lex_state = 10}, + [1202] = {.lex_state = 248, .external_lex_state = 10}, + [1203] = {.lex_state = 251}, + [1204] = {.lex_state = 248}, + [1205] = {.lex_state = 94}, + [1206] = {.lex_state = 241}, + [1207] = {.lex_state = 138, .external_lex_state = 11}, + [1208] = {.lex_state = 169, .external_lex_state = 4}, + [1209] = {.lex_state = 251}, + [1210] = {.lex_state = 94}, + [1211] = {.lex_state = 241}, + [1212] = {.lex_state = 138, .external_lex_state = 11}, + [1213] = {.lex_state = 212, .external_lex_state = 23}, + [1214] = {.lex_state = 212, .external_lex_state = 23}, + [1215] = {.lex_state = 212, .external_lex_state = 16}, + [1216] = {.lex_state = 222, .external_lex_state = 16}, + [1217] = {.lex_state = 138, .external_lex_state = 11}, + [1218] = {.lex_state = 224, .external_lex_state = 24}, + [1219] = {.lex_state = 224, .external_lex_state = 16}, + [1220] = {.lex_state = 224, .external_lex_state = 24}, + [1221] = {.lex_state = 224, .external_lex_state = 16}, + [1222] = {.lex_state = 224, .external_lex_state = 16}, + [1223] = {.lex_state = 138, .external_lex_state = 11}, + [1224] = {.lex_state = 224, .external_lex_state = 16}, + [1225] = {.lex_state = 224, .external_lex_state = 16}, + [1226] = {.lex_state = 138, .external_lex_state = 11}, + [1227] = {.lex_state = 217, .external_lex_state = 2}, + [1228] = {.lex_state = 71, .external_lex_state = 2}, + [1229] = {.lex_state = 138, .external_lex_state = 11}, + [1230] = {.lex_state = 217, .external_lex_state = 2}, + [1231] = {.lex_state = 214, .external_lex_state = 21}, + [1232] = {.lex_state = 212, .external_lex_state = 22}, + [1233] = {.lex_state = 243, .external_lex_state = 21}, + [1234] = {.lex_state = 212, .external_lex_state = 22}, + [1235] = {.lex_state = 94}, + [1236] = {.lex_state = 127, .external_lex_state = 11}, + [1237] = {.lex_state = 127, .external_lex_state = 11}, + [1238] = {.lex_state = 169, .external_lex_state = 4}, + [1239] = {.lex_state = 167, .external_lex_state = 20}, + [1240] = {.lex_state = 71}, + [1241] = {.lex_state = 94}, + [1242] = {.lex_state = 94}, + [1243] = {.lex_state = 220, .external_lex_state = 21}, + [1244] = {.lex_state = 220, .external_lex_state = 7}, + [1245] = {.lex_state = 161}, + [1246] = {.lex_state = 71}, + [1247] = {.lex_state = 94}, + [1248] = {.lex_state = 163, .external_lex_state = 14}, + [1249] = {.lex_state = 163, .external_lex_state = 14}, + [1250] = {.lex_state = 163, .external_lex_state = 14}, + [1251] = {.lex_state = 163, .external_lex_state = 11}, + [1252] = {.lex_state = 167, .external_lex_state = 21}, + [1253] = {.lex_state = 220, .external_lex_state = 5}, + [1254] = {.lex_state = 220, .external_lex_state = 5}, + [1255] = {.lex_state = 220, .external_lex_state = 5}, + [1256] = {.lex_state = 169, .external_lex_state = 4}, + [1257] = {.lex_state = 220, .external_lex_state = 7}, + [1258] = {.lex_state = 94, .external_lex_state = 2}, + [1259] = {.lex_state = 204}, + [1260] = {.lex_state = 175, .external_lex_state = 12}, + [1261] = {.lex_state = 175, .external_lex_state = 12}, + [1262] = {.lex_state = 212, .external_lex_state = 23}, + [1263] = {.lex_state = 212, .external_lex_state = 23}, + [1264] = {.lex_state = 212, .external_lex_state = 16}, + [1265] = {.lex_state = 222, .external_lex_state = 16}, + [1266] = {.lex_state = 175, .external_lex_state = 12}, + [1267] = {.lex_state = 224, .external_lex_state = 24}, + [1268] = {.lex_state = 224, .external_lex_state = 16}, + [1269] = {.lex_state = 224, .external_lex_state = 24}, + [1270] = {.lex_state = 224, .external_lex_state = 16}, + [1271] = {.lex_state = 224, .external_lex_state = 16}, + [1272] = {.lex_state = 175, .external_lex_state = 12}, + [1273] = {.lex_state = 224, .external_lex_state = 16}, + [1274] = {.lex_state = 224, .external_lex_state = 16}, + [1275] = {.lex_state = 175, .external_lex_state = 12}, + [1276] = {.lex_state = 217, .external_lex_state = 2}, + [1277] = {.lex_state = 71, .external_lex_state = 2}, + [1278] = {.lex_state = 175, .external_lex_state = 12}, + [1279] = {.lex_state = 217, .external_lex_state = 2}, + [1280] = {.lex_state = 163, .external_lex_state = 3}, + [1281] = {.lex_state = 204}, + [1282] = {.lex_state = 163, .external_lex_state = 14}, + [1283] = {.lex_state = 163, .external_lex_state = 14}, + [1284] = {.lex_state = 212, .external_lex_state = 23}, + [1285] = {.lex_state = 212, .external_lex_state = 23}, + [1286] = {.lex_state = 212, .external_lex_state = 16}, + [1287] = {.lex_state = 222, .external_lex_state = 16}, + [1288] = {.lex_state = 163, .external_lex_state = 14}, + [1289] = {.lex_state = 224, .external_lex_state = 24}, + [1290] = {.lex_state = 224, .external_lex_state = 16}, + [1291] = {.lex_state = 224, .external_lex_state = 24}, + [1292] = {.lex_state = 224, .external_lex_state = 16}, + [1293] = {.lex_state = 224, .external_lex_state = 16}, + [1294] = {.lex_state = 163, .external_lex_state = 14}, + [1295] = {.lex_state = 224, .external_lex_state = 16}, + [1296] = {.lex_state = 224, .external_lex_state = 16}, + [1297] = {.lex_state = 163, .external_lex_state = 14}, + [1298] = {.lex_state = 217, .external_lex_state = 2}, + [1299] = {.lex_state = 71, .external_lex_state = 2}, + [1300] = {.lex_state = 163, .external_lex_state = 14}, + [1301] = {.lex_state = 217, .external_lex_state = 2}, + [1302] = {.lex_state = 163, .external_lex_state = 11}, + [1303] = {.lex_state = 163, .external_lex_state = 11}, + [1304] = {.lex_state = 212, .external_lex_state = 23}, + [1305] = {.lex_state = 212, .external_lex_state = 23}, + [1306] = {.lex_state = 212, .external_lex_state = 16}, + [1307] = {.lex_state = 222, .external_lex_state = 16}, + [1308] = {.lex_state = 163, .external_lex_state = 11}, + [1309] = {.lex_state = 224, .external_lex_state = 24}, + [1310] = {.lex_state = 224, .external_lex_state = 16}, + [1311] = {.lex_state = 224, .external_lex_state = 24}, + [1312] = {.lex_state = 224, .external_lex_state = 16}, + [1313] = {.lex_state = 224, .external_lex_state = 16}, + [1314] = {.lex_state = 163, .external_lex_state = 11}, + [1315] = {.lex_state = 224, .external_lex_state = 16}, + [1316] = {.lex_state = 224, .external_lex_state = 16}, + [1317] = {.lex_state = 163, .external_lex_state = 11}, + [1318] = {.lex_state = 217, .external_lex_state = 2}, + [1319] = {.lex_state = 71, .external_lex_state = 2}, + [1320] = {.lex_state = 163, .external_lex_state = 11}, + [1321] = {.lex_state = 217, .external_lex_state = 2}, + [1322] = {.lex_state = 94, .external_lex_state = 15}, + [1323] = {.lex_state = 94, .external_lex_state = 15}, + [1324] = {.lex_state = 212, .external_lex_state = 23}, + [1325] = {.lex_state = 212, .external_lex_state = 23}, + [1326] = {.lex_state = 212, .external_lex_state = 16}, + [1327] = {.lex_state = 222, .external_lex_state = 16}, + [1328] = {.lex_state = 94, .external_lex_state = 15}, + [1329] = {.lex_state = 224, .external_lex_state = 24}, + [1330] = {.lex_state = 224, .external_lex_state = 16}, + [1331] = {.lex_state = 224, .external_lex_state = 24}, + [1332] = {.lex_state = 224, .external_lex_state = 16}, + [1333] = {.lex_state = 224, .external_lex_state = 16}, + [1334] = {.lex_state = 94, .external_lex_state = 15}, + [1335] = {.lex_state = 224, .external_lex_state = 16}, + [1336] = {.lex_state = 224, .external_lex_state = 16}, + [1337] = {.lex_state = 94, .external_lex_state = 15}, + [1338] = {.lex_state = 217, .external_lex_state = 2}, + [1339] = {.lex_state = 71, .external_lex_state = 2}, + [1340] = {.lex_state = 94, .external_lex_state = 15}, + [1341] = {.lex_state = 217, .external_lex_state = 2}, + [1342] = {.lex_state = 106, .external_lex_state = 10}, + [1343] = {.lex_state = 212, .external_lex_state = 23}, + [1344] = {.lex_state = 212, .external_lex_state = 23}, + [1345] = {.lex_state = 212, .external_lex_state = 16}, + [1346] = {.lex_state = 222, .external_lex_state = 16}, + [1347] = {.lex_state = 106, .external_lex_state = 10}, + [1348] = {.lex_state = 224, .external_lex_state = 24}, + [1349] = {.lex_state = 224, .external_lex_state = 16}, + [1350] = {.lex_state = 224, .external_lex_state = 24}, + [1351] = {.lex_state = 224, .external_lex_state = 16}, + [1352] = {.lex_state = 224, .external_lex_state = 16}, + [1353] = {.lex_state = 106, .external_lex_state = 10}, + [1354] = {.lex_state = 224, .external_lex_state = 16}, + [1355] = {.lex_state = 224, .external_lex_state = 16}, + [1356] = {.lex_state = 106, .external_lex_state = 10}, + [1357] = {.lex_state = 217, .external_lex_state = 2}, + [1358] = {.lex_state = 71, .external_lex_state = 2}, + [1359] = {.lex_state = 202, .external_lex_state = 13}, + [1360] = {.lex_state = 189, .external_lex_state = 23}, + [1361] = {.lex_state = 202, .external_lex_state = 13}, + [1362] = {.lex_state = 189, .external_lex_state = 23}, + [1363] = {.lex_state = 175, .external_lex_state = 13}, + [1364] = {.lex_state = 94}, + [1365] = {.lex_state = 131, .external_lex_state = 5}, + [1366] = {.lex_state = 212, .external_lex_state = 23}, + [1367] = {.lex_state = 212, .external_lex_state = 23}, + [1368] = {.lex_state = 181}, + [1369] = {.lex_state = 106}, + [1370] = {.lex_state = 212, .external_lex_state = 23}, + [1371] = {.lex_state = 212, .external_lex_state = 23}, + [1372] = {.lex_state = 212, .external_lex_state = 23}, + [1373] = {.lex_state = 131, .external_lex_state = 5}, + [1374] = {.lex_state = 78}, + [1375] = {.lex_state = 187, .external_lex_state = 6}, + [1376] = {.lex_state = 189, .external_lex_state = 16}, + [1377] = {.lex_state = 189, .external_lex_state = 16}, + [1378] = {.lex_state = 163, .external_lex_state = 4}, + [1379] = {.lex_state = 167, .external_lex_state = 8}, + [1380] = {.lex_state = 71, .external_lex_state = 2}, + [1381] = {.lex_state = 98, .external_lex_state = 4}, + [1382] = {.lex_state = 129, .external_lex_state = 8}, + [1383] = {.lex_state = 71, .external_lex_state = 2}, + [1384] = {.lex_state = 163, .external_lex_state = 4}, + [1385] = {.lex_state = 167, .external_lex_state = 8}, + [1386] = {.lex_state = 71, .external_lex_state = 2}, + [1387] = {.lex_state = 212, .external_lex_state = 23}, + [1388] = {.lex_state = 212, .external_lex_state = 23}, + [1389] = {.lex_state = 212, .external_lex_state = 16}, + [1390] = {.lex_state = 224, .external_lex_state = 16}, + [1391] = {.lex_state = 131, .external_lex_state = 5}, + [1392] = {.lex_state = 224, .external_lex_state = 16}, + [1393] = {.lex_state = 224, .external_lex_state = 16}, + [1394] = {.lex_state = 224, .external_lex_state = 16}, + [1395] = {.lex_state = 224, .external_lex_state = 23}, + [1396] = {.lex_state = 224, .external_lex_state = 23}, + [1397] = {.lex_state = 224, .external_lex_state = 23}, + [1398] = {.lex_state = 181}, + [1399] = {.lex_state = 222, .external_lex_state = 16}, + [1400] = {.lex_state = 78}, + [1401] = {.lex_state = 189, .external_lex_state = 16}, + [1402] = {.lex_state = 189, .external_lex_state = 16}, + [1403] = {.lex_state = 224, .external_lex_state = 23}, + [1404] = {.lex_state = 224, .external_lex_state = 24}, + [1405] = {.lex_state = 224, .external_lex_state = 16}, + [1406] = {.lex_state = 224, .external_lex_state = 23}, + [1407] = {.lex_state = 224, .external_lex_state = 24}, + [1408] = {.lex_state = 224, .external_lex_state = 16}, + [1409] = {.lex_state = 131, .external_lex_state = 5}, + [1410] = {.lex_state = 224, .external_lex_state = 16}, + [1411] = {.lex_state = 217, .external_lex_state = 2}, + [1412] = {.lex_state = 224, .external_lex_state = 23}, + [1413] = {.lex_state = 163, .external_lex_state = 4}, + [1414] = {.lex_state = 167, .external_lex_state = 8}, + [1415] = {.lex_state = 71, .external_lex_state = 2}, + [1416] = {.lex_state = 98, .external_lex_state = 4}, + [1417] = {.lex_state = 129, .external_lex_state = 8}, + [1418] = {.lex_state = 217, .external_lex_state = 2}, + [1419] = {.lex_state = 224, .external_lex_state = 23}, + [1420] = {.lex_state = 163, .external_lex_state = 4}, + [1421] = {.lex_state = 167, .external_lex_state = 8}, + [1422] = {.lex_state = 131, .external_lex_state = 5}, + [1423] = {.lex_state = 71}, + [1424] = {.lex_state = 94}, + [1425] = {.lex_state = 94}, + [1426] = {.lex_state = 226, .external_lex_state = 21}, + [1427] = {.lex_state = 226, .external_lex_state = 7}, + [1428] = {.lex_state = 161}, + [1429] = {.lex_state = 71}, + [1430] = {.lex_state = 94}, + [1431] = {.lex_state = 129, .external_lex_state = 21}, + [1432] = {.lex_state = 226, .external_lex_state = 5}, + [1433] = {.lex_state = 226, .external_lex_state = 5}, + [1434] = {.lex_state = 226, .external_lex_state = 5}, + [1435] = {.lex_state = 226, .external_lex_state = 7}, + [1436] = {.lex_state = 131, .external_lex_state = 5}, + [1437] = {.lex_state = 169, .external_lex_state = 4}, + [1438] = {.lex_state = 222, .external_lex_state = 16}, + [1439] = {.lex_state = 78}, + [1440] = {.lex_state = 189, .external_lex_state = 16}, + [1441] = {.lex_state = 189, .external_lex_state = 16}, + [1442] = {.lex_state = 193, .external_lex_state = 17}, + [1443] = {.lex_state = 224, .external_lex_state = 24}, + [1444] = {.lex_state = 224, .external_lex_state = 16}, + [1445] = {.lex_state = 193, .external_lex_state = 17}, + [1446] = {.lex_state = 224, .external_lex_state = 24}, + [1447] = {.lex_state = 224, .external_lex_state = 16}, + [1448] = {.lex_state = 198, .external_lex_state = 5}, + [1449] = {.lex_state = 169, .external_lex_state = 4}, + [1450] = {.lex_state = 78}, + [1451] = {.lex_state = 78}, + [1452] = {.lex_state = 204, .external_lex_state = 10}, + [1453] = {.lex_state = 204, .external_lex_state = 10}, + [1454] = {.lex_state = 204, .external_lex_state = 10}, + [1455] = {.lex_state = 181}, + [1456] = {.lex_state = 222, .external_lex_state = 16}, + [1457] = {.lex_state = 78}, + [1458] = {.lex_state = 189, .external_lex_state = 16}, + [1459] = {.lex_state = 189, .external_lex_state = 16}, + [1460] = {.lex_state = 204, .external_lex_state = 10}, + [1461] = {.lex_state = 224, .external_lex_state = 24}, + [1462] = {.lex_state = 224, .external_lex_state = 16}, + [1463] = {.lex_state = 204, .external_lex_state = 10}, + [1464] = {.lex_state = 224, .external_lex_state = 24}, + [1465] = {.lex_state = 224, .external_lex_state = 16}, + [1466] = {.lex_state = 217, .external_lex_state = 2}, + [1467] = {.lex_state = 204, .external_lex_state = 10}, + [1468] = {.lex_state = 163, .external_lex_state = 4}, + [1469] = {.lex_state = 167, .external_lex_state = 8}, + [1470] = {.lex_state = 71, .external_lex_state = 2}, + [1471] = {.lex_state = 98, .external_lex_state = 4}, + [1472] = {.lex_state = 129, .external_lex_state = 8}, + [1473] = {.lex_state = 217, .external_lex_state = 2}, + [1474] = {.lex_state = 204, .external_lex_state = 10}, + [1475] = {.lex_state = 163, .external_lex_state = 4}, + [1476] = {.lex_state = 167, .external_lex_state = 8}, + [1477] = {.lex_state = 167, .external_lex_state = 20}, + [1478] = {.lex_state = 167, .external_lex_state = 20}, + [1479] = {.lex_state = 212, .external_lex_state = 23}, + [1480] = {.lex_state = 212, .external_lex_state = 23}, + [1481] = {.lex_state = 212, .external_lex_state = 16}, + [1482] = {.lex_state = 222, .external_lex_state = 16}, + [1483] = {.lex_state = 167, .external_lex_state = 20}, + [1484] = {.lex_state = 224, .external_lex_state = 24}, + [1485] = {.lex_state = 224, .external_lex_state = 16}, + [1486] = {.lex_state = 224, .external_lex_state = 24}, + [1487] = {.lex_state = 224, .external_lex_state = 16}, + [1488] = {.lex_state = 224, .external_lex_state = 16}, + [1489] = {.lex_state = 167, .external_lex_state = 20}, + [1490] = {.lex_state = 224, .external_lex_state = 16}, + [1491] = {.lex_state = 224, .external_lex_state = 16}, + [1492] = {.lex_state = 167, .external_lex_state = 20}, + [1493] = {.lex_state = 217, .external_lex_state = 2}, + [1494] = {.lex_state = 71, .external_lex_state = 2}, + [1495] = {.lex_state = 167, .external_lex_state = 20}, + [1496] = {.lex_state = 217, .external_lex_state = 2}, + [1497] = {.lex_state = 245}, + [1498] = {.lex_state = 212, .external_lex_state = 22}, + [1499] = {.lex_state = 169, .external_lex_state = 4}, + [1500] = {.lex_state = 245}, + [1501] = {.lex_state = 142}, + [1502] = {.lex_state = 234, .external_lex_state = 11}, + [1503] = {.lex_state = 234, .external_lex_state = 11}, + [1504] = {.lex_state = 212, .external_lex_state = 23}, + [1505] = {.lex_state = 212, .external_lex_state = 23}, + [1506] = {.lex_state = 212, .external_lex_state = 16}, + [1507] = {.lex_state = 222, .external_lex_state = 16}, + [1508] = {.lex_state = 234, .external_lex_state = 11}, + [1509] = {.lex_state = 224, .external_lex_state = 24}, + [1510] = {.lex_state = 224, .external_lex_state = 16}, + [1511] = {.lex_state = 224, .external_lex_state = 24}, + [1512] = {.lex_state = 224, .external_lex_state = 16}, + [1513] = {.lex_state = 224, .external_lex_state = 16}, + [1514] = {.lex_state = 234, .external_lex_state = 11}, + [1515] = {.lex_state = 224, .external_lex_state = 16}, + [1516] = {.lex_state = 224, .external_lex_state = 16}, + [1517] = {.lex_state = 234, .external_lex_state = 11}, + [1518] = {.lex_state = 217, .external_lex_state = 2}, + [1519] = {.lex_state = 71, .external_lex_state = 2}, + [1520] = {.lex_state = 234, .external_lex_state = 11}, + [1521] = {.lex_state = 217, .external_lex_state = 2}, + [1522] = {.lex_state = 232}, + [1523] = {.lex_state = 236, .external_lex_state = 11}, + [1524] = {.lex_state = 236, .external_lex_state = 11}, + [1525] = {.lex_state = 236, .external_lex_state = 11}, + [1526] = {.lex_state = 181}, + [1527] = {.lex_state = 222, .external_lex_state = 16}, + [1528] = {.lex_state = 78}, + [1529] = {.lex_state = 189, .external_lex_state = 16}, + [1530] = {.lex_state = 189, .external_lex_state = 16}, + [1531] = {.lex_state = 236, .external_lex_state = 11}, + [1532] = {.lex_state = 224, .external_lex_state = 24}, + [1533] = {.lex_state = 224, .external_lex_state = 16}, + [1534] = {.lex_state = 236, .external_lex_state = 11}, + [1535] = {.lex_state = 224, .external_lex_state = 24}, + [1536] = {.lex_state = 224, .external_lex_state = 16}, + [1537] = {.lex_state = 217, .external_lex_state = 2}, + [1538] = {.lex_state = 236, .external_lex_state = 11}, + [1539] = {.lex_state = 163, .external_lex_state = 4}, + [1540] = {.lex_state = 167, .external_lex_state = 8}, + [1541] = {.lex_state = 71, .external_lex_state = 2}, + [1542] = {.lex_state = 98, .external_lex_state = 4}, + [1543] = {.lex_state = 129, .external_lex_state = 8}, + [1544] = {.lex_state = 217, .external_lex_state = 2}, + [1545] = {.lex_state = 236, .external_lex_state = 11}, + [1546] = {.lex_state = 163, .external_lex_state = 4}, + [1547] = {.lex_state = 167, .external_lex_state = 8}, + [1548] = {.lex_state = 169, .external_lex_state = 4}, + [1549] = {.lex_state = 169, .external_lex_state = 4}, + [1550] = {.lex_state = 238, .external_lex_state = 10}, + [1551] = {.lex_state = 238, .external_lex_state = 10}, + [1552] = {.lex_state = 212, .external_lex_state = 23}, + [1553] = {.lex_state = 212, .external_lex_state = 23}, + [1554] = {.lex_state = 212, .external_lex_state = 16}, + [1555] = {.lex_state = 222, .external_lex_state = 16}, + [1556] = {.lex_state = 238, .external_lex_state = 10}, + [1557] = {.lex_state = 224, .external_lex_state = 24}, + [1558] = {.lex_state = 224, .external_lex_state = 16}, + [1559] = {.lex_state = 224, .external_lex_state = 24}, + [1560] = {.lex_state = 224, .external_lex_state = 16}, + [1561] = {.lex_state = 224, .external_lex_state = 16}, + [1562] = {.lex_state = 238, .external_lex_state = 10}, + [1563] = {.lex_state = 224, .external_lex_state = 16}, + [1564] = {.lex_state = 224, .external_lex_state = 16}, + [1565] = {.lex_state = 238, .external_lex_state = 10}, + [1566] = {.lex_state = 217, .external_lex_state = 2}, + [1567] = {.lex_state = 71, .external_lex_state = 2}, + [1568] = {.lex_state = 238, .external_lex_state = 10}, + [1569] = {.lex_state = 217, .external_lex_state = 2}, + [1570] = {.lex_state = 210, .external_lex_state = 10}, + [1571] = {.lex_state = 210, .external_lex_state = 10}, + [1572] = {.lex_state = 212, .external_lex_state = 23}, + [1573] = {.lex_state = 212, .external_lex_state = 23}, + [1574] = {.lex_state = 212, .external_lex_state = 16}, + [1575] = {.lex_state = 224, .external_lex_state = 16}, + [1576] = {.lex_state = 210, .external_lex_state = 10}, + [1577] = {.lex_state = 224, .external_lex_state = 16}, + [1578] = {.lex_state = 224, .external_lex_state = 16}, + [1579] = {.lex_state = 224, .external_lex_state = 16}, + [1580] = {.lex_state = 210, .external_lex_state = 10}, + [1581] = {.lex_state = 224, .external_lex_state = 16}, + [1582] = {.lex_state = 210, .external_lex_state = 10}, + [1583] = {.lex_state = 210, .external_lex_state = 10}, + [1584] = {.lex_state = 198, .external_lex_state = 25}, + [1585] = {.lex_state = 198, .external_lex_state = 25}, + [1586] = {.lex_state = 228, .external_lex_state = 21}, + [1587] = {.lex_state = 94}, + [1588] = {.lex_state = 198, .external_lex_state = 25}, + [1589] = {.lex_state = 228, .external_lex_state = 25}, + [1590] = {.lex_state = 181}, + [1591] = {.lex_state = 106}, + [1592] = {.lex_state = 228, .external_lex_state = 25}, + [1593] = {.lex_state = 228, .external_lex_state = 25}, + [1594] = {.lex_state = 228, .external_lex_state = 25}, + [1595] = {.lex_state = 78}, + [1596] = {.lex_state = 187, .external_lex_state = 6}, + [1597] = {.lex_state = 189, .external_lex_state = 16}, + [1598] = {.lex_state = 189, .external_lex_state = 16}, + [1599] = {.lex_state = 163, .external_lex_state = 4}, + [1600] = {.lex_state = 167, .external_lex_state = 8}, + [1601] = {.lex_state = 71, .external_lex_state = 2}, + [1602] = {.lex_state = 98, .external_lex_state = 4}, + [1603] = {.lex_state = 129, .external_lex_state = 8}, + [1604] = {.lex_state = 71, .external_lex_state = 2}, + [1605] = {.lex_state = 163, .external_lex_state = 4}, + [1606] = {.lex_state = 167, .external_lex_state = 8}, + [1607] = {.lex_state = 71, .external_lex_state = 2}, + [1608] = {.lex_state = 129, .external_lex_state = 20}, + [1609] = {.lex_state = 94}, + [1610] = {.lex_state = 198, .external_lex_state = 25}, + [1611] = {.lex_state = 198, .external_lex_state = 25}, + [1612] = {.lex_state = 198, .external_lex_state = 25}, + [1613] = {.lex_state = 198, .external_lex_state = 25}, + [1614] = {.lex_state = 198, .external_lex_state = 21}, + [1615] = {.lex_state = 129, .external_lex_state = 21}, + [1616] = {.lex_state = 94}, + [1617] = {.lex_state = 127, .external_lex_state = 11}, + [1618] = {.lex_state = 127, .external_lex_state = 11}, + [1619] = {.lex_state = 198, .external_lex_state = 5}, + [1620] = {.lex_state = 71, .external_lex_state = 2}, + [1621] = {.lex_state = 71, .external_lex_state = 2}, + [1622] = {.lex_state = 169, .external_lex_state = 4}, + [1623] = {.lex_state = 94}, + [1624] = {.lex_state = 94}, + [1625] = {.lex_state = 253, .external_lex_state = 2}, + [1626] = {.lex_state = 248}, + [1627] = {.lex_state = 248, .external_lex_state = 10}, + [1628] = {.lex_state = 253, .external_lex_state = 2}, + [1629] = {.lex_state = 248}, + [1630] = {.lex_state = 169, .external_lex_state = 4}, + [1631] = {.lex_state = 251}, + [1632] = {.lex_state = 94}, + [1633] = {.lex_state = 94}, + [1634] = {.lex_state = 169, .external_lex_state = 4}, + [1635] = {.lex_state = 251}, + [1636] = {.lex_state = 94}, + [1637] = {.lex_state = 138, .external_lex_state = 11}, + [1638] = {.lex_state = 138, .external_lex_state = 11}, + [1639] = {.lex_state = 212, .external_lex_state = 23}, + [1640] = {.lex_state = 212, .external_lex_state = 23}, + [1641] = {.lex_state = 212, .external_lex_state = 16}, + [1642] = {.lex_state = 224, .external_lex_state = 16}, + [1643] = {.lex_state = 138, .external_lex_state = 11}, + [1644] = {.lex_state = 224, .external_lex_state = 16}, + [1645] = {.lex_state = 224, .external_lex_state = 16}, + [1646] = {.lex_state = 224, .external_lex_state = 16}, + [1647] = {.lex_state = 138, .external_lex_state = 11}, + [1648] = {.lex_state = 224, .external_lex_state = 16}, + [1649] = {.lex_state = 138, .external_lex_state = 11}, + [1650] = {.lex_state = 138, .external_lex_state = 11}, + [1651] = {.lex_state = 169, .external_lex_state = 4}, + [1652] = {.lex_state = 127, .external_lex_state = 11}, + [1653] = {.lex_state = 127, .external_lex_state = 11}, + [1654] = {.lex_state = 169, .external_lex_state = 4}, + [1655] = {.lex_state = 127, .external_lex_state = 11}, + [1656] = {.lex_state = 167, .external_lex_state = 20}, + [1657] = {.lex_state = 94}, + [1658] = {.lex_state = 220, .external_lex_state = 25}, + [1659] = {.lex_state = 220, .external_lex_state = 25}, + [1660] = {.lex_state = 220, .external_lex_state = 25}, + [1661] = {.lex_state = 220, .external_lex_state = 25}, + [1662] = {.lex_state = 220, .external_lex_state = 21}, + [1663] = {.lex_state = 167, .external_lex_state = 21}, + [1664] = {.lex_state = 94}, + [1665] = {.lex_state = 255, .external_lex_state = 11}, + [1666] = {.lex_state = 255, .external_lex_state = 11}, + [1667] = {.lex_state = 220, .external_lex_state = 5}, + [1668] = {.lex_state = 94, .external_lex_state = 2}, + [1669] = {.lex_state = 175, .external_lex_state = 12}, + [1670] = {.lex_state = 175, .external_lex_state = 12}, + [1671] = {.lex_state = 212, .external_lex_state = 23}, + [1672] = {.lex_state = 212, .external_lex_state = 23}, + [1673] = {.lex_state = 212, .external_lex_state = 16}, + [1674] = {.lex_state = 224, .external_lex_state = 16}, + [1675] = {.lex_state = 175, .external_lex_state = 12}, + [1676] = {.lex_state = 224, .external_lex_state = 16}, + [1677] = {.lex_state = 224, .external_lex_state = 16}, + [1678] = {.lex_state = 224, .external_lex_state = 16}, + [1679] = {.lex_state = 175, .external_lex_state = 12}, + [1680] = {.lex_state = 224, .external_lex_state = 16}, + [1681] = {.lex_state = 175, .external_lex_state = 12}, + [1682] = {.lex_state = 175, .external_lex_state = 12}, + [1683] = {.lex_state = 163, .external_lex_state = 3}, + [1684] = {.lex_state = 163, .external_lex_state = 14}, + [1685] = {.lex_state = 163, .external_lex_state = 14}, + [1686] = {.lex_state = 212, .external_lex_state = 23}, + [1687] = {.lex_state = 212, .external_lex_state = 23}, + [1688] = {.lex_state = 212, .external_lex_state = 16}, + [1689] = {.lex_state = 224, .external_lex_state = 16}, + [1690] = {.lex_state = 163, .external_lex_state = 14}, + [1691] = {.lex_state = 224, .external_lex_state = 16}, + [1692] = {.lex_state = 224, .external_lex_state = 16}, + [1693] = {.lex_state = 224, .external_lex_state = 16}, + [1694] = {.lex_state = 163, .external_lex_state = 14}, + [1695] = {.lex_state = 224, .external_lex_state = 16}, + [1696] = {.lex_state = 163, .external_lex_state = 14}, + [1697] = {.lex_state = 163, .external_lex_state = 14}, + [1698] = {.lex_state = 163, .external_lex_state = 11}, + [1699] = {.lex_state = 163, .external_lex_state = 11}, + [1700] = {.lex_state = 212, .external_lex_state = 23}, + [1701] = {.lex_state = 212, .external_lex_state = 23}, + [1702] = {.lex_state = 212, .external_lex_state = 16}, + [1703] = {.lex_state = 224, .external_lex_state = 16}, + [1704] = {.lex_state = 163, .external_lex_state = 11}, + [1705] = {.lex_state = 224, .external_lex_state = 16}, + [1706] = {.lex_state = 224, .external_lex_state = 16}, + [1707] = {.lex_state = 224, .external_lex_state = 16}, + [1708] = {.lex_state = 163, .external_lex_state = 11}, + [1709] = {.lex_state = 224, .external_lex_state = 16}, + [1710] = {.lex_state = 163, .external_lex_state = 11}, + [1711] = {.lex_state = 163, .external_lex_state = 11}, + [1712] = {.lex_state = 94, .external_lex_state = 15}, + [1713] = {.lex_state = 94, .external_lex_state = 15}, + [1714] = {.lex_state = 212, .external_lex_state = 23}, + [1715] = {.lex_state = 212, .external_lex_state = 23}, + [1716] = {.lex_state = 212, .external_lex_state = 16}, + [1717] = {.lex_state = 224, .external_lex_state = 16}, + [1718] = {.lex_state = 94, .external_lex_state = 15}, + [1719] = {.lex_state = 224, .external_lex_state = 16}, + [1720] = {.lex_state = 224, .external_lex_state = 16}, + [1721] = {.lex_state = 224, .external_lex_state = 16}, + [1722] = {.lex_state = 94, .external_lex_state = 15}, + [1723] = {.lex_state = 224, .external_lex_state = 16}, + [1724] = {.lex_state = 94, .external_lex_state = 15}, + [1725] = {.lex_state = 94, .external_lex_state = 15}, + [1726] = {.lex_state = 106, .external_lex_state = 10}, + [1727] = {.lex_state = 106, .external_lex_state = 10}, + [1728] = {.lex_state = 212, .external_lex_state = 23}, + [1729] = {.lex_state = 212, .external_lex_state = 23}, + [1730] = {.lex_state = 212, .external_lex_state = 16}, + [1731] = {.lex_state = 224, .external_lex_state = 16}, + [1732] = {.lex_state = 106, .external_lex_state = 10}, + [1733] = {.lex_state = 224, .external_lex_state = 16}, + [1734] = {.lex_state = 224, .external_lex_state = 16}, + [1735] = {.lex_state = 224, .external_lex_state = 16}, + [1736] = {.lex_state = 106, .external_lex_state = 10}, + [1737] = {.lex_state = 224, .external_lex_state = 16}, + [1738] = {.lex_state = 106, .external_lex_state = 10}, + [1739] = {.lex_state = 189, .external_lex_state = 23}, + [1740] = {.lex_state = 189, .external_lex_state = 16}, + [1741] = {.lex_state = 189, .external_lex_state = 23}, + [1742] = {.lex_state = 189, .external_lex_state = 16}, + [1743] = {.lex_state = 212, .external_lex_state = 23}, + [1744] = {.lex_state = 212, .external_lex_state = 23}, + [1745] = {.lex_state = 212, .external_lex_state = 23}, + [1746] = {.lex_state = 181}, + [1747] = {.lex_state = 222, .external_lex_state = 16}, + [1748] = {.lex_state = 78}, + [1749] = {.lex_state = 189, .external_lex_state = 16}, + [1750] = {.lex_state = 189, .external_lex_state = 16}, + [1751] = {.lex_state = 212, .external_lex_state = 23}, + [1752] = {.lex_state = 224, .external_lex_state = 24}, + [1753] = {.lex_state = 224, .external_lex_state = 16}, + [1754] = {.lex_state = 212, .external_lex_state = 23}, + [1755] = {.lex_state = 224, .external_lex_state = 24}, + [1756] = {.lex_state = 224, .external_lex_state = 16}, + [1757] = {.lex_state = 217, .external_lex_state = 2}, + [1758] = {.lex_state = 212, .external_lex_state = 23}, + [1759] = {.lex_state = 163, .external_lex_state = 4}, + [1760] = {.lex_state = 167, .external_lex_state = 8}, + [1761] = {.lex_state = 71, .external_lex_state = 2}, + [1762] = {.lex_state = 98, .external_lex_state = 4}, + [1763] = {.lex_state = 129, .external_lex_state = 8}, + [1764] = {.lex_state = 217, .external_lex_state = 2}, + [1765] = {.lex_state = 212, .external_lex_state = 23}, + [1766] = {.lex_state = 163, .external_lex_state = 4}, + [1767] = {.lex_state = 167, .external_lex_state = 8}, + [1768] = {.lex_state = 131, .external_lex_state = 5}, + [1769] = {.lex_state = 131, .external_lex_state = 5}, + [1770] = {.lex_state = 131, .external_lex_state = 5}, + [1771] = {.lex_state = 224, .external_lex_state = 16}, + [1772] = {.lex_state = 224, .external_lex_state = 16}, + [1773] = {.lex_state = 224, .external_lex_state = 23}, + [1774] = {.lex_state = 224, .external_lex_state = 23}, + [1775] = {.lex_state = 212, .external_lex_state = 23}, + [1776] = {.lex_state = 212, .external_lex_state = 23}, + [1777] = {.lex_state = 212, .external_lex_state = 16}, + [1778] = {.lex_state = 222, .external_lex_state = 16}, + [1779] = {.lex_state = 224, .external_lex_state = 23}, + [1780] = {.lex_state = 224, .external_lex_state = 24}, + [1781] = {.lex_state = 224, .external_lex_state = 16}, + [1782] = {.lex_state = 224, .external_lex_state = 24}, + [1783] = {.lex_state = 224, .external_lex_state = 16}, + [1784] = {.lex_state = 224, .external_lex_state = 16}, + [1785] = {.lex_state = 224, .external_lex_state = 23}, + [1786] = {.lex_state = 224, .external_lex_state = 16}, + [1787] = {.lex_state = 224, .external_lex_state = 16}, + [1788] = {.lex_state = 131, .external_lex_state = 5}, + [1789] = {.lex_state = 224, .external_lex_state = 23}, + [1790] = {.lex_state = 217, .external_lex_state = 2}, + [1791] = {.lex_state = 71, .external_lex_state = 2}, + [1792] = {.lex_state = 224, .external_lex_state = 23}, + [1793] = {.lex_state = 217, .external_lex_state = 2}, + [1794] = {.lex_state = 94}, + [1795] = {.lex_state = 226, .external_lex_state = 25}, + [1796] = {.lex_state = 226, .external_lex_state = 25}, + [1797] = {.lex_state = 226, .external_lex_state = 25}, + [1798] = {.lex_state = 226, .external_lex_state = 25}, + [1799] = {.lex_state = 226, .external_lex_state = 21}, + [1800] = {.lex_state = 129, .external_lex_state = 21}, + [1801] = {.lex_state = 94}, + [1802] = {.lex_state = 257, .external_lex_state = 11}, + [1803] = {.lex_state = 257, .external_lex_state = 11}, + [1804] = {.lex_state = 226, .external_lex_state = 5}, + [1805] = {.lex_state = 193, .external_lex_state = 17}, + [1806] = {.lex_state = 212, .external_lex_state = 23}, + [1807] = {.lex_state = 212, .external_lex_state = 23}, + [1808] = {.lex_state = 212, .external_lex_state = 16}, + [1809] = {.lex_state = 222, .external_lex_state = 16}, + [1810] = {.lex_state = 193, .external_lex_state = 17}, + [1811] = {.lex_state = 224, .external_lex_state = 24}, + [1812] = {.lex_state = 224, .external_lex_state = 16}, + [1813] = {.lex_state = 224, .external_lex_state = 24}, + [1814] = {.lex_state = 224, .external_lex_state = 16}, + [1815] = {.lex_state = 224, .external_lex_state = 16}, + [1816] = {.lex_state = 193, .external_lex_state = 17}, + [1817] = {.lex_state = 224, .external_lex_state = 16}, + [1818] = {.lex_state = 224, .external_lex_state = 16}, + [1819] = {.lex_state = 204, .external_lex_state = 10}, + [1820] = {.lex_state = 204, .external_lex_state = 10}, + [1821] = {.lex_state = 212, .external_lex_state = 23}, + [1822] = {.lex_state = 212, .external_lex_state = 23}, + [1823] = {.lex_state = 212, .external_lex_state = 16}, + [1824] = {.lex_state = 222, .external_lex_state = 16}, + [1825] = {.lex_state = 204, .external_lex_state = 10}, + [1826] = {.lex_state = 224, .external_lex_state = 24}, + [1827] = {.lex_state = 224, .external_lex_state = 16}, + [1828] = {.lex_state = 224, .external_lex_state = 24}, + [1829] = {.lex_state = 224, .external_lex_state = 16}, + [1830] = {.lex_state = 224, .external_lex_state = 16}, + [1831] = {.lex_state = 204, .external_lex_state = 10}, + [1832] = {.lex_state = 224, .external_lex_state = 16}, + [1833] = {.lex_state = 224, .external_lex_state = 16}, + [1834] = {.lex_state = 204, .external_lex_state = 10}, + [1835] = {.lex_state = 217, .external_lex_state = 2}, + [1836] = {.lex_state = 71, .external_lex_state = 2}, + [1837] = {.lex_state = 204, .external_lex_state = 10}, + [1838] = {.lex_state = 217, .external_lex_state = 2}, + [1839] = {.lex_state = 167, .external_lex_state = 20}, + [1840] = {.lex_state = 167, .external_lex_state = 20}, + [1841] = {.lex_state = 212, .external_lex_state = 23}, + [1842] = {.lex_state = 212, .external_lex_state = 23}, + [1843] = {.lex_state = 212, .external_lex_state = 16}, + [1844] = {.lex_state = 224, .external_lex_state = 16}, + [1845] = {.lex_state = 167, .external_lex_state = 20}, + [1846] = {.lex_state = 224, .external_lex_state = 16}, + [1847] = {.lex_state = 224, .external_lex_state = 16}, + [1848] = {.lex_state = 224, .external_lex_state = 16}, + [1849] = {.lex_state = 167, .external_lex_state = 20}, + [1850] = {.lex_state = 224, .external_lex_state = 16}, + [1851] = {.lex_state = 167, .external_lex_state = 20}, + [1852] = {.lex_state = 167, .external_lex_state = 20}, + [1853] = {.lex_state = 169, .external_lex_state = 4}, + [1854] = {.lex_state = 169, .external_lex_state = 4}, + [1855] = {.lex_state = 212, .external_lex_state = 22}, + [1856] = {.lex_state = 245}, + [1857] = {.lex_state = 245}, + [1858] = {.lex_state = 234, .external_lex_state = 11}, + [1859] = {.lex_state = 234, .external_lex_state = 11}, + [1860] = {.lex_state = 212, .external_lex_state = 23}, + [1861] = {.lex_state = 212, .external_lex_state = 23}, + [1862] = {.lex_state = 212, .external_lex_state = 16}, + [1863] = {.lex_state = 224, .external_lex_state = 16}, + [1864] = {.lex_state = 234, .external_lex_state = 11}, + [1865] = {.lex_state = 224, .external_lex_state = 16}, + [1866] = {.lex_state = 224, .external_lex_state = 16}, + [1867] = {.lex_state = 224, .external_lex_state = 16}, + [1868] = {.lex_state = 234, .external_lex_state = 11}, + [1869] = {.lex_state = 224, .external_lex_state = 16}, + [1870] = {.lex_state = 234, .external_lex_state = 11}, + [1871] = {.lex_state = 234, .external_lex_state = 11}, + [1872] = {.lex_state = 142}, + [1873] = {.lex_state = 236, .external_lex_state = 11}, + [1874] = {.lex_state = 236, .external_lex_state = 11}, + [1875] = {.lex_state = 212, .external_lex_state = 23}, + [1876] = {.lex_state = 212, .external_lex_state = 23}, + [1877] = {.lex_state = 212, .external_lex_state = 16}, + [1878] = {.lex_state = 222, .external_lex_state = 16}, + [1879] = {.lex_state = 236, .external_lex_state = 11}, + [1880] = {.lex_state = 224, .external_lex_state = 24}, + [1881] = {.lex_state = 224, .external_lex_state = 16}, + [1882] = {.lex_state = 224, .external_lex_state = 24}, + [1883] = {.lex_state = 224, .external_lex_state = 16}, + [1884] = {.lex_state = 224, .external_lex_state = 16}, + [1885] = {.lex_state = 236, .external_lex_state = 11}, + [1886] = {.lex_state = 224, .external_lex_state = 16}, + [1887] = {.lex_state = 224, .external_lex_state = 16}, + [1888] = {.lex_state = 236, .external_lex_state = 11}, + [1889] = {.lex_state = 217, .external_lex_state = 2}, + [1890] = {.lex_state = 71, .external_lex_state = 2}, + [1891] = {.lex_state = 236, .external_lex_state = 11}, + [1892] = {.lex_state = 217, .external_lex_state = 2}, + [1893] = {.lex_state = 238, .external_lex_state = 10}, + [1894] = {.lex_state = 238, .external_lex_state = 10}, + [1895] = {.lex_state = 212, .external_lex_state = 23}, + [1896] = {.lex_state = 212, .external_lex_state = 23}, + [1897] = {.lex_state = 212, .external_lex_state = 16}, + [1898] = {.lex_state = 224, .external_lex_state = 16}, + [1899] = {.lex_state = 238, .external_lex_state = 10}, + [1900] = {.lex_state = 224, .external_lex_state = 16}, + [1901] = {.lex_state = 224, .external_lex_state = 16}, + [1902] = {.lex_state = 224, .external_lex_state = 16}, + [1903] = {.lex_state = 238, .external_lex_state = 10}, + [1904] = {.lex_state = 224, .external_lex_state = 16}, + [1905] = {.lex_state = 238, .external_lex_state = 10}, + [1906] = {.lex_state = 238, .external_lex_state = 10}, + [1907] = {.lex_state = 210, .external_lex_state = 10}, + [1908] = {.lex_state = 210, .external_lex_state = 10}, + [1909] = {.lex_state = 210, .external_lex_state = 10}, + [1910] = {.lex_state = 224, .external_lex_state = 16}, + [1911] = {.lex_state = 224, .external_lex_state = 16}, + [1912] = {.lex_state = 210, .external_lex_state = 10}, + [1913] = {.lex_state = 228, .external_lex_state = 25}, + [1914] = {.lex_state = 198, .external_lex_state = 25}, + [1915] = {.lex_state = 228, .external_lex_state = 25}, + [1916] = {.lex_state = 181}, + [1917] = {.lex_state = 222, .external_lex_state = 16}, + [1918] = {.lex_state = 78}, + [1919] = {.lex_state = 189, .external_lex_state = 16}, + [1920] = {.lex_state = 189, .external_lex_state = 16}, + [1921] = {.lex_state = 228, .external_lex_state = 25}, + [1922] = {.lex_state = 224, .external_lex_state = 24}, + [1923] = {.lex_state = 224, .external_lex_state = 16}, + [1924] = {.lex_state = 228, .external_lex_state = 25}, + [1925] = {.lex_state = 224, .external_lex_state = 24}, + [1926] = {.lex_state = 224, .external_lex_state = 16}, + [1927] = {.lex_state = 217, .external_lex_state = 2}, + [1928] = {.lex_state = 228, .external_lex_state = 25}, + [1929] = {.lex_state = 163, .external_lex_state = 4}, + [1930] = {.lex_state = 167, .external_lex_state = 8}, + [1931] = {.lex_state = 71, .external_lex_state = 2}, + [1932] = {.lex_state = 98, .external_lex_state = 4}, + [1933] = {.lex_state = 129, .external_lex_state = 8}, + [1934] = {.lex_state = 217, .external_lex_state = 2}, + [1935] = {.lex_state = 228, .external_lex_state = 25}, + [1936] = {.lex_state = 163, .external_lex_state = 4}, + [1937] = {.lex_state = 167, .external_lex_state = 8}, + [1938] = {.lex_state = 198, .external_lex_state = 25}, + [1939] = {.lex_state = 198, .external_lex_state = 25}, + [1940] = {.lex_state = 198, .external_lex_state = 25}, + [1941] = {.lex_state = 127, .external_lex_state = 11}, + [1942] = {.lex_state = 127, .external_lex_state = 11}, + [1943] = {.lex_state = 127, .external_lex_state = 11}, + [1944] = {.lex_state = 71, .external_lex_state = 2}, + [1945] = {.lex_state = 169, .external_lex_state = 4}, + [1946] = {.lex_state = 248, .external_lex_state = 10}, + [1947] = {.lex_state = 248, .external_lex_state = 10}, + [1948] = {.lex_state = 248}, + [1949] = {.lex_state = 78}, + [1950] = {.lex_state = 88}, + [1951] = {.lex_state = 71, .external_lex_state = 2}, + [1952] = {.lex_state = 241}, + [1953] = {.lex_state = 94}, + [1954] = {.lex_state = 96, .external_lex_state = 2}, + [1955] = {.lex_state = 88}, + [1956] = {.lex_state = 88}, + [1957] = {.lex_state = 259, .external_lex_state = 3}, + [1958] = {.lex_state = 259, .external_lex_state = 4}, + [1959] = {.lex_state = 265, .external_lex_state = 5}, + [1960] = {.lex_state = 106}, + [1961] = {.lex_state = 113}, + [1962] = {.lex_state = 265, .external_lex_state = 5}, + [1963] = {.lex_state = 113, .external_lex_state = 6}, + [1964] = {.lex_state = 71, .external_lex_state = 2}, + [1965] = {.lex_state = 71, .external_lex_state = 2}, + [1966] = {.lex_state = 71, .external_lex_state = 2}, + [1967] = {.lex_state = 267, .external_lex_state = 5}, + [1968] = {.lex_state = 251, .external_lex_state = 4}, + [1969] = {.lex_state = 265, .external_lex_state = 7}, + [1970] = {.lex_state = 269, .external_lex_state = 8}, + [1971] = {.lex_state = 78}, + [1972] = {.lex_state = 265, .external_lex_state = 7}, + [1973] = {.lex_state = 253, .external_lex_state = 2}, + [1974] = {.lex_state = 94, .external_lex_state = 2}, + [1975] = {.lex_state = 253, .external_lex_state = 2}, + [1976] = {.lex_state = 248}, + [1977] = {.lex_state = 248, .external_lex_state = 10}, + [1978] = {.lex_state = 241}, + [1979] = {.lex_state = 251, .external_lex_state = 4}, + [1980] = {.lex_state = 269, .external_lex_state = 8}, + [1981] = {.lex_state = 253, .external_lex_state = 2}, + [1982] = {.lex_state = 253, .external_lex_state = 2}, + [1983] = {.lex_state = 169, .external_lex_state = 4}, + [1984] = {.lex_state = 248, .external_lex_state = 10}, + [1985] = {.lex_state = 248, .external_lex_state = 10}, + [1986] = {.lex_state = 248}, + [1987] = {.lex_state = 251}, + [1988] = {.lex_state = 169, .external_lex_state = 4}, + [1989] = {.lex_state = 251}, + [1990] = {.lex_state = 138, .external_lex_state = 11}, + [1991] = {.lex_state = 138, .external_lex_state = 11}, + [1992] = {.lex_state = 138, .external_lex_state = 11}, + [1993] = {.lex_state = 224, .external_lex_state = 16}, + [1994] = {.lex_state = 224, .external_lex_state = 16}, + [1995] = {.lex_state = 138, .external_lex_state = 11}, + [1996] = {.lex_state = 127, .external_lex_state = 11}, + [1997] = {.lex_state = 220, .external_lex_state = 25}, + [1998] = {.lex_state = 220, .external_lex_state = 25}, + [1999] = {.lex_state = 220, .external_lex_state = 25}, + [2000] = {.lex_state = 255, .external_lex_state = 11}, + [2001] = {.lex_state = 255, .external_lex_state = 11}, + [2002] = {.lex_state = 255, .external_lex_state = 11}, + [2003] = {.lex_state = 175, .external_lex_state = 12}, + [2004] = {.lex_state = 175, .external_lex_state = 12}, + [2005] = {.lex_state = 175, .external_lex_state = 12}, + [2006] = {.lex_state = 224, .external_lex_state = 16}, + [2007] = {.lex_state = 224, .external_lex_state = 16}, + [2008] = {.lex_state = 175, .external_lex_state = 12}, + [2009] = {.lex_state = 163, .external_lex_state = 14}, + [2010] = {.lex_state = 163, .external_lex_state = 14}, + [2011] = {.lex_state = 163, .external_lex_state = 14}, + [2012] = {.lex_state = 224, .external_lex_state = 16}, + [2013] = {.lex_state = 224, .external_lex_state = 16}, + [2014] = {.lex_state = 163, .external_lex_state = 14}, + [2015] = {.lex_state = 163, .external_lex_state = 11}, + [2016] = {.lex_state = 163, .external_lex_state = 11}, + [2017] = {.lex_state = 163, .external_lex_state = 11}, + [2018] = {.lex_state = 224, .external_lex_state = 16}, + [2019] = {.lex_state = 224, .external_lex_state = 16}, + [2020] = {.lex_state = 163, .external_lex_state = 11}, + [2021] = {.lex_state = 94, .external_lex_state = 15}, + [2022] = {.lex_state = 94, .external_lex_state = 15}, + [2023] = {.lex_state = 94, .external_lex_state = 15}, + [2024] = {.lex_state = 224, .external_lex_state = 16}, + [2025] = {.lex_state = 224, .external_lex_state = 16}, + [2026] = {.lex_state = 94, .external_lex_state = 15}, + [2027] = {.lex_state = 106, .external_lex_state = 10}, + [2028] = {.lex_state = 106, .external_lex_state = 10}, + [2029] = {.lex_state = 106, .external_lex_state = 10}, + [2030] = {.lex_state = 224, .external_lex_state = 16}, + [2031] = {.lex_state = 224, .external_lex_state = 16}, + [2032] = {.lex_state = 106, .external_lex_state = 10}, + [2033] = {.lex_state = 189, .external_lex_state = 16}, + [2034] = {.lex_state = 189, .external_lex_state = 16}, + [2035] = {.lex_state = 212, .external_lex_state = 23}, + [2036] = {.lex_state = 212, .external_lex_state = 23}, + [2037] = {.lex_state = 212, .external_lex_state = 23}, + [2038] = {.lex_state = 212, .external_lex_state = 23}, + [2039] = {.lex_state = 212, .external_lex_state = 16}, + [2040] = {.lex_state = 222, .external_lex_state = 16}, + [2041] = {.lex_state = 212, .external_lex_state = 23}, + [2042] = {.lex_state = 224, .external_lex_state = 24}, + [2043] = {.lex_state = 224, .external_lex_state = 16}, + [2044] = {.lex_state = 224, .external_lex_state = 24}, + [2045] = {.lex_state = 224, .external_lex_state = 16}, + [2046] = {.lex_state = 224, .external_lex_state = 16}, + [2047] = {.lex_state = 212, .external_lex_state = 23}, + [2048] = {.lex_state = 224, .external_lex_state = 16}, + [2049] = {.lex_state = 224, .external_lex_state = 16}, + [2050] = {.lex_state = 212, .external_lex_state = 23}, + [2051] = {.lex_state = 217, .external_lex_state = 2}, + [2052] = {.lex_state = 71, .external_lex_state = 2}, + [2053] = {.lex_state = 212, .external_lex_state = 23}, + [2054] = {.lex_state = 217, .external_lex_state = 2}, + [2055] = {.lex_state = 131, .external_lex_state = 5}, + [2056] = {.lex_state = 131, .external_lex_state = 5}, + [2057] = {.lex_state = 224, .external_lex_state = 23}, + [2058] = {.lex_state = 224, .external_lex_state = 23}, + [2059] = {.lex_state = 212, .external_lex_state = 23}, + [2060] = {.lex_state = 212, .external_lex_state = 23}, + [2061] = {.lex_state = 212, .external_lex_state = 16}, + [2062] = {.lex_state = 224, .external_lex_state = 16}, + [2063] = {.lex_state = 224, .external_lex_state = 23}, + [2064] = {.lex_state = 224, .external_lex_state = 16}, + [2065] = {.lex_state = 224, .external_lex_state = 16}, + [2066] = {.lex_state = 224, .external_lex_state = 16}, + [2067] = {.lex_state = 224, .external_lex_state = 23}, + [2068] = {.lex_state = 224, .external_lex_state = 16}, + [2069] = {.lex_state = 224, .external_lex_state = 23}, + [2070] = {.lex_state = 224, .external_lex_state = 23}, + [2071] = {.lex_state = 226, .external_lex_state = 25}, + [2072] = {.lex_state = 226, .external_lex_state = 25}, + [2073] = {.lex_state = 226, .external_lex_state = 25}, + [2074] = {.lex_state = 257, .external_lex_state = 11}, + [2075] = {.lex_state = 257, .external_lex_state = 11}, + [2076] = {.lex_state = 257, .external_lex_state = 11}, + [2077] = {.lex_state = 193, .external_lex_state = 17}, + [2078] = {.lex_state = 193, .external_lex_state = 17}, + [2079] = {.lex_state = 212, .external_lex_state = 23}, + [2080] = {.lex_state = 212, .external_lex_state = 23}, + [2081] = {.lex_state = 212, .external_lex_state = 16}, + [2082] = {.lex_state = 224, .external_lex_state = 16}, + [2083] = {.lex_state = 193, .external_lex_state = 17}, + [2084] = {.lex_state = 224, .external_lex_state = 16}, + [2085] = {.lex_state = 224, .external_lex_state = 16}, + [2086] = {.lex_state = 224, .external_lex_state = 16}, + [2087] = {.lex_state = 193, .external_lex_state = 17}, + [2088] = {.lex_state = 224, .external_lex_state = 16}, + [2089] = {.lex_state = 204, .external_lex_state = 10}, + [2090] = {.lex_state = 204, .external_lex_state = 10}, + [2091] = {.lex_state = 212, .external_lex_state = 23}, + [2092] = {.lex_state = 212, .external_lex_state = 23}, + [2093] = {.lex_state = 212, .external_lex_state = 16}, + [2094] = {.lex_state = 224, .external_lex_state = 16}, + [2095] = {.lex_state = 204, .external_lex_state = 10}, + [2096] = {.lex_state = 224, .external_lex_state = 16}, + [2097] = {.lex_state = 224, .external_lex_state = 16}, + [2098] = {.lex_state = 224, .external_lex_state = 16}, + [2099] = {.lex_state = 204, .external_lex_state = 10}, + [2100] = {.lex_state = 224, .external_lex_state = 16}, + [2101] = {.lex_state = 204, .external_lex_state = 10}, + [2102] = {.lex_state = 204, .external_lex_state = 10}, + [2103] = {.lex_state = 167, .external_lex_state = 20}, + [2104] = {.lex_state = 167, .external_lex_state = 20}, + [2105] = {.lex_state = 167, .external_lex_state = 20}, + [2106] = {.lex_state = 224, .external_lex_state = 16}, + [2107] = {.lex_state = 224, .external_lex_state = 16}, + [2108] = {.lex_state = 167, .external_lex_state = 20}, + [2109] = {.lex_state = 169, .external_lex_state = 4}, + [2110] = {.lex_state = 169, .external_lex_state = 4}, + [2111] = {.lex_state = 245}, + [2112] = {.lex_state = 234, .external_lex_state = 11}, + [2113] = {.lex_state = 234, .external_lex_state = 11}, + [2114] = {.lex_state = 234, .external_lex_state = 11}, + [2115] = {.lex_state = 224, .external_lex_state = 16}, + [2116] = {.lex_state = 224, .external_lex_state = 16}, + [2117] = {.lex_state = 234, .external_lex_state = 11}, + [2118] = {.lex_state = 245}, + [2119] = {.lex_state = 236, .external_lex_state = 11}, + [2120] = {.lex_state = 236, .external_lex_state = 11}, + [2121] = {.lex_state = 212, .external_lex_state = 23}, + [2122] = {.lex_state = 212, .external_lex_state = 23}, + [2123] = {.lex_state = 212, .external_lex_state = 16}, + [2124] = {.lex_state = 224, .external_lex_state = 16}, + [2125] = {.lex_state = 236, .external_lex_state = 11}, + [2126] = {.lex_state = 224, .external_lex_state = 16}, + [2127] = {.lex_state = 224, .external_lex_state = 16}, + [2128] = {.lex_state = 224, .external_lex_state = 16}, + [2129] = {.lex_state = 236, .external_lex_state = 11}, + [2130] = {.lex_state = 224, .external_lex_state = 16}, + [2131] = {.lex_state = 236, .external_lex_state = 11}, + [2132] = {.lex_state = 236, .external_lex_state = 11}, + [2133] = {.lex_state = 238, .external_lex_state = 10}, + [2134] = {.lex_state = 238, .external_lex_state = 10}, + [2135] = {.lex_state = 238, .external_lex_state = 10}, + [2136] = {.lex_state = 224, .external_lex_state = 16}, + [2137] = {.lex_state = 224, .external_lex_state = 16}, + [2138] = {.lex_state = 238, .external_lex_state = 10}, + [2139] = {.lex_state = 210, .external_lex_state = 10}, + [2140] = {.lex_state = 210, .external_lex_state = 10}, + [2141] = {.lex_state = 228, .external_lex_state = 25}, + [2142] = {.lex_state = 228, .external_lex_state = 25}, + [2143] = {.lex_state = 212, .external_lex_state = 23}, + [2144] = {.lex_state = 212, .external_lex_state = 23}, + [2145] = {.lex_state = 212, .external_lex_state = 16}, + [2146] = {.lex_state = 222, .external_lex_state = 16}, + [2147] = {.lex_state = 228, .external_lex_state = 25}, + [2148] = {.lex_state = 224, .external_lex_state = 24}, + [2149] = {.lex_state = 224, .external_lex_state = 16}, + [2150] = {.lex_state = 224, .external_lex_state = 24}, + [2151] = {.lex_state = 224, .external_lex_state = 16}, + [2152] = {.lex_state = 224, .external_lex_state = 16}, + [2153] = {.lex_state = 228, .external_lex_state = 25}, + [2154] = {.lex_state = 224, .external_lex_state = 16}, + [2155] = {.lex_state = 224, .external_lex_state = 16}, + [2156] = {.lex_state = 228, .external_lex_state = 25}, + [2157] = {.lex_state = 217, .external_lex_state = 2}, + [2158] = {.lex_state = 71, .external_lex_state = 2}, + [2159] = {.lex_state = 228, .external_lex_state = 25}, + [2160] = {.lex_state = 217, .external_lex_state = 2}, + [2161] = {.lex_state = 198, .external_lex_state = 25}, + [2162] = {.lex_state = 127, .external_lex_state = 11}, + [2163] = {.lex_state = 133, .external_lex_state = 9}, + [2164] = {.lex_state = 142}, + [2165] = {.lex_state = 94}, + [2166] = {.lex_state = 161}, + [2167] = {.lex_state = 175, .external_lex_state = 13}, + [2168] = {.lex_state = 178}, + [2169] = {.lex_state = 78}, + [2170] = {.lex_state = 259, .external_lex_state = 14}, + [2171] = {.lex_state = 106}, + [2172] = {.lex_state = 113}, + [2173] = {.lex_state = 259, .external_lex_state = 14}, + [2174] = {.lex_state = 113, .external_lex_state = 6}, + [2175] = {.lex_state = 71, .external_lex_state = 2}, + [2176] = {.lex_state = 71, .external_lex_state = 2}, + [2177] = {.lex_state = 71, .external_lex_state = 2}, + [2178] = {.lex_state = 78}, + [2179] = {.lex_state = 259, .external_lex_state = 3}, + [2180] = {.lex_state = 259, .external_lex_state = 11}, + [2181] = {.lex_state = 106}, + [2182] = {.lex_state = 113}, + [2183] = {.lex_state = 259, .external_lex_state = 11}, + [2184] = {.lex_state = 113, .external_lex_state = 6}, + [2185] = {.lex_state = 71, .external_lex_state = 2}, + [2186] = {.lex_state = 71, .external_lex_state = 2}, + [2187] = {.lex_state = 71, .external_lex_state = 2}, + [2188] = {.lex_state = 259, .external_lex_state = 4}, + [2189] = {.lex_state = 94}, + [2190] = {.lex_state = 265, .external_lex_state = 5}, + [2191] = {.lex_state = 265, .external_lex_state = 5}, + [2192] = {.lex_state = 181}, + [2193] = {.lex_state = 106}, + [2194] = {.lex_state = 265, .external_lex_state = 5}, + [2195] = {.lex_state = 265, .external_lex_state = 5}, + [2196] = {.lex_state = 265, .external_lex_state = 5}, + [2197] = {.lex_state = 78}, + [2198] = {.lex_state = 187, .external_lex_state = 6}, + [2199] = {.lex_state = 189, .external_lex_state = 16}, + [2200] = {.lex_state = 189, .external_lex_state = 16}, + [2201] = {.lex_state = 163, .external_lex_state = 4}, + [2202] = {.lex_state = 167, .external_lex_state = 8}, + [2203] = {.lex_state = 71, .external_lex_state = 2}, + [2204] = {.lex_state = 98, .external_lex_state = 4}, + [2205] = {.lex_state = 129, .external_lex_state = 8}, + [2206] = {.lex_state = 71, .external_lex_state = 2}, + [2207] = {.lex_state = 163, .external_lex_state = 4}, + [2208] = {.lex_state = 167, .external_lex_state = 8}, + [2209] = {.lex_state = 71, .external_lex_state = 2}, + [2210] = {.lex_state = 78}, + [2211] = {.lex_state = 253, .external_lex_state = 2}, + [2212] = {.lex_state = 71, .external_lex_state = 2}, + [2213] = {.lex_state = 253, .external_lex_state = 2}, + [2214] = {.lex_state = 71, .external_lex_state = 2}, + [2215] = {.lex_state = 71}, + [2216] = {.lex_state = 196, .external_lex_state = 18}, + [2217] = {.lex_state = 94}, + [2218] = {.lex_state = 94}, + [2219] = {.lex_state = 265, .external_lex_state = 5}, + [2220] = {.lex_state = 265, .external_lex_state = 5}, + [2221] = {.lex_state = 271, .external_lex_state = 7}, + [2222] = {.lex_state = 265, .external_lex_state = 7}, + [2223] = {.lex_state = 241}, + [2224] = {.lex_state = 251, .external_lex_state = 4}, + [2225] = {.lex_state = 269, .external_lex_state = 8}, + [2226] = {.lex_state = 253, .external_lex_state = 2}, + [2227] = {.lex_state = 265, .external_lex_state = 7}, + [2228] = {.lex_state = 253, .external_lex_state = 2}, + [2229] = {.lex_state = 253, .external_lex_state = 2}, + [2230] = {.lex_state = 241}, + [2231] = {.lex_state = 251, .external_lex_state = 4}, + [2232] = {.lex_state = 269, .external_lex_state = 8}, + [2233] = {.lex_state = 253, .external_lex_state = 2}, + [2234] = {.lex_state = 217, .external_lex_state = 2}, + [2235] = {.lex_state = 248}, + [2236] = {.lex_state = 217, .external_lex_state = 2}, + [2237] = {.lex_state = 248}, + [2238] = {.lex_state = 169, .external_lex_state = 4}, + [2239] = {.lex_state = 169, .external_lex_state = 4}, + [2240] = {.lex_state = 138, .external_lex_state = 11}, + [2241] = {.lex_state = 138, .external_lex_state = 11}, + [2242] = {.lex_state = 220, .external_lex_state = 25}, + [2243] = {.lex_state = 255, .external_lex_state = 11}, + [2244] = {.lex_state = 175, .external_lex_state = 12}, + [2245] = {.lex_state = 175, .external_lex_state = 12}, + [2246] = {.lex_state = 163, .external_lex_state = 14}, + [2247] = {.lex_state = 163, .external_lex_state = 14}, + [2248] = {.lex_state = 163, .external_lex_state = 11}, + [2249] = {.lex_state = 163, .external_lex_state = 11}, + [2250] = {.lex_state = 94, .external_lex_state = 15}, + [2251] = {.lex_state = 94, .external_lex_state = 15}, + [2252] = {.lex_state = 106, .external_lex_state = 10}, + [2253] = {.lex_state = 106, .external_lex_state = 10}, + [2254] = {.lex_state = 212, .external_lex_state = 23}, + [2255] = {.lex_state = 212, .external_lex_state = 23}, + [2256] = {.lex_state = 212, .external_lex_state = 23}, + [2257] = {.lex_state = 212, .external_lex_state = 23}, + [2258] = {.lex_state = 212, .external_lex_state = 16}, + [2259] = {.lex_state = 224, .external_lex_state = 16}, + [2260] = {.lex_state = 212, .external_lex_state = 23}, + [2261] = {.lex_state = 224, .external_lex_state = 16}, + [2262] = {.lex_state = 224, .external_lex_state = 16}, + [2263] = {.lex_state = 224, .external_lex_state = 16}, + [2264] = {.lex_state = 212, .external_lex_state = 23}, + [2265] = {.lex_state = 224, .external_lex_state = 16}, + [2266] = {.lex_state = 212, .external_lex_state = 23}, + [2267] = {.lex_state = 212, .external_lex_state = 23}, + [2268] = {.lex_state = 224, .external_lex_state = 23}, + [2269] = {.lex_state = 224, .external_lex_state = 23}, + [2270] = {.lex_state = 224, .external_lex_state = 23}, + [2271] = {.lex_state = 224, .external_lex_state = 16}, + [2272] = {.lex_state = 224, .external_lex_state = 16}, + [2273] = {.lex_state = 224, .external_lex_state = 23}, + [2274] = {.lex_state = 226, .external_lex_state = 25}, + [2275] = {.lex_state = 257, .external_lex_state = 11}, + [2276] = {.lex_state = 193, .external_lex_state = 17}, + [2277] = {.lex_state = 193, .external_lex_state = 17}, + [2278] = {.lex_state = 193, .external_lex_state = 17}, + [2279] = {.lex_state = 224, .external_lex_state = 16}, + [2280] = {.lex_state = 224, .external_lex_state = 16}, + [2281] = {.lex_state = 193, .external_lex_state = 17}, + [2282] = {.lex_state = 204, .external_lex_state = 10}, + [2283] = {.lex_state = 204, .external_lex_state = 10}, + [2284] = {.lex_state = 204, .external_lex_state = 10}, + [2285] = {.lex_state = 224, .external_lex_state = 16}, + [2286] = {.lex_state = 224, .external_lex_state = 16}, + [2287] = {.lex_state = 204, .external_lex_state = 10}, + [2288] = {.lex_state = 167, .external_lex_state = 20}, + [2289] = {.lex_state = 167, .external_lex_state = 20}, + [2290] = {.lex_state = 169, .external_lex_state = 4}, + [2291] = {.lex_state = 234, .external_lex_state = 11}, + [2292] = {.lex_state = 234, .external_lex_state = 11}, + [2293] = {.lex_state = 245}, + [2294] = {.lex_state = 236, .external_lex_state = 11}, + [2295] = {.lex_state = 236, .external_lex_state = 11}, + [2296] = {.lex_state = 236, .external_lex_state = 11}, + [2297] = {.lex_state = 224, .external_lex_state = 16}, + [2298] = {.lex_state = 224, .external_lex_state = 16}, + [2299] = {.lex_state = 236, .external_lex_state = 11}, + [2300] = {.lex_state = 238, .external_lex_state = 10}, + [2301] = {.lex_state = 238, .external_lex_state = 10}, + [2302] = {.lex_state = 228, .external_lex_state = 25}, + [2303] = {.lex_state = 228, .external_lex_state = 25}, + [2304] = {.lex_state = 212, .external_lex_state = 23}, + [2305] = {.lex_state = 212, .external_lex_state = 23}, + [2306] = {.lex_state = 212, .external_lex_state = 16}, + [2307] = {.lex_state = 224, .external_lex_state = 16}, + [2308] = {.lex_state = 228, .external_lex_state = 25}, + [2309] = {.lex_state = 224, .external_lex_state = 16}, + [2310] = {.lex_state = 224, .external_lex_state = 16}, + [2311] = {.lex_state = 224, .external_lex_state = 16}, + [2312] = {.lex_state = 228, .external_lex_state = 25}, + [2313] = {.lex_state = 224, .external_lex_state = 16}, + [2314] = {.lex_state = 228, .external_lex_state = 25}, + [2315] = {.lex_state = 228, .external_lex_state = 25}, + [2316] = {.lex_state = 269, .external_lex_state = 8}, + [2317] = {.lex_state = 204}, + [2318] = {.lex_state = 269, .external_lex_state = 20}, + [2319] = {.lex_state = 106}, + [2320] = {.lex_state = 113}, + [2321] = {.lex_state = 269, .external_lex_state = 20}, + [2322] = {.lex_state = 113, .external_lex_state = 6}, + [2323] = {.lex_state = 71, .external_lex_state = 2}, + [2324] = {.lex_state = 71, .external_lex_state = 2}, + [2325] = {.lex_state = 71, .external_lex_state = 2}, + [2326] = {.lex_state = 271, .external_lex_state = 21}, + [2327] = {.lex_state = 271, .external_lex_state = 7}, + [2328] = {.lex_state = 78}, + [2329] = {.lex_state = 273, .external_lex_state = 21}, + [2330] = {.lex_state = 133, .external_lex_state = 9}, + [2331] = {.lex_state = 94}, + [2332] = {.lex_state = 259, .external_lex_state = 14}, + [2333] = {.lex_state = 259, .external_lex_state = 14}, + [2334] = {.lex_state = 181}, + [2335] = {.lex_state = 106}, + [2336] = {.lex_state = 259, .external_lex_state = 14}, + [2337] = {.lex_state = 259, .external_lex_state = 14}, + [2338] = {.lex_state = 259, .external_lex_state = 14}, + [2339] = {.lex_state = 78}, + [2340] = {.lex_state = 187, .external_lex_state = 6}, + [2341] = {.lex_state = 189, .external_lex_state = 16}, + [2342] = {.lex_state = 189, .external_lex_state = 16}, + [2343] = {.lex_state = 163, .external_lex_state = 4}, + [2344] = {.lex_state = 167, .external_lex_state = 8}, + [2345] = {.lex_state = 71, .external_lex_state = 2}, + [2346] = {.lex_state = 98, .external_lex_state = 4}, + [2347] = {.lex_state = 129, .external_lex_state = 8}, + [2348] = {.lex_state = 71, .external_lex_state = 2}, + [2349] = {.lex_state = 163, .external_lex_state = 4}, + [2350] = {.lex_state = 167, .external_lex_state = 8}, + [2351] = {.lex_state = 71, .external_lex_state = 2}, + [2352] = {.lex_state = 259, .external_lex_state = 3}, + [2353] = {.lex_state = 94}, + [2354] = {.lex_state = 259, .external_lex_state = 11}, + [2355] = {.lex_state = 259, .external_lex_state = 11}, + [2356] = {.lex_state = 181}, + [2357] = {.lex_state = 106}, + [2358] = {.lex_state = 259, .external_lex_state = 11}, + [2359] = {.lex_state = 259, .external_lex_state = 11}, + [2360] = {.lex_state = 259, .external_lex_state = 11}, + [2361] = {.lex_state = 78}, + [2362] = {.lex_state = 187, .external_lex_state = 6}, + [2363] = {.lex_state = 189, .external_lex_state = 16}, + [2364] = {.lex_state = 189, .external_lex_state = 16}, + [2365] = {.lex_state = 163, .external_lex_state = 4}, + [2366] = {.lex_state = 167, .external_lex_state = 8}, + [2367] = {.lex_state = 71, .external_lex_state = 2}, + [2368] = {.lex_state = 98, .external_lex_state = 4}, + [2369] = {.lex_state = 129, .external_lex_state = 8}, + [2370] = {.lex_state = 71, .external_lex_state = 2}, + [2371] = {.lex_state = 163, .external_lex_state = 4}, + [2372] = {.lex_state = 167, .external_lex_state = 8}, + [2373] = {.lex_state = 71, .external_lex_state = 2}, + [2374] = {.lex_state = 259, .external_lex_state = 4}, + [2375] = {.lex_state = 265, .external_lex_state = 5}, + [2376] = {.lex_state = 265, .external_lex_state = 5}, + [2377] = {.lex_state = 265, .external_lex_state = 5}, + [2378] = {.lex_state = 181}, + [2379] = {.lex_state = 222, .external_lex_state = 16}, + [2380] = {.lex_state = 78}, + [2381] = {.lex_state = 189, .external_lex_state = 16}, + [2382] = {.lex_state = 189, .external_lex_state = 16}, + [2383] = {.lex_state = 265, .external_lex_state = 5}, + [2384] = {.lex_state = 224, .external_lex_state = 24}, + [2385] = {.lex_state = 224, .external_lex_state = 16}, + [2386] = {.lex_state = 265, .external_lex_state = 5}, + [2387] = {.lex_state = 224, .external_lex_state = 24}, + [2388] = {.lex_state = 224, .external_lex_state = 16}, + [2389] = {.lex_state = 217, .external_lex_state = 2}, + [2390] = {.lex_state = 265, .external_lex_state = 5}, + [2391] = {.lex_state = 163, .external_lex_state = 4}, + [2392] = {.lex_state = 167, .external_lex_state = 8}, + [2393] = {.lex_state = 71, .external_lex_state = 2}, + [2394] = {.lex_state = 98, .external_lex_state = 4}, + [2395] = {.lex_state = 129, .external_lex_state = 8}, + [2396] = {.lex_state = 217, .external_lex_state = 2}, + [2397] = {.lex_state = 265, .external_lex_state = 5}, + [2398] = {.lex_state = 163, .external_lex_state = 4}, + [2399] = {.lex_state = 167, .external_lex_state = 8}, + [2400] = {.lex_state = 161}, + [2401] = {.lex_state = 269, .external_lex_state = 8}, + [2402] = {.lex_state = 251, .external_lex_state = 4}, + [2403] = {.lex_state = 269, .external_lex_state = 8}, + [2404] = {.lex_state = 94}, + [2405] = {.lex_state = 265, .external_lex_state = 7}, + [2406] = {.lex_state = 265, .external_lex_state = 5}, + [2407] = {.lex_state = 265, .external_lex_state = 5}, + [2408] = {.lex_state = 271, .external_lex_state = 5}, + [2409] = {.lex_state = 106}, + [2410] = {.lex_state = 113}, + [2411] = {.lex_state = 271, .external_lex_state = 5}, + [2412] = {.lex_state = 113, .external_lex_state = 6}, + [2413] = {.lex_state = 71, .external_lex_state = 2}, + [2414] = {.lex_state = 71, .external_lex_state = 2}, + [2415] = {.lex_state = 71, .external_lex_state = 2}, + [2416] = {.lex_state = 271, .external_lex_state = 5}, + [2417] = {.lex_state = 271, .external_lex_state = 5}, + [2418] = {.lex_state = 271, .external_lex_state = 7}, + [2419] = {.lex_state = 271, .external_lex_state = 7}, + [2420] = {.lex_state = 265, .external_lex_state = 7}, + [2421] = {.lex_state = 253, .external_lex_state = 2}, + [2422] = {.lex_state = 98, .external_lex_state = 4}, + [2423] = {.lex_state = 129, .external_lex_state = 8}, + [2424] = {.lex_state = 265, .external_lex_state = 7}, + [2425] = {.lex_state = 241}, + [2426] = {.lex_state = 251, .external_lex_state = 4}, + [2427] = {.lex_state = 269, .external_lex_state = 8}, + [2428] = {.lex_state = 253, .external_lex_state = 2}, + [2429] = {.lex_state = 241}, + [2430] = {.lex_state = 251, .external_lex_state = 4}, + [2431] = {.lex_state = 269, .external_lex_state = 8}, + [2432] = {.lex_state = 94}, + [2433] = {.lex_state = 98, .external_lex_state = 4}, + [2434] = {.lex_state = 129, .external_lex_state = 8}, + [2435] = {.lex_state = 217, .external_lex_state = 2}, + [2436] = {.lex_state = 217, .external_lex_state = 2}, + [2437] = {.lex_state = 94}, + [2438] = {.lex_state = 98, .external_lex_state = 4}, + [2439] = {.lex_state = 129, .external_lex_state = 8}, + [2440] = {.lex_state = 217, .external_lex_state = 2}, + [2441] = {.lex_state = 217, .external_lex_state = 2}, + [2442] = {.lex_state = 212, .external_lex_state = 23}, + [2443] = {.lex_state = 212, .external_lex_state = 23}, + [2444] = {.lex_state = 212, .external_lex_state = 23}, + [2445] = {.lex_state = 224, .external_lex_state = 16}, + [2446] = {.lex_state = 224, .external_lex_state = 16}, + [2447] = {.lex_state = 212, .external_lex_state = 23}, + [2448] = {.lex_state = 224, .external_lex_state = 23}, + [2449] = {.lex_state = 224, .external_lex_state = 23}, + [2450] = {.lex_state = 193, .external_lex_state = 17}, + [2451] = {.lex_state = 193, .external_lex_state = 17}, + [2452] = {.lex_state = 204, .external_lex_state = 10}, + [2453] = {.lex_state = 204, .external_lex_state = 10}, + [2454] = {.lex_state = 169, .external_lex_state = 4}, + [2455] = {.lex_state = 236, .external_lex_state = 11}, + [2456] = {.lex_state = 236, .external_lex_state = 11}, + [2457] = {.lex_state = 228, .external_lex_state = 25}, + [2458] = {.lex_state = 228, .external_lex_state = 25}, + [2459] = {.lex_state = 228, .external_lex_state = 25}, + [2460] = {.lex_state = 224, .external_lex_state = 16}, + [2461] = {.lex_state = 224, .external_lex_state = 16}, + [2462] = {.lex_state = 228, .external_lex_state = 25}, + [2463] = {.lex_state = 269, .external_lex_state = 8}, + [2464] = {.lex_state = 204}, + [2465] = {.lex_state = 94}, + [2466] = {.lex_state = 269, .external_lex_state = 20}, + [2467] = {.lex_state = 269, .external_lex_state = 20}, + [2468] = {.lex_state = 181}, + [2469] = {.lex_state = 106}, + [2470] = {.lex_state = 269, .external_lex_state = 20}, + [2471] = {.lex_state = 269, .external_lex_state = 20}, + [2472] = {.lex_state = 269, .external_lex_state = 20}, + [2473] = {.lex_state = 78}, + [2474] = {.lex_state = 187, .external_lex_state = 6}, + [2475] = {.lex_state = 189, .external_lex_state = 16}, + [2476] = {.lex_state = 189, .external_lex_state = 16}, + [2477] = {.lex_state = 163, .external_lex_state = 4}, + [2478] = {.lex_state = 167, .external_lex_state = 8}, + [2479] = {.lex_state = 71, .external_lex_state = 2}, + [2480] = {.lex_state = 98, .external_lex_state = 4}, + [2481] = {.lex_state = 129, .external_lex_state = 8}, + [2482] = {.lex_state = 71, .external_lex_state = 2}, + [2483] = {.lex_state = 163, .external_lex_state = 4}, + [2484] = {.lex_state = 167, .external_lex_state = 8}, + [2485] = {.lex_state = 71, .external_lex_state = 2}, + [2486] = {.lex_state = 71}, + [2487] = {.lex_state = 94}, + [2488] = {.lex_state = 94}, + [2489] = {.lex_state = 271, .external_lex_state = 21}, + [2490] = {.lex_state = 271, .external_lex_state = 7}, + [2491] = {.lex_state = 161}, + [2492] = {.lex_state = 71}, + [2493] = {.lex_state = 94}, + [2494] = {.lex_state = 259, .external_lex_state = 3}, + [2495] = {.lex_state = 204}, + [2496] = {.lex_state = 259, .external_lex_state = 14}, + [2497] = {.lex_state = 259, .external_lex_state = 14}, + [2498] = {.lex_state = 259, .external_lex_state = 14}, + [2499] = {.lex_state = 259, .external_lex_state = 14}, + [2500] = {.lex_state = 259, .external_lex_state = 14}, + [2501] = {.lex_state = 181}, + [2502] = {.lex_state = 222, .external_lex_state = 16}, + [2503] = {.lex_state = 78}, + [2504] = {.lex_state = 189, .external_lex_state = 16}, + [2505] = {.lex_state = 189, .external_lex_state = 16}, + [2506] = {.lex_state = 259, .external_lex_state = 14}, + [2507] = {.lex_state = 224, .external_lex_state = 24}, + [2508] = {.lex_state = 224, .external_lex_state = 16}, + [2509] = {.lex_state = 259, .external_lex_state = 14}, + [2510] = {.lex_state = 224, .external_lex_state = 24}, + [2511] = {.lex_state = 224, .external_lex_state = 16}, + [2512] = {.lex_state = 217, .external_lex_state = 2}, + [2513] = {.lex_state = 259, .external_lex_state = 14}, + [2514] = {.lex_state = 163, .external_lex_state = 4}, + [2515] = {.lex_state = 167, .external_lex_state = 8}, + [2516] = {.lex_state = 71, .external_lex_state = 2}, + [2517] = {.lex_state = 98, .external_lex_state = 4}, + [2518] = {.lex_state = 129, .external_lex_state = 8}, + [2519] = {.lex_state = 217, .external_lex_state = 2}, + [2520] = {.lex_state = 259, .external_lex_state = 14}, + [2521] = {.lex_state = 163, .external_lex_state = 4}, + [2522] = {.lex_state = 167, .external_lex_state = 8}, + [2523] = {.lex_state = 259, .external_lex_state = 11}, + [2524] = {.lex_state = 259, .external_lex_state = 11}, + [2525] = {.lex_state = 259, .external_lex_state = 11}, + [2526] = {.lex_state = 181}, + [2527] = {.lex_state = 222, .external_lex_state = 16}, + [2528] = {.lex_state = 78}, + [2529] = {.lex_state = 189, .external_lex_state = 16}, + [2530] = {.lex_state = 189, .external_lex_state = 16}, + [2531] = {.lex_state = 259, .external_lex_state = 11}, + [2532] = {.lex_state = 224, .external_lex_state = 24}, + [2533] = {.lex_state = 224, .external_lex_state = 16}, + [2534] = {.lex_state = 259, .external_lex_state = 11}, + [2535] = {.lex_state = 224, .external_lex_state = 24}, + [2536] = {.lex_state = 224, .external_lex_state = 16}, + [2537] = {.lex_state = 217, .external_lex_state = 2}, + [2538] = {.lex_state = 259, .external_lex_state = 11}, + [2539] = {.lex_state = 163, .external_lex_state = 4}, + [2540] = {.lex_state = 167, .external_lex_state = 8}, + [2541] = {.lex_state = 71, .external_lex_state = 2}, + [2542] = {.lex_state = 98, .external_lex_state = 4}, + [2543] = {.lex_state = 129, .external_lex_state = 8}, + [2544] = {.lex_state = 217, .external_lex_state = 2}, + [2545] = {.lex_state = 259, .external_lex_state = 11}, + [2546] = {.lex_state = 163, .external_lex_state = 4}, + [2547] = {.lex_state = 167, .external_lex_state = 8}, + [2548] = {.lex_state = 265, .external_lex_state = 5}, + [2549] = {.lex_state = 265, .external_lex_state = 5}, + [2550] = {.lex_state = 212, .external_lex_state = 23}, + [2551] = {.lex_state = 212, .external_lex_state = 23}, + [2552] = {.lex_state = 212, .external_lex_state = 16}, + [2553] = {.lex_state = 222, .external_lex_state = 16}, + [2554] = {.lex_state = 265, .external_lex_state = 5}, + [2555] = {.lex_state = 224, .external_lex_state = 24}, + [2556] = {.lex_state = 224, .external_lex_state = 16}, + [2557] = {.lex_state = 224, .external_lex_state = 24}, + [2558] = {.lex_state = 224, .external_lex_state = 16}, + [2559] = {.lex_state = 224, .external_lex_state = 16}, + [2560] = {.lex_state = 265, .external_lex_state = 5}, + [2561] = {.lex_state = 224, .external_lex_state = 16}, + [2562] = {.lex_state = 224, .external_lex_state = 16}, + [2563] = {.lex_state = 265, .external_lex_state = 5}, + [2564] = {.lex_state = 217, .external_lex_state = 2}, + [2565] = {.lex_state = 71, .external_lex_state = 2}, + [2566] = {.lex_state = 265, .external_lex_state = 5}, + [2567] = {.lex_state = 217, .external_lex_state = 2}, + [2568] = {.lex_state = 273, .external_lex_state = 21}, + [2569] = {.lex_state = 271, .external_lex_state = 5}, + [2570] = {.lex_state = 271, .external_lex_state = 5}, + [2571] = {.lex_state = 94}, + [2572] = {.lex_state = 271, .external_lex_state = 5}, + [2573] = {.lex_state = 271, .external_lex_state = 5}, + [2574] = {.lex_state = 181}, + [2575] = {.lex_state = 106}, + [2576] = {.lex_state = 271, .external_lex_state = 5}, + [2577] = {.lex_state = 271, .external_lex_state = 5}, + [2578] = {.lex_state = 271, .external_lex_state = 5}, + [2579] = {.lex_state = 78}, + [2580] = {.lex_state = 187, .external_lex_state = 6}, + [2581] = {.lex_state = 189, .external_lex_state = 16}, + [2582] = {.lex_state = 189, .external_lex_state = 16}, + [2583] = {.lex_state = 163, .external_lex_state = 4}, + [2584] = {.lex_state = 167, .external_lex_state = 8}, + [2585] = {.lex_state = 71, .external_lex_state = 2}, + [2586] = {.lex_state = 98, .external_lex_state = 4}, + [2587] = {.lex_state = 129, .external_lex_state = 8}, + [2588] = {.lex_state = 71, .external_lex_state = 2}, + [2589] = {.lex_state = 163, .external_lex_state = 4}, + [2590] = {.lex_state = 167, .external_lex_state = 8}, + [2591] = {.lex_state = 71, .external_lex_state = 2}, + [2592] = {.lex_state = 271, .external_lex_state = 7}, + [2593] = {.lex_state = 253, .external_lex_state = 2}, + [2594] = {.lex_state = 253, .external_lex_state = 2}, + [2595] = {.lex_state = 217, .external_lex_state = 2}, + [2596] = {.lex_state = 94}, + [2597] = {.lex_state = 98, .external_lex_state = 4}, + [2598] = {.lex_state = 129, .external_lex_state = 8}, + [2599] = {.lex_state = 217, .external_lex_state = 2}, + [2600] = {.lex_state = 217, .external_lex_state = 2}, + [2601] = {.lex_state = 217, .external_lex_state = 2}, + [2602] = {.lex_state = 94}, + [2603] = {.lex_state = 98, .external_lex_state = 4}, + [2604] = {.lex_state = 129, .external_lex_state = 8}, + [2605] = {.lex_state = 217, .external_lex_state = 2}, + [2606] = {.lex_state = 212, .external_lex_state = 23}, + [2607] = {.lex_state = 212, .external_lex_state = 23}, + [2608] = {.lex_state = 228, .external_lex_state = 25}, + [2609] = {.lex_state = 228, .external_lex_state = 25}, + [2610] = {.lex_state = 269, .external_lex_state = 8}, + [2611] = {.lex_state = 269, .external_lex_state = 20}, + [2612] = {.lex_state = 269, .external_lex_state = 20}, + [2613] = {.lex_state = 269, .external_lex_state = 20}, + [2614] = {.lex_state = 181}, + [2615] = {.lex_state = 222, .external_lex_state = 16}, + [2616] = {.lex_state = 78}, + [2617] = {.lex_state = 189, .external_lex_state = 16}, + [2618] = {.lex_state = 189, .external_lex_state = 16}, + [2619] = {.lex_state = 269, .external_lex_state = 20}, + [2620] = {.lex_state = 224, .external_lex_state = 24}, + [2621] = {.lex_state = 224, .external_lex_state = 16}, + [2622] = {.lex_state = 269, .external_lex_state = 20}, + [2623] = {.lex_state = 224, .external_lex_state = 24}, + [2624] = {.lex_state = 224, .external_lex_state = 16}, + [2625] = {.lex_state = 217, .external_lex_state = 2}, + [2626] = {.lex_state = 269, .external_lex_state = 20}, + [2627] = {.lex_state = 163, .external_lex_state = 4}, + [2628] = {.lex_state = 167, .external_lex_state = 8}, + [2629] = {.lex_state = 71, .external_lex_state = 2}, + [2630] = {.lex_state = 98, .external_lex_state = 4}, + [2631] = {.lex_state = 129, .external_lex_state = 8}, + [2632] = {.lex_state = 217, .external_lex_state = 2}, + [2633] = {.lex_state = 269, .external_lex_state = 20}, + [2634] = {.lex_state = 163, .external_lex_state = 4}, + [2635] = {.lex_state = 167, .external_lex_state = 8}, + [2636] = {.lex_state = 94}, + [2637] = {.lex_state = 271, .external_lex_state = 25}, + [2638] = {.lex_state = 271, .external_lex_state = 25}, + [2639] = {.lex_state = 271, .external_lex_state = 25}, + [2640] = {.lex_state = 271, .external_lex_state = 25}, + [2641] = {.lex_state = 271, .external_lex_state = 21}, + [2642] = {.lex_state = 273, .external_lex_state = 21}, + [2643] = {.lex_state = 94}, + [2644] = {.lex_state = 251, .external_lex_state = 11}, + [2645] = {.lex_state = 251, .external_lex_state = 11}, + [2646] = {.lex_state = 259, .external_lex_state = 3}, + [2647] = {.lex_state = 204}, + [2648] = {.lex_state = 259, .external_lex_state = 14}, + [2649] = {.lex_state = 259, .external_lex_state = 14}, + [2650] = {.lex_state = 212, .external_lex_state = 23}, + [2651] = {.lex_state = 212, .external_lex_state = 23}, + [2652] = {.lex_state = 212, .external_lex_state = 16}, + [2653] = {.lex_state = 222, .external_lex_state = 16}, + [2654] = {.lex_state = 259, .external_lex_state = 14}, + [2655] = {.lex_state = 224, .external_lex_state = 24}, + [2656] = {.lex_state = 224, .external_lex_state = 16}, + [2657] = {.lex_state = 224, .external_lex_state = 24}, + [2658] = {.lex_state = 224, .external_lex_state = 16}, + [2659] = {.lex_state = 224, .external_lex_state = 16}, + [2660] = {.lex_state = 259, .external_lex_state = 14}, + [2661] = {.lex_state = 224, .external_lex_state = 16}, + [2662] = {.lex_state = 224, .external_lex_state = 16}, + [2663] = {.lex_state = 259, .external_lex_state = 14}, + [2664] = {.lex_state = 217, .external_lex_state = 2}, + [2665] = {.lex_state = 71, .external_lex_state = 2}, + [2666] = {.lex_state = 259, .external_lex_state = 14}, + [2667] = {.lex_state = 217, .external_lex_state = 2}, + [2668] = {.lex_state = 259, .external_lex_state = 11}, + [2669] = {.lex_state = 259, .external_lex_state = 11}, + [2670] = {.lex_state = 212, .external_lex_state = 23}, + [2671] = {.lex_state = 212, .external_lex_state = 23}, + [2672] = {.lex_state = 212, .external_lex_state = 16}, + [2673] = {.lex_state = 222, .external_lex_state = 16}, + [2674] = {.lex_state = 259, .external_lex_state = 11}, + [2675] = {.lex_state = 224, .external_lex_state = 24}, + [2676] = {.lex_state = 224, .external_lex_state = 16}, + [2677] = {.lex_state = 224, .external_lex_state = 24}, + [2678] = {.lex_state = 224, .external_lex_state = 16}, + [2679] = {.lex_state = 224, .external_lex_state = 16}, + [2680] = {.lex_state = 259, .external_lex_state = 11}, + [2681] = {.lex_state = 224, .external_lex_state = 16}, + [2682] = {.lex_state = 224, .external_lex_state = 16}, + [2683] = {.lex_state = 259, .external_lex_state = 11}, + [2684] = {.lex_state = 217, .external_lex_state = 2}, + [2685] = {.lex_state = 71, .external_lex_state = 2}, + [2686] = {.lex_state = 259, .external_lex_state = 11}, + [2687] = {.lex_state = 217, .external_lex_state = 2}, + [2688] = {.lex_state = 265, .external_lex_state = 5}, + [2689] = {.lex_state = 265, .external_lex_state = 5}, + [2690] = {.lex_state = 212, .external_lex_state = 23}, + [2691] = {.lex_state = 212, .external_lex_state = 23}, + [2692] = {.lex_state = 212, .external_lex_state = 16}, + [2693] = {.lex_state = 224, .external_lex_state = 16}, + [2694] = {.lex_state = 265, .external_lex_state = 5}, + [2695] = {.lex_state = 224, .external_lex_state = 16}, + [2696] = {.lex_state = 224, .external_lex_state = 16}, + [2697] = {.lex_state = 224, .external_lex_state = 16}, + [2698] = {.lex_state = 265, .external_lex_state = 5}, + [2699] = {.lex_state = 224, .external_lex_state = 16}, + [2700] = {.lex_state = 265, .external_lex_state = 5}, + [2701] = {.lex_state = 265, .external_lex_state = 5}, + [2702] = {.lex_state = 271, .external_lex_state = 5}, + [2703] = {.lex_state = 271, .external_lex_state = 5}, + [2704] = {.lex_state = 271, .external_lex_state = 5}, + [2705] = {.lex_state = 181}, + [2706] = {.lex_state = 222, .external_lex_state = 16}, + [2707] = {.lex_state = 78}, + [2708] = {.lex_state = 189, .external_lex_state = 16}, + [2709] = {.lex_state = 189, .external_lex_state = 16}, + [2710] = {.lex_state = 271, .external_lex_state = 5}, + [2711] = {.lex_state = 224, .external_lex_state = 24}, + [2712] = {.lex_state = 224, .external_lex_state = 16}, + [2713] = {.lex_state = 271, .external_lex_state = 5}, + [2714] = {.lex_state = 224, .external_lex_state = 24}, + [2715] = {.lex_state = 224, .external_lex_state = 16}, + [2716] = {.lex_state = 217, .external_lex_state = 2}, + [2717] = {.lex_state = 271, .external_lex_state = 5}, + [2718] = {.lex_state = 163, .external_lex_state = 4}, + [2719] = {.lex_state = 167, .external_lex_state = 8}, + [2720] = {.lex_state = 71, .external_lex_state = 2}, + [2721] = {.lex_state = 98, .external_lex_state = 4}, + [2722] = {.lex_state = 129, .external_lex_state = 8}, + [2723] = {.lex_state = 217, .external_lex_state = 2}, + [2724] = {.lex_state = 271, .external_lex_state = 5}, + [2725] = {.lex_state = 163, .external_lex_state = 4}, + [2726] = {.lex_state = 167, .external_lex_state = 8}, + [2727] = {.lex_state = 217, .external_lex_state = 2}, + [2728] = {.lex_state = 94}, + [2729] = {.lex_state = 98, .external_lex_state = 4}, + [2730] = {.lex_state = 129, .external_lex_state = 8}, + [2731] = {.lex_state = 217, .external_lex_state = 2}, + [2732] = {.lex_state = 94}, + [2733] = {.lex_state = 98, .external_lex_state = 4}, + [2734] = {.lex_state = 129, .external_lex_state = 8}, + [2735] = {.lex_state = 269, .external_lex_state = 20}, + [2736] = {.lex_state = 269, .external_lex_state = 20}, + [2737] = {.lex_state = 212, .external_lex_state = 23}, + [2738] = {.lex_state = 212, .external_lex_state = 23}, + [2739] = {.lex_state = 212, .external_lex_state = 16}, + [2740] = {.lex_state = 222, .external_lex_state = 16}, + [2741] = {.lex_state = 269, .external_lex_state = 20}, + [2742] = {.lex_state = 224, .external_lex_state = 24}, + [2743] = {.lex_state = 224, .external_lex_state = 16}, + [2744] = {.lex_state = 224, .external_lex_state = 24}, + [2745] = {.lex_state = 224, .external_lex_state = 16}, + [2746] = {.lex_state = 224, .external_lex_state = 16}, + [2747] = {.lex_state = 269, .external_lex_state = 20}, + [2748] = {.lex_state = 224, .external_lex_state = 16}, + [2749] = {.lex_state = 224, .external_lex_state = 16}, + [2750] = {.lex_state = 269, .external_lex_state = 20}, + [2751] = {.lex_state = 217, .external_lex_state = 2}, + [2752] = {.lex_state = 71, .external_lex_state = 2}, + [2753] = {.lex_state = 269, .external_lex_state = 20}, + [2754] = {.lex_state = 217, .external_lex_state = 2}, + [2755] = {.lex_state = 271, .external_lex_state = 25}, + [2756] = {.lex_state = 271, .external_lex_state = 25}, + [2757] = {.lex_state = 271, .external_lex_state = 25}, + [2758] = {.lex_state = 251, .external_lex_state = 11}, + [2759] = {.lex_state = 251, .external_lex_state = 11}, + [2760] = {.lex_state = 251, .external_lex_state = 11}, + [2761] = {.lex_state = 259, .external_lex_state = 3}, + [2762] = {.lex_state = 259, .external_lex_state = 14}, + [2763] = {.lex_state = 259, .external_lex_state = 14}, + [2764] = {.lex_state = 212, .external_lex_state = 23}, + [2765] = {.lex_state = 212, .external_lex_state = 23}, + [2766] = {.lex_state = 212, .external_lex_state = 16}, + [2767] = {.lex_state = 224, .external_lex_state = 16}, + [2768] = {.lex_state = 259, .external_lex_state = 14}, + [2769] = {.lex_state = 224, .external_lex_state = 16}, + [2770] = {.lex_state = 224, .external_lex_state = 16}, + [2771] = {.lex_state = 224, .external_lex_state = 16}, + [2772] = {.lex_state = 259, .external_lex_state = 14}, + [2773] = {.lex_state = 224, .external_lex_state = 16}, + [2774] = {.lex_state = 259, .external_lex_state = 14}, + [2775] = {.lex_state = 259, .external_lex_state = 14}, + [2776] = {.lex_state = 259, .external_lex_state = 11}, + [2777] = {.lex_state = 259, .external_lex_state = 11}, + [2778] = {.lex_state = 212, .external_lex_state = 23}, + [2779] = {.lex_state = 212, .external_lex_state = 23}, + [2780] = {.lex_state = 212, .external_lex_state = 16}, + [2781] = {.lex_state = 224, .external_lex_state = 16}, + [2782] = {.lex_state = 259, .external_lex_state = 11}, + [2783] = {.lex_state = 224, .external_lex_state = 16}, + [2784] = {.lex_state = 224, .external_lex_state = 16}, + [2785] = {.lex_state = 224, .external_lex_state = 16}, + [2786] = {.lex_state = 259, .external_lex_state = 11}, + [2787] = {.lex_state = 224, .external_lex_state = 16}, + [2788] = {.lex_state = 259, .external_lex_state = 11}, + [2789] = {.lex_state = 259, .external_lex_state = 11}, + [2790] = {.lex_state = 265, .external_lex_state = 5}, + [2791] = {.lex_state = 265, .external_lex_state = 5}, + [2792] = {.lex_state = 265, .external_lex_state = 5}, + [2793] = {.lex_state = 224, .external_lex_state = 16}, + [2794] = {.lex_state = 224, .external_lex_state = 16}, + [2795] = {.lex_state = 265, .external_lex_state = 5}, + [2796] = {.lex_state = 271, .external_lex_state = 5}, + [2797] = {.lex_state = 271, .external_lex_state = 5}, + [2798] = {.lex_state = 212, .external_lex_state = 23}, + [2799] = {.lex_state = 212, .external_lex_state = 23}, + [2800] = {.lex_state = 212, .external_lex_state = 16}, + [2801] = {.lex_state = 222, .external_lex_state = 16}, + [2802] = {.lex_state = 271, .external_lex_state = 5}, + [2803] = {.lex_state = 224, .external_lex_state = 24}, + [2804] = {.lex_state = 224, .external_lex_state = 16}, + [2805] = {.lex_state = 224, .external_lex_state = 24}, + [2806] = {.lex_state = 224, .external_lex_state = 16}, + [2807] = {.lex_state = 224, .external_lex_state = 16}, + [2808] = {.lex_state = 271, .external_lex_state = 5}, + [2809] = {.lex_state = 224, .external_lex_state = 16}, + [2810] = {.lex_state = 224, .external_lex_state = 16}, + [2811] = {.lex_state = 271, .external_lex_state = 5}, + [2812] = {.lex_state = 217, .external_lex_state = 2}, + [2813] = {.lex_state = 71, .external_lex_state = 2}, + [2814] = {.lex_state = 271, .external_lex_state = 5}, + [2815] = {.lex_state = 217, .external_lex_state = 2}, + [2816] = {.lex_state = 217, .external_lex_state = 2}, + [2817] = {.lex_state = 217, .external_lex_state = 2}, + [2818] = {.lex_state = 269, .external_lex_state = 20}, + [2819] = {.lex_state = 269, .external_lex_state = 20}, + [2820] = {.lex_state = 212, .external_lex_state = 23}, + [2821] = {.lex_state = 212, .external_lex_state = 23}, + [2822] = {.lex_state = 212, .external_lex_state = 16}, + [2823] = {.lex_state = 224, .external_lex_state = 16}, + [2824] = {.lex_state = 269, .external_lex_state = 20}, + [2825] = {.lex_state = 224, .external_lex_state = 16}, + [2826] = {.lex_state = 224, .external_lex_state = 16}, + [2827] = {.lex_state = 224, .external_lex_state = 16}, + [2828] = {.lex_state = 269, .external_lex_state = 20}, + [2829] = {.lex_state = 224, .external_lex_state = 16}, + [2830] = {.lex_state = 269, .external_lex_state = 20}, + [2831] = {.lex_state = 269, .external_lex_state = 20}, + [2832] = {.lex_state = 271, .external_lex_state = 25}, + [2833] = {.lex_state = 251, .external_lex_state = 11}, + [2834] = {.lex_state = 259, .external_lex_state = 14}, + [2835] = {.lex_state = 259, .external_lex_state = 14}, + [2836] = {.lex_state = 259, .external_lex_state = 14}, + [2837] = {.lex_state = 224, .external_lex_state = 16}, + [2838] = {.lex_state = 224, .external_lex_state = 16}, + [2839] = {.lex_state = 259, .external_lex_state = 14}, + [2840] = {.lex_state = 259, .external_lex_state = 11}, + [2841] = {.lex_state = 259, .external_lex_state = 11}, + [2842] = {.lex_state = 259, .external_lex_state = 11}, + [2843] = {.lex_state = 224, .external_lex_state = 16}, + [2844] = {.lex_state = 224, .external_lex_state = 16}, + [2845] = {.lex_state = 259, .external_lex_state = 11}, + [2846] = {.lex_state = 265, .external_lex_state = 5}, + [2847] = {.lex_state = 265, .external_lex_state = 5}, + [2848] = {.lex_state = 271, .external_lex_state = 5}, + [2849] = {.lex_state = 271, .external_lex_state = 5}, + [2850] = {.lex_state = 212, .external_lex_state = 23}, + [2851] = {.lex_state = 212, .external_lex_state = 23}, + [2852] = {.lex_state = 212, .external_lex_state = 16}, + [2853] = {.lex_state = 224, .external_lex_state = 16}, + [2854] = {.lex_state = 271, .external_lex_state = 5}, + [2855] = {.lex_state = 224, .external_lex_state = 16}, + [2856] = {.lex_state = 224, .external_lex_state = 16}, + [2857] = {.lex_state = 224, .external_lex_state = 16}, + [2858] = {.lex_state = 271, .external_lex_state = 5}, + [2859] = {.lex_state = 224, .external_lex_state = 16}, + [2860] = {.lex_state = 271, .external_lex_state = 5}, + [2861] = {.lex_state = 271, .external_lex_state = 5}, + [2862] = {.lex_state = 269, .external_lex_state = 20}, + [2863] = {.lex_state = 269, .external_lex_state = 20}, + [2864] = {.lex_state = 269, .external_lex_state = 20}, + [2865] = {.lex_state = 224, .external_lex_state = 16}, + [2866] = {.lex_state = 224, .external_lex_state = 16}, + [2867] = {.lex_state = 269, .external_lex_state = 20}, + [2868] = {.lex_state = 259, .external_lex_state = 14}, + [2869] = {.lex_state = 259, .external_lex_state = 14}, + [2870] = {.lex_state = 259, .external_lex_state = 11}, + [2871] = {.lex_state = 259, .external_lex_state = 11}, + [2872] = {.lex_state = 271, .external_lex_state = 5}, + [2873] = {.lex_state = 271, .external_lex_state = 5}, + [2874] = {.lex_state = 271, .external_lex_state = 5}, + [2875] = {.lex_state = 224, .external_lex_state = 16}, + [2876] = {.lex_state = 224, .external_lex_state = 16}, + [2877] = {.lex_state = 271, .external_lex_state = 5}, + [2878] = {.lex_state = 269, .external_lex_state = 20}, + [2879] = {.lex_state = 269, .external_lex_state = 20}, + [2880] = {.lex_state = 271, .external_lex_state = 5}, + [2881] = {.lex_state = 271, .external_lex_state = 5}, }; enum { @@ -8455,6 +8210,7 @@ enum { ts_external_token__empty_value, ts_external_token__concat, ts_external_token_variable_name, + ts_external_token_regex, ts_external_token_RBRACE, ts_external_token_RBRACK, ts_external_token_LF, @@ -8470,12 +8226,13 @@ static TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { [ts_external_token__empty_value] = sym__empty_value, [ts_external_token__concat] = sym__concat, [ts_external_token_variable_name] = sym_variable_name, + [ts_external_token_regex] = sym_regex, [ts_external_token_RBRACE] = anon_sym_RBRACE, [ts_external_token_RBRACK] = anon_sym_RBRACK, [ts_external_token_LF] = anon_sym_LF, }; -static bool ts_external_scanner_states[24][EXTERNAL_TOKEN_COUNT] = { +static bool ts_external_scanner_states[26][EXTERNAL_TOKEN_COUNT] = { [1] = { [ts_external_token_heredoc_start] = true, [ts_external_token__simple_heredoc_body] = true, @@ -8486,6 +8243,7 @@ static bool ts_external_scanner_states[24][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__empty_value] = true, [ts_external_token__concat] = true, [ts_external_token_variable_name] = true, + [ts_external_token_regex] = true, [ts_external_token_RBRACE] = true, [ts_external_token_RBRACK] = true, [ts_external_token_LF] = true, @@ -8527,17 +8285,17 @@ static bool ts_external_scanner_states[24][EXTERNAL_TOKEN_COUNT] = { }, [10] = { [ts_external_token__concat] = true, - [ts_external_token_LF] = true, }, [11] = { [ts_external_token__concat] = true, - [ts_external_token_RBRACK] = true, + [ts_external_token_LF] = true, }, [12] = { + [ts_external_token__concat] = true, [ts_external_token_RBRACK] = true, }, [13] = { - [ts_external_token__concat] = true, + [ts_external_token_RBRACK] = true, }, [14] = { [ts_external_token__concat] = true, @@ -8557,28 +8315,35 @@ static bool ts_external_scanner_states[24][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__heredoc_body_end] = true, }, [18] = { - [ts_external_token_heredoc_start] = true, + [ts_external_token_regex] = true, }, [19] = { + [ts_external_token_heredoc_start] = true, + }, + [20] = { [ts_external_token_file_descriptor] = true, [ts_external_token__concat] = true, [ts_external_token_variable_name] = true, [ts_external_token_LF] = true, }, - [20] = { - [ts_external_token_file_descriptor] = true, - [ts_external_token_variable_name] = true, - [ts_external_token_RBRACE] = true, - }, [21] = { [ts_external_token_file_descriptor] = true, [ts_external_token_LF] = true, }, [22] = { - [ts_external_token__concat] = true, + [ts_external_token_file_descriptor] = true, + [ts_external_token_variable_name] = true, [ts_external_token_RBRACE] = true, }, [23] = { + [ts_external_token__concat] = true, + [ts_external_token_RBRACE] = true, + }, + [24] = { + [ts_external_token_regex] = true, + [ts_external_token_RBRACE] = true, + }, + [25] = { [ts_external_token_file_descriptor] = true, [ts_external_token__concat] = true, [ts_external_token_LF] = true, @@ -8596,9 +8361,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym__empty_value] = ACTIONS(1), [sym__concat] = ACTIONS(1), [sym_variable_name] = ACTIONS(1), + [sym_regex] = ACTIONS(1), [ts_builtin_sym_end] = ACTIONS(1), [anon_sym_for] = ACTIONS(1), [anon_sym_in] = ACTIONS(1), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1), [anon_sym_SEMI] = ACTIONS(3), [anon_sym_while] = ACTIONS(1), [anon_sym_do] = ACTIONS(3), @@ -8614,7 +8381,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RPAREN] = ACTIONS(1), [anon_sym_SEMI_SEMI] = ACTIONS(1), [anon_sym_function] = ACTIONS(1), - [anon_sym_LPAREN] = ACTIONS(1), + [anon_sym_LPAREN] = ACTIONS(3), [anon_sym_LBRACE] = ACTIONS(1), [anon_sym_RBRACE] = ACTIONS(1), [anon_sym_PIPE_AMP] = ACTIONS(1), @@ -8646,6 +8413,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(3), [anon_sym_LT_LT_DASH] = ACTIONS(1), [anon_sym_LT_LT_LT] = ACTIONS(1), + [anon_sym_PLUS] = ACTIONS(3), + [anon_sym_DASH] = ACTIONS(3), + [anon_sym_DASH_EQ] = ACTIONS(1), + [anon_sym_LT_EQ] = ACTIONS(1), + [anon_sym_GT_EQ] = ACTIONS(1), + [anon_sym_PLUS_PLUS] = ACTIONS(1), + [anon_sym_DASH_DASH] = ACTIONS(1), [sym__special_characters] = ACTIONS(3), [anon_sym_DQUOTE] = ACTIONS(1), [anon_sym_DOLLAR] = ACTIONS(3), @@ -8657,7 +8431,6 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_QMARK] = ACTIONS(1), [anon_sym_COLON_DASH] = ACTIONS(1), [anon_sym_PERCENT] = ACTIONS(1), - [anon_sym_DASH] = ACTIONS(1), [anon_sym_DOLLAR_LPAREN] = ACTIONS(1), [anon_sym_BQUOTE] = ACTIONS(1), [anon_sym_LT_LPAREN] = ACTIONS(1), @@ -8668,3001 +8441,2885 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(1), [anon_sym_0] = ACTIONS(1), [anon_sym__] = ACTIONS(1), + [sym_test_operator] = ACTIONS(1), [anon_sym_LF] = ACTIONS(1), [anon_sym_AMP] = ACTIONS(3), }, [1] = { - [sym_program] = STATE(25), - [sym__terminated_statement] = STATE(31), - [sym_for_statement] = STATE(26), - [sym_c_style_for_statement] = STATE(26), - [sym_while_statement] = STATE(26), - [sym_if_statement] = STATE(26), - [sym_case_statement] = STATE(26), - [sym_function_definition] = STATE(26), - [sym_subshell] = STATE(26), - [sym_pipeline] = STATE(26), - [sym_list] = STATE(26), - [sym_negated_command] = STATE(26), - [sym_test_command] = STATE(26), - [sym_declaration_command] = STATE(26), - [sym_unset_command] = STATE(26), - [sym_command] = STATE(26), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(28), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(32), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(19), - [sym_simple_expansion] = STATE(19), - [sym_string_expansion] = STATE(19), - [sym_expansion] = STATE(19), - [sym_command_substitution] = STATE(19), - [sym_process_substitution] = STATE(19), - [aux_sym__statements_repeat1] = STATE(31), - [aux_sym_command_repeat1] = STATE(32), + [sym_program] = STATE(26), + [sym__terminated_statement] = STATE(32), + [sym_for_statement] = STATE(27), + [sym_c_style_for_statement] = STATE(27), + [sym_while_statement] = STATE(27), + [sym_if_statement] = STATE(27), + [sym_case_statement] = STATE(27), + [sym_function_definition] = STATE(27), + [sym_subshell] = STATE(27), + [sym_pipeline] = STATE(27), + [sym_list] = STATE(27), + [sym_negated_command] = STATE(27), + [sym_test_command] = STATE(27), + [sym_declaration_command] = STATE(27), + [sym_unset_command] = STATE(27), + [sym_command] = STATE(27), + [sym_command_name] = STATE(28), + [sym_variable_assignment] = STATE(29), + [sym_subscript] = STATE(30), + [sym_file_redirect] = STATE(33), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(20), + [sym_simple_expansion] = STATE(20), + [sym_string_expansion] = STATE(20), + [sym_expansion] = STATE(20), + [sym_command_substitution] = STATE(20), + [sym_process_substitution] = STATE(20), + [aux_sym__statements_repeat1] = STATE(32), + [aux_sym_command_repeat1] = STATE(33), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), [ts_builtin_sym_end] = ACTIONS(9), [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(13), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACK_LBRACK] = ACTIONS(27), - [anon_sym_declare] = ACTIONS(29), - [anon_sym_typeset] = ACTIONS(29), - [anon_sym_export] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(29), - [anon_sym_local] = ACTIONS(29), - [anon_sym_unset] = ACTIONS(31), - [anon_sym_unsetenv] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(37), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(43), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(55), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_LBRACK] = ACTIONS(27), + [anon_sym_LBRACK_LBRACK] = ACTIONS(29), + [anon_sym_declare] = ACTIONS(31), + [anon_sym_typeset] = ACTIONS(31), + [anon_sym_export] = ACTIONS(31), + [anon_sym_readonly] = ACTIONS(31), + [anon_sym_local] = ACTIONS(31), + [anon_sym_unset] = ACTIONS(33), + [anon_sym_unsetenv] = ACTIONS(33), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(39), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(57), }, [2] = { - [anon_sym_LT] = ACTIONS(57), - [anon_sym_GT] = ACTIONS(57), - [anon_sym_GT_GT] = ACTIONS(59), - [anon_sym_AMP_GT] = ACTIONS(57), - [anon_sym_AMP_GT_GT] = ACTIONS(59), - [anon_sym_LT_AMP] = ACTIONS(59), - [anon_sym_GT_AMP] = ACTIONS(59), - [sym_comment] = ACTIONS(53), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_GT] = ACTIONS(61), + [anon_sym_AMP_GT] = ACTIONS(59), + [anon_sym_AMP_GT_GT] = ACTIONS(61), + [anon_sym_LT_AMP] = ACTIONS(61), + [anon_sym_GT_AMP] = ACTIONS(61), + [sym_comment] = ACTIONS(55), }, [3] = { - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_EQ] = ACTIONS(63), - [anon_sym_PLUS_EQ] = ACTIONS(63), - [sym_comment] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_EQ] = ACTIONS(65), + [anon_sym_PLUS_EQ] = ACTIONS(65), + [sym_comment] = ACTIONS(55), }, [4] = { - [anon_sym_LPAREN_LPAREN] = ACTIONS(65), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(67), + [anon_sym_LPAREN_LPAREN] = ACTIONS(67), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(69), }, [5] = { - [sym__terminated_statement] = STATE(49), - [sym_for_statement] = STATE(50), - [sym_c_style_for_statement] = STATE(50), - [sym_while_statement] = STATE(50), - [sym_if_statement] = STATE(50), - [sym_case_statement] = STATE(50), - [sym_function_definition] = STATE(50), - [sym_subshell] = STATE(50), - [sym_pipeline] = STATE(50), - [sym_list] = STATE(50), - [sym_negated_command] = STATE(50), - [sym_test_command] = STATE(50), - [sym_declaration_command] = STATE(50), - [sym_unset_command] = STATE(50), - [sym_command] = STATE(50), - [sym_command_name] = STATE(51), - [sym_variable_assignment] = STATE(52), - [sym_subscript] = STATE(53), - [sym_file_redirect] = STATE(54), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(47), - [sym_simple_expansion] = STATE(47), - [sym_string_expansion] = STATE(47), - [sym_expansion] = STATE(47), - [sym_command_substitution] = STATE(47), - [sym_process_substitution] = STATE(47), - [aux_sym_command_repeat1] = STATE(54), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(69), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(71), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(73), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(75), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_LBRACK_LBRACK] = ACTIONS(79), - [anon_sym_declare] = ACTIONS(81), - [anon_sym_typeset] = ACTIONS(81), - [anon_sym_export] = ACTIONS(81), - [anon_sym_readonly] = ACTIONS(81), - [anon_sym_local] = ACTIONS(81), - [anon_sym_unset] = ACTIONS(83), - [anon_sym_unsetenv] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(87), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(89), + [sym__expression] = STATE(49), + [sym_binary_expression] = STATE(49), + [sym_unary_expression] = STATE(49), + [sym_postfix_expression] = STATE(49), + [sym_parenthesized_expression] = STATE(49), + [sym_concatenation] = STATE(49), + [sym_string] = STATE(44), + [sym_simple_expansion] = STATE(44), + [sym_string_expansion] = STATE(44), + [sym_expansion] = STATE(44), + [sym_command_substitution] = STATE(44), + [sym_process_substitution] = STATE(44), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(73), + [sym__special_characters] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(79), + [sym_raw_string] = ACTIONS(81), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(83), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(85), + [anon_sym_BQUOTE] = ACTIONS(87), + [anon_sym_LT_LPAREN] = ACTIONS(89), + [anon_sym_GT_LPAREN] = ACTIONS(89), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(91), + [sym_test_operator] = ACTIONS(93), }, [6] = { - [sym__terminated_statement] = STATE(55), - [sym_for_statement] = STATE(50), - [sym_c_style_for_statement] = STATE(50), - [sym_while_statement] = STATE(50), - [sym_if_statement] = STATE(50), - [sym_case_statement] = STATE(50), - [sym_function_definition] = STATE(50), - [sym_subshell] = STATE(50), - [sym_pipeline] = STATE(50), - [sym_list] = STATE(50), - [sym_negated_command] = STATE(50), - [sym_test_command] = STATE(50), - [sym_declaration_command] = STATE(50), - [sym_unset_command] = STATE(50), - [sym_command] = STATE(50), - [sym_command_name] = STATE(51), - [sym_variable_assignment] = STATE(52), - [sym_subscript] = STATE(53), - [sym_file_redirect] = STATE(54), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(47), - [sym_simple_expansion] = STATE(47), - [sym_string_expansion] = STATE(47), - [sym_expansion] = STATE(47), - [sym_command_substitution] = STATE(47), - [sym_process_substitution] = STATE(47), - [aux_sym_command_repeat1] = STATE(54), + [sym__terminated_statement] = STATE(62), + [sym_for_statement] = STATE(63), + [sym_c_style_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_if_statement] = STATE(63), + [sym_case_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_subshell] = STATE(63), + [sym_pipeline] = STATE(63), + [sym_list] = STATE(63), + [sym_negated_command] = STATE(63), + [sym_test_command] = STATE(63), + [sym_declaration_command] = STATE(63), + [sym_unset_command] = STATE(63), + [sym_command] = STATE(63), + [sym_command_name] = STATE(64), + [sym_variable_assignment] = STATE(65), + [sym_subscript] = STATE(66), + [sym_file_redirect] = STATE(67), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(60), + [sym_simple_expansion] = STATE(60), + [sym_string_expansion] = STATE(60), + [sym_expansion] = STATE(60), + [sym_command_substitution] = STATE(60), + [sym_process_substitution] = STATE(60), + [aux_sym_command_repeat1] = STATE(67), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(69), + [sym_variable_name] = ACTIONS(95), [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(71), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(73), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(75), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_LBRACK_LBRACK] = ACTIONS(79), - [anon_sym_declare] = ACTIONS(81), - [anon_sym_typeset] = ACTIONS(81), - [anon_sym_export] = ACTIONS(81), - [anon_sym_readonly] = ACTIONS(81), - [anon_sym_local] = ACTIONS(81), - [anon_sym_unset] = ACTIONS(83), - [anon_sym_unsetenv] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(87), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(89), + [anon_sym_LPAREN_LPAREN] = ACTIONS(97), + [anon_sym_while] = ACTIONS(99), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(101), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_LBRACK] = ACTIONS(107), + [anon_sym_declare] = ACTIONS(109), + [anon_sym_typeset] = ACTIONS(109), + [anon_sym_export] = ACTIONS(109), + [anon_sym_readonly] = ACTIONS(109), + [anon_sym_local] = ACTIONS(109), + [anon_sym_unset] = ACTIONS(111), + [anon_sym_unsetenv] = ACTIONS(111), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(115), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(117), }, [7] = { - [sym_concatenation] = STATE(64), - [sym_string] = STATE(59), - [sym_simple_expansion] = STATE(59), - [sym_string_expansion] = STATE(59), - [sym_expansion] = STATE(59), - [sym_command_substitution] = STATE(59), - [sym_process_substitution] = STATE(59), - [sym__special_characters] = ACTIONS(91), - [anon_sym_DQUOTE] = ACTIONS(93), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(97), + [sym__terminated_statement] = STATE(68), + [sym_for_statement] = STATE(63), + [sym_c_style_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_if_statement] = STATE(63), + [sym_case_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_subshell] = STATE(63), + [sym_pipeline] = STATE(63), + [sym_list] = STATE(63), + [sym_negated_command] = STATE(63), + [sym_test_command] = STATE(63), + [sym_declaration_command] = STATE(63), + [sym_unset_command] = STATE(63), + [sym_command] = STATE(63), + [sym_command_name] = STATE(64), + [sym_variable_assignment] = STATE(65), + [sym_subscript] = STATE(66), + [sym_file_redirect] = STATE(67), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(60), + [sym_simple_expansion] = STATE(60), + [sym_string_expansion] = STATE(60), + [sym_expansion] = STATE(60), + [sym_command_substitution] = STATE(60), + [sym_process_substitution] = STATE(60), + [aux_sym_command_repeat1] = STATE(67), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(95), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(97), + [anon_sym_while] = ACTIONS(99), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(101), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_LBRACK] = ACTIONS(107), + [anon_sym_declare] = ACTIONS(109), + [anon_sym_typeset] = ACTIONS(109), + [anon_sym_export] = ACTIONS(109), + [anon_sym_readonly] = ACTIONS(109), + [anon_sym_local] = ACTIONS(109), + [anon_sym_unset] = ACTIONS(111), + [anon_sym_unsetenv] = ACTIONS(111), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(115), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(117), }, [8] = { - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(107), + [sym_concatenation] = STATE(77), + [sym_string] = STATE(72), + [sym_simple_expansion] = STATE(72), + [sym_string_expansion] = STATE(72), + [sym_expansion] = STATE(72), + [sym_command_substitution] = STATE(72), + [sym_process_substitution] = STATE(72), + [sym__special_characters] = ACTIONS(119), + [anon_sym_DQUOTE] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(123), + [sym_raw_string] = ACTIONS(125), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(127), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(129), + [anon_sym_BQUOTE] = ACTIONS(131), + [anon_sym_LT_LPAREN] = ACTIONS(133), + [anon_sym_GT_LPAREN] = ACTIONS(133), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(125), }, [9] = { - [sym__terminated_statement] = STATE(81), - [sym_for_statement] = STATE(77), - [sym_c_style_for_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_if_statement] = STATE(77), - [sym_case_statement] = STATE(77), - [sym_function_definition] = STATE(77), - [sym_subshell] = STATE(77), - [sym_pipeline] = STATE(77), - [sym_list] = STATE(77), - [sym_negated_command] = STATE(77), - [sym_test_command] = STATE(77), - [sym_declaration_command] = STATE(77), - [sym_unset_command] = STATE(77), - [sym_command] = STATE(77), - [sym_command_name] = STATE(78), - [sym_variable_assignment] = STATE(79), - [sym_subscript] = STATE(80), - [sym_file_redirect] = STATE(82), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(75), - [sym_simple_expansion] = STATE(75), - [sym_string_expansion] = STATE(75), - [sym_expansion] = STATE(75), - [sym_command_substitution] = STATE(75), - [sym_process_substitution] = STATE(75), - [aux_sym__statements_repeat1] = STATE(81), - [aux_sym_command_repeat1] = STATE(82), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(111), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(119), - [anon_sym_declare] = ACTIONS(121), - [anon_sym_typeset] = ACTIONS(121), - [anon_sym_export] = ACTIONS(121), - [anon_sym_readonly] = ACTIONS(121), - [anon_sym_local] = ACTIONS(121), - [anon_sym_unset] = ACTIONS(123), - [anon_sym_unsetenv] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(135), }, [10] = { - [sym_subshell] = STATE(84), - [sym_test_command] = STATE(84), - [sym_command] = STATE(84), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(32), - [sym_subscript] = STATE(85), - [sym_file_redirect] = STATE(32), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(19), - [sym_simple_expansion] = STATE(19), - [sym_string_expansion] = STATE(19), - [sym_expansion] = STATE(19), - [sym_command_substitution] = STATE(19), - [sym_process_substitution] = STATE(19), - [aux_sym_command_repeat1] = STATE(32), + [sym__terminated_statement] = STATE(95), + [sym_for_statement] = STATE(91), + [sym_c_style_for_statement] = STATE(91), + [sym_while_statement] = STATE(91), + [sym_if_statement] = STATE(91), + [sym_case_statement] = STATE(91), + [sym_function_definition] = STATE(91), + [sym_subshell] = STATE(91), + [sym_pipeline] = STATE(91), + [sym_list] = STATE(91), + [sym_negated_command] = STATE(91), + [sym_test_command] = STATE(91), + [sym_declaration_command] = STATE(91), + [sym_unset_command] = STATE(91), + [sym_command] = STATE(91), + [sym_command_name] = STATE(92), + [sym_variable_assignment] = STATE(93), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(96), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), + [aux_sym__statements_repeat1] = STATE(95), + [aux_sym_command_repeat1] = STATE(96), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACK_LBRACK] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(37), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(43), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(43), + [sym_variable_name] = ACTIONS(137), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(149), + [anon_sym_declare] = ACTIONS(151), + [anon_sym_typeset] = ACTIONS(151), + [anon_sym_export] = ACTIONS(151), + [anon_sym_readonly] = ACTIONS(151), + [anon_sym_local] = ACTIONS(151), + [anon_sym_unset] = ACTIONS(153), + [anon_sym_unsetenv] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(159), }, [11] = { - [sym__expression] = STATE(96), - [sym_binary_expression] = STATE(96), - [sym_unary_expression] = STATE(96), - [sym_parenthesized_expression] = STATE(96), - [sym_concatenation] = STATE(96), - [sym_string] = STATE(91), - [sym_simple_expansion] = STATE(91), - [sym_string_expansion] = STATE(91), - [sym_expansion] = STATE(91), - [sym_command_substitution] = STATE(91), - [sym_process_substitution] = STATE(91), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(135), - [sym__special_characters] = ACTIONS(137), - [anon_sym_DQUOTE] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(141), - [sym_raw_string] = ACTIONS(143), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(145), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(147), - [anon_sym_BQUOTE] = ACTIONS(149), - [anon_sym_LT_LPAREN] = ACTIONS(151), - [anon_sym_GT_LPAREN] = ACTIONS(151), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(153), - [sym_test_operator] = ACTIONS(155), + [sym_subshell] = STATE(98), + [sym_test_command] = STATE(98), + [sym_command] = STATE(98), + [sym_command_name] = STATE(28), + [sym_variable_assignment] = STATE(33), + [sym_subscript] = STATE(99), + [sym_file_redirect] = STATE(33), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(20), + [sym_simple_expansion] = STATE(20), + [sym_string_expansion] = STATE(20), + [sym_expansion] = STATE(20), + [sym_command_substitution] = STATE(20), + [sym_process_substitution] = STATE(20), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(161), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(27), + [anon_sym_LBRACK_LBRACK] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(39), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(45), }, [12] = { - [sym__expression] = STATE(107), - [sym_binary_expression] = STATE(107), - [sym_unary_expression] = STATE(107), - [sym_parenthesized_expression] = STATE(107), - [sym_concatenation] = STATE(107), - [sym_string] = STATE(102), - [sym_simple_expansion] = STATE(102), - [sym_string_expansion] = STATE(102), - [sym_expansion] = STATE(102), - [sym_command_substitution] = STATE(102), - [sym_process_substitution] = STATE(102), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_BANG] = ACTIONS(159), - [sym__special_characters] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(163), - [anon_sym_DOLLAR] = ACTIONS(165), - [sym_raw_string] = ACTIONS(167), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(169), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(171), - [anon_sym_BQUOTE] = ACTIONS(173), - [anon_sym_LT_LPAREN] = ACTIONS(175), - [anon_sym_GT_LPAREN] = ACTIONS(175), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(177), - [sym_test_operator] = ACTIONS(179), + [sym__expression] = STATE(110), + [sym_binary_expression] = STATE(110), + [sym_unary_expression] = STATE(110), + [sym_postfix_expression] = STATE(110), + [sym_parenthesized_expression] = STATE(110), + [sym_concatenation] = STATE(110), + [sym_string] = STATE(105), + [sym_simple_expansion] = STATE(105), + [sym_string_expansion] = STATE(105), + [sym_expansion] = STATE(105), + [sym_command_substitution] = STATE(105), + [sym_process_substitution] = STATE(105), + [anon_sym_LPAREN] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(165), + [sym__special_characters] = ACTIONS(167), + [anon_sym_DQUOTE] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(171), + [sym_raw_string] = ACTIONS(173), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(175), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(177), + [anon_sym_BQUOTE] = ACTIONS(179), + [anon_sym_LT_LPAREN] = ACTIONS(181), + [anon_sym_GT_LPAREN] = ACTIONS(181), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(183), + [sym_test_operator] = ACTIONS(185), }, [13] = { - [sym_variable_assignment] = STATE(118), - [sym_subscript] = STATE(117), - [sym_concatenation] = STATE(118), - [sym_string] = STATE(112), - [sym_simple_expansion] = STATE(112), - [sym_string_expansion] = STATE(112), - [sym_expansion] = STATE(112), - [sym_command_substitution] = STATE(112), - [sym_process_substitution] = STATE(112), - [aux_sym_declaration_command_repeat1] = STATE(118), - [sym_variable_name] = ACTIONS(181), - [ts_builtin_sym_end] = ACTIONS(183), - [anon_sym_SEMI] = ACTIONS(185), - [anon_sym_PIPE] = ACTIONS(185), - [anon_sym_SEMI_SEMI] = ACTIONS(183), - [anon_sym_PIPE_AMP] = ACTIONS(183), - [anon_sym_AMP_AMP] = ACTIONS(183), - [anon_sym_PIPE_PIPE] = ACTIONS(183), - [sym__special_characters] = ACTIONS(187), - [anon_sym_DQUOTE] = ACTIONS(189), - [anon_sym_DOLLAR] = ACTIONS(191), - [sym_raw_string] = ACTIONS(193), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(195), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(197), - [anon_sym_BQUOTE] = ACTIONS(199), - [anon_sym_LT_LPAREN] = ACTIONS(201), - [anon_sym_GT_LPAREN] = ACTIONS(201), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(203), - [sym_word] = ACTIONS(205), - [anon_sym_LF] = ACTIONS(183), - [anon_sym_AMP] = ACTIONS(185), + [sym__expression] = STATE(114), + [sym_binary_expression] = STATE(114), + [sym_unary_expression] = STATE(114), + [sym_postfix_expression] = STATE(114), + [sym_parenthesized_expression] = STATE(114), + [sym_concatenation] = STATE(114), + [sym_string] = STATE(113), + [sym_simple_expansion] = STATE(113), + [sym_string_expansion] = STATE(113), + [sym_expansion] = STATE(113), + [sym_command_substitution] = STATE(113), + [sym_process_substitution] = STATE(113), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(187), + [sym__special_characters] = ACTIONS(189), + [anon_sym_DQUOTE] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(79), + [sym_raw_string] = ACTIONS(191), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(83), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(85), + [anon_sym_BQUOTE] = ACTIONS(87), + [anon_sym_LT_LPAREN] = ACTIONS(89), + [anon_sym_GT_LPAREN] = ACTIONS(89), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(193), + [sym_test_operator] = ACTIONS(195), }, [14] = { - [sym_concatenation] = STATE(127), - [sym_string] = STATE(122), - [sym_simple_expansion] = STATE(122), - [sym_string_expansion] = STATE(122), - [sym_expansion] = STATE(122), - [sym_command_substitution] = STATE(122), - [sym_process_substitution] = STATE(122), - [aux_sym_unset_command_repeat1] = STATE(127), - [ts_builtin_sym_end] = ACTIONS(207), - [anon_sym_SEMI] = ACTIONS(209), - [anon_sym_PIPE] = ACTIONS(209), - [anon_sym_SEMI_SEMI] = ACTIONS(207), - [anon_sym_PIPE_AMP] = ACTIONS(207), - [anon_sym_AMP_AMP] = ACTIONS(207), - [anon_sym_PIPE_PIPE] = ACTIONS(207), - [sym__special_characters] = ACTIONS(211), - [anon_sym_DQUOTE] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(215), - [sym_raw_string] = ACTIONS(217), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(219), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(221), - [anon_sym_BQUOTE] = ACTIONS(223), - [anon_sym_LT_LPAREN] = ACTIONS(225), - [anon_sym_GT_LPAREN] = ACTIONS(225), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(227), - [sym_word] = ACTIONS(229), - [anon_sym_LF] = ACTIONS(207), - [anon_sym_AMP] = ACTIONS(209), + [sym_variable_assignment] = STATE(125), + [sym_subscript] = STATE(124), + [sym_concatenation] = STATE(125), + [sym_string] = STATE(119), + [sym_simple_expansion] = STATE(119), + [sym_string_expansion] = STATE(119), + [sym_expansion] = STATE(119), + [sym_command_substitution] = STATE(119), + [sym_process_substitution] = STATE(119), + [aux_sym_declaration_command_repeat1] = STATE(125), + [sym_variable_name] = ACTIONS(197), + [ts_builtin_sym_end] = ACTIONS(199), + [anon_sym_SEMI] = ACTIONS(201), + [anon_sym_PIPE] = ACTIONS(201), + [anon_sym_SEMI_SEMI] = ACTIONS(199), + [anon_sym_PIPE_AMP] = ACTIONS(199), + [anon_sym_AMP_AMP] = ACTIONS(199), + [anon_sym_PIPE_PIPE] = ACTIONS(199), + [sym__special_characters] = ACTIONS(203), + [anon_sym_DQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR] = ACTIONS(207), + [sym_raw_string] = ACTIONS(209), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_LT_LPAREN] = ACTIONS(217), + [anon_sym_GT_LPAREN] = ACTIONS(217), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(219), + [sym_word] = ACTIONS(221), + [anon_sym_LF] = ACTIONS(199), + [anon_sym_AMP] = ACTIONS(201), }, [15] = { - [sym_concatenation] = STATE(136), - [sym_string] = STATE(131), - [sym_simple_expansion] = STATE(131), - [sym_string_expansion] = STATE(131), - [sym_expansion] = STATE(131), - [sym_command_substitution] = STATE(131), - [sym_process_substitution] = STATE(131), - [sym__special_characters] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [anon_sym_DOLLAR] = ACTIONS(235), - [sym_raw_string] = ACTIONS(237), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(239), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(241), - [anon_sym_BQUOTE] = ACTIONS(243), - [anon_sym_LT_LPAREN] = ACTIONS(245), - [anon_sym_GT_LPAREN] = ACTIONS(245), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(237), + [sym_concatenation] = STATE(134), + [sym_string] = STATE(129), + [sym_simple_expansion] = STATE(129), + [sym_string_expansion] = STATE(129), + [sym_expansion] = STATE(129), + [sym_command_substitution] = STATE(129), + [sym_process_substitution] = STATE(129), + [aux_sym_unset_command_repeat1] = STATE(134), + [ts_builtin_sym_end] = ACTIONS(223), + [anon_sym_SEMI] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(225), + [anon_sym_SEMI_SEMI] = ACTIONS(223), + [anon_sym_PIPE_AMP] = ACTIONS(223), + [anon_sym_AMP_AMP] = ACTIONS(223), + [anon_sym_PIPE_PIPE] = ACTIONS(223), + [sym__special_characters] = ACTIONS(227), + [anon_sym_DQUOTE] = ACTIONS(229), + [anon_sym_DOLLAR] = ACTIONS(231), + [sym_raw_string] = ACTIONS(233), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), + [anon_sym_BQUOTE] = ACTIONS(239), + [anon_sym_LT_LPAREN] = ACTIONS(241), + [anon_sym_GT_LPAREN] = ACTIONS(241), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(243), + [sym_word] = ACTIONS(245), + [anon_sym_LF] = ACTIONS(223), + [anon_sym_AMP] = ACTIONS(225), }, [16] = { - [aux_sym_concatenation_repeat1] = STATE(138), - [sym__simple_heredoc_body] = ACTIONS(247), - [sym__heredoc_body_beginning] = ACTIONS(247), - [sym_file_descriptor] = ACTIONS(247), - [sym__concat] = ACTIONS(249), - [ts_builtin_sym_end] = ACTIONS(247), - [anon_sym_SEMI] = ACTIONS(251), - [anon_sym_PIPE] = ACTIONS(251), - [anon_sym_SEMI_SEMI] = ACTIONS(247), - [anon_sym_PIPE_AMP] = ACTIONS(247), - [anon_sym_AMP_AMP] = ACTIONS(247), - [anon_sym_PIPE_PIPE] = ACTIONS(247), - [anon_sym_EQ_TILDE] = ACTIONS(251), - [anon_sym_EQ_EQ] = ACTIONS(251), - [anon_sym_LT] = ACTIONS(251), - [anon_sym_GT] = ACTIONS(251), - [anon_sym_GT_GT] = ACTIONS(247), - [anon_sym_AMP_GT] = ACTIONS(251), - [anon_sym_AMP_GT_GT] = ACTIONS(247), - [anon_sym_LT_AMP] = ACTIONS(247), - [anon_sym_GT_AMP] = ACTIONS(247), - [anon_sym_LT_LT] = ACTIONS(251), - [anon_sym_LT_LT_DASH] = ACTIONS(247), - [anon_sym_LT_LT_LT] = ACTIONS(247), + [sym_concatenation] = STATE(143), + [sym_string] = STATE(138), + [sym_simple_expansion] = STATE(138), + [sym_string_expansion] = STATE(138), + [sym_expansion] = STATE(138), + [sym_command_substitution] = STATE(138), + [sym_process_substitution] = STATE(138), [sym__special_characters] = ACTIONS(247), - [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_DQUOTE] = ACTIONS(249), [anon_sym_DOLLAR] = ACTIONS(251), - [sym_raw_string] = ACTIONS(247), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(247), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(247), - [anon_sym_BQUOTE] = ACTIONS(247), - [anon_sym_LT_LPAREN] = ACTIONS(247), - [anon_sym_GT_LPAREN] = ACTIONS(247), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(251), - [anon_sym_LF] = ACTIONS(247), - [anon_sym_AMP] = ACTIONS(251), + [sym_raw_string] = ACTIONS(253), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(255), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(257), + [anon_sym_BQUOTE] = ACTIONS(259), + [anon_sym_LT_LPAREN] = ACTIONS(261), + [anon_sym_GT_LPAREN] = ACTIONS(261), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(253), }, [17] = { - [sym_simple_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [sym_command_substitution] = STATE(141), - [aux_sym_string_repeat1] = STATE(145), - [anon_sym_DQUOTE] = ACTIONS(253), - [anon_sym_DOLLAR] = ACTIONS(255), - [sym__string_content] = ACTIONS(257), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(261), + [aux_sym_concatenation_repeat1] = STATE(145), + [sym__simple_heredoc_body] = ACTIONS(263), + [sym__heredoc_body_beginning] = ACTIONS(263), + [sym_file_descriptor] = ACTIONS(263), + [sym__concat] = ACTIONS(265), + [ts_builtin_sym_end] = ACTIONS(263), + [anon_sym_SEMI] = ACTIONS(267), + [anon_sym_PIPE] = ACTIONS(267), + [anon_sym_SEMI_SEMI] = ACTIONS(263), + [anon_sym_PIPE_AMP] = ACTIONS(263), + [anon_sym_AMP_AMP] = ACTIONS(263), + [anon_sym_PIPE_PIPE] = ACTIONS(263), + [anon_sym_EQ_TILDE] = ACTIONS(267), + [anon_sym_EQ_EQ] = ACTIONS(267), + [anon_sym_LT] = ACTIONS(267), + [anon_sym_GT] = ACTIONS(267), + [anon_sym_GT_GT] = ACTIONS(263), + [anon_sym_AMP_GT] = ACTIONS(267), + [anon_sym_AMP_GT_GT] = ACTIONS(263), + [anon_sym_LT_AMP] = ACTIONS(263), + [anon_sym_GT_AMP] = ACTIONS(263), + [anon_sym_LT_LT] = ACTIONS(267), + [anon_sym_LT_LT_DASH] = ACTIONS(263), + [anon_sym_LT_LT_LT] = ACTIONS(263), + [sym__special_characters] = ACTIONS(263), + [anon_sym_DQUOTE] = ACTIONS(263), + [anon_sym_DOLLAR] = ACTIONS(267), + [sym_raw_string] = ACTIONS(263), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(263), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(263), [anon_sym_BQUOTE] = ACTIONS(263), - [sym_comment] = ACTIONS(265), + [anon_sym_LT_LPAREN] = ACTIONS(263), + [anon_sym_GT_LPAREN] = ACTIONS(263), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(267), + [anon_sym_LF] = ACTIONS(263), + [anon_sym_AMP] = ACTIONS(267), }, [18] = { - [sym_string] = STATE(147), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(267), - [sym_raw_string] = ACTIONS(269), - [anon_sym_POUND] = ACTIONS(267), - [anon_sym_DASH] = ACTIONS(267), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(273), - [anon_sym_AT] = ACTIONS(273), - [anon_sym_QMARK] = ACTIONS(273), - [anon_sym_0] = ACTIONS(271), - [anon_sym__] = ACTIONS(271), + [sym_simple_expansion] = STATE(148), + [sym_expansion] = STATE(148), + [sym_command_substitution] = STATE(148), + [aux_sym_string_repeat1] = STATE(152), + [anon_sym_DQUOTE] = ACTIONS(269), + [anon_sym_DOLLAR] = ACTIONS(271), + [sym__string_content] = ACTIONS(273), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(277), + [anon_sym_BQUOTE] = ACTIONS(279), + [sym_comment] = ACTIONS(281), }, [19] = { - [aux_sym_concatenation_repeat1] = STATE(138), - [sym__simple_heredoc_body] = ACTIONS(275), - [sym__heredoc_body_beginning] = ACTIONS(275), - [sym_file_descriptor] = ACTIONS(275), - [sym__concat] = ACTIONS(249), - [ts_builtin_sym_end] = ACTIONS(275), - [anon_sym_SEMI] = ACTIONS(277), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_SEMI_SEMI] = ACTIONS(275), - [anon_sym_PIPE_AMP] = ACTIONS(275), - [anon_sym_AMP_AMP] = ACTIONS(275), - [anon_sym_PIPE_PIPE] = ACTIONS(275), - [anon_sym_EQ_TILDE] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_LT] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(277), - [anon_sym_GT_GT] = ACTIONS(275), - [anon_sym_AMP_GT] = ACTIONS(277), - [anon_sym_AMP_GT_GT] = ACTIONS(275), - [anon_sym_LT_AMP] = ACTIONS(275), - [anon_sym_GT_AMP] = ACTIONS(275), - [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_LT_LT_DASH] = ACTIONS(275), - [anon_sym_LT_LT_LT] = ACTIONS(275), - [sym__special_characters] = ACTIONS(275), - [anon_sym_DQUOTE] = ACTIONS(275), - [anon_sym_DOLLAR] = ACTIONS(277), - [sym_raw_string] = ACTIONS(275), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), - [anon_sym_BQUOTE] = ACTIONS(275), - [anon_sym_LT_LPAREN] = ACTIONS(275), - [anon_sym_GT_LPAREN] = ACTIONS(275), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(277), - [anon_sym_LF] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), + [sym_string] = STATE(154), + [anon_sym_DASH] = ACTIONS(283), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(283), + [sym_raw_string] = ACTIONS(285), + [anon_sym_POUND] = ACTIONS(283), + [sym_comment] = ACTIONS(281), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_0] = ACTIONS(287), + [anon_sym__] = ACTIONS(287), }, [20] = { - [sym_subscript] = STATE(152), - [sym_variable_name] = ACTIONS(279), - [anon_sym_BANG] = ACTIONS(281), - [anon_sym_DOLLAR] = ACTIONS(283), - [anon_sym_POUND] = ACTIONS(281), - [anon_sym_DASH] = ACTIONS(283), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(285), - [anon_sym_STAR] = ACTIONS(287), - [anon_sym_AT] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(287), - [anon_sym_0] = ACTIONS(285), - [anon_sym__] = ACTIONS(285), + [aux_sym_concatenation_repeat1] = STATE(145), + [sym__simple_heredoc_body] = ACTIONS(291), + [sym__heredoc_body_beginning] = ACTIONS(291), + [sym_file_descriptor] = ACTIONS(291), + [sym__concat] = ACTIONS(265), + [ts_builtin_sym_end] = ACTIONS(291), + [anon_sym_SEMI] = ACTIONS(293), + [anon_sym_PIPE] = ACTIONS(293), + [anon_sym_SEMI_SEMI] = ACTIONS(291), + [anon_sym_PIPE_AMP] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(291), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_EQ_TILDE] = ACTIONS(293), + [anon_sym_EQ_EQ] = ACTIONS(293), + [anon_sym_LT] = ACTIONS(293), + [anon_sym_GT] = ACTIONS(293), + [anon_sym_GT_GT] = ACTIONS(291), + [anon_sym_AMP_GT] = ACTIONS(293), + [anon_sym_AMP_GT_GT] = ACTIONS(291), + [anon_sym_LT_AMP] = ACTIONS(291), + [anon_sym_GT_AMP] = ACTIONS(291), + [anon_sym_LT_LT] = ACTIONS(293), + [anon_sym_LT_LT_DASH] = ACTIONS(291), + [anon_sym_LT_LT_LT] = ACTIONS(291), + [sym__special_characters] = ACTIONS(291), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_DOLLAR] = ACTIONS(293), + [sym_raw_string] = ACTIONS(291), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(291), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(291), + [anon_sym_BQUOTE] = ACTIONS(291), + [anon_sym_LT_LPAREN] = ACTIONS(291), + [anon_sym_GT_LPAREN] = ACTIONS(291), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(293), + [anon_sym_LF] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(293), }, [21] = { - [sym__terminated_statement] = STATE(155), - [sym_for_statement] = STATE(153), - [sym_c_style_for_statement] = STATE(153), - [sym_while_statement] = STATE(153), - [sym_if_statement] = STATE(153), - [sym_case_statement] = STATE(153), - [sym_function_definition] = STATE(153), - [sym_subshell] = STATE(153), - [sym_pipeline] = STATE(153), - [sym_list] = STATE(153), - [sym_negated_command] = STATE(153), - [sym_test_command] = STATE(153), - [sym_declaration_command] = STATE(153), - [sym_unset_command] = STATE(153), - [sym_command] = STATE(153), - [sym_command_name] = STATE(78), - [sym_variable_assignment] = STATE(154), - [sym_subscript] = STATE(80), - [sym_file_redirect] = STATE(82), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(75), - [sym_simple_expansion] = STATE(75), - [sym_string_expansion] = STATE(75), - [sym_expansion] = STATE(75), - [sym_command_substitution] = STATE(75), - [sym_process_substitution] = STATE(75), - [aux_sym__statements_repeat1] = STATE(155), - [aux_sym_command_repeat1] = STATE(82), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(111), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(119), - [anon_sym_declare] = ACTIONS(121), - [anon_sym_typeset] = ACTIONS(121), - [anon_sym_export] = ACTIONS(121), - [anon_sym_readonly] = ACTIONS(121), - [anon_sym_local] = ACTIONS(121), - [anon_sym_unset] = ACTIONS(123), - [anon_sym_unsetenv] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), + [sym_subscript] = STATE(159), + [sym_variable_name] = ACTIONS(295), + [anon_sym_BANG] = ACTIONS(297), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_DOLLAR] = ACTIONS(299), + [anon_sym_POUND] = ACTIONS(297), + [sym_comment] = ACTIONS(281), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(301), + [anon_sym_STAR] = ACTIONS(303), + [anon_sym_AT] = ACTIONS(303), + [anon_sym_QMARK] = ACTIONS(303), + [anon_sym_0] = ACTIONS(301), + [anon_sym__] = ACTIONS(301), }, [22] = { - [sym__terminated_statement] = STATE(167), - [sym_for_statement] = STATE(164), - [sym_c_style_for_statement] = STATE(164), - [sym_while_statement] = STATE(164), - [sym_if_statement] = STATE(164), - [sym_case_statement] = STATE(164), - [sym_function_definition] = STATE(164), - [sym_subshell] = STATE(164), - [sym_pipeline] = STATE(164), - [sym_list] = STATE(164), - [sym_negated_command] = STATE(164), - [sym_test_command] = STATE(164), - [sym_declaration_command] = STATE(164), - [sym_unset_command] = STATE(164), - [sym_command] = STATE(164), - [sym_command_name] = STATE(165), - [sym_variable_assignment] = STATE(166), - [sym_subscript] = STATE(53), - [sym_file_redirect] = STATE(168), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(47), - [sym_simple_expansion] = STATE(47), - [sym_string_expansion] = STATE(47), - [sym_expansion] = STATE(47), - [sym_command_substitution] = STATE(47), - [sym_process_substitution] = STATE(47), - [aux_sym__statements_repeat1] = STATE(167), - [aux_sym_command_repeat1] = STATE(168), + [sym__terminated_statement] = STATE(162), + [sym_for_statement] = STATE(160), + [sym_c_style_for_statement] = STATE(160), + [sym_while_statement] = STATE(160), + [sym_if_statement] = STATE(160), + [sym_case_statement] = STATE(160), + [sym_function_definition] = STATE(160), + [sym_subshell] = STATE(160), + [sym_pipeline] = STATE(160), + [sym_list] = STATE(160), + [sym_negated_command] = STATE(160), + [sym_test_command] = STATE(160), + [sym_declaration_command] = STATE(160), + [sym_unset_command] = STATE(160), + [sym_command] = STATE(160), + [sym_command_name] = STATE(92), + [sym_variable_assignment] = STATE(161), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(96), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), + [aux_sym__statements_repeat1] = STATE(162), + [aux_sym_command_repeat1] = STATE(96), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(69), + [sym_variable_name] = ACTIONS(137), [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(289), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(291), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(293), - [anon_sym_LBRACK] = ACTIONS(295), - [anon_sym_LBRACK_LBRACK] = ACTIONS(297), - [anon_sym_declare] = ACTIONS(299), - [anon_sym_typeset] = ACTIONS(299), - [anon_sym_export] = ACTIONS(299), - [anon_sym_readonly] = ACTIONS(299), - [anon_sym_local] = ACTIONS(299), - [anon_sym_unset] = ACTIONS(301), - [anon_sym_unsetenv] = ACTIONS(301), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(87), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(303), + [anon_sym_LPAREN_LPAREN] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(149), + [anon_sym_declare] = ACTIONS(151), + [anon_sym_typeset] = ACTIONS(151), + [anon_sym_export] = ACTIONS(151), + [anon_sym_readonly] = ACTIONS(151), + [anon_sym_local] = ACTIONS(151), + [anon_sym_unset] = ACTIONS(153), + [anon_sym_unsetenv] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(159), }, [23] = { - [sym__terminated_statement] = STATE(171), - [sym_for_statement] = STATE(169), - [sym_c_style_for_statement] = STATE(169), - [sym_while_statement] = STATE(169), - [sym_if_statement] = STATE(169), - [sym_case_statement] = STATE(169), - [sym_function_definition] = STATE(169), - [sym_subshell] = STATE(169), - [sym_pipeline] = STATE(169), - [sym_list] = STATE(169), - [sym_negated_command] = STATE(169), - [sym_test_command] = STATE(169), - [sym_declaration_command] = STATE(169), - [sym_unset_command] = STATE(169), - [sym_command] = STATE(169), - [sym_command_name] = STATE(78), - [sym_variable_assignment] = STATE(170), - [sym_subscript] = STATE(80), - [sym_file_redirect] = STATE(82), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(75), - [sym_simple_expansion] = STATE(75), - [sym_string_expansion] = STATE(75), - [sym_expansion] = STATE(75), - [sym_command_substitution] = STATE(75), - [sym_process_substitution] = STATE(75), - [aux_sym__statements_repeat1] = STATE(171), - [aux_sym_command_repeat1] = STATE(82), + [sym__terminated_statement] = STATE(175), + [sym_for_statement] = STATE(172), + [sym_c_style_for_statement] = STATE(172), + [sym_while_statement] = STATE(172), + [sym_if_statement] = STATE(172), + [sym_case_statement] = STATE(172), + [sym_function_definition] = STATE(172), + [sym_subshell] = STATE(172), + [sym_pipeline] = STATE(172), + [sym_list] = STATE(172), + [sym_negated_command] = STATE(172), + [sym_test_command] = STATE(172), + [sym_declaration_command] = STATE(172), + [sym_unset_command] = STATE(172), + [sym_command] = STATE(172), + [sym_command_name] = STATE(173), + [sym_variable_assignment] = STATE(174), + [sym_subscript] = STATE(66), + [sym_file_redirect] = STATE(176), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(60), + [sym_simple_expansion] = STATE(60), + [sym_string_expansion] = STATE(60), + [sym_expansion] = STATE(60), + [sym_command_substitution] = STATE(60), + [sym_process_substitution] = STATE(60), + [aux_sym__statements_repeat1] = STATE(175), + [aux_sym_command_repeat1] = STATE(176), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), + [sym_variable_name] = ACTIONS(95), [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(111), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(119), - [anon_sym_declare] = ACTIONS(121), - [anon_sym_typeset] = ACTIONS(121), - [anon_sym_export] = ACTIONS(121), - [anon_sym_readonly] = ACTIONS(121), - [anon_sym_local] = ACTIONS(121), - [anon_sym_unset] = ACTIONS(123), - [anon_sym_unsetenv] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), + [anon_sym_LPAREN_LPAREN] = ACTIONS(305), + [anon_sym_while] = ACTIONS(307), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(311), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(315), + [anon_sym_declare] = ACTIONS(317), + [anon_sym_typeset] = ACTIONS(317), + [anon_sym_export] = ACTIONS(317), + [anon_sym_readonly] = ACTIONS(317), + [anon_sym_local] = ACTIONS(317), + [anon_sym_unset] = ACTIONS(319), + [anon_sym_unsetenv] = ACTIONS(319), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(115), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(321), }, [24] = { - [aux_sym_concatenation_repeat1] = STATE(138), - [sym__simple_heredoc_body] = ACTIONS(275), - [sym__heredoc_body_beginning] = ACTIONS(275), - [sym_file_descriptor] = ACTIONS(275), - [sym__concat] = ACTIONS(249), - [ts_builtin_sym_end] = ACTIONS(275), - [anon_sym_SEMI] = ACTIONS(277), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_SEMI_SEMI] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(305), - [anon_sym_PIPE_AMP] = ACTIONS(275), - [anon_sym_AMP_AMP] = ACTIONS(275), - [anon_sym_PIPE_PIPE] = ACTIONS(275), - [anon_sym_EQ_TILDE] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_LT] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(277), - [anon_sym_GT_GT] = ACTIONS(275), - [anon_sym_AMP_GT] = ACTIONS(277), - [anon_sym_AMP_GT_GT] = ACTIONS(275), - [anon_sym_LT_AMP] = ACTIONS(275), - [anon_sym_GT_AMP] = ACTIONS(275), - [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_LT_LT_DASH] = ACTIONS(275), - [anon_sym_LT_LT_LT] = ACTIONS(275), - [sym__special_characters] = ACTIONS(275), - [anon_sym_DQUOTE] = ACTIONS(275), - [anon_sym_DOLLAR] = ACTIONS(277), - [sym_raw_string] = ACTIONS(275), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), - [anon_sym_BQUOTE] = ACTIONS(275), - [anon_sym_LT_LPAREN] = ACTIONS(275), - [anon_sym_GT_LPAREN] = ACTIONS(275), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(277), - [anon_sym_LF] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), + [sym__terminated_statement] = STATE(179), + [sym_for_statement] = STATE(177), + [sym_c_style_for_statement] = STATE(177), + [sym_while_statement] = STATE(177), + [sym_if_statement] = STATE(177), + [sym_case_statement] = STATE(177), + [sym_function_definition] = STATE(177), + [sym_subshell] = STATE(177), + [sym_pipeline] = STATE(177), + [sym_list] = STATE(177), + [sym_negated_command] = STATE(177), + [sym_test_command] = STATE(177), + [sym_declaration_command] = STATE(177), + [sym_unset_command] = STATE(177), + [sym_command] = STATE(177), + [sym_command_name] = STATE(92), + [sym_variable_assignment] = STATE(178), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(96), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), + [aux_sym__statements_repeat1] = STATE(179), + [aux_sym_command_repeat1] = STATE(96), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(137), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(149), + [anon_sym_declare] = ACTIONS(151), + [anon_sym_typeset] = ACTIONS(151), + [anon_sym_export] = ACTIONS(151), + [anon_sym_readonly] = ACTIONS(151), + [anon_sym_local] = ACTIONS(151), + [anon_sym_unset] = ACTIONS(153), + [anon_sym_unsetenv] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(159), }, [25] = { - [ts_builtin_sym_end] = ACTIONS(307), - [sym_comment] = ACTIONS(53), + [aux_sym_concatenation_repeat1] = STATE(145), + [sym__simple_heredoc_body] = ACTIONS(291), + [sym__heredoc_body_beginning] = ACTIONS(291), + [sym_file_descriptor] = ACTIONS(291), + [sym__concat] = ACTIONS(265), + [ts_builtin_sym_end] = ACTIONS(291), + [anon_sym_SEMI] = ACTIONS(293), + [anon_sym_PIPE] = ACTIONS(293), + [anon_sym_SEMI_SEMI] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(323), + [anon_sym_PIPE_AMP] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(291), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_EQ_TILDE] = ACTIONS(293), + [anon_sym_EQ_EQ] = ACTIONS(293), + [anon_sym_LT] = ACTIONS(293), + [anon_sym_GT] = ACTIONS(293), + [anon_sym_GT_GT] = ACTIONS(291), + [anon_sym_AMP_GT] = ACTIONS(293), + [anon_sym_AMP_GT_GT] = ACTIONS(291), + [anon_sym_LT_AMP] = ACTIONS(291), + [anon_sym_GT_AMP] = ACTIONS(291), + [anon_sym_LT_LT] = ACTIONS(293), + [anon_sym_LT_LT_DASH] = ACTIONS(291), + [anon_sym_LT_LT_LT] = ACTIONS(291), + [sym__special_characters] = ACTIONS(291), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_DOLLAR] = ACTIONS(293), + [sym_raw_string] = ACTIONS(291), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(291), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(291), + [anon_sym_BQUOTE] = ACTIONS(291), + [anon_sym_LT_LPAREN] = ACTIONS(291), + [anon_sym_GT_LPAREN] = ACTIONS(291), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(293), + [anon_sym_LF] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(293), }, [26] = { - [ts_builtin_sym_end] = ACTIONS(309), - [anon_sym_SEMI] = ACTIONS(311), - [anon_sym_PIPE] = ACTIONS(313), - [anon_sym_SEMI_SEMI] = ACTIONS(315), - [anon_sym_PIPE_AMP] = ACTIONS(317), - [anon_sym_AMP_AMP] = ACTIONS(319), - [anon_sym_PIPE_PIPE] = ACTIONS(319), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(315), - [anon_sym_AMP] = ACTIONS(311), + [ts_builtin_sym_end] = ACTIONS(325), + [sym_comment] = ACTIONS(55), }, [27] = { - [sym_file_redirect] = STATE(186), - [sym_heredoc_redirect] = STATE(186), - [sym_heredoc_body] = STATE(185), - [sym_herestring_redirect] = STATE(186), - [sym_concatenation] = STATE(187), - [sym_string] = STATE(184), - [sym_simple_expansion] = STATE(184), - [sym_string_expansion] = STATE(184), - [sym_expansion] = STATE(184), - [sym_command_substitution] = STATE(184), - [sym_process_substitution] = STATE(184), - [aux_sym_while_statement_repeat1] = STATE(186), - [aux_sym_command_repeat2] = STATE(187), - [sym__simple_heredoc_body] = ACTIONS(321), - [sym__heredoc_body_beginning] = ACTIONS(323), - [sym_file_descriptor] = ACTIONS(325), [ts_builtin_sym_end] = ACTIONS(327), [anon_sym_SEMI] = ACTIONS(329), - [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_SEMI_SEMI] = ACTIONS(327), - [anon_sym_PIPE_AMP] = ACTIONS(327), - [anon_sym_AMP_AMP] = ACTIONS(327), - [anon_sym_PIPE_PIPE] = ACTIONS(327), - [anon_sym_EQ_TILDE] = ACTIONS(331), - [anon_sym_EQ_EQ] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), - [anon_sym_AMP_GT] = ACTIONS(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(335), - [anon_sym_GT_AMP] = ACTIONS(335), - [anon_sym_LT_LT] = ACTIONS(337), - [anon_sym_LT_LT_DASH] = ACTIONS(339), - [anon_sym_LT_LT_LT] = ACTIONS(341), - [sym__special_characters] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(345), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(347), - [anon_sym_LF] = ACTIONS(327), + [anon_sym_PIPE] = ACTIONS(331), + [anon_sym_SEMI_SEMI] = ACTIONS(333), + [anon_sym_PIPE_AMP] = ACTIONS(335), + [anon_sym_AMP_AMP] = ACTIONS(337), + [anon_sym_PIPE_PIPE] = ACTIONS(337), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(333), [anon_sym_AMP] = ACTIONS(329), }, [28] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [ts_builtin_sym_end] = ACTIONS(309), - [anon_sym_SEMI] = ACTIONS(311), - [anon_sym_PIPE] = ACTIONS(313), - [anon_sym_SEMI_SEMI] = ACTIONS(315), - [anon_sym_PIPE_AMP] = ACTIONS(317), - [anon_sym_AMP_AMP] = ACTIONS(319), - [anon_sym_PIPE_PIPE] = ACTIONS(319), + [sym_file_redirect] = STATE(194), + [sym_heredoc_redirect] = STATE(194), + [sym_heredoc_body] = STATE(193), + [sym_herestring_redirect] = STATE(194), + [sym_concatenation] = STATE(195), + [sym_string] = STATE(192), + [sym_simple_expansion] = STATE(192), + [sym_string_expansion] = STATE(192), + [sym_expansion] = STATE(192), + [sym_command_substitution] = STATE(192), + [sym_process_substitution] = STATE(192), + [aux_sym_while_statement_repeat1] = STATE(194), + [aux_sym_command_repeat2] = STATE(195), + [sym__simple_heredoc_body] = ACTIONS(339), + [sym__heredoc_body_beginning] = ACTIONS(341), + [sym_file_descriptor] = ACTIONS(343), + [ts_builtin_sym_end] = ACTIONS(345), + [anon_sym_SEMI] = ACTIONS(347), + [anon_sym_PIPE] = ACTIONS(347), + [anon_sym_SEMI_SEMI] = ACTIONS(345), + [anon_sym_PIPE_AMP] = ACTIONS(345), + [anon_sym_AMP_AMP] = ACTIONS(345), + [anon_sym_PIPE_PIPE] = ACTIONS(345), + [anon_sym_EQ_TILDE] = ACTIONS(349), + [anon_sym_EQ_EQ] = ACTIONS(349), [anon_sym_LT] = ACTIONS(351), [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), + [anon_sym_GT_GT] = ACTIONS(353), [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(315), - [anon_sym_AMP] = ACTIONS(311), + [anon_sym_AMP_GT_GT] = ACTIONS(353), + [anon_sym_LT_AMP] = ACTIONS(353), + [anon_sym_GT_AMP] = ACTIONS(353), + [anon_sym_LT_LT] = ACTIONS(355), + [anon_sym_LT_LT_DASH] = ACTIONS(357), + [anon_sym_LT_LT_LT] = ACTIONS(359), + [sym__special_characters] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(363), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(365), + [anon_sym_LF] = ACTIONS(345), + [anon_sym_AMP] = ACTIONS(347), }, [29] = { - [anon_sym_EQ] = ACTIONS(63), - [anon_sym_PLUS_EQ] = ACTIONS(63), - [sym_comment] = ACTIONS(53), + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [ts_builtin_sym_end] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(329), + [anon_sym_PIPE] = ACTIONS(331), + [anon_sym_SEMI_SEMI] = ACTIONS(333), + [anon_sym_PIPE_AMP] = ACTIONS(335), + [anon_sym_AMP_AMP] = ACTIONS(337), + [anon_sym_PIPE_PIPE] = ACTIONS(337), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(333), + [anon_sym_AMP] = ACTIONS(329), }, [30] = { - [sym__simple_heredoc_body] = ACTIONS(275), - [sym__heredoc_body_beginning] = ACTIONS(275), - [sym_file_descriptor] = ACTIONS(275), - [ts_builtin_sym_end] = ACTIONS(275), - [anon_sym_SEMI] = ACTIONS(277), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_RPAREN] = ACTIONS(275), - [anon_sym_SEMI_SEMI] = ACTIONS(275), - [anon_sym_PIPE_AMP] = ACTIONS(275), - [anon_sym_AMP_AMP] = ACTIONS(275), - [anon_sym_PIPE_PIPE] = ACTIONS(275), - [anon_sym_EQ_TILDE] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_LT] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(277), - [anon_sym_GT_GT] = ACTIONS(275), - [anon_sym_AMP_GT] = ACTIONS(277), - [anon_sym_AMP_GT_GT] = ACTIONS(275), - [anon_sym_LT_AMP] = ACTIONS(275), - [anon_sym_GT_AMP] = ACTIONS(275), - [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_LT_LT_DASH] = ACTIONS(275), - [anon_sym_LT_LT_LT] = ACTIONS(275), - [sym__special_characters] = ACTIONS(275), - [anon_sym_DQUOTE] = ACTIONS(275), - [anon_sym_DOLLAR] = ACTIONS(277), - [sym_raw_string] = ACTIONS(275), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), - [anon_sym_BQUOTE] = ACTIONS(275), - [anon_sym_LT_LPAREN] = ACTIONS(275), - [anon_sym_GT_LPAREN] = ACTIONS(275), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(277), - [anon_sym_LF] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(65), + [anon_sym_PLUS_EQ] = ACTIONS(65), + [sym_comment] = ACTIONS(55), }, [31] = { - [sym__terminated_statement] = STATE(190), - [sym_for_statement] = STATE(188), - [sym_c_style_for_statement] = STATE(188), - [sym_while_statement] = STATE(188), - [sym_if_statement] = STATE(188), - [sym_case_statement] = STATE(188), - [sym_function_definition] = STATE(188), - [sym_subshell] = STATE(188), - [sym_pipeline] = STATE(188), - [sym_list] = STATE(188), - [sym_negated_command] = STATE(188), - [sym_test_command] = STATE(188), - [sym_declaration_command] = STATE(188), - [sym_unset_command] = STATE(188), - [sym_command] = STATE(188), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(189), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(32), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(19), - [sym_simple_expansion] = STATE(19), - [sym_string_expansion] = STATE(19), - [sym_expansion] = STATE(19), - [sym_command_substitution] = STATE(19), - [sym_process_substitution] = STATE(19), - [aux_sym__statements_repeat1] = STATE(190), - [aux_sym_command_repeat1] = STATE(32), + [sym__simple_heredoc_body] = ACTIONS(291), + [sym__heredoc_body_beginning] = ACTIONS(291), + [sym_file_descriptor] = ACTIONS(291), + [ts_builtin_sym_end] = ACTIONS(291), + [anon_sym_SEMI] = ACTIONS(293), + [anon_sym_PIPE] = ACTIONS(293), + [anon_sym_RPAREN] = ACTIONS(291), + [anon_sym_SEMI_SEMI] = ACTIONS(291), + [anon_sym_PIPE_AMP] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(291), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_EQ_TILDE] = ACTIONS(293), + [anon_sym_EQ_EQ] = ACTIONS(293), + [anon_sym_LT] = ACTIONS(293), + [anon_sym_GT] = ACTIONS(293), + [anon_sym_GT_GT] = ACTIONS(291), + [anon_sym_AMP_GT] = ACTIONS(293), + [anon_sym_AMP_GT_GT] = ACTIONS(291), + [anon_sym_LT_AMP] = ACTIONS(291), + [anon_sym_GT_AMP] = ACTIONS(291), + [anon_sym_LT_LT] = ACTIONS(293), + [anon_sym_LT_LT_DASH] = ACTIONS(291), + [anon_sym_LT_LT_LT] = ACTIONS(291), + [sym__special_characters] = ACTIONS(291), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_DOLLAR] = ACTIONS(293), + [sym_raw_string] = ACTIONS(291), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(291), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(291), + [anon_sym_BQUOTE] = ACTIONS(291), + [anon_sym_LT_LPAREN] = ACTIONS(291), + [anon_sym_GT_LPAREN] = ACTIONS(291), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(293), + [anon_sym_LF] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(293), + }, + [32] = { + [sym__terminated_statement] = STATE(198), + [sym_for_statement] = STATE(196), + [sym_c_style_for_statement] = STATE(196), + [sym_while_statement] = STATE(196), + [sym_if_statement] = STATE(196), + [sym_case_statement] = STATE(196), + [sym_function_definition] = STATE(196), + [sym_subshell] = STATE(196), + [sym_pipeline] = STATE(196), + [sym_list] = STATE(196), + [sym_negated_command] = STATE(196), + [sym_test_command] = STATE(196), + [sym_declaration_command] = STATE(196), + [sym_unset_command] = STATE(196), + [sym_command] = STATE(196), + [sym_command_name] = STATE(28), + [sym_variable_assignment] = STATE(197), + [sym_subscript] = STATE(30), + [sym_file_redirect] = STATE(33), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(20), + [sym_simple_expansion] = STATE(20), + [sym_string_expansion] = STATE(20), + [sym_expansion] = STATE(20), + [sym_command_substitution] = STATE(20), + [sym_process_substitution] = STATE(20), + [aux_sym__statements_repeat1] = STATE(198), + [aux_sym_command_repeat1] = STATE(33), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(13), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACK_LBRACK] = ACTIONS(27), - [anon_sym_declare] = ACTIONS(29), - [anon_sym_typeset] = ACTIONS(29), - [anon_sym_export] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(29), - [anon_sym_local] = ACTIONS(29), - [anon_sym_unset] = ACTIONS(31), - [anon_sym_unsetenv] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(37), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(43), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(55), - }, - [32] = { - [sym_command_name] = STATE(191), - [sym_variable_assignment] = STATE(192), - [sym_subscript] = STATE(85), - [sym_file_redirect] = STATE(192), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(19), - [sym_simple_expansion] = STATE(19), - [sym_string_expansion] = STATE(19), - [sym_expansion] = STATE(19), - [sym_command_substitution] = STATE(19), - [sym_process_substitution] = STATE(19), - [aux_sym_command_repeat1] = STATE(192), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(131), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(353), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(43), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(43), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_LBRACK] = ACTIONS(27), + [anon_sym_LBRACK_LBRACK] = ACTIONS(29), + [anon_sym_declare] = ACTIONS(31), + [anon_sym_typeset] = ACTIONS(31), + [anon_sym_export] = ACTIONS(31), + [anon_sym_readonly] = ACTIONS(31), + [anon_sym_local] = ACTIONS(31), + [anon_sym_unset] = ACTIONS(33), + [anon_sym_unsetenv] = ACTIONS(33), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(39), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(57), }, [33] = { - [sym_concatenation] = STATE(195), - [sym_string] = STATE(194), - [sym_simple_expansion] = STATE(194), - [sym_string_expansion] = STATE(194), - [sym_expansion] = STATE(194), - [sym_command_substitution] = STATE(194), - [sym_process_substitution] = STATE(194), - [sym__special_characters] = ACTIONS(355), - [anon_sym_DQUOTE] = ACTIONS(233), - [anon_sym_DOLLAR] = ACTIONS(235), - [sym_raw_string] = ACTIONS(357), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(239), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(241), - [anon_sym_BQUOTE] = ACTIONS(243), - [anon_sym_LT_LPAREN] = ACTIONS(245), - [anon_sym_GT_LPAREN] = ACTIONS(245), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(357), + [sym_command_name] = STATE(199), + [sym_variable_assignment] = STATE(200), + [sym_subscript] = STATE(99), + [sym_file_redirect] = STATE(200), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(20), + [sym_simple_expansion] = STATE(20), + [sym_string_expansion] = STATE(20), + [sym_expansion] = STATE(20), + [sym_command_substitution] = STATE(20), + [sym_process_substitution] = STATE(20), + [aux_sym_command_repeat1] = STATE(200), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(45), }, [34] = { - [sym_concatenation] = STATE(198), - [sym_string] = STATE(197), - [sym_simple_expansion] = STATE(197), - [sym_string_expansion] = STATE(197), - [sym_expansion] = STATE(197), - [sym_command_substitution] = STATE(197), - [sym_process_substitution] = STATE(197), - [sym__special_characters] = ACTIONS(359), - [anon_sym_DQUOTE] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(141), - [sym_raw_string] = ACTIONS(361), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(145), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(147), - [anon_sym_BQUOTE] = ACTIONS(149), - [anon_sym_LT_LPAREN] = ACTIONS(151), - [anon_sym_GT_LPAREN] = ACTIONS(151), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(361), + [sym_concatenation] = STATE(203), + [sym_string] = STATE(202), + [sym_simple_expansion] = STATE(202), + [sym_string_expansion] = STATE(202), + [sym_expansion] = STATE(202), + [sym_command_substitution] = STATE(202), + [sym_process_substitution] = STATE(202), + [sym__special_characters] = ACTIONS(373), + [anon_sym_DQUOTE] = ACTIONS(249), + [anon_sym_DOLLAR] = ACTIONS(251), + [sym_raw_string] = ACTIONS(375), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(255), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(257), + [anon_sym_BQUOTE] = ACTIONS(259), + [anon_sym_LT_LPAREN] = ACTIONS(261), + [anon_sym_GT_LPAREN] = ACTIONS(261), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(375), }, [35] = { - [sym_concatenation] = STATE(199), - [sym_string] = STATE(204), - [sym_array] = STATE(199), - [sym_simple_expansion] = STATE(204), - [sym_string_expansion] = STATE(204), - [sym_expansion] = STATE(204), - [sym_command_substitution] = STATE(204), - [sym_process_substitution] = STATE(204), - [sym__empty_value] = ACTIONS(363), - [anon_sym_LPAREN] = ACTIONS(365), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(373), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(375), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(377), - [anon_sym_BQUOTE] = ACTIONS(379), - [anon_sym_LT_LPAREN] = ACTIONS(381), - [anon_sym_GT_LPAREN] = ACTIONS(381), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(373), + [sym_concatenation] = STATE(206), + [sym_string] = STATE(205), + [sym_simple_expansion] = STATE(205), + [sym_string_expansion] = STATE(205), + [sym_expansion] = STATE(205), + [sym_command_substitution] = STATE(205), + [sym_process_substitution] = STATE(205), + [sym__special_characters] = ACTIONS(377), + [anon_sym_DQUOTE] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(171), + [sym_raw_string] = ACTIONS(379), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(175), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(177), + [anon_sym_BQUOTE] = ACTIONS(179), + [anon_sym_LT_LPAREN] = ACTIONS(181), + [anon_sym_GT_LPAREN] = ACTIONS(181), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(379), }, [36] = { - [sym__expression] = STATE(220), - [sym_binary_expression] = STATE(220), - [sym_unary_expression] = STATE(220), - [sym_parenthesized_expression] = STATE(220), - [sym_concatenation] = STATE(220), - [sym_string] = STATE(215), - [sym_simple_expansion] = STATE(215), - [sym_string_expansion] = STATE(215), - [sym_expansion] = STATE(215), - [sym_command_substitution] = STATE(215), - [sym_process_substitution] = STATE(215), - [anon_sym_SEMI] = ACTIONS(383), - [anon_sym_SEMI_SEMI] = ACTIONS(385), - [anon_sym_LPAREN] = ACTIONS(387), - [anon_sym_BANG] = ACTIONS(389), - [sym__special_characters] = ACTIONS(391), - [anon_sym_DQUOTE] = ACTIONS(393), - [anon_sym_DOLLAR] = ACTIONS(395), - [sym_raw_string] = ACTIONS(397), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(399), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(401), - [anon_sym_BQUOTE] = ACTIONS(403), - [anon_sym_LT_LPAREN] = ACTIONS(405), - [anon_sym_GT_LPAREN] = ACTIONS(405), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(407), - [sym_test_operator] = ACTIONS(409), - [anon_sym_LF] = ACTIONS(385), - [anon_sym_AMP] = ACTIONS(385), + [sym_concatenation] = STATE(207), + [sym_string] = STATE(212), + [sym_array] = STATE(207), + [sym_simple_expansion] = STATE(212), + [sym_string_expansion] = STATE(212), + [sym_expansion] = STATE(212), + [sym_command_substitution] = STATE(212), + [sym_process_substitution] = STATE(212), + [sym__empty_value] = ACTIONS(381), + [anon_sym_LPAREN] = ACTIONS(383), + [sym__special_characters] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(389), + [sym_raw_string] = ACTIONS(391), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(393), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(395), + [anon_sym_BQUOTE] = ACTIONS(397), + [anon_sym_LT_LPAREN] = ACTIONS(399), + [anon_sym_GT_LPAREN] = ACTIONS(399), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(391), }, [37] = { - [anon_sym_in] = ACTIONS(411), - [anon_sym_SEMI] = ACTIONS(413), - [anon_sym_SEMI_SEMI] = ACTIONS(415), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(415), - [anon_sym_AMP] = ACTIONS(415), + [sym__expression] = STATE(228), + [sym_binary_expression] = STATE(228), + [sym_unary_expression] = STATE(228), + [sym_postfix_expression] = STATE(228), + [sym_parenthesized_expression] = STATE(228), + [sym_concatenation] = STATE(228), + [sym_string] = STATE(223), + [sym_simple_expansion] = STATE(223), + [sym_string_expansion] = STATE(223), + [sym_expansion] = STATE(223), + [sym_command_substitution] = STATE(223), + [sym_process_substitution] = STATE(223), + [anon_sym_SEMI] = ACTIONS(401), + [anon_sym_SEMI_SEMI] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(405), + [anon_sym_BANG] = ACTIONS(407), + [sym__special_characters] = ACTIONS(409), + [anon_sym_DQUOTE] = ACTIONS(411), + [anon_sym_DOLLAR] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), + [anon_sym_BQUOTE] = ACTIONS(421), + [anon_sym_LT_LPAREN] = ACTIONS(423), + [anon_sym_GT_LPAREN] = ACTIONS(423), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(425), + [sym_test_operator] = ACTIONS(427), + [anon_sym_LF] = ACTIONS(403), + [anon_sym_AMP] = ACTIONS(403), }, [38] = { - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_EQ] = ACTIONS(417), - [anon_sym_PLUS_EQ] = ACTIONS(417), - [sym_comment] = ACTIONS(53), + [anon_sym_in] = ACTIONS(429), + [anon_sym_SEMI] = ACTIONS(431), + [anon_sym_SEMI_SEMI] = ACTIONS(433), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(433), + [anon_sym_AMP] = ACTIONS(433), }, [39] = { - [sym__terminated_statement] = STATE(224), - [sym_for_statement] = STATE(50), - [sym_c_style_for_statement] = STATE(50), - [sym_while_statement] = STATE(50), - [sym_if_statement] = STATE(50), - [sym_case_statement] = STATE(50), - [sym_function_definition] = STATE(50), - [sym_subshell] = STATE(50), - [sym_pipeline] = STATE(50), - [sym_list] = STATE(50), - [sym_negated_command] = STATE(50), - [sym_test_command] = STATE(50), - [sym_declaration_command] = STATE(50), - [sym_unset_command] = STATE(50), - [sym_command] = STATE(50), - [sym_command_name] = STATE(51), - [sym_variable_assignment] = STATE(52), - [sym_subscript] = STATE(53), - [sym_file_redirect] = STATE(54), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(47), - [sym_simple_expansion] = STATE(47), - [sym_string_expansion] = STATE(47), - [sym_expansion] = STATE(47), - [sym_command_substitution] = STATE(47), - [sym_process_substitution] = STATE(47), - [aux_sym_command_repeat1] = STATE(54), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(69), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(71), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(73), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(75), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_LBRACK_LBRACK] = ACTIONS(79), - [anon_sym_declare] = ACTIONS(81), - [anon_sym_typeset] = ACTIONS(81), - [anon_sym_export] = ACTIONS(81), - [anon_sym_readonly] = ACTIONS(81), - [anon_sym_local] = ACTIONS(81), - [anon_sym_unset] = ACTIONS(83), - [anon_sym_unsetenv] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(87), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(89), + [sym__expression] = STATE(241), + [sym_binary_expression] = STATE(241), + [sym_unary_expression] = STATE(241), + [sym_postfix_expression] = STATE(241), + [sym_parenthesized_expression] = STATE(241), + [sym_concatenation] = STATE(241), + [sym_string] = STATE(236), + [sym_simple_expansion] = STATE(236), + [sym_string_expansion] = STATE(236), + [sym_expansion] = STATE(236), + [sym_command_substitution] = STATE(236), + [sym_process_substitution] = STATE(236), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_BANG] = ACTIONS(437), + [sym__special_characters] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(441), + [anon_sym_DOLLAR] = ACTIONS(443), + [sym_raw_string] = ACTIONS(445), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(447), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(449), + [anon_sym_BQUOTE] = ACTIONS(451), + [anon_sym_LT_LPAREN] = ACTIONS(453), + [anon_sym_GT_LPAREN] = ACTIONS(453), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(455), + [sym_test_operator] = ACTIONS(457), }, [40] = { - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(419), + [sym__expression] = STATE(242), + [sym_binary_expression] = STATE(242), + [sym_unary_expression] = STATE(242), + [sym_postfix_expression] = STATE(242), + [sym_parenthesized_expression] = STATE(242), + [sym_concatenation] = STATE(242), + [sym_string] = STATE(44), + [sym_simple_expansion] = STATE(44), + [sym_string_expansion] = STATE(44), + [sym_expansion] = STATE(44), + [sym_command_substitution] = STATE(44), + [sym_process_substitution] = STATE(44), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(73), + [sym__special_characters] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(79), + [sym_raw_string] = ACTIONS(81), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(83), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(85), + [anon_sym_BQUOTE] = ACTIONS(87), + [anon_sym_LT_LPAREN] = ACTIONS(89), + [anon_sym_GT_LPAREN] = ACTIONS(89), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(91), + [sym_test_operator] = ACTIONS(93), }, [41] = { - [sym_subshell] = STATE(84), - [sym_test_command] = STATE(84), - [sym_command] = STATE(84), - [sym_command_name] = STATE(51), - [sym_variable_assignment] = STATE(54), - [sym_subscript] = STATE(85), - [sym_file_redirect] = STATE(54), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(47), - [sym_simple_expansion] = STATE(47), - [sym_string_expansion] = STATE(47), - [sym_expansion] = STATE(47), - [sym_command_substitution] = STATE(47), - [sym_process_substitution] = STATE(47), - [aux_sym_command_repeat1] = STATE(54), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_LBRACK_LBRACK] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(87), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(87), + [aux_sym_concatenation_repeat1] = STATE(244), + [sym__concat] = ACTIONS(459), + [anon_sym_RPAREN_RPAREN] = ACTIONS(461), + [anon_sym_AMP_AMP] = ACTIONS(461), + [anon_sym_PIPE_PIPE] = ACTIONS(461), + [anon_sym_EQ_TILDE] = ACTIONS(461), + [anon_sym_EQ_EQ] = ACTIONS(461), + [anon_sym_EQ] = ACTIONS(463), + [anon_sym_PLUS_EQ] = ACTIONS(461), + [anon_sym_LT] = ACTIONS(463), + [anon_sym_GT] = ACTIONS(463), + [anon_sym_BANG_EQ] = ACTIONS(461), + [anon_sym_PLUS] = ACTIONS(463), + [anon_sym_DASH] = ACTIONS(463), + [anon_sym_DASH_EQ] = ACTIONS(461), + [anon_sym_LT_EQ] = ACTIONS(461), + [anon_sym_GT_EQ] = ACTIONS(461), + [anon_sym_PLUS_PLUS] = ACTIONS(461), + [anon_sym_DASH_DASH] = ACTIONS(461), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(461), }, [42] = { - [sym__expression] = STATE(226), - [sym_binary_expression] = STATE(226), - [sym_unary_expression] = STATE(226), - [sym_parenthesized_expression] = STATE(226), - [sym_concatenation] = STATE(226), - [sym_string] = STATE(91), - [sym_simple_expansion] = STATE(91), - [sym_string_expansion] = STATE(91), - [sym_expansion] = STATE(91), - [sym_command_substitution] = STATE(91), - [sym_process_substitution] = STATE(91), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(135), - [sym__special_characters] = ACTIONS(137), - [anon_sym_DQUOTE] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(141), - [sym_raw_string] = ACTIONS(143), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(145), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(147), - [anon_sym_BQUOTE] = ACTIONS(149), - [anon_sym_LT_LPAREN] = ACTIONS(151), - [anon_sym_GT_LPAREN] = ACTIONS(151), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(153), - [sym_test_operator] = ACTIONS(155), + [sym_simple_expansion] = STATE(148), + [sym_expansion] = STATE(148), + [sym_command_substitution] = STATE(148), + [aux_sym_string_repeat1] = STATE(247), + [anon_sym_DQUOTE] = ACTIONS(465), + [anon_sym_DOLLAR] = ACTIONS(467), + [sym__string_content] = ACTIONS(273), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(277), + [anon_sym_BQUOTE] = ACTIONS(279), + [sym_comment] = ACTIONS(281), }, [43] = { - [sym__expression] = STATE(227), - [sym_binary_expression] = STATE(227), - [sym_unary_expression] = STATE(227), - [sym_parenthesized_expression] = STATE(227), - [sym_concatenation] = STATE(227), - [sym_string] = STATE(102), - [sym_simple_expansion] = STATE(102), - [sym_string_expansion] = STATE(102), - [sym_expansion] = STATE(102), - [sym_command_substitution] = STATE(102), - [sym_process_substitution] = STATE(102), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_BANG] = ACTIONS(159), - [sym__special_characters] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(163), - [anon_sym_DOLLAR] = ACTIONS(165), - [sym_raw_string] = ACTIONS(167), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(169), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(171), - [anon_sym_BQUOTE] = ACTIONS(173), - [anon_sym_LT_LPAREN] = ACTIONS(175), - [anon_sym_GT_LPAREN] = ACTIONS(175), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(177), - [sym_test_operator] = ACTIONS(179), + [sym_string] = STATE(249), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_DQUOTE] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(469), + [sym_raw_string] = ACTIONS(471), + [anon_sym_POUND] = ACTIONS(469), + [sym_comment] = ACTIONS(281), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(473), + [anon_sym_STAR] = ACTIONS(475), + [anon_sym_AT] = ACTIONS(475), + [anon_sym_QMARK] = ACTIONS(475), + [anon_sym_0] = ACTIONS(473), + [anon_sym__] = ACTIONS(473), }, [44] = { - [sym_variable_assignment] = STATE(232), - [sym_subscript] = STATE(231), - [sym_concatenation] = STATE(232), - [sym_string] = STATE(230), - [sym_simple_expansion] = STATE(230), - [sym_string_expansion] = STATE(230), - [sym_expansion] = STATE(230), - [sym_command_substitution] = STATE(230), - [sym_process_substitution] = STATE(230), - [aux_sym_declaration_command_repeat1] = STATE(232), - [sym_variable_name] = ACTIONS(421), - [anon_sym_SEMI] = ACTIONS(185), - [anon_sym_PIPE] = ACTIONS(185), - [anon_sym_SEMI_SEMI] = ACTIONS(183), - [anon_sym_PIPE_AMP] = ACTIONS(183), - [anon_sym_AMP_AMP] = ACTIONS(183), - [anon_sym_PIPE_PIPE] = ACTIONS(183), - [sym__special_characters] = ACTIONS(423), - [anon_sym_DQUOTE] = ACTIONS(189), - [anon_sym_DOLLAR] = ACTIONS(191), - [sym_raw_string] = ACTIONS(425), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(195), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(197), - [anon_sym_BQUOTE] = ACTIONS(199), - [anon_sym_LT_LPAREN] = ACTIONS(201), - [anon_sym_GT_LPAREN] = ACTIONS(201), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(427), - [sym_word] = ACTIONS(429), - [anon_sym_LF] = ACTIONS(183), - [anon_sym_AMP] = ACTIONS(185), + [aux_sym_concatenation_repeat1] = STATE(244), + [sym__concat] = ACTIONS(459), + [anon_sym_RPAREN_RPAREN] = ACTIONS(477), + [anon_sym_AMP_AMP] = ACTIONS(477), + [anon_sym_PIPE_PIPE] = ACTIONS(477), + [anon_sym_EQ_TILDE] = ACTIONS(477), + [anon_sym_EQ_EQ] = ACTIONS(477), + [anon_sym_EQ] = ACTIONS(479), + [anon_sym_PLUS_EQ] = ACTIONS(477), + [anon_sym_LT] = ACTIONS(479), + [anon_sym_GT] = ACTIONS(479), + [anon_sym_BANG_EQ] = ACTIONS(477), + [anon_sym_PLUS] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(479), + [anon_sym_DASH_EQ] = ACTIONS(477), + [anon_sym_LT_EQ] = ACTIONS(477), + [anon_sym_GT_EQ] = ACTIONS(477), + [anon_sym_PLUS_PLUS] = ACTIONS(477), + [anon_sym_DASH_DASH] = ACTIONS(477), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(477), }, [45] = { - [sym_concatenation] = STATE(235), - [sym_string] = STATE(234), - [sym_simple_expansion] = STATE(234), - [sym_string_expansion] = STATE(234), - [sym_expansion] = STATE(234), - [sym_command_substitution] = STATE(234), - [sym_process_substitution] = STATE(234), - [aux_sym_unset_command_repeat1] = STATE(235), - [anon_sym_SEMI] = ACTIONS(209), - [anon_sym_PIPE] = ACTIONS(209), - [anon_sym_SEMI_SEMI] = ACTIONS(207), - [anon_sym_PIPE_AMP] = ACTIONS(207), - [anon_sym_AMP_AMP] = ACTIONS(207), - [anon_sym_PIPE_PIPE] = ACTIONS(207), - [sym__special_characters] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(215), - [sym_raw_string] = ACTIONS(433), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(219), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(221), - [anon_sym_BQUOTE] = ACTIONS(223), - [anon_sym_LT_LPAREN] = ACTIONS(225), - [anon_sym_GT_LPAREN] = ACTIONS(225), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(435), - [sym_word] = ACTIONS(437), - [anon_sym_LF] = ACTIONS(207), - [anon_sym_AMP] = ACTIONS(209), + [sym_subscript] = STATE(254), + [sym_variable_name] = ACTIONS(481), + [anon_sym_BANG] = ACTIONS(483), + [anon_sym_DASH] = ACTIONS(485), + [anon_sym_DOLLAR] = ACTIONS(485), + [anon_sym_POUND] = ACTIONS(483), + [sym_comment] = ACTIONS(281), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(489), + [anon_sym_AT] = ACTIONS(489), + [anon_sym_QMARK] = ACTIONS(489), + [anon_sym_0] = ACTIONS(487), + [anon_sym__] = ACTIONS(487), }, [46] = { - [aux_sym_concatenation_repeat1] = STATE(236), - [sym__simple_heredoc_body] = ACTIONS(247), - [sym__heredoc_body_beginning] = ACTIONS(247), - [sym_file_descriptor] = ACTIONS(247), - [sym__concat] = ACTIONS(249), - [anon_sym_SEMI] = ACTIONS(251), - [anon_sym_PIPE] = ACTIONS(251), - [anon_sym_SEMI_SEMI] = ACTIONS(247), - [anon_sym_PIPE_AMP] = ACTIONS(247), - [anon_sym_AMP_AMP] = ACTIONS(247), - [anon_sym_PIPE_PIPE] = ACTIONS(247), - [anon_sym_EQ_TILDE] = ACTIONS(251), - [anon_sym_EQ_EQ] = ACTIONS(251), - [anon_sym_LT] = ACTIONS(251), - [anon_sym_GT] = ACTIONS(251), - [anon_sym_GT_GT] = ACTIONS(247), - [anon_sym_AMP_GT] = ACTIONS(251), - [anon_sym_AMP_GT_GT] = ACTIONS(247), - [anon_sym_LT_AMP] = ACTIONS(247), - [anon_sym_GT_AMP] = ACTIONS(247), - [anon_sym_LT_LT] = ACTIONS(251), - [anon_sym_LT_LT_DASH] = ACTIONS(247), - [anon_sym_LT_LT_LT] = ACTIONS(247), - [sym__special_characters] = ACTIONS(247), - [anon_sym_DQUOTE] = ACTIONS(247), - [anon_sym_DOLLAR] = ACTIONS(251), - [sym_raw_string] = ACTIONS(247), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(247), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(247), - [anon_sym_BQUOTE] = ACTIONS(247), - [anon_sym_LT_LPAREN] = ACTIONS(247), - [anon_sym_GT_LPAREN] = ACTIONS(247), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(251), - [anon_sym_LF] = ACTIONS(247), - [anon_sym_AMP] = ACTIONS(251), + [sym__terminated_statement] = STATE(257), + [sym_for_statement] = STATE(255), + [sym_c_style_for_statement] = STATE(255), + [sym_while_statement] = STATE(255), + [sym_if_statement] = STATE(255), + [sym_case_statement] = STATE(255), + [sym_function_definition] = STATE(255), + [sym_subshell] = STATE(255), + [sym_pipeline] = STATE(255), + [sym_list] = STATE(255), + [sym_negated_command] = STATE(255), + [sym_test_command] = STATE(255), + [sym_declaration_command] = STATE(255), + [sym_unset_command] = STATE(255), + [sym_command] = STATE(255), + [sym_command_name] = STATE(92), + [sym_variable_assignment] = STATE(256), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(96), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), + [aux_sym__statements_repeat1] = STATE(257), + [aux_sym_command_repeat1] = STATE(96), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(137), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(149), + [anon_sym_declare] = ACTIONS(151), + [anon_sym_typeset] = ACTIONS(151), + [anon_sym_export] = ACTIONS(151), + [anon_sym_readonly] = ACTIONS(151), + [anon_sym_local] = ACTIONS(151), + [anon_sym_unset] = ACTIONS(153), + [anon_sym_unsetenv] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(159), }, [47] = { - [aux_sym_concatenation_repeat1] = STATE(236), - [sym__simple_heredoc_body] = ACTIONS(275), - [sym__heredoc_body_beginning] = ACTIONS(275), - [sym_file_descriptor] = ACTIONS(275), - [sym__concat] = ACTIONS(249), - [anon_sym_SEMI] = ACTIONS(277), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_SEMI_SEMI] = ACTIONS(275), - [anon_sym_PIPE_AMP] = ACTIONS(275), - [anon_sym_AMP_AMP] = ACTIONS(275), - [anon_sym_PIPE_PIPE] = ACTIONS(275), - [anon_sym_EQ_TILDE] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_LT] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(277), - [anon_sym_GT_GT] = ACTIONS(275), - [anon_sym_AMP_GT] = ACTIONS(277), - [anon_sym_AMP_GT_GT] = ACTIONS(275), - [anon_sym_LT_AMP] = ACTIONS(275), - [anon_sym_GT_AMP] = ACTIONS(275), - [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_LT_LT_DASH] = ACTIONS(275), - [anon_sym_LT_LT_LT] = ACTIONS(275), - [sym__special_characters] = ACTIONS(275), - [anon_sym_DQUOTE] = ACTIONS(275), - [anon_sym_DOLLAR] = ACTIONS(277), - [sym_raw_string] = ACTIONS(275), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), - [anon_sym_BQUOTE] = ACTIONS(275), - [anon_sym_LT_LPAREN] = ACTIONS(275), - [anon_sym_GT_LPAREN] = ACTIONS(275), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(277), - [anon_sym_LF] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), + [sym__terminated_statement] = STATE(260), + [sym_for_statement] = STATE(258), + [sym_c_style_for_statement] = STATE(258), + [sym_while_statement] = STATE(258), + [sym_if_statement] = STATE(258), + [sym_case_statement] = STATE(258), + [sym_function_definition] = STATE(258), + [sym_subshell] = STATE(258), + [sym_pipeline] = STATE(258), + [sym_list] = STATE(258), + [sym_negated_command] = STATE(258), + [sym_test_command] = STATE(258), + [sym_declaration_command] = STATE(258), + [sym_unset_command] = STATE(258), + [sym_command] = STATE(258), + [sym_command_name] = STATE(173), + [sym_variable_assignment] = STATE(259), + [sym_subscript] = STATE(66), + [sym_file_redirect] = STATE(176), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(60), + [sym_simple_expansion] = STATE(60), + [sym_string_expansion] = STATE(60), + [sym_expansion] = STATE(60), + [sym_command_substitution] = STATE(60), + [sym_process_substitution] = STATE(60), + [aux_sym__statements_repeat1] = STATE(260), + [aux_sym_command_repeat1] = STATE(176), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(95), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(305), + [anon_sym_while] = ACTIONS(307), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(311), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(315), + [anon_sym_declare] = ACTIONS(317), + [anon_sym_typeset] = ACTIONS(317), + [anon_sym_export] = ACTIONS(317), + [anon_sym_readonly] = ACTIONS(317), + [anon_sym_local] = ACTIONS(317), + [anon_sym_unset] = ACTIONS(319), + [anon_sym_unsetenv] = ACTIONS(319), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(115), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(321), }, [48] = { - [aux_sym_concatenation_repeat1] = STATE(236), - [sym__simple_heredoc_body] = ACTIONS(275), - [sym__heredoc_body_beginning] = ACTIONS(275), - [sym_file_descriptor] = ACTIONS(275), - [sym__concat] = ACTIONS(249), - [anon_sym_SEMI] = ACTIONS(277), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_SEMI_SEMI] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_PIPE_AMP] = ACTIONS(275), - [anon_sym_AMP_AMP] = ACTIONS(275), - [anon_sym_PIPE_PIPE] = ACTIONS(275), - [anon_sym_EQ_TILDE] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_LT] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(277), - [anon_sym_GT_GT] = ACTIONS(275), - [anon_sym_AMP_GT] = ACTIONS(277), - [anon_sym_AMP_GT_GT] = ACTIONS(275), - [anon_sym_LT_AMP] = ACTIONS(275), - [anon_sym_GT_AMP] = ACTIONS(275), - [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_LT_LT_DASH] = ACTIONS(275), - [anon_sym_LT_LT_LT] = ACTIONS(275), - [sym__special_characters] = ACTIONS(275), - [anon_sym_DQUOTE] = ACTIONS(275), - [anon_sym_DOLLAR] = ACTIONS(277), - [sym_raw_string] = ACTIONS(275), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), - [anon_sym_BQUOTE] = ACTIONS(275), - [anon_sym_LT_LPAREN] = ACTIONS(275), - [anon_sym_GT_LPAREN] = ACTIONS(275), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(277), - [anon_sym_LF] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), + [sym__terminated_statement] = STATE(263), + [sym_for_statement] = STATE(261), + [sym_c_style_for_statement] = STATE(261), + [sym_while_statement] = STATE(261), + [sym_if_statement] = STATE(261), + [sym_case_statement] = STATE(261), + [sym_function_definition] = STATE(261), + [sym_subshell] = STATE(261), + [sym_pipeline] = STATE(261), + [sym_list] = STATE(261), + [sym_negated_command] = STATE(261), + [sym_test_command] = STATE(261), + [sym_declaration_command] = STATE(261), + [sym_unset_command] = STATE(261), + [sym_command] = STATE(261), + [sym_command_name] = STATE(92), + [sym_variable_assignment] = STATE(262), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(96), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), + [aux_sym__statements_repeat1] = STATE(263), + [aux_sym_command_repeat1] = STATE(96), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(137), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(149), + [anon_sym_declare] = ACTIONS(151), + [anon_sym_typeset] = ACTIONS(151), + [anon_sym_export] = ACTIONS(151), + [anon_sym_readonly] = ACTIONS(151), + [anon_sym_local] = ACTIONS(151), + [anon_sym_unset] = ACTIONS(153), + [anon_sym_unsetenv] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(159), }, [49] = { - [sym_do_group] = STATE(239), - [anon_sym_do] = ACTIONS(441), - [sym_comment] = ACTIONS(53), + [anon_sym_RPAREN_RPAREN] = ACTIONS(491), + [anon_sym_AMP_AMP] = ACTIONS(493), + [anon_sym_PIPE_PIPE] = ACTIONS(493), + [anon_sym_EQ_TILDE] = ACTIONS(495), + [anon_sym_EQ_EQ] = ACTIONS(495), + [anon_sym_EQ] = ACTIONS(497), + [anon_sym_PLUS_EQ] = ACTIONS(493), + [anon_sym_LT] = ACTIONS(497), + [anon_sym_GT] = ACTIONS(497), + [anon_sym_BANG_EQ] = ACTIONS(493), + [anon_sym_PLUS] = ACTIONS(497), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_DASH_EQ] = ACTIONS(493), + [anon_sym_LT_EQ] = ACTIONS(493), + [anon_sym_GT_EQ] = ACTIONS(493), + [anon_sym_PLUS_PLUS] = ACTIONS(499), + [anon_sym_DASH_DASH] = ACTIONS(499), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(493), }, [50] = { - [anon_sym_SEMI] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(445), - [anon_sym_SEMI_SEMI] = ACTIONS(447), - [anon_sym_PIPE_AMP] = ACTIONS(449), - [anon_sym_AMP_AMP] = ACTIONS(451), - [anon_sym_PIPE_PIPE] = ACTIONS(451), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(447), - [anon_sym_AMP] = ACTIONS(443), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_EQ] = ACTIONS(501), + [anon_sym_PLUS_EQ] = ACTIONS(501), + [sym_comment] = ACTIONS(55), }, [51] = { - [sym_file_redirect] = STATE(249), - [sym_heredoc_redirect] = STATE(249), - [sym_heredoc_body] = STATE(185), - [sym_herestring_redirect] = STATE(249), - [sym_concatenation] = STATE(250), - [sym_string] = STATE(248), - [sym_simple_expansion] = STATE(248), - [sym_string_expansion] = STATE(248), - [sym_expansion] = STATE(248), - [sym_command_substitution] = STATE(248), - [sym_process_substitution] = STATE(248), - [aux_sym_while_statement_repeat1] = STATE(249), - [aux_sym_command_repeat2] = STATE(250), - [sym__simple_heredoc_body] = ACTIONS(321), - [sym__heredoc_body_beginning] = ACTIONS(323), - [sym_file_descriptor] = ACTIONS(453), - [anon_sym_SEMI] = ACTIONS(329), - [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_SEMI_SEMI] = ACTIONS(327), - [anon_sym_PIPE_AMP] = ACTIONS(327), - [anon_sym_AMP_AMP] = ACTIONS(327), - [anon_sym_PIPE_PIPE] = ACTIONS(327), - [anon_sym_EQ_TILDE] = ACTIONS(455), - [anon_sym_EQ_EQ] = ACTIONS(455), - [anon_sym_LT] = ACTIONS(457), - [anon_sym_GT] = ACTIONS(457), - [anon_sym_GT_GT] = ACTIONS(459), - [anon_sym_AMP_GT] = ACTIONS(457), - [anon_sym_AMP_GT_GT] = ACTIONS(459), - [anon_sym_LT_AMP] = ACTIONS(459), - [anon_sym_GT_AMP] = ACTIONS(459), - [anon_sym_LT_LT] = ACTIONS(337), - [anon_sym_LT_LT_DASH] = ACTIONS(339), - [anon_sym_LT_LT_LT] = ACTIONS(461), - [sym__special_characters] = ACTIONS(463), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(465), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(467), - [anon_sym_LF] = ACTIONS(327), - [anon_sym_AMP] = ACTIONS(329), + [sym__expression] = STATE(269), + [sym_binary_expression] = STATE(269), + [sym_unary_expression] = STATE(269), + [sym_postfix_expression] = STATE(269), + [sym_parenthesized_expression] = STATE(269), + [sym_concatenation] = STATE(269), + [sym_string] = STATE(44), + [sym_simple_expansion] = STATE(44), + [sym_string_expansion] = STATE(44), + [sym_expansion] = STATE(44), + [sym_command_substitution] = STATE(44), + [sym_process_substitution] = STATE(44), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(73), + [sym__special_characters] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(79), + [sym_raw_string] = ACTIONS(81), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(83), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(85), + [anon_sym_BQUOTE] = ACTIONS(87), + [anon_sym_LT_LPAREN] = ACTIONS(89), + [anon_sym_GT_LPAREN] = ACTIONS(89), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(91), + [sym_test_operator] = ACTIONS(93), }, [52] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(445), - [anon_sym_SEMI_SEMI] = ACTIONS(447), - [anon_sym_PIPE_AMP] = ACTIONS(449), - [anon_sym_AMP_AMP] = ACTIONS(451), - [anon_sym_PIPE_PIPE] = ACTIONS(451), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(447), - [anon_sym_AMP] = ACTIONS(443), + [sym__terminated_statement] = STATE(270), + [sym_for_statement] = STATE(63), + [sym_c_style_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_if_statement] = STATE(63), + [sym_case_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_subshell] = STATE(63), + [sym_pipeline] = STATE(63), + [sym_list] = STATE(63), + [sym_negated_command] = STATE(63), + [sym_test_command] = STATE(63), + [sym_declaration_command] = STATE(63), + [sym_unset_command] = STATE(63), + [sym_command] = STATE(63), + [sym_command_name] = STATE(64), + [sym_variable_assignment] = STATE(65), + [sym_subscript] = STATE(66), + [sym_file_redirect] = STATE(67), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(60), + [sym_simple_expansion] = STATE(60), + [sym_string_expansion] = STATE(60), + [sym_expansion] = STATE(60), + [sym_command_substitution] = STATE(60), + [sym_process_substitution] = STATE(60), + [aux_sym_command_repeat1] = STATE(67), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(95), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(97), + [anon_sym_while] = ACTIONS(99), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(101), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_LBRACK] = ACTIONS(107), + [anon_sym_declare] = ACTIONS(109), + [anon_sym_typeset] = ACTIONS(109), + [anon_sym_export] = ACTIONS(109), + [anon_sym_readonly] = ACTIONS(109), + [anon_sym_local] = ACTIONS(109), + [anon_sym_unset] = ACTIONS(111), + [anon_sym_unsetenv] = ACTIONS(111), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(115), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(117), }, [53] = { - [anon_sym_EQ] = ACTIONS(417), - [anon_sym_PLUS_EQ] = ACTIONS(417), - [sym_comment] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(503), }, [54] = { - [sym_command_name] = STATE(251), - [sym_variable_assignment] = STATE(192), - [sym_subscript] = STATE(85), - [sym_file_redirect] = STATE(192), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(47), - [sym_simple_expansion] = STATE(47), - [sym_string_expansion] = STATE(47), - [sym_expansion] = STATE(47), - [sym_command_substitution] = STATE(47), - [sym_process_substitution] = STATE(47), - [aux_sym_command_repeat1] = STATE(192), + [sym_subshell] = STATE(98), + [sym_test_command] = STATE(98), + [sym_command] = STATE(98), + [sym_command_name] = STATE(64), + [sym_variable_assignment] = STATE(67), + [sym_subscript] = STATE(99), + [sym_file_redirect] = STATE(67), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(60), + [sym_simple_expansion] = STATE(60), + [sym_string_expansion] = STATE(60), + [sym_expansion] = STATE(60), + [sym_command_substitution] = STATE(60), + [sym_process_substitution] = STATE(60), + [aux_sym_command_repeat1] = STATE(67), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(131), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(469), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(87), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(87), + [sym_variable_name] = ACTIONS(161), + [anon_sym_LPAREN_LPAREN] = ACTIONS(97), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_LBRACK] = ACTIONS(107), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(115), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(115), }, [55] = { - [anon_sym_then] = ACTIONS(471), - [sym_comment] = ACTIONS(53), + [sym__expression] = STATE(272), + [sym_binary_expression] = STATE(272), + [sym_unary_expression] = STATE(272), + [sym_postfix_expression] = STATE(272), + [sym_parenthesized_expression] = STATE(272), + [sym_concatenation] = STATE(272), + [sym_string] = STATE(105), + [sym_simple_expansion] = STATE(105), + [sym_string_expansion] = STATE(105), + [sym_expansion] = STATE(105), + [sym_command_substitution] = STATE(105), + [sym_process_substitution] = STATE(105), + [anon_sym_LPAREN] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(165), + [sym__special_characters] = ACTIONS(167), + [anon_sym_DQUOTE] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(171), + [sym_raw_string] = ACTIONS(173), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(175), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(177), + [anon_sym_BQUOTE] = ACTIONS(179), + [anon_sym_LT_LPAREN] = ACTIONS(181), + [anon_sym_GT_LPAREN] = ACTIONS(181), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(183), + [sym_test_operator] = ACTIONS(185), }, [56] = { - [aux_sym_concatenation_repeat1] = STATE(256), - [sym__concat] = ACTIONS(473), - [anon_sym_in] = ACTIONS(475), - [anon_sym_SEMI] = ACTIONS(477), - [anon_sym_SEMI_SEMI] = ACTIONS(479), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(479), - [anon_sym_AMP] = ACTIONS(479), + [sym__expression] = STATE(273), + [sym_binary_expression] = STATE(273), + [sym_unary_expression] = STATE(273), + [sym_postfix_expression] = STATE(273), + [sym_parenthesized_expression] = STATE(273), + [sym_concatenation] = STATE(273), + [sym_string] = STATE(113), + [sym_simple_expansion] = STATE(113), + [sym_string_expansion] = STATE(113), + [sym_expansion] = STATE(113), + [sym_command_substitution] = STATE(113), + [sym_process_substitution] = STATE(113), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(187), + [sym__special_characters] = ACTIONS(189), + [anon_sym_DQUOTE] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(79), + [sym_raw_string] = ACTIONS(191), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(83), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(85), + [anon_sym_BQUOTE] = ACTIONS(87), + [anon_sym_LT_LPAREN] = ACTIONS(89), + [anon_sym_GT_LPAREN] = ACTIONS(89), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(193), + [sym_test_operator] = ACTIONS(195), }, [57] = { - [sym_simple_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [sym_command_substitution] = STATE(141), - [aux_sym_string_repeat1] = STATE(259), - [anon_sym_DQUOTE] = ACTIONS(481), - [anon_sym_DOLLAR] = ACTIONS(483), - [sym__string_content] = ACTIONS(257), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(261), - [anon_sym_BQUOTE] = ACTIONS(263), - [sym_comment] = ACTIONS(265), + [sym_variable_assignment] = STATE(278), + [sym_subscript] = STATE(277), + [sym_concatenation] = STATE(278), + [sym_string] = STATE(276), + [sym_simple_expansion] = STATE(276), + [sym_string_expansion] = STATE(276), + [sym_expansion] = STATE(276), + [sym_command_substitution] = STATE(276), + [sym_process_substitution] = STATE(276), + [aux_sym_declaration_command_repeat1] = STATE(278), + [sym_variable_name] = ACTIONS(505), + [anon_sym_SEMI] = ACTIONS(201), + [anon_sym_PIPE] = ACTIONS(201), + [anon_sym_SEMI_SEMI] = ACTIONS(199), + [anon_sym_PIPE_AMP] = ACTIONS(199), + [anon_sym_AMP_AMP] = ACTIONS(199), + [anon_sym_PIPE_PIPE] = ACTIONS(199), + [sym__special_characters] = ACTIONS(507), + [anon_sym_DQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR] = ACTIONS(207), + [sym_raw_string] = ACTIONS(509), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_LT_LPAREN] = ACTIONS(217), + [anon_sym_GT_LPAREN] = ACTIONS(217), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(511), + [sym_word] = ACTIONS(513), + [anon_sym_LF] = ACTIONS(199), + [anon_sym_AMP] = ACTIONS(201), }, [58] = { - [sym_string] = STATE(261), - [anon_sym_DQUOTE] = ACTIONS(93), - [anon_sym_DOLLAR] = ACTIONS(485), - [sym_raw_string] = ACTIONS(487), - [anon_sym_POUND] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(485), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(489), - [anon_sym_STAR] = ACTIONS(491), - [anon_sym_AT] = ACTIONS(491), - [anon_sym_QMARK] = ACTIONS(491), - [anon_sym_0] = ACTIONS(489), - [anon_sym__] = ACTIONS(489), + [sym_concatenation] = STATE(281), + [sym_string] = STATE(280), + [sym_simple_expansion] = STATE(280), + [sym_string_expansion] = STATE(280), + [sym_expansion] = STATE(280), + [sym_command_substitution] = STATE(280), + [sym_process_substitution] = STATE(280), + [aux_sym_unset_command_repeat1] = STATE(281), + [anon_sym_SEMI] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(225), + [anon_sym_SEMI_SEMI] = ACTIONS(223), + [anon_sym_PIPE_AMP] = ACTIONS(223), + [anon_sym_AMP_AMP] = ACTIONS(223), + [anon_sym_PIPE_PIPE] = ACTIONS(223), + [sym__special_characters] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(229), + [anon_sym_DOLLAR] = ACTIONS(231), + [sym_raw_string] = ACTIONS(517), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), + [anon_sym_BQUOTE] = ACTIONS(239), + [anon_sym_LT_LPAREN] = ACTIONS(241), + [anon_sym_GT_LPAREN] = ACTIONS(241), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(519), + [sym_word] = ACTIONS(521), + [anon_sym_LF] = ACTIONS(223), + [anon_sym_AMP] = ACTIONS(225), }, [59] = { - [aux_sym_concatenation_repeat1] = STATE(256), - [sym__concat] = ACTIONS(473), - [anon_sym_in] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(495), - [anon_sym_SEMI_SEMI] = ACTIONS(497), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(497), - [anon_sym_AMP] = ACTIONS(497), + [aux_sym_concatenation_repeat1] = STATE(282), + [sym__simple_heredoc_body] = ACTIONS(263), + [sym__heredoc_body_beginning] = ACTIONS(263), + [sym_file_descriptor] = ACTIONS(263), + [sym__concat] = ACTIONS(265), + [anon_sym_SEMI] = ACTIONS(267), + [anon_sym_PIPE] = ACTIONS(267), + [anon_sym_SEMI_SEMI] = ACTIONS(263), + [anon_sym_PIPE_AMP] = ACTIONS(263), + [anon_sym_AMP_AMP] = ACTIONS(263), + [anon_sym_PIPE_PIPE] = ACTIONS(263), + [anon_sym_EQ_TILDE] = ACTIONS(267), + [anon_sym_EQ_EQ] = ACTIONS(267), + [anon_sym_LT] = ACTIONS(267), + [anon_sym_GT] = ACTIONS(267), + [anon_sym_GT_GT] = ACTIONS(263), + [anon_sym_AMP_GT] = ACTIONS(267), + [anon_sym_AMP_GT_GT] = ACTIONS(263), + [anon_sym_LT_AMP] = ACTIONS(263), + [anon_sym_GT_AMP] = ACTIONS(263), + [anon_sym_LT_LT] = ACTIONS(267), + [anon_sym_LT_LT_DASH] = ACTIONS(263), + [anon_sym_LT_LT_LT] = ACTIONS(263), + [sym__special_characters] = ACTIONS(263), + [anon_sym_DQUOTE] = ACTIONS(263), + [anon_sym_DOLLAR] = ACTIONS(267), + [sym_raw_string] = ACTIONS(263), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(263), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(263), + [anon_sym_BQUOTE] = ACTIONS(263), + [anon_sym_LT_LPAREN] = ACTIONS(263), + [anon_sym_GT_LPAREN] = ACTIONS(263), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(267), + [anon_sym_LF] = ACTIONS(263), + [anon_sym_AMP] = ACTIONS(267), }, [60] = { - [sym_subscript] = STATE(268), - [sym_variable_name] = ACTIONS(499), - [anon_sym_BANG] = ACTIONS(501), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_POUND] = ACTIONS(501), - [anon_sym_DASH] = ACTIONS(503), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(505), - [anon_sym_STAR] = ACTIONS(507), - [anon_sym_AT] = ACTIONS(507), - [anon_sym_QMARK] = ACTIONS(507), - [anon_sym_0] = ACTIONS(505), - [anon_sym__] = ACTIONS(505), + [aux_sym_concatenation_repeat1] = STATE(282), + [sym__simple_heredoc_body] = ACTIONS(291), + [sym__heredoc_body_beginning] = ACTIONS(291), + [sym_file_descriptor] = ACTIONS(291), + [sym__concat] = ACTIONS(265), + [anon_sym_SEMI] = ACTIONS(293), + [anon_sym_PIPE] = ACTIONS(293), + [anon_sym_SEMI_SEMI] = ACTIONS(291), + [anon_sym_PIPE_AMP] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(291), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_EQ_TILDE] = ACTIONS(293), + [anon_sym_EQ_EQ] = ACTIONS(293), + [anon_sym_LT] = ACTIONS(293), + [anon_sym_GT] = ACTIONS(293), + [anon_sym_GT_GT] = ACTIONS(291), + [anon_sym_AMP_GT] = ACTIONS(293), + [anon_sym_AMP_GT_GT] = ACTIONS(291), + [anon_sym_LT_AMP] = ACTIONS(291), + [anon_sym_GT_AMP] = ACTIONS(291), + [anon_sym_LT_LT] = ACTIONS(293), + [anon_sym_LT_LT_DASH] = ACTIONS(291), + [anon_sym_LT_LT_LT] = ACTIONS(291), + [sym__special_characters] = ACTIONS(291), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_DOLLAR] = ACTIONS(293), + [sym_raw_string] = ACTIONS(291), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(291), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(291), + [anon_sym_BQUOTE] = ACTIONS(291), + [anon_sym_LT_LPAREN] = ACTIONS(291), + [anon_sym_GT_LPAREN] = ACTIONS(291), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(293), + [anon_sym_LF] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(293), }, [61] = { - [sym__terminated_statement] = STATE(271), - [sym_for_statement] = STATE(269), - [sym_c_style_for_statement] = STATE(269), - [sym_while_statement] = STATE(269), - [sym_if_statement] = STATE(269), - [sym_case_statement] = STATE(269), - [sym_function_definition] = STATE(269), - [sym_subshell] = STATE(269), - [sym_pipeline] = STATE(269), - [sym_list] = STATE(269), - [sym_negated_command] = STATE(269), - [sym_test_command] = STATE(269), - [sym_declaration_command] = STATE(269), - [sym_unset_command] = STATE(269), - [sym_command] = STATE(269), - [sym_command_name] = STATE(78), - [sym_variable_assignment] = STATE(270), - [sym_subscript] = STATE(80), - [sym_file_redirect] = STATE(82), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(75), - [sym_simple_expansion] = STATE(75), - [sym_string_expansion] = STATE(75), - [sym_expansion] = STATE(75), - [sym_command_substitution] = STATE(75), - [sym_process_substitution] = STATE(75), - [aux_sym__statements_repeat1] = STATE(271), - [aux_sym_command_repeat1] = STATE(82), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(111), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(119), - [anon_sym_declare] = ACTIONS(121), - [anon_sym_typeset] = ACTIONS(121), - [anon_sym_export] = ACTIONS(121), - [anon_sym_readonly] = ACTIONS(121), - [anon_sym_local] = ACTIONS(121), - [anon_sym_unset] = ACTIONS(123), - [anon_sym_unsetenv] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), + [aux_sym_concatenation_repeat1] = STATE(282), + [sym__simple_heredoc_body] = ACTIONS(291), + [sym__heredoc_body_beginning] = ACTIONS(291), + [sym_file_descriptor] = ACTIONS(291), + [sym__concat] = ACTIONS(265), + [anon_sym_SEMI] = ACTIONS(293), + [anon_sym_PIPE] = ACTIONS(293), + [anon_sym_SEMI_SEMI] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(523), + [anon_sym_PIPE_AMP] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(291), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_EQ_TILDE] = ACTIONS(293), + [anon_sym_EQ_EQ] = ACTIONS(293), + [anon_sym_LT] = ACTIONS(293), + [anon_sym_GT] = ACTIONS(293), + [anon_sym_GT_GT] = ACTIONS(291), + [anon_sym_AMP_GT] = ACTIONS(293), + [anon_sym_AMP_GT_GT] = ACTIONS(291), + [anon_sym_LT_AMP] = ACTIONS(291), + [anon_sym_GT_AMP] = ACTIONS(291), + [anon_sym_LT_LT] = ACTIONS(293), + [anon_sym_LT_LT_DASH] = ACTIONS(291), + [anon_sym_LT_LT_LT] = ACTIONS(291), + [sym__special_characters] = ACTIONS(291), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_DOLLAR] = ACTIONS(293), + [sym_raw_string] = ACTIONS(291), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(291), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(291), + [anon_sym_BQUOTE] = ACTIONS(291), + [anon_sym_LT_LPAREN] = ACTIONS(291), + [anon_sym_GT_LPAREN] = ACTIONS(291), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(293), + [anon_sym_LF] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(293), }, [62] = { - [sym__terminated_statement] = STATE(274), - [sym_for_statement] = STATE(272), - [sym_c_style_for_statement] = STATE(272), - [sym_while_statement] = STATE(272), - [sym_if_statement] = STATE(272), - [sym_case_statement] = STATE(272), - [sym_function_definition] = STATE(272), - [sym_subshell] = STATE(272), - [sym_pipeline] = STATE(272), - [sym_list] = STATE(272), - [sym_negated_command] = STATE(272), - [sym_test_command] = STATE(272), - [sym_declaration_command] = STATE(272), - [sym_unset_command] = STATE(272), - [sym_command] = STATE(272), - [sym_command_name] = STATE(165), - [sym_variable_assignment] = STATE(273), - [sym_subscript] = STATE(53), - [sym_file_redirect] = STATE(168), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(47), - [sym_simple_expansion] = STATE(47), - [sym_string_expansion] = STATE(47), - [sym_expansion] = STATE(47), - [sym_command_substitution] = STATE(47), - [sym_process_substitution] = STATE(47), - [aux_sym__statements_repeat1] = STATE(274), - [aux_sym_command_repeat1] = STATE(168), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(69), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(289), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(291), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(293), - [anon_sym_LBRACK] = ACTIONS(295), - [anon_sym_LBRACK_LBRACK] = ACTIONS(297), - [anon_sym_declare] = ACTIONS(299), - [anon_sym_typeset] = ACTIONS(299), - [anon_sym_export] = ACTIONS(299), - [anon_sym_readonly] = ACTIONS(299), - [anon_sym_local] = ACTIONS(299), - [anon_sym_unset] = ACTIONS(301), - [anon_sym_unsetenv] = ACTIONS(301), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(87), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(303), + [sym_do_group] = STATE(285), + [anon_sym_do] = ACTIONS(525), + [sym_comment] = ACTIONS(55), }, [63] = { - [sym__terminated_statement] = STATE(277), - [sym_for_statement] = STATE(275), - [sym_c_style_for_statement] = STATE(275), - [sym_while_statement] = STATE(275), - [sym_if_statement] = STATE(275), - [sym_case_statement] = STATE(275), - [sym_function_definition] = STATE(275), - [sym_subshell] = STATE(275), - [sym_pipeline] = STATE(275), - [sym_list] = STATE(275), - [sym_negated_command] = STATE(275), - [sym_test_command] = STATE(275), - [sym_declaration_command] = STATE(275), - [sym_unset_command] = STATE(275), - [sym_command] = STATE(275), - [sym_command_name] = STATE(78), - [sym_variable_assignment] = STATE(276), - [sym_subscript] = STATE(80), - [sym_file_redirect] = STATE(82), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(75), - [sym_simple_expansion] = STATE(75), - [sym_string_expansion] = STATE(75), - [sym_expansion] = STATE(75), - [sym_command_substitution] = STATE(75), - [sym_process_substitution] = STATE(75), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_command_repeat1] = STATE(82), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(111), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(119), - [anon_sym_declare] = ACTIONS(121), - [anon_sym_typeset] = ACTIONS(121), - [anon_sym_export] = ACTIONS(121), - [anon_sym_readonly] = ACTIONS(121), - [anon_sym_local] = ACTIONS(121), - [anon_sym_unset] = ACTIONS(123), - [anon_sym_unsetenv] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), + [anon_sym_SEMI] = ACTIONS(527), + [anon_sym_PIPE] = ACTIONS(529), + [anon_sym_SEMI_SEMI] = ACTIONS(531), + [anon_sym_PIPE_AMP] = ACTIONS(533), + [anon_sym_AMP_AMP] = ACTIONS(535), + [anon_sym_PIPE_PIPE] = ACTIONS(535), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(531), + [anon_sym_AMP] = ACTIONS(527), }, [64] = { - [anon_sym_in] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(495), - [anon_sym_SEMI_SEMI] = ACTIONS(497), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(497), - [anon_sym_AMP] = ACTIONS(497), + [sym_file_redirect] = STATE(295), + [sym_heredoc_redirect] = STATE(295), + [sym_heredoc_body] = STATE(193), + [sym_herestring_redirect] = STATE(295), + [sym_concatenation] = STATE(296), + [sym_string] = STATE(294), + [sym_simple_expansion] = STATE(294), + [sym_string_expansion] = STATE(294), + [sym_expansion] = STATE(294), + [sym_command_substitution] = STATE(294), + [sym_process_substitution] = STATE(294), + [aux_sym_while_statement_repeat1] = STATE(295), + [aux_sym_command_repeat2] = STATE(296), + [sym__simple_heredoc_body] = ACTIONS(339), + [sym__heredoc_body_beginning] = ACTIONS(341), + [sym_file_descriptor] = ACTIONS(537), + [anon_sym_SEMI] = ACTIONS(347), + [anon_sym_PIPE] = ACTIONS(347), + [anon_sym_SEMI_SEMI] = ACTIONS(345), + [anon_sym_PIPE_AMP] = ACTIONS(345), + [anon_sym_AMP_AMP] = ACTIONS(345), + [anon_sym_PIPE_PIPE] = ACTIONS(345), + [anon_sym_EQ_TILDE] = ACTIONS(539), + [anon_sym_EQ_EQ] = ACTIONS(539), + [anon_sym_LT] = ACTIONS(541), + [anon_sym_GT] = ACTIONS(541), + [anon_sym_GT_GT] = ACTIONS(543), + [anon_sym_AMP_GT] = ACTIONS(541), + [anon_sym_AMP_GT_GT] = ACTIONS(543), + [anon_sym_LT_AMP] = ACTIONS(543), + [anon_sym_GT_AMP] = ACTIONS(543), + [anon_sym_LT_LT] = ACTIONS(355), + [anon_sym_LT_LT_DASH] = ACTIONS(357), + [anon_sym_LT_LT_LT] = ACTIONS(545), + [sym__special_characters] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(549), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(551), + [anon_sym_LF] = ACTIONS(345), + [anon_sym_AMP] = ACTIONS(347), }, [65] = { - [sym_compound_statement] = STATE(280), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_LBRACE] = ACTIONS(511), - [sym_comment] = ACTIONS(53), + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(527), + [anon_sym_PIPE] = ACTIONS(529), + [anon_sym_SEMI_SEMI] = ACTIONS(531), + [anon_sym_PIPE_AMP] = ACTIONS(533), + [anon_sym_AMP_AMP] = ACTIONS(535), + [anon_sym_PIPE_PIPE] = ACTIONS(535), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(531), + [anon_sym_AMP] = ACTIONS(527), }, [66] = { - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_EQ] = ACTIONS(513), - [anon_sym_PLUS_EQ] = ACTIONS(513), - [sym_comment] = ACTIONS(53), + [anon_sym_EQ] = ACTIONS(501), + [anon_sym_PLUS_EQ] = ACTIONS(501), + [sym_comment] = ACTIONS(55), }, [67] = { - [sym__terminated_statement] = STATE(282), - [sym_for_statement] = STATE(50), - [sym_c_style_for_statement] = STATE(50), - [sym_while_statement] = STATE(50), - [sym_if_statement] = STATE(50), - [sym_case_statement] = STATE(50), - [sym_function_definition] = STATE(50), - [sym_subshell] = STATE(50), - [sym_pipeline] = STATE(50), - [sym_list] = STATE(50), - [sym_negated_command] = STATE(50), - [sym_test_command] = STATE(50), - [sym_declaration_command] = STATE(50), - [sym_unset_command] = STATE(50), - [sym_command] = STATE(50), - [sym_command_name] = STATE(51), - [sym_variable_assignment] = STATE(52), - [sym_subscript] = STATE(53), - [sym_file_redirect] = STATE(54), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(47), - [sym_simple_expansion] = STATE(47), - [sym_string_expansion] = STATE(47), - [sym_expansion] = STATE(47), - [sym_command_substitution] = STATE(47), - [sym_process_substitution] = STATE(47), - [aux_sym_command_repeat1] = STATE(54), + [sym_command_name] = STATE(297), + [sym_variable_assignment] = STATE(200), + [sym_subscript] = STATE(99), + [sym_file_redirect] = STATE(200), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(60), + [sym_simple_expansion] = STATE(60), + [sym_string_expansion] = STATE(60), + [sym_expansion] = STATE(60), + [sym_command_substitution] = STATE(60), + [sym_process_substitution] = STATE(60), + [aux_sym_command_repeat1] = STATE(200), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(69), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(71), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(73), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(75), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_LBRACK_LBRACK] = ACTIONS(79), - [anon_sym_declare] = ACTIONS(81), - [anon_sym_typeset] = ACTIONS(81), - [anon_sym_export] = ACTIONS(81), - [anon_sym_readonly] = ACTIONS(81), - [anon_sym_local] = ACTIONS(81), - [anon_sym_unset] = ACTIONS(83), - [anon_sym_unsetenv] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(87), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(89), + [sym_variable_name] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(553), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(115), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(115), }, [68] = { - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(515), + [anon_sym_then] = ACTIONS(555), + [sym_comment] = ACTIONS(55), }, [69] = { - [sym_subshell] = STATE(84), - [sym_test_command] = STATE(84), - [sym_command] = STATE(84), - [sym_command_name] = STATE(78), - [sym_variable_assignment] = STATE(82), - [sym_subscript] = STATE(85), - [sym_file_redirect] = STATE(82), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(75), - [sym_simple_expansion] = STATE(75), - [sym_string_expansion] = STATE(75), - [sym_expansion] = STATE(75), - [sym_command_substitution] = STATE(75), - [sym_process_substitution] = STATE(75), - [aux_sym_command_repeat1] = STATE(82), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(119), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(127), + [aux_sym_concatenation_repeat1] = STATE(302), + [sym__concat] = ACTIONS(557), + [anon_sym_in] = ACTIONS(559), + [anon_sym_SEMI] = ACTIONS(561), + [anon_sym_SEMI_SEMI] = ACTIONS(563), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(563), + [anon_sym_AMP] = ACTIONS(563), }, [70] = { - [sym__expression] = STATE(284), - [sym_binary_expression] = STATE(284), - [sym_unary_expression] = STATE(284), - [sym_parenthesized_expression] = STATE(284), - [sym_concatenation] = STATE(284), - [sym_string] = STATE(91), - [sym_simple_expansion] = STATE(91), - [sym_string_expansion] = STATE(91), - [sym_expansion] = STATE(91), - [sym_command_substitution] = STATE(91), - [sym_process_substitution] = STATE(91), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(135), - [sym__special_characters] = ACTIONS(137), - [anon_sym_DQUOTE] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(141), - [sym_raw_string] = ACTIONS(143), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(145), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(147), - [anon_sym_BQUOTE] = ACTIONS(149), - [anon_sym_LT_LPAREN] = ACTIONS(151), - [anon_sym_GT_LPAREN] = ACTIONS(151), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(153), - [sym_test_operator] = ACTIONS(155), + [sym_simple_expansion] = STATE(148), + [sym_expansion] = STATE(148), + [sym_command_substitution] = STATE(148), + [aux_sym_string_repeat1] = STATE(305), + [anon_sym_DQUOTE] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(567), + [sym__string_content] = ACTIONS(273), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(277), + [anon_sym_BQUOTE] = ACTIONS(279), + [sym_comment] = ACTIONS(281), }, [71] = { - [sym__expression] = STATE(285), - [sym_binary_expression] = STATE(285), - [sym_unary_expression] = STATE(285), - [sym_parenthesized_expression] = STATE(285), - [sym_concatenation] = STATE(285), - [sym_string] = STATE(102), - [sym_simple_expansion] = STATE(102), - [sym_string_expansion] = STATE(102), - [sym_expansion] = STATE(102), - [sym_command_substitution] = STATE(102), - [sym_process_substitution] = STATE(102), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_BANG] = ACTIONS(159), - [sym__special_characters] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(163), - [anon_sym_DOLLAR] = ACTIONS(165), - [sym_raw_string] = ACTIONS(167), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(169), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(171), - [anon_sym_BQUOTE] = ACTIONS(173), - [anon_sym_LT_LPAREN] = ACTIONS(175), - [anon_sym_GT_LPAREN] = ACTIONS(175), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(177), - [sym_test_operator] = ACTIONS(179), + [sym_string] = STATE(307), + [anon_sym_DASH] = ACTIONS(569), + [anon_sym_DQUOTE] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(569), + [sym_raw_string] = ACTIONS(571), + [anon_sym_POUND] = ACTIONS(569), + [sym_comment] = ACTIONS(281), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(573), + [anon_sym_STAR] = ACTIONS(575), + [anon_sym_AT] = ACTIONS(575), + [anon_sym_QMARK] = ACTIONS(575), + [anon_sym_0] = ACTIONS(573), + [anon_sym__] = ACTIONS(573), }, [72] = { - [sym_variable_assignment] = STATE(290), - [sym_subscript] = STATE(289), - [sym_concatenation] = STATE(290), - [sym_string] = STATE(288), - [sym_simple_expansion] = STATE(288), - [sym_string_expansion] = STATE(288), - [sym_expansion] = STATE(288), - [sym_command_substitution] = STATE(288), - [sym_process_substitution] = STATE(288), - [aux_sym_declaration_command_repeat1] = STATE(290), - [sym_variable_name] = ACTIONS(517), - [anon_sym_SEMI] = ACTIONS(185), - [anon_sym_PIPE] = ACTIONS(185), - [anon_sym_RPAREN] = ACTIONS(183), - [anon_sym_SEMI_SEMI] = ACTIONS(183), - [anon_sym_PIPE_AMP] = ACTIONS(183), - [anon_sym_AMP_AMP] = ACTIONS(183), - [anon_sym_PIPE_PIPE] = ACTIONS(183), - [sym__special_characters] = ACTIONS(519), - [anon_sym_DQUOTE] = ACTIONS(189), - [anon_sym_DOLLAR] = ACTIONS(191), - [sym_raw_string] = ACTIONS(521), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(195), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(197), - [anon_sym_BQUOTE] = ACTIONS(199), - [anon_sym_LT_LPAREN] = ACTIONS(201), - [anon_sym_GT_LPAREN] = ACTIONS(201), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(523), - [sym_word] = ACTIONS(525), - [anon_sym_LF] = ACTIONS(183), - [anon_sym_AMP] = ACTIONS(185), + [aux_sym_concatenation_repeat1] = STATE(302), + [sym__concat] = ACTIONS(557), + [anon_sym_in] = ACTIONS(577), + [anon_sym_SEMI] = ACTIONS(579), + [anon_sym_SEMI_SEMI] = ACTIONS(581), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(581), }, [73] = { - [sym_concatenation] = STATE(293), - [sym_string] = STATE(292), - [sym_simple_expansion] = STATE(292), - [sym_string_expansion] = STATE(292), - [sym_expansion] = STATE(292), - [sym_command_substitution] = STATE(292), - [sym_process_substitution] = STATE(292), - [aux_sym_unset_command_repeat1] = STATE(293), - [anon_sym_SEMI] = ACTIONS(209), - [anon_sym_PIPE] = ACTIONS(209), - [anon_sym_RPAREN] = ACTIONS(207), - [anon_sym_SEMI_SEMI] = ACTIONS(207), - [anon_sym_PIPE_AMP] = ACTIONS(207), - [anon_sym_AMP_AMP] = ACTIONS(207), - [anon_sym_PIPE_PIPE] = ACTIONS(207), - [sym__special_characters] = ACTIONS(527), - [anon_sym_DQUOTE] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(215), - [sym_raw_string] = ACTIONS(529), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(219), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(221), - [anon_sym_BQUOTE] = ACTIONS(223), - [anon_sym_LT_LPAREN] = ACTIONS(225), - [anon_sym_GT_LPAREN] = ACTIONS(225), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(531), - [sym_word] = ACTIONS(533), - [anon_sym_LF] = ACTIONS(207), - [anon_sym_AMP] = ACTIONS(209), + [sym_subscript] = STATE(314), + [sym_variable_name] = ACTIONS(583), + [anon_sym_BANG] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(587), + [anon_sym_DOLLAR] = ACTIONS(587), + [anon_sym_POUND] = ACTIONS(585), + [sym_comment] = ACTIONS(281), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(589), + [anon_sym_STAR] = ACTIONS(591), + [anon_sym_AT] = ACTIONS(591), + [anon_sym_QMARK] = ACTIONS(591), + [anon_sym_0] = ACTIONS(589), + [anon_sym__] = ACTIONS(589), }, [74] = { - [aux_sym_concatenation_repeat1] = STATE(294), - [sym__simple_heredoc_body] = ACTIONS(247), - [sym__heredoc_body_beginning] = ACTIONS(247), - [sym_file_descriptor] = ACTIONS(247), - [sym__concat] = ACTIONS(249), - [anon_sym_SEMI] = ACTIONS(251), - [anon_sym_PIPE] = ACTIONS(251), - [anon_sym_RPAREN] = ACTIONS(247), - [anon_sym_SEMI_SEMI] = ACTIONS(247), - [anon_sym_PIPE_AMP] = ACTIONS(247), - [anon_sym_AMP_AMP] = ACTIONS(247), - [anon_sym_PIPE_PIPE] = ACTIONS(247), - [anon_sym_EQ_TILDE] = ACTIONS(251), - [anon_sym_EQ_EQ] = ACTIONS(251), - [anon_sym_LT] = ACTIONS(251), - [anon_sym_GT] = ACTIONS(251), - [anon_sym_GT_GT] = ACTIONS(247), - [anon_sym_AMP_GT] = ACTIONS(251), - [anon_sym_AMP_GT_GT] = ACTIONS(247), - [anon_sym_LT_AMP] = ACTIONS(247), - [anon_sym_GT_AMP] = ACTIONS(247), - [anon_sym_LT_LT] = ACTIONS(251), - [anon_sym_LT_LT_DASH] = ACTIONS(247), - [anon_sym_LT_LT_LT] = ACTIONS(247), - [sym__special_characters] = ACTIONS(247), - [anon_sym_DQUOTE] = ACTIONS(247), - [anon_sym_DOLLAR] = ACTIONS(251), - [sym_raw_string] = ACTIONS(247), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(247), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(247), - [anon_sym_BQUOTE] = ACTIONS(247), - [anon_sym_LT_LPAREN] = ACTIONS(247), - [anon_sym_GT_LPAREN] = ACTIONS(247), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(251), - [anon_sym_LF] = ACTIONS(247), - [anon_sym_AMP] = ACTIONS(251), + [sym__terminated_statement] = STATE(317), + [sym_for_statement] = STATE(315), + [sym_c_style_for_statement] = STATE(315), + [sym_while_statement] = STATE(315), + [sym_if_statement] = STATE(315), + [sym_case_statement] = STATE(315), + [sym_function_definition] = STATE(315), + [sym_subshell] = STATE(315), + [sym_pipeline] = STATE(315), + [sym_list] = STATE(315), + [sym_negated_command] = STATE(315), + [sym_test_command] = STATE(315), + [sym_declaration_command] = STATE(315), + [sym_unset_command] = STATE(315), + [sym_command] = STATE(315), + [sym_command_name] = STATE(92), + [sym_variable_assignment] = STATE(316), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(96), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), + [aux_sym__statements_repeat1] = STATE(317), + [aux_sym_command_repeat1] = STATE(96), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(137), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(149), + [anon_sym_declare] = ACTIONS(151), + [anon_sym_typeset] = ACTIONS(151), + [anon_sym_export] = ACTIONS(151), + [anon_sym_readonly] = ACTIONS(151), + [anon_sym_local] = ACTIONS(151), + [anon_sym_unset] = ACTIONS(153), + [anon_sym_unsetenv] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(159), }, [75] = { - [aux_sym_concatenation_repeat1] = STATE(294), - [sym__simple_heredoc_body] = ACTIONS(275), - [sym__heredoc_body_beginning] = ACTIONS(275), - [sym_file_descriptor] = ACTIONS(275), - [sym__concat] = ACTIONS(249), - [anon_sym_SEMI] = ACTIONS(277), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_RPAREN] = ACTIONS(275), - [anon_sym_SEMI_SEMI] = ACTIONS(275), - [anon_sym_PIPE_AMP] = ACTIONS(275), - [anon_sym_AMP_AMP] = ACTIONS(275), - [anon_sym_PIPE_PIPE] = ACTIONS(275), - [anon_sym_EQ_TILDE] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_LT] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(277), - [anon_sym_GT_GT] = ACTIONS(275), - [anon_sym_AMP_GT] = ACTIONS(277), - [anon_sym_AMP_GT_GT] = ACTIONS(275), - [anon_sym_LT_AMP] = ACTIONS(275), - [anon_sym_GT_AMP] = ACTIONS(275), - [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_LT_LT_DASH] = ACTIONS(275), - [anon_sym_LT_LT_LT] = ACTIONS(275), - [sym__special_characters] = ACTIONS(275), - [anon_sym_DQUOTE] = ACTIONS(275), - [anon_sym_DOLLAR] = ACTIONS(277), - [sym_raw_string] = ACTIONS(275), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), - [anon_sym_BQUOTE] = ACTIONS(275), - [anon_sym_LT_LPAREN] = ACTIONS(275), - [anon_sym_GT_LPAREN] = ACTIONS(275), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(277), - [anon_sym_LF] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), + [sym__terminated_statement] = STATE(320), + [sym_for_statement] = STATE(318), + [sym_c_style_for_statement] = STATE(318), + [sym_while_statement] = STATE(318), + [sym_if_statement] = STATE(318), + [sym_case_statement] = STATE(318), + [sym_function_definition] = STATE(318), + [sym_subshell] = STATE(318), + [sym_pipeline] = STATE(318), + [sym_list] = STATE(318), + [sym_negated_command] = STATE(318), + [sym_test_command] = STATE(318), + [sym_declaration_command] = STATE(318), + [sym_unset_command] = STATE(318), + [sym_command] = STATE(318), + [sym_command_name] = STATE(173), + [sym_variable_assignment] = STATE(319), + [sym_subscript] = STATE(66), + [sym_file_redirect] = STATE(176), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(60), + [sym_simple_expansion] = STATE(60), + [sym_string_expansion] = STATE(60), + [sym_expansion] = STATE(60), + [sym_command_substitution] = STATE(60), + [sym_process_substitution] = STATE(60), + [aux_sym__statements_repeat1] = STATE(320), + [aux_sym_command_repeat1] = STATE(176), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(95), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(305), + [anon_sym_while] = ACTIONS(307), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(311), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(315), + [anon_sym_declare] = ACTIONS(317), + [anon_sym_typeset] = ACTIONS(317), + [anon_sym_export] = ACTIONS(317), + [anon_sym_readonly] = ACTIONS(317), + [anon_sym_local] = ACTIONS(317), + [anon_sym_unset] = ACTIONS(319), + [anon_sym_unsetenv] = ACTIONS(319), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(115), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(321), }, [76] = { - [aux_sym_concatenation_repeat1] = STATE(294), - [sym__simple_heredoc_body] = ACTIONS(275), - [sym__heredoc_body_beginning] = ACTIONS(275), - [sym_file_descriptor] = ACTIONS(275), - [sym__concat] = ACTIONS(249), - [anon_sym_SEMI] = ACTIONS(277), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_RPAREN] = ACTIONS(275), - [anon_sym_SEMI_SEMI] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(535), - [anon_sym_PIPE_AMP] = ACTIONS(275), - [anon_sym_AMP_AMP] = ACTIONS(275), - [anon_sym_PIPE_PIPE] = ACTIONS(275), - [anon_sym_EQ_TILDE] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_LT] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(277), - [anon_sym_GT_GT] = ACTIONS(275), - [anon_sym_AMP_GT] = ACTIONS(277), - [anon_sym_AMP_GT_GT] = ACTIONS(275), - [anon_sym_LT_AMP] = ACTIONS(275), - [anon_sym_GT_AMP] = ACTIONS(275), - [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_LT_LT_DASH] = ACTIONS(275), - [anon_sym_LT_LT_LT] = ACTIONS(275), - [sym__special_characters] = ACTIONS(275), - [anon_sym_DQUOTE] = ACTIONS(275), - [anon_sym_DOLLAR] = ACTIONS(277), - [sym_raw_string] = ACTIONS(275), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), - [anon_sym_BQUOTE] = ACTIONS(275), - [anon_sym_LT_LPAREN] = ACTIONS(275), - [anon_sym_GT_LPAREN] = ACTIONS(275), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(277), - [anon_sym_LF] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), + [sym__terminated_statement] = STATE(323), + [sym_for_statement] = STATE(321), + [sym_c_style_for_statement] = STATE(321), + [sym_while_statement] = STATE(321), + [sym_if_statement] = STATE(321), + [sym_case_statement] = STATE(321), + [sym_function_definition] = STATE(321), + [sym_subshell] = STATE(321), + [sym_pipeline] = STATE(321), + [sym_list] = STATE(321), + [sym_negated_command] = STATE(321), + [sym_test_command] = STATE(321), + [sym_declaration_command] = STATE(321), + [sym_unset_command] = STATE(321), + [sym_command] = STATE(321), + [sym_command_name] = STATE(92), + [sym_variable_assignment] = STATE(322), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(96), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), + [aux_sym__statements_repeat1] = STATE(323), + [aux_sym_command_repeat1] = STATE(96), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(137), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(149), + [anon_sym_declare] = ACTIONS(151), + [anon_sym_typeset] = ACTIONS(151), + [anon_sym_export] = ACTIONS(151), + [anon_sym_readonly] = ACTIONS(151), + [anon_sym_local] = ACTIONS(151), + [anon_sym_unset] = ACTIONS(153), + [anon_sym_unsetenv] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(159), }, [77] = { - [anon_sym_SEMI] = ACTIONS(537), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(541), - [anon_sym_SEMI_SEMI] = ACTIONS(543), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(543), - [anon_sym_AMP] = ACTIONS(537), + [anon_sym_in] = ACTIONS(577), + [anon_sym_SEMI] = ACTIONS(579), + [anon_sym_SEMI_SEMI] = ACTIONS(581), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(581), }, [78] = { - [sym_file_redirect] = STATE(306), - [sym_heredoc_redirect] = STATE(306), - [sym_heredoc_body] = STATE(185), - [sym_herestring_redirect] = STATE(306), - [sym_concatenation] = STATE(307), - [sym_string] = STATE(305), - [sym_simple_expansion] = STATE(305), - [sym_string_expansion] = STATE(305), - [sym_expansion] = STATE(305), - [sym_command_substitution] = STATE(305), - [sym_process_substitution] = STATE(305), - [aux_sym_while_statement_repeat1] = STATE(306), - [aux_sym_command_repeat2] = STATE(307), - [sym__simple_heredoc_body] = ACTIONS(321), - [sym__heredoc_body_beginning] = ACTIONS(323), - [sym_file_descriptor] = ACTIONS(549), - [anon_sym_SEMI] = ACTIONS(329), - [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_RPAREN] = ACTIONS(327), - [anon_sym_SEMI_SEMI] = ACTIONS(327), - [anon_sym_PIPE_AMP] = ACTIONS(327), - [anon_sym_AMP_AMP] = ACTIONS(327), - [anon_sym_PIPE_PIPE] = ACTIONS(327), - [anon_sym_EQ_TILDE] = ACTIONS(551), - [anon_sym_EQ_EQ] = ACTIONS(551), - [anon_sym_LT] = ACTIONS(553), - [anon_sym_GT] = ACTIONS(553), - [anon_sym_GT_GT] = ACTIONS(555), - [anon_sym_AMP_GT] = ACTIONS(553), - [anon_sym_AMP_GT_GT] = ACTIONS(555), - [anon_sym_LT_AMP] = ACTIONS(555), - [anon_sym_GT_AMP] = ACTIONS(555), - [anon_sym_LT_LT] = ACTIONS(337), - [anon_sym_LT_LT_DASH] = ACTIONS(339), - [anon_sym_LT_LT_LT] = ACTIONS(557), - [sym__special_characters] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(561), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(563), - [anon_sym_LF] = ACTIONS(327), - [anon_sym_AMP] = ACTIONS(329), + [sym_compound_statement] = STATE(326), + [anon_sym_LPAREN] = ACTIONS(593), + [anon_sym_LBRACE] = ACTIONS(595), + [sym_comment] = ACTIONS(55), }, [79] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(537), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(541), - [anon_sym_SEMI_SEMI] = ACTIONS(543), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(543), - [anon_sym_AMP] = ACTIONS(537), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_EQ] = ACTIONS(597), + [anon_sym_PLUS_EQ] = ACTIONS(597), + [sym_comment] = ACTIONS(55), }, [80] = { - [anon_sym_EQ] = ACTIONS(513), - [anon_sym_PLUS_EQ] = ACTIONS(513), - [sym_comment] = ACTIONS(53), + [sym__expression] = STATE(328), + [sym_binary_expression] = STATE(328), + [sym_unary_expression] = STATE(328), + [sym_postfix_expression] = STATE(328), + [sym_parenthesized_expression] = STATE(328), + [sym_concatenation] = STATE(328), + [sym_string] = STATE(44), + [sym_simple_expansion] = STATE(44), + [sym_string_expansion] = STATE(44), + [sym_expansion] = STATE(44), + [sym_command_substitution] = STATE(44), + [sym_process_substitution] = STATE(44), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(73), + [sym__special_characters] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(79), + [sym_raw_string] = ACTIONS(81), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(83), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(85), + [anon_sym_BQUOTE] = ACTIONS(87), + [anon_sym_LT_LPAREN] = ACTIONS(89), + [anon_sym_GT_LPAREN] = ACTIONS(89), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(91), + [sym_test_operator] = ACTIONS(93), }, [81] = { - [sym__terminated_statement] = STATE(190), - [sym_for_statement] = STATE(308), - [sym_c_style_for_statement] = STATE(308), - [sym_while_statement] = STATE(308), - [sym_if_statement] = STATE(308), - [sym_case_statement] = STATE(308), - [sym_function_definition] = STATE(308), - [sym_subshell] = STATE(308), - [sym_pipeline] = STATE(308), - [sym_list] = STATE(308), - [sym_negated_command] = STATE(308), - [sym_test_command] = STATE(308), - [sym_declaration_command] = STATE(308), - [sym_unset_command] = STATE(308), - [sym_command] = STATE(308), - [sym_command_name] = STATE(78), - [sym_variable_assignment] = STATE(309), - [sym_subscript] = STATE(80), - [sym_file_redirect] = STATE(82), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(75), - [sym_simple_expansion] = STATE(75), - [sym_string_expansion] = STATE(75), - [sym_expansion] = STATE(75), - [sym_command_substitution] = STATE(75), - [sym_process_substitution] = STATE(75), - [aux_sym__statements_repeat1] = STATE(190), - [aux_sym_command_repeat1] = STATE(82), + [sym__terminated_statement] = STATE(329), + [sym_for_statement] = STATE(63), + [sym_c_style_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_if_statement] = STATE(63), + [sym_case_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_subshell] = STATE(63), + [sym_pipeline] = STATE(63), + [sym_list] = STATE(63), + [sym_negated_command] = STATE(63), + [sym_test_command] = STATE(63), + [sym_declaration_command] = STATE(63), + [sym_unset_command] = STATE(63), + [sym_command] = STATE(63), + [sym_command_name] = STATE(64), + [sym_variable_assignment] = STATE(65), + [sym_subscript] = STATE(66), + [sym_file_redirect] = STATE(67), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(60), + [sym_simple_expansion] = STATE(60), + [sym_string_expansion] = STATE(60), + [sym_expansion] = STATE(60), + [sym_command_substitution] = STATE(60), + [sym_process_substitution] = STATE(60), + [aux_sym_command_repeat1] = STATE(67), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), + [sym_variable_name] = ACTIONS(95), [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(111), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(119), - [anon_sym_declare] = ACTIONS(121), - [anon_sym_typeset] = ACTIONS(121), - [anon_sym_export] = ACTIONS(121), - [anon_sym_readonly] = ACTIONS(121), - [anon_sym_local] = ACTIONS(121), - [anon_sym_unset] = ACTIONS(123), - [anon_sym_unsetenv] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), + [anon_sym_LPAREN_LPAREN] = ACTIONS(97), + [anon_sym_while] = ACTIONS(99), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(101), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_LBRACK] = ACTIONS(107), + [anon_sym_declare] = ACTIONS(109), + [anon_sym_typeset] = ACTIONS(109), + [anon_sym_export] = ACTIONS(109), + [anon_sym_readonly] = ACTIONS(109), + [anon_sym_local] = ACTIONS(109), + [anon_sym_unset] = ACTIONS(111), + [anon_sym_unsetenv] = ACTIONS(111), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(115), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(117), }, [82] = { - [sym_command_name] = STATE(310), - [sym_variable_assignment] = STATE(192), - [sym_subscript] = STATE(85), - [sym_file_redirect] = STATE(192), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(75), - [sym_simple_expansion] = STATE(75), - [sym_string_expansion] = STATE(75), - [sym_expansion] = STATE(75), - [sym_command_substitution] = STATE(75), - [sym_process_substitution] = STATE(75), - [aux_sym_command_repeat1] = STATE(192), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(131), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(565), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(127), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(599), }, [83] = { - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [sym_comment] = ACTIONS(53), + [sym_subshell] = STATE(98), + [sym_test_command] = STATE(98), + [sym_command] = STATE(98), + [sym_command_name] = STATE(92), + [sym_variable_assignment] = STATE(96), + [sym_subscript] = STATE(99), + [sym_file_redirect] = STATE(96), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), + [aux_sym_command_repeat1] = STATE(96), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(161), + [anon_sym_LPAREN_LPAREN] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(149), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(157), }, [84] = { - [ts_builtin_sym_end] = ACTIONS(569), - [anon_sym_SEMI] = ACTIONS(571), - [anon_sym_esac] = ACTIONS(569), - [anon_sym_PIPE] = ACTIONS(571), - [anon_sym_RPAREN] = ACTIONS(569), - [anon_sym_SEMI_SEMI] = ACTIONS(569), - [anon_sym_PIPE_AMP] = ACTIONS(569), - [anon_sym_AMP_AMP] = ACTIONS(569), - [anon_sym_PIPE_PIPE] = ACTIONS(569), - [anon_sym_BQUOTE] = ACTIONS(569), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(569), - [anon_sym_AMP] = ACTIONS(571), + [sym__expression] = STATE(331), + [sym_binary_expression] = STATE(331), + [sym_unary_expression] = STATE(331), + [sym_postfix_expression] = STATE(331), + [sym_parenthesized_expression] = STATE(331), + [sym_concatenation] = STATE(331), + [sym_string] = STATE(105), + [sym_simple_expansion] = STATE(105), + [sym_string_expansion] = STATE(105), + [sym_expansion] = STATE(105), + [sym_command_substitution] = STATE(105), + [sym_process_substitution] = STATE(105), + [anon_sym_LPAREN] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(165), + [sym__special_characters] = ACTIONS(167), + [anon_sym_DQUOTE] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(171), + [sym_raw_string] = ACTIONS(173), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(175), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(177), + [anon_sym_BQUOTE] = ACTIONS(179), + [anon_sym_LT_LPAREN] = ACTIONS(181), + [anon_sym_GT_LPAREN] = ACTIONS(181), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(183), + [sym_test_operator] = ACTIONS(185), }, [85] = { - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [sym_comment] = ACTIONS(53), + [sym__expression] = STATE(332), + [sym_binary_expression] = STATE(332), + [sym_unary_expression] = STATE(332), + [sym_postfix_expression] = STATE(332), + [sym_parenthesized_expression] = STATE(332), + [sym_concatenation] = STATE(332), + [sym_string] = STATE(113), + [sym_simple_expansion] = STATE(113), + [sym_string_expansion] = STATE(113), + [sym_expansion] = STATE(113), + [sym_command_substitution] = STATE(113), + [sym_process_substitution] = STATE(113), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(187), + [sym__special_characters] = ACTIONS(189), + [anon_sym_DQUOTE] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(79), + [sym_raw_string] = ACTIONS(191), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(83), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(85), + [anon_sym_BQUOTE] = ACTIONS(87), + [anon_sym_LT_LPAREN] = ACTIONS(89), + [anon_sym_GT_LPAREN] = ACTIONS(89), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(193), + [sym_test_operator] = ACTIONS(195), }, [86] = { - [sym__expression] = STATE(315), - [sym_binary_expression] = STATE(315), - [sym_unary_expression] = STATE(315), - [sym_parenthesized_expression] = STATE(315), - [sym_concatenation] = STATE(315), - [sym_string] = STATE(314), - [sym_simple_expansion] = STATE(314), - [sym_string_expansion] = STATE(314), - [sym_expansion] = STATE(314), - [sym_command_substitution] = STATE(314), - [sym_process_substitution] = STATE(314), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_BANG] = ACTIONS(573), - [sym__special_characters] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(163), - [anon_sym_DOLLAR] = ACTIONS(165), - [sym_raw_string] = ACTIONS(577), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(169), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(171), - [anon_sym_BQUOTE] = ACTIONS(173), - [anon_sym_LT_LPAREN] = ACTIONS(175), - [anon_sym_GT_LPAREN] = ACTIONS(175), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(579), - [sym_test_operator] = ACTIONS(581), + [sym_variable_assignment] = STATE(337), + [sym_subscript] = STATE(336), + [sym_concatenation] = STATE(337), + [sym_string] = STATE(335), + [sym_simple_expansion] = STATE(335), + [sym_string_expansion] = STATE(335), + [sym_expansion] = STATE(335), + [sym_command_substitution] = STATE(335), + [sym_process_substitution] = STATE(335), + [aux_sym_declaration_command_repeat1] = STATE(337), + [sym_variable_name] = ACTIONS(601), + [anon_sym_SEMI] = ACTIONS(201), + [anon_sym_PIPE] = ACTIONS(201), + [anon_sym_RPAREN] = ACTIONS(199), + [anon_sym_SEMI_SEMI] = ACTIONS(199), + [anon_sym_PIPE_AMP] = ACTIONS(199), + [anon_sym_AMP_AMP] = ACTIONS(199), + [anon_sym_PIPE_PIPE] = ACTIONS(199), + [sym__special_characters] = ACTIONS(603), + [anon_sym_DQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR] = ACTIONS(207), + [sym_raw_string] = ACTIONS(605), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_LT_LPAREN] = ACTIONS(217), + [anon_sym_GT_LPAREN] = ACTIONS(217), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(607), + [sym_word] = ACTIONS(609), + [anon_sym_LF] = ACTIONS(199), + [anon_sym_AMP] = ACTIONS(201), }, [87] = { - [sym__expression] = STATE(316), - [sym_binary_expression] = STATE(316), - [sym_unary_expression] = STATE(316), - [sym_parenthesized_expression] = STATE(316), - [sym_concatenation] = STATE(316), - [sym_string] = STATE(91), - [sym_simple_expansion] = STATE(91), - [sym_string_expansion] = STATE(91), - [sym_expansion] = STATE(91), - [sym_command_substitution] = STATE(91), - [sym_process_substitution] = STATE(91), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(135), - [sym__special_characters] = ACTIONS(137), - [anon_sym_DQUOTE] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(141), - [sym_raw_string] = ACTIONS(143), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(145), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(147), - [anon_sym_BQUOTE] = ACTIONS(149), - [anon_sym_LT_LPAREN] = ACTIONS(151), - [anon_sym_GT_LPAREN] = ACTIONS(151), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(153), - [sym_test_operator] = ACTIONS(155), + [sym_concatenation] = STATE(340), + [sym_string] = STATE(339), + [sym_simple_expansion] = STATE(339), + [sym_string_expansion] = STATE(339), + [sym_expansion] = STATE(339), + [sym_command_substitution] = STATE(339), + [sym_process_substitution] = STATE(339), + [aux_sym_unset_command_repeat1] = STATE(340), + [anon_sym_SEMI] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(225), + [anon_sym_RPAREN] = ACTIONS(223), + [anon_sym_SEMI_SEMI] = ACTIONS(223), + [anon_sym_PIPE_AMP] = ACTIONS(223), + [anon_sym_AMP_AMP] = ACTIONS(223), + [anon_sym_PIPE_PIPE] = ACTIONS(223), + [sym__special_characters] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(229), + [anon_sym_DOLLAR] = ACTIONS(231), + [sym_raw_string] = ACTIONS(613), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), + [anon_sym_BQUOTE] = ACTIONS(239), + [anon_sym_LT_LPAREN] = ACTIONS(241), + [anon_sym_GT_LPAREN] = ACTIONS(241), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(615), + [sym_word] = ACTIONS(617), + [anon_sym_LF] = ACTIONS(223), + [anon_sym_AMP] = ACTIONS(225), }, [88] = { - [aux_sym_concatenation_repeat1] = STATE(318), - [sym__concat] = ACTIONS(583), - [anon_sym_AMP_AMP] = ACTIONS(585), - [anon_sym_PIPE_PIPE] = ACTIONS(585), - [anon_sym_RBRACK] = ACTIONS(585), - [anon_sym_EQ_TILDE] = ACTIONS(585), - [anon_sym_EQ_EQ] = ACTIONS(585), - [anon_sym_EQ] = ACTIONS(587), - [anon_sym_LT] = ACTIONS(585), - [anon_sym_GT] = ACTIONS(585), - [anon_sym_BANG_EQ] = ACTIONS(585), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(585), + [aux_sym_concatenation_repeat1] = STATE(341), + [sym__simple_heredoc_body] = ACTIONS(263), + [sym__heredoc_body_beginning] = ACTIONS(263), + [sym_file_descriptor] = ACTIONS(263), + [sym__concat] = ACTIONS(265), + [anon_sym_SEMI] = ACTIONS(267), + [anon_sym_PIPE] = ACTIONS(267), + [anon_sym_RPAREN] = ACTIONS(263), + [anon_sym_SEMI_SEMI] = ACTIONS(263), + [anon_sym_PIPE_AMP] = ACTIONS(263), + [anon_sym_AMP_AMP] = ACTIONS(263), + [anon_sym_PIPE_PIPE] = ACTIONS(263), + [anon_sym_EQ_TILDE] = ACTIONS(267), + [anon_sym_EQ_EQ] = ACTIONS(267), + [anon_sym_LT] = ACTIONS(267), + [anon_sym_GT] = ACTIONS(267), + [anon_sym_GT_GT] = ACTIONS(263), + [anon_sym_AMP_GT] = ACTIONS(267), + [anon_sym_AMP_GT_GT] = ACTIONS(263), + [anon_sym_LT_AMP] = ACTIONS(263), + [anon_sym_GT_AMP] = ACTIONS(263), + [anon_sym_LT_LT] = ACTIONS(267), + [anon_sym_LT_LT_DASH] = ACTIONS(263), + [anon_sym_LT_LT_LT] = ACTIONS(263), + [sym__special_characters] = ACTIONS(263), + [anon_sym_DQUOTE] = ACTIONS(263), + [anon_sym_DOLLAR] = ACTIONS(267), + [sym_raw_string] = ACTIONS(263), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(263), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(263), + [anon_sym_BQUOTE] = ACTIONS(263), + [anon_sym_LT_LPAREN] = ACTIONS(263), + [anon_sym_GT_LPAREN] = ACTIONS(263), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(267), + [anon_sym_LF] = ACTIONS(263), + [anon_sym_AMP] = ACTIONS(267), }, [89] = { - [sym_simple_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [sym_command_substitution] = STATE(141), - [aux_sym_string_repeat1] = STATE(321), - [anon_sym_DQUOTE] = ACTIONS(589), - [anon_sym_DOLLAR] = ACTIONS(591), - [sym__string_content] = ACTIONS(257), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(261), - [anon_sym_BQUOTE] = ACTIONS(263), - [sym_comment] = ACTIONS(265), + [aux_sym_concatenation_repeat1] = STATE(341), + [sym__simple_heredoc_body] = ACTIONS(291), + [sym__heredoc_body_beginning] = ACTIONS(291), + [sym_file_descriptor] = ACTIONS(291), + [sym__concat] = ACTIONS(265), + [anon_sym_SEMI] = ACTIONS(293), + [anon_sym_PIPE] = ACTIONS(293), + [anon_sym_RPAREN] = ACTIONS(291), + [anon_sym_SEMI_SEMI] = ACTIONS(291), + [anon_sym_PIPE_AMP] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(291), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_EQ_TILDE] = ACTIONS(293), + [anon_sym_EQ_EQ] = ACTIONS(293), + [anon_sym_LT] = ACTIONS(293), + [anon_sym_GT] = ACTIONS(293), + [anon_sym_GT_GT] = ACTIONS(291), + [anon_sym_AMP_GT] = ACTIONS(293), + [anon_sym_AMP_GT_GT] = ACTIONS(291), + [anon_sym_LT_AMP] = ACTIONS(291), + [anon_sym_GT_AMP] = ACTIONS(291), + [anon_sym_LT_LT] = ACTIONS(293), + [anon_sym_LT_LT_DASH] = ACTIONS(291), + [anon_sym_LT_LT_LT] = ACTIONS(291), + [sym__special_characters] = ACTIONS(291), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_DOLLAR] = ACTIONS(293), + [sym_raw_string] = ACTIONS(291), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(291), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(291), + [anon_sym_BQUOTE] = ACTIONS(291), + [anon_sym_LT_LPAREN] = ACTIONS(291), + [anon_sym_GT_LPAREN] = ACTIONS(291), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(293), + [anon_sym_LF] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(293), }, [90] = { - [sym_string] = STATE(323), - [anon_sym_DQUOTE] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(593), - [sym_raw_string] = ACTIONS(595), - [anon_sym_POUND] = ACTIONS(593), - [anon_sym_DASH] = ACTIONS(593), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(597), - [anon_sym_STAR] = ACTIONS(599), - [anon_sym_AT] = ACTIONS(599), - [anon_sym_QMARK] = ACTIONS(599), - [anon_sym_0] = ACTIONS(597), - [anon_sym__] = ACTIONS(597), + [aux_sym_concatenation_repeat1] = STATE(341), + [sym__simple_heredoc_body] = ACTIONS(291), + [sym__heredoc_body_beginning] = ACTIONS(291), + [sym_file_descriptor] = ACTIONS(291), + [sym__concat] = ACTIONS(265), + [anon_sym_SEMI] = ACTIONS(293), + [anon_sym_PIPE] = ACTIONS(293), + [anon_sym_RPAREN] = ACTIONS(291), + [anon_sym_SEMI_SEMI] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(619), + [anon_sym_PIPE_AMP] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(291), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_EQ_TILDE] = ACTIONS(293), + [anon_sym_EQ_EQ] = ACTIONS(293), + [anon_sym_LT] = ACTIONS(293), + [anon_sym_GT] = ACTIONS(293), + [anon_sym_GT_GT] = ACTIONS(291), + [anon_sym_AMP_GT] = ACTIONS(293), + [anon_sym_AMP_GT_GT] = ACTIONS(291), + [anon_sym_LT_AMP] = ACTIONS(291), + [anon_sym_GT_AMP] = ACTIONS(291), + [anon_sym_LT_LT] = ACTIONS(293), + [anon_sym_LT_LT_DASH] = ACTIONS(291), + [anon_sym_LT_LT_LT] = ACTIONS(291), + [sym__special_characters] = ACTIONS(291), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_DOLLAR] = ACTIONS(293), + [sym_raw_string] = ACTIONS(291), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(291), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(291), + [anon_sym_BQUOTE] = ACTIONS(291), + [anon_sym_LT_LPAREN] = ACTIONS(291), + [anon_sym_GT_LPAREN] = ACTIONS(291), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(293), + [anon_sym_LF] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(293), }, [91] = { - [aux_sym_concatenation_repeat1] = STATE(318), - [sym__concat] = ACTIONS(583), - [anon_sym_AMP_AMP] = ACTIONS(601), - [anon_sym_PIPE_PIPE] = ACTIONS(601), - [anon_sym_RBRACK] = ACTIONS(601), - [anon_sym_EQ_TILDE] = ACTIONS(601), - [anon_sym_EQ_EQ] = ACTIONS(601), - [anon_sym_EQ] = ACTIONS(603), - [anon_sym_LT] = ACTIONS(601), - [anon_sym_GT] = ACTIONS(601), - [anon_sym_BANG_EQ] = ACTIONS(601), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(601), + [anon_sym_SEMI] = ACTIONS(621), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(625), + [anon_sym_SEMI_SEMI] = ACTIONS(627), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(621), }, [92] = { - [sym_subscript] = STATE(328), - [sym_variable_name] = ACTIONS(605), - [anon_sym_BANG] = ACTIONS(607), - [anon_sym_DOLLAR] = ACTIONS(609), - [anon_sym_POUND] = ACTIONS(607), - [anon_sym_DASH] = ACTIONS(609), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(611), - [anon_sym_STAR] = ACTIONS(613), - [anon_sym_AT] = ACTIONS(613), - [anon_sym_QMARK] = ACTIONS(613), - [anon_sym_0] = ACTIONS(611), - [anon_sym__] = ACTIONS(611), + [sym_file_redirect] = STATE(353), + [sym_heredoc_redirect] = STATE(353), + [sym_heredoc_body] = STATE(193), + [sym_herestring_redirect] = STATE(353), + [sym_concatenation] = STATE(354), + [sym_string] = STATE(352), + [sym_simple_expansion] = STATE(352), + [sym_string_expansion] = STATE(352), + [sym_expansion] = STATE(352), + [sym_command_substitution] = STATE(352), + [sym_process_substitution] = STATE(352), + [aux_sym_while_statement_repeat1] = STATE(353), + [aux_sym_command_repeat2] = STATE(354), + [sym__simple_heredoc_body] = ACTIONS(339), + [sym__heredoc_body_beginning] = ACTIONS(341), + [sym_file_descriptor] = ACTIONS(633), + [anon_sym_SEMI] = ACTIONS(347), + [anon_sym_PIPE] = ACTIONS(347), + [anon_sym_RPAREN] = ACTIONS(345), + [anon_sym_SEMI_SEMI] = ACTIONS(345), + [anon_sym_PIPE_AMP] = ACTIONS(345), + [anon_sym_AMP_AMP] = ACTIONS(345), + [anon_sym_PIPE_PIPE] = ACTIONS(345), + [anon_sym_EQ_TILDE] = ACTIONS(635), + [anon_sym_EQ_EQ] = ACTIONS(635), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_GT] = ACTIONS(637), + [anon_sym_GT_GT] = ACTIONS(639), + [anon_sym_AMP_GT] = ACTIONS(637), + [anon_sym_AMP_GT_GT] = ACTIONS(639), + [anon_sym_LT_AMP] = ACTIONS(639), + [anon_sym_GT_AMP] = ACTIONS(639), + [anon_sym_LT_LT] = ACTIONS(355), + [anon_sym_LT_LT_DASH] = ACTIONS(357), + [anon_sym_LT_LT_LT] = ACTIONS(641), + [sym__special_characters] = ACTIONS(643), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(645), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(647), + [anon_sym_LF] = ACTIONS(345), + [anon_sym_AMP] = ACTIONS(347), }, [93] = { - [sym__terminated_statement] = STATE(331), - [sym_for_statement] = STATE(329), - [sym_c_style_for_statement] = STATE(329), - [sym_while_statement] = STATE(329), - [sym_if_statement] = STATE(329), - [sym_case_statement] = STATE(329), - [sym_function_definition] = STATE(329), - [sym_subshell] = STATE(329), - [sym_pipeline] = STATE(329), - [sym_list] = STATE(329), - [sym_negated_command] = STATE(329), - [sym_test_command] = STATE(329), - [sym_declaration_command] = STATE(329), - [sym_unset_command] = STATE(329), - [sym_command] = STATE(329), - [sym_command_name] = STATE(78), - [sym_variable_assignment] = STATE(330), - [sym_subscript] = STATE(80), - [sym_file_redirect] = STATE(82), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(75), - [sym_simple_expansion] = STATE(75), - [sym_string_expansion] = STATE(75), - [sym_expansion] = STATE(75), - [sym_command_substitution] = STATE(75), - [sym_process_substitution] = STATE(75), - [aux_sym__statements_repeat1] = STATE(331), - [aux_sym_command_repeat1] = STATE(82), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(111), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(119), - [anon_sym_declare] = ACTIONS(121), - [anon_sym_typeset] = ACTIONS(121), - [anon_sym_export] = ACTIONS(121), - [anon_sym_readonly] = ACTIONS(121), - [anon_sym_local] = ACTIONS(121), - [anon_sym_unset] = ACTIONS(123), - [anon_sym_unsetenv] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(621), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(625), + [anon_sym_SEMI_SEMI] = ACTIONS(627), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(621), }, [94] = { - [sym__terminated_statement] = STATE(334), - [sym_for_statement] = STATE(332), - [sym_c_style_for_statement] = STATE(332), - [sym_while_statement] = STATE(332), - [sym_if_statement] = STATE(332), - [sym_case_statement] = STATE(332), - [sym_function_definition] = STATE(332), - [sym_subshell] = STATE(332), - [sym_pipeline] = STATE(332), - [sym_list] = STATE(332), - [sym_negated_command] = STATE(332), - [sym_test_command] = STATE(332), - [sym_declaration_command] = STATE(332), - [sym_unset_command] = STATE(332), - [sym_command] = STATE(332), - [sym_command_name] = STATE(165), - [sym_variable_assignment] = STATE(333), - [sym_subscript] = STATE(53), - [sym_file_redirect] = STATE(168), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(47), - [sym_simple_expansion] = STATE(47), - [sym_string_expansion] = STATE(47), - [sym_expansion] = STATE(47), - [sym_command_substitution] = STATE(47), - [sym_process_substitution] = STATE(47), - [aux_sym__statements_repeat1] = STATE(334), - [aux_sym_command_repeat1] = STATE(168), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(69), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(289), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(291), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(293), - [anon_sym_LBRACK] = ACTIONS(295), - [anon_sym_LBRACK_LBRACK] = ACTIONS(297), - [anon_sym_declare] = ACTIONS(299), - [anon_sym_typeset] = ACTIONS(299), - [anon_sym_export] = ACTIONS(299), - [anon_sym_readonly] = ACTIONS(299), - [anon_sym_local] = ACTIONS(299), - [anon_sym_unset] = ACTIONS(301), - [anon_sym_unsetenv] = ACTIONS(301), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(87), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(303), + [anon_sym_EQ] = ACTIONS(597), + [anon_sym_PLUS_EQ] = ACTIONS(597), + [sym_comment] = ACTIONS(55), }, [95] = { - [sym__terminated_statement] = STATE(337), - [sym_for_statement] = STATE(335), - [sym_c_style_for_statement] = STATE(335), - [sym_while_statement] = STATE(335), - [sym_if_statement] = STATE(335), - [sym_case_statement] = STATE(335), - [sym_function_definition] = STATE(335), - [sym_subshell] = STATE(335), - [sym_pipeline] = STATE(335), - [sym_list] = STATE(335), - [sym_negated_command] = STATE(335), - [sym_test_command] = STATE(335), - [sym_declaration_command] = STATE(335), - [sym_unset_command] = STATE(335), - [sym_command] = STATE(335), - [sym_command_name] = STATE(78), - [sym_variable_assignment] = STATE(336), - [sym_subscript] = STATE(80), - [sym_file_redirect] = STATE(82), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(75), - [sym_simple_expansion] = STATE(75), - [sym_string_expansion] = STATE(75), - [sym_expansion] = STATE(75), - [sym_command_substitution] = STATE(75), - [sym_process_substitution] = STATE(75), - [aux_sym__statements_repeat1] = STATE(337), - [aux_sym_command_repeat1] = STATE(82), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(111), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(119), - [anon_sym_declare] = ACTIONS(121), - [anon_sym_typeset] = ACTIONS(121), - [anon_sym_export] = ACTIONS(121), - [anon_sym_readonly] = ACTIONS(121), - [anon_sym_local] = ACTIONS(121), - [anon_sym_unset] = ACTIONS(123), - [anon_sym_unsetenv] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), - }, - [96] = { - [anon_sym_AMP_AMP] = ACTIONS(615), - [anon_sym_PIPE_PIPE] = ACTIONS(615), - [anon_sym_RBRACK] = ACTIONS(617), - [anon_sym_EQ_TILDE] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(619), - [anon_sym_EQ] = ACTIONS(621), - [anon_sym_LT] = ACTIONS(615), - [anon_sym_GT] = ACTIONS(615), - [anon_sym_BANG_EQ] = ACTIONS(615), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(615), - }, - [97] = { - [sym__expression] = STATE(341), - [sym_binary_expression] = STATE(341), - [sym_unary_expression] = STATE(341), - [sym_parenthesized_expression] = STATE(341), - [sym_concatenation] = STATE(341), - [sym_string] = STATE(314), - [sym_simple_expansion] = STATE(314), - [sym_string_expansion] = STATE(314), - [sym_expansion] = STATE(314), - [sym_command_substitution] = STATE(314), - [sym_process_substitution] = STATE(314), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_BANG] = ACTIONS(573), - [sym__special_characters] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(163), - [anon_sym_DOLLAR] = ACTIONS(165), - [sym_raw_string] = ACTIONS(577), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(169), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(171), - [anon_sym_BQUOTE] = ACTIONS(173), - [anon_sym_LT_LPAREN] = ACTIONS(175), - [anon_sym_GT_LPAREN] = ACTIONS(175), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(579), - [sym_test_operator] = ACTIONS(581), - }, - [98] = { - [sym__expression] = STATE(342), - [sym_binary_expression] = STATE(342), - [sym_unary_expression] = STATE(342), - [sym_parenthesized_expression] = STATE(342), - [sym_concatenation] = STATE(342), - [sym_string] = STATE(102), - [sym_simple_expansion] = STATE(102), - [sym_string_expansion] = STATE(102), - [sym_expansion] = STATE(102), - [sym_command_substitution] = STATE(102), - [sym_process_substitution] = STATE(102), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_BANG] = ACTIONS(159), - [sym__special_characters] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(163), - [anon_sym_DOLLAR] = ACTIONS(165), - [sym_raw_string] = ACTIONS(167), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(169), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(171), - [anon_sym_BQUOTE] = ACTIONS(173), - [anon_sym_LT_LPAREN] = ACTIONS(175), - [anon_sym_GT_LPAREN] = ACTIONS(175), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(177), - [sym_test_operator] = ACTIONS(179), - }, - [99] = { - [aux_sym_concatenation_repeat1] = STATE(344), - [sym__concat] = ACTIONS(623), - [anon_sym_AMP_AMP] = ACTIONS(585), - [anon_sym_PIPE_PIPE] = ACTIONS(585), - [anon_sym_RBRACK_RBRACK] = ACTIONS(585), - [anon_sym_EQ_TILDE] = ACTIONS(585), - [anon_sym_EQ_EQ] = ACTIONS(585), - [anon_sym_EQ] = ACTIONS(587), - [anon_sym_LT] = ACTIONS(585), - [anon_sym_GT] = ACTIONS(585), - [anon_sym_BANG_EQ] = ACTIONS(585), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(585), - }, - [100] = { - [sym_simple_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [sym_command_substitution] = STATE(141), - [aux_sym_string_repeat1] = STATE(347), - [anon_sym_DQUOTE] = ACTIONS(625), - [anon_sym_DOLLAR] = ACTIONS(627), - [sym__string_content] = ACTIONS(257), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(261), - [anon_sym_BQUOTE] = ACTIONS(263), - [sym_comment] = ACTIONS(265), - }, - [101] = { - [sym_string] = STATE(349), - [anon_sym_DQUOTE] = ACTIONS(163), - [anon_sym_DOLLAR] = ACTIONS(629), - [sym_raw_string] = ACTIONS(631), - [anon_sym_POUND] = ACTIONS(629), - [anon_sym_DASH] = ACTIONS(629), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(633), - [anon_sym_STAR] = ACTIONS(635), - [anon_sym_AT] = ACTIONS(635), - [anon_sym_QMARK] = ACTIONS(635), - [anon_sym_0] = ACTIONS(633), - [anon_sym__] = ACTIONS(633), - }, - [102] = { - [aux_sym_concatenation_repeat1] = STATE(344), - [sym__concat] = ACTIONS(623), - [anon_sym_AMP_AMP] = ACTIONS(601), - [anon_sym_PIPE_PIPE] = ACTIONS(601), - [anon_sym_RBRACK_RBRACK] = ACTIONS(601), - [anon_sym_EQ_TILDE] = ACTIONS(601), - [anon_sym_EQ_EQ] = ACTIONS(601), - [anon_sym_EQ] = ACTIONS(603), - [anon_sym_LT] = ACTIONS(601), - [anon_sym_GT] = ACTIONS(601), - [anon_sym_BANG_EQ] = ACTIONS(601), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(601), - }, - [103] = { - [sym_subscript] = STATE(354), - [sym_variable_name] = ACTIONS(637), - [anon_sym_BANG] = ACTIONS(639), - [anon_sym_DOLLAR] = ACTIONS(641), - [anon_sym_POUND] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(641), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(643), - [anon_sym_STAR] = ACTIONS(645), - [anon_sym_AT] = ACTIONS(645), - [anon_sym_QMARK] = ACTIONS(645), - [anon_sym_0] = ACTIONS(643), - [anon_sym__] = ACTIONS(643), - }, - [104] = { - [sym__terminated_statement] = STATE(357), + [sym__terminated_statement] = STATE(198), [sym_for_statement] = STATE(355), [sym_c_style_for_statement] = STATE(355), [sym_while_statement] = STATE(355), @@ -11677,303 +11334,397 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(355), [sym_unset_command] = STATE(355), [sym_command] = STATE(355), - [sym_command_name] = STATE(78), + [sym_command_name] = STATE(92), [sym_variable_assignment] = STATE(356), - [sym_subscript] = STATE(80), - [sym_file_redirect] = STATE(82), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(75), - [sym_simple_expansion] = STATE(75), - [sym_string_expansion] = STATE(75), - [sym_expansion] = STATE(75), - [sym_command_substitution] = STATE(75), - [sym_process_substitution] = STATE(75), - [aux_sym__statements_repeat1] = STATE(357), - [aux_sym_command_repeat1] = STATE(82), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(96), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), + [aux_sym__statements_repeat1] = STATE(198), + [aux_sym_command_repeat1] = STATE(96), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), + [sym_variable_name] = ACTIONS(137), [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(111), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(119), - [anon_sym_declare] = ACTIONS(121), - [anon_sym_typeset] = ACTIONS(121), - [anon_sym_export] = ACTIONS(121), - [anon_sym_readonly] = ACTIONS(121), - [anon_sym_local] = ACTIONS(121), - [anon_sym_unset] = ACTIONS(123), - [anon_sym_unsetenv] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), + [anon_sym_LPAREN_LPAREN] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(149), + [anon_sym_declare] = ACTIONS(151), + [anon_sym_typeset] = ACTIONS(151), + [anon_sym_export] = ACTIONS(151), + [anon_sym_readonly] = ACTIONS(151), + [anon_sym_local] = ACTIONS(151), + [anon_sym_unset] = ACTIONS(153), + [anon_sym_unsetenv] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(159), + }, + [96] = { + [sym_command_name] = STATE(357), + [sym_variable_assignment] = STATE(200), + [sym_subscript] = STATE(99), + [sym_file_redirect] = STATE(200), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), + [aux_sym_command_repeat1] = STATE(200), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(649), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(157), + }, + [97] = { + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_EQ] = ACTIONS(651), + [anon_sym_PLUS_EQ] = ACTIONS(651), + [sym_comment] = ACTIONS(55), + }, + [98] = { + [ts_builtin_sym_end] = ACTIONS(653), + [anon_sym_SEMI] = ACTIONS(655), + [anon_sym_esac] = ACTIONS(653), + [anon_sym_PIPE] = ACTIONS(655), + [anon_sym_RPAREN] = ACTIONS(653), + [anon_sym_SEMI_SEMI] = ACTIONS(653), + [anon_sym_PIPE_AMP] = ACTIONS(653), + [anon_sym_AMP_AMP] = ACTIONS(653), + [anon_sym_PIPE_PIPE] = ACTIONS(653), + [anon_sym_BQUOTE] = ACTIONS(653), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(653), + [anon_sym_AMP] = ACTIONS(655), + }, + [99] = { + [anon_sym_EQ] = ACTIONS(651), + [anon_sym_PLUS_EQ] = ACTIONS(651), + [sym_comment] = ACTIONS(55), + }, + [100] = { + [sym__expression] = STATE(359), + [sym_binary_expression] = STATE(359), + [sym_unary_expression] = STATE(359), + [sym_postfix_expression] = STATE(359), + [sym_parenthesized_expression] = STATE(359), + [sym_concatenation] = STATE(359), + [sym_string] = STATE(236), + [sym_simple_expansion] = STATE(236), + [sym_string_expansion] = STATE(236), + [sym_expansion] = STATE(236), + [sym_command_substitution] = STATE(236), + [sym_process_substitution] = STATE(236), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_BANG] = ACTIONS(437), + [sym__special_characters] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(441), + [anon_sym_DOLLAR] = ACTIONS(443), + [sym_raw_string] = ACTIONS(445), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(447), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(449), + [anon_sym_BQUOTE] = ACTIONS(451), + [anon_sym_LT_LPAREN] = ACTIONS(453), + [anon_sym_GT_LPAREN] = ACTIONS(453), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(455), + [sym_test_operator] = ACTIONS(457), + }, + [101] = { + [sym__expression] = STATE(360), + [sym_binary_expression] = STATE(360), + [sym_unary_expression] = STATE(360), + [sym_postfix_expression] = STATE(360), + [sym_parenthesized_expression] = STATE(360), + [sym_concatenation] = STATE(360), + [sym_string] = STATE(105), + [sym_simple_expansion] = STATE(105), + [sym_string_expansion] = STATE(105), + [sym_expansion] = STATE(105), + [sym_command_substitution] = STATE(105), + [sym_process_substitution] = STATE(105), + [anon_sym_LPAREN] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(165), + [sym__special_characters] = ACTIONS(167), + [anon_sym_DQUOTE] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(171), + [sym_raw_string] = ACTIONS(173), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(175), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(177), + [anon_sym_BQUOTE] = ACTIONS(179), + [anon_sym_LT_LPAREN] = ACTIONS(181), + [anon_sym_GT_LPAREN] = ACTIONS(181), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(183), + [sym_test_operator] = ACTIONS(185), + }, + [102] = { + [aux_sym_concatenation_repeat1] = STATE(362), + [sym__concat] = ACTIONS(657), + [anon_sym_AMP_AMP] = ACTIONS(461), + [anon_sym_PIPE_PIPE] = ACTIONS(461), + [anon_sym_RBRACK] = ACTIONS(461), + [anon_sym_EQ_TILDE] = ACTIONS(461), + [anon_sym_EQ_EQ] = ACTIONS(461), + [anon_sym_EQ] = ACTIONS(463), + [anon_sym_PLUS_EQ] = ACTIONS(461), + [anon_sym_LT] = ACTIONS(463), + [anon_sym_GT] = ACTIONS(463), + [anon_sym_BANG_EQ] = ACTIONS(461), + [anon_sym_PLUS] = ACTIONS(463), + [anon_sym_DASH] = ACTIONS(463), + [anon_sym_DASH_EQ] = ACTIONS(461), + [anon_sym_LT_EQ] = ACTIONS(461), + [anon_sym_GT_EQ] = ACTIONS(461), + [anon_sym_PLUS_PLUS] = ACTIONS(461), + [anon_sym_DASH_DASH] = ACTIONS(461), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(461), + }, + [103] = { + [sym_simple_expansion] = STATE(148), + [sym_expansion] = STATE(148), + [sym_command_substitution] = STATE(148), + [aux_sym_string_repeat1] = STATE(365), + [anon_sym_DQUOTE] = ACTIONS(659), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym__string_content] = ACTIONS(273), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(277), + [anon_sym_BQUOTE] = ACTIONS(279), + [sym_comment] = ACTIONS(281), + }, + [104] = { + [sym_string] = STATE(367), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_DQUOTE] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(663), + [sym_raw_string] = ACTIONS(665), + [anon_sym_POUND] = ACTIONS(663), + [sym_comment] = ACTIONS(281), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(667), + [anon_sym_STAR] = ACTIONS(669), + [anon_sym_AT] = ACTIONS(669), + [anon_sym_QMARK] = ACTIONS(669), + [anon_sym_0] = ACTIONS(667), + [anon_sym__] = ACTIONS(667), }, [105] = { - [sym__terminated_statement] = STATE(360), - [sym_for_statement] = STATE(358), - [sym_c_style_for_statement] = STATE(358), - [sym_while_statement] = STATE(358), - [sym_if_statement] = STATE(358), - [sym_case_statement] = STATE(358), - [sym_function_definition] = STATE(358), - [sym_subshell] = STATE(358), - [sym_pipeline] = STATE(358), - [sym_list] = STATE(358), - [sym_negated_command] = STATE(358), - [sym_test_command] = STATE(358), - [sym_declaration_command] = STATE(358), - [sym_unset_command] = STATE(358), - [sym_command] = STATE(358), - [sym_command_name] = STATE(165), - [sym_variable_assignment] = STATE(359), - [sym_subscript] = STATE(53), - [sym_file_redirect] = STATE(168), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(47), - [sym_simple_expansion] = STATE(47), - [sym_string_expansion] = STATE(47), - [sym_expansion] = STATE(47), - [sym_command_substitution] = STATE(47), - [sym_process_substitution] = STATE(47), - [aux_sym__statements_repeat1] = STATE(360), - [aux_sym_command_repeat1] = STATE(168), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(69), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(289), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(291), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(293), - [anon_sym_LBRACK] = ACTIONS(295), - [anon_sym_LBRACK_LBRACK] = ACTIONS(297), - [anon_sym_declare] = ACTIONS(299), - [anon_sym_typeset] = ACTIONS(299), - [anon_sym_export] = ACTIONS(299), - [anon_sym_readonly] = ACTIONS(299), - [anon_sym_local] = ACTIONS(299), - [anon_sym_unset] = ACTIONS(301), - [anon_sym_unsetenv] = ACTIONS(301), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(87), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(303), + [aux_sym_concatenation_repeat1] = STATE(362), + [sym__concat] = ACTIONS(657), + [anon_sym_AMP_AMP] = ACTIONS(477), + [anon_sym_PIPE_PIPE] = ACTIONS(477), + [anon_sym_RBRACK] = ACTIONS(477), + [anon_sym_EQ_TILDE] = ACTIONS(477), + [anon_sym_EQ_EQ] = ACTIONS(477), + [anon_sym_EQ] = ACTIONS(479), + [anon_sym_PLUS_EQ] = ACTIONS(477), + [anon_sym_LT] = ACTIONS(479), + [anon_sym_GT] = ACTIONS(479), + [anon_sym_BANG_EQ] = ACTIONS(477), + [anon_sym_PLUS] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(479), + [anon_sym_DASH_EQ] = ACTIONS(477), + [anon_sym_LT_EQ] = ACTIONS(477), + [anon_sym_GT_EQ] = ACTIONS(477), + [anon_sym_PLUS_PLUS] = ACTIONS(477), + [anon_sym_DASH_DASH] = ACTIONS(477), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(477), }, [106] = { - [sym__terminated_statement] = STATE(363), - [sym_for_statement] = STATE(361), - [sym_c_style_for_statement] = STATE(361), - [sym_while_statement] = STATE(361), - [sym_if_statement] = STATE(361), - [sym_case_statement] = STATE(361), - [sym_function_definition] = STATE(361), - [sym_subshell] = STATE(361), - [sym_pipeline] = STATE(361), - [sym_list] = STATE(361), - [sym_negated_command] = STATE(361), - [sym_test_command] = STATE(361), - [sym_declaration_command] = STATE(361), - [sym_unset_command] = STATE(361), - [sym_command] = STATE(361), - [sym_command_name] = STATE(78), - [sym_variable_assignment] = STATE(362), - [sym_subscript] = STATE(80), - [sym_file_redirect] = STATE(82), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(75), - [sym_simple_expansion] = STATE(75), - [sym_string_expansion] = STATE(75), - [sym_expansion] = STATE(75), - [sym_command_substitution] = STATE(75), - [sym_process_substitution] = STATE(75), - [aux_sym__statements_repeat1] = STATE(363), - [aux_sym_command_repeat1] = STATE(82), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(111), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(119), - [anon_sym_declare] = ACTIONS(121), - [anon_sym_typeset] = ACTIONS(121), - [anon_sym_export] = ACTIONS(121), - [anon_sym_readonly] = ACTIONS(121), - [anon_sym_local] = ACTIONS(121), - [anon_sym_unset] = ACTIONS(123), - [anon_sym_unsetenv] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), + [sym_subscript] = STATE(372), + [sym_variable_name] = ACTIONS(671), + [anon_sym_BANG] = ACTIONS(673), + [anon_sym_DASH] = ACTIONS(675), + [anon_sym_DOLLAR] = ACTIONS(675), + [anon_sym_POUND] = ACTIONS(673), + [sym_comment] = ACTIONS(281), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(677), + [anon_sym_STAR] = ACTIONS(679), + [anon_sym_AT] = ACTIONS(679), + [anon_sym_QMARK] = ACTIONS(679), + [anon_sym_0] = ACTIONS(677), + [anon_sym__] = ACTIONS(677), }, [107] = { - [anon_sym_AMP_AMP] = ACTIONS(647), - [anon_sym_PIPE_PIPE] = ACTIONS(647), - [anon_sym_RBRACK_RBRACK] = ACTIONS(617), - [anon_sym_EQ_TILDE] = ACTIONS(649), - [anon_sym_EQ_EQ] = ACTIONS(649), - [anon_sym_EQ] = ACTIONS(651), - [anon_sym_LT] = ACTIONS(647), - [anon_sym_GT] = ACTIONS(647), - [anon_sym_BANG_EQ] = ACTIONS(647), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(647), + [sym__terminated_statement] = STATE(375), + [sym_for_statement] = STATE(373), + [sym_c_style_for_statement] = STATE(373), + [sym_while_statement] = STATE(373), + [sym_if_statement] = STATE(373), + [sym_case_statement] = STATE(373), + [sym_function_definition] = STATE(373), + [sym_subshell] = STATE(373), + [sym_pipeline] = STATE(373), + [sym_list] = STATE(373), + [sym_negated_command] = STATE(373), + [sym_test_command] = STATE(373), + [sym_declaration_command] = STATE(373), + [sym_unset_command] = STATE(373), + [sym_command] = STATE(373), + [sym_command_name] = STATE(92), + [sym_variable_assignment] = STATE(374), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(96), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), + [aux_sym__statements_repeat1] = STATE(375), + [aux_sym_command_repeat1] = STATE(96), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(137), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(149), + [anon_sym_declare] = ACTIONS(151), + [anon_sym_typeset] = ACTIONS(151), + [anon_sym_export] = ACTIONS(151), + [anon_sym_readonly] = ACTIONS(151), + [anon_sym_local] = ACTIONS(151), + [anon_sym_unset] = ACTIONS(153), + [anon_sym_unsetenv] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(159), }, [108] = { - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_EQ] = ACTIONS(653), - [anon_sym_PLUS_EQ] = ACTIONS(653), - [sym_comment] = ACTIONS(53), + [sym__terminated_statement] = STATE(378), + [sym_for_statement] = STATE(376), + [sym_c_style_for_statement] = STATE(376), + [sym_while_statement] = STATE(376), + [sym_if_statement] = STATE(376), + [sym_case_statement] = STATE(376), + [sym_function_definition] = STATE(376), + [sym_subshell] = STATE(376), + [sym_pipeline] = STATE(376), + [sym_list] = STATE(376), + [sym_negated_command] = STATE(376), + [sym_test_command] = STATE(376), + [sym_declaration_command] = STATE(376), + [sym_unset_command] = STATE(376), + [sym_command] = STATE(376), + [sym_command_name] = STATE(173), + [sym_variable_assignment] = STATE(377), + [sym_subscript] = STATE(66), + [sym_file_redirect] = STATE(176), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(60), + [sym_simple_expansion] = STATE(60), + [sym_string_expansion] = STATE(60), + [sym_expansion] = STATE(60), + [sym_command_substitution] = STATE(60), + [sym_process_substitution] = STATE(60), + [aux_sym__statements_repeat1] = STATE(378), + [aux_sym_command_repeat1] = STATE(176), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(95), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(305), + [anon_sym_while] = ACTIONS(307), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(311), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(315), + [anon_sym_declare] = ACTIONS(317), + [anon_sym_typeset] = ACTIONS(317), + [anon_sym_export] = ACTIONS(317), + [anon_sym_readonly] = ACTIONS(317), + [anon_sym_local] = ACTIONS(317), + [anon_sym_unset] = ACTIONS(319), + [anon_sym_unsetenv] = ACTIONS(319), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(115), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(321), }, [109] = { - [aux_sym_concatenation_repeat1] = STATE(368), - [sym__concat] = ACTIONS(655), - [sym_variable_name] = ACTIONS(657), - [ts_builtin_sym_end] = ACTIONS(657), - [anon_sym_SEMI] = ACTIONS(659), - [anon_sym_PIPE] = ACTIONS(659), - [anon_sym_SEMI_SEMI] = ACTIONS(657), - [anon_sym_PIPE_AMP] = ACTIONS(657), - [anon_sym_AMP_AMP] = ACTIONS(657), - [anon_sym_PIPE_PIPE] = ACTIONS(657), - [sym__special_characters] = ACTIONS(657), - [anon_sym_DQUOTE] = ACTIONS(657), - [anon_sym_DOLLAR] = ACTIONS(659), - [sym_raw_string] = ACTIONS(657), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(657), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(657), - [anon_sym_BQUOTE] = ACTIONS(657), - [anon_sym_LT_LPAREN] = ACTIONS(657), - [anon_sym_GT_LPAREN] = ACTIONS(657), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(659), - [sym_word] = ACTIONS(659), - [anon_sym_LF] = ACTIONS(657), - [anon_sym_AMP] = ACTIONS(659), - }, - [110] = { - [sym_simple_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [sym_command_substitution] = STATE(141), - [aux_sym_string_repeat1] = STATE(371), - [anon_sym_DQUOTE] = ACTIONS(661), - [anon_sym_DOLLAR] = ACTIONS(663), - [sym__string_content] = ACTIONS(257), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(261), - [anon_sym_BQUOTE] = ACTIONS(263), - [sym_comment] = ACTIONS(265), - }, - [111] = { - [sym_string] = STATE(373), - [anon_sym_DQUOTE] = ACTIONS(189), - [anon_sym_DOLLAR] = ACTIONS(665), - [sym_raw_string] = ACTIONS(667), - [anon_sym_POUND] = ACTIONS(665), - [anon_sym_DASH] = ACTIONS(665), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(669), - [anon_sym_STAR] = ACTIONS(671), - [anon_sym_AT] = ACTIONS(671), - [anon_sym_QMARK] = ACTIONS(671), - [anon_sym_0] = ACTIONS(669), - [anon_sym__] = ACTIONS(669), - }, - [112] = { - [aux_sym_concatenation_repeat1] = STATE(368), - [sym__concat] = ACTIONS(655), - [sym_variable_name] = ACTIONS(673), - [ts_builtin_sym_end] = ACTIONS(673), - [anon_sym_SEMI] = ACTIONS(675), - [anon_sym_PIPE] = ACTIONS(675), - [anon_sym_SEMI_SEMI] = ACTIONS(673), - [anon_sym_PIPE_AMP] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(673), - [anon_sym_PIPE_PIPE] = ACTIONS(673), - [sym__special_characters] = ACTIONS(673), - [anon_sym_DQUOTE] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [sym_raw_string] = ACTIONS(673), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(673), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(673), - [anon_sym_BQUOTE] = ACTIONS(673), - [anon_sym_LT_LPAREN] = ACTIONS(673), - [anon_sym_GT_LPAREN] = ACTIONS(673), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(675), - [sym_word] = ACTIONS(675), - [anon_sym_LF] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(675), - }, - [113] = { - [sym_subscript] = STATE(378), - [sym_variable_name] = ACTIONS(677), - [anon_sym_BANG] = ACTIONS(679), - [anon_sym_DOLLAR] = ACTIONS(681), - [anon_sym_POUND] = ACTIONS(679), - [anon_sym_DASH] = ACTIONS(681), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(683), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_AT] = ACTIONS(685), - [anon_sym_QMARK] = ACTIONS(685), - [anon_sym_0] = ACTIONS(683), - [anon_sym__] = ACTIONS(683), - }, - [114] = { [sym__terminated_statement] = STATE(381), [sym_for_statement] = STATE(379), [sym_c_style_for_statement] = STATE(379), @@ -11989,1063 +11740,931 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(379), [sym_unset_command] = STATE(379), [sym_command] = STATE(379), - [sym_command_name] = STATE(78), + [sym_command_name] = STATE(92), [sym_variable_assignment] = STATE(380), - [sym_subscript] = STATE(80), - [sym_file_redirect] = STATE(82), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(75), - [sym_simple_expansion] = STATE(75), - [sym_string_expansion] = STATE(75), - [sym_expansion] = STATE(75), - [sym_command_substitution] = STATE(75), - [sym_process_substitution] = STATE(75), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(96), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), [aux_sym__statements_repeat1] = STATE(381), - [aux_sym_command_repeat1] = STATE(82), + [aux_sym_command_repeat1] = STATE(96), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), + [sym_variable_name] = ACTIONS(137), [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(111), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(119), - [anon_sym_declare] = ACTIONS(121), - [anon_sym_typeset] = ACTIONS(121), - [anon_sym_export] = ACTIONS(121), - [anon_sym_readonly] = ACTIONS(121), - [anon_sym_local] = ACTIONS(121), - [anon_sym_unset] = ACTIONS(123), - [anon_sym_unsetenv] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), + [anon_sym_LPAREN_LPAREN] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(149), + [anon_sym_declare] = ACTIONS(151), + [anon_sym_typeset] = ACTIONS(151), + [anon_sym_export] = ACTIONS(151), + [anon_sym_readonly] = ACTIONS(151), + [anon_sym_local] = ACTIONS(151), + [anon_sym_unset] = ACTIONS(153), + [anon_sym_unsetenv] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(159), + }, + [110] = { + [anon_sym_AMP_AMP] = ACTIONS(681), + [anon_sym_PIPE_PIPE] = ACTIONS(681), + [anon_sym_RBRACK] = ACTIONS(491), + [anon_sym_EQ_TILDE] = ACTIONS(683), + [anon_sym_EQ_EQ] = ACTIONS(683), + [anon_sym_EQ] = ACTIONS(685), + [anon_sym_PLUS_EQ] = ACTIONS(681), + [anon_sym_LT] = ACTIONS(685), + [anon_sym_GT] = ACTIONS(685), + [anon_sym_BANG_EQ] = ACTIONS(681), + [anon_sym_PLUS] = ACTIONS(685), + [anon_sym_DASH] = ACTIONS(685), + [anon_sym_DASH_EQ] = ACTIONS(681), + [anon_sym_LT_EQ] = ACTIONS(681), + [anon_sym_GT_EQ] = ACTIONS(681), + [anon_sym_PLUS_PLUS] = ACTIONS(687), + [anon_sym_DASH_DASH] = ACTIONS(687), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(681), + }, + [111] = { + [sym__expression] = STATE(385), + [sym_binary_expression] = STATE(385), + [sym_unary_expression] = STATE(385), + [sym_postfix_expression] = STATE(385), + [sym_parenthesized_expression] = STATE(385), + [sym_concatenation] = STATE(385), + [sym_string] = STATE(113), + [sym_simple_expansion] = STATE(113), + [sym_string_expansion] = STATE(113), + [sym_expansion] = STATE(113), + [sym_command_substitution] = STATE(113), + [sym_process_substitution] = STATE(113), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(187), + [sym__special_characters] = ACTIONS(189), + [anon_sym_DQUOTE] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(79), + [sym_raw_string] = ACTIONS(191), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(83), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(85), + [anon_sym_BQUOTE] = ACTIONS(87), + [anon_sym_LT_LPAREN] = ACTIONS(89), + [anon_sym_GT_LPAREN] = ACTIONS(89), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(193), + [sym_test_operator] = ACTIONS(195), + }, + [112] = { + [aux_sym_concatenation_repeat1] = STATE(386), + [sym__concat] = ACTIONS(459), + [anon_sym_AMP_AMP] = ACTIONS(461), + [anon_sym_PIPE_PIPE] = ACTIONS(461), + [anon_sym_RBRACK_RBRACK] = ACTIONS(461), + [anon_sym_EQ_TILDE] = ACTIONS(461), + [anon_sym_EQ_EQ] = ACTIONS(461), + [anon_sym_EQ] = ACTIONS(463), + [anon_sym_PLUS_EQ] = ACTIONS(461), + [anon_sym_LT] = ACTIONS(463), + [anon_sym_GT] = ACTIONS(463), + [anon_sym_BANG_EQ] = ACTIONS(461), + [anon_sym_PLUS] = ACTIONS(463), + [anon_sym_DASH] = ACTIONS(463), + [anon_sym_DASH_EQ] = ACTIONS(461), + [anon_sym_LT_EQ] = ACTIONS(461), + [anon_sym_GT_EQ] = ACTIONS(461), + [anon_sym_PLUS_PLUS] = ACTIONS(461), + [anon_sym_DASH_DASH] = ACTIONS(461), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(461), + }, + [113] = { + [aux_sym_concatenation_repeat1] = STATE(386), + [sym__concat] = ACTIONS(459), + [anon_sym_AMP_AMP] = ACTIONS(477), + [anon_sym_PIPE_PIPE] = ACTIONS(477), + [anon_sym_RBRACK_RBRACK] = ACTIONS(477), + [anon_sym_EQ_TILDE] = ACTIONS(477), + [anon_sym_EQ_EQ] = ACTIONS(477), + [anon_sym_EQ] = ACTIONS(479), + [anon_sym_PLUS_EQ] = ACTIONS(477), + [anon_sym_LT] = ACTIONS(479), + [anon_sym_GT] = ACTIONS(479), + [anon_sym_BANG_EQ] = ACTIONS(477), + [anon_sym_PLUS] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(479), + [anon_sym_DASH_EQ] = ACTIONS(477), + [anon_sym_LT_EQ] = ACTIONS(477), + [anon_sym_GT_EQ] = ACTIONS(477), + [anon_sym_PLUS_PLUS] = ACTIONS(477), + [anon_sym_DASH_DASH] = ACTIONS(477), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(477), + }, + [114] = { + [anon_sym_AMP_AMP] = ACTIONS(689), + [anon_sym_PIPE_PIPE] = ACTIONS(689), + [anon_sym_RBRACK_RBRACK] = ACTIONS(491), + [anon_sym_EQ_TILDE] = ACTIONS(691), + [anon_sym_EQ_EQ] = ACTIONS(691), + [anon_sym_EQ] = ACTIONS(693), + [anon_sym_PLUS_EQ] = ACTIONS(689), + [anon_sym_LT] = ACTIONS(693), + [anon_sym_GT] = ACTIONS(693), + [anon_sym_BANG_EQ] = ACTIONS(689), + [anon_sym_PLUS] = ACTIONS(693), + [anon_sym_DASH] = ACTIONS(693), + [anon_sym_DASH_EQ] = ACTIONS(689), + [anon_sym_LT_EQ] = ACTIONS(689), + [anon_sym_GT_EQ] = ACTIONS(689), + [anon_sym_PLUS_PLUS] = ACTIONS(499), + [anon_sym_DASH_DASH] = ACTIONS(499), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(689), }, [115] = { - [sym__terminated_statement] = STATE(384), - [sym_for_statement] = STATE(382), - [sym_c_style_for_statement] = STATE(382), - [sym_while_statement] = STATE(382), - [sym_if_statement] = STATE(382), - [sym_case_statement] = STATE(382), - [sym_function_definition] = STATE(382), - [sym_subshell] = STATE(382), - [sym_pipeline] = STATE(382), - [sym_list] = STATE(382), - [sym_negated_command] = STATE(382), - [sym_test_command] = STATE(382), - [sym_declaration_command] = STATE(382), - [sym_unset_command] = STATE(382), - [sym_command] = STATE(382), - [sym_command_name] = STATE(165), - [sym_variable_assignment] = STATE(383), - [sym_subscript] = STATE(53), - [sym_file_redirect] = STATE(168), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(47), - [sym_simple_expansion] = STATE(47), - [sym_string_expansion] = STATE(47), - [sym_expansion] = STATE(47), - [sym_command_substitution] = STATE(47), - [sym_process_substitution] = STATE(47), - [aux_sym__statements_repeat1] = STATE(384), - [aux_sym_command_repeat1] = STATE(168), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(69), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(289), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(291), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(293), - [anon_sym_LBRACK] = ACTIONS(295), - [anon_sym_LBRACK_LBRACK] = ACTIONS(297), - [anon_sym_declare] = ACTIONS(299), - [anon_sym_typeset] = ACTIONS(299), - [anon_sym_export] = ACTIONS(299), - [anon_sym_readonly] = ACTIONS(299), - [anon_sym_local] = ACTIONS(299), - [anon_sym_unset] = ACTIONS(301), - [anon_sym_unsetenv] = ACTIONS(301), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(87), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_EQ] = ACTIONS(695), + [anon_sym_PLUS_EQ] = ACTIONS(695), + [sym_comment] = ACTIONS(55), }, [116] = { - [sym__terminated_statement] = STATE(387), - [sym_for_statement] = STATE(385), - [sym_c_style_for_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_case_statement] = STATE(385), - [sym_function_definition] = STATE(385), - [sym_subshell] = STATE(385), - [sym_pipeline] = STATE(385), - [sym_list] = STATE(385), - [sym_negated_command] = STATE(385), - [sym_test_command] = STATE(385), - [sym_declaration_command] = STATE(385), - [sym_unset_command] = STATE(385), - [sym_command] = STATE(385), - [sym_command_name] = STATE(78), - [sym_variable_assignment] = STATE(386), - [sym_subscript] = STATE(80), - [sym_file_redirect] = STATE(82), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(75), - [sym_simple_expansion] = STATE(75), - [sym_string_expansion] = STATE(75), - [sym_expansion] = STATE(75), - [sym_command_substitution] = STATE(75), - [sym_process_substitution] = STATE(75), - [aux_sym__statements_repeat1] = STATE(387), - [aux_sym_command_repeat1] = STATE(82), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(111), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(119), - [anon_sym_declare] = ACTIONS(121), - [anon_sym_typeset] = ACTIONS(121), - [anon_sym_export] = ACTIONS(121), - [anon_sym_readonly] = ACTIONS(121), - [anon_sym_local] = ACTIONS(121), - [anon_sym_unset] = ACTIONS(123), - [anon_sym_unsetenv] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), - }, - [117] = { - [anon_sym_EQ] = ACTIONS(653), - [anon_sym_PLUS_EQ] = ACTIONS(653), - [sym_comment] = ACTIONS(53), - }, - [118] = { - [sym_variable_assignment] = STATE(388), - [sym_subscript] = STATE(117), - [sym_concatenation] = STATE(388), - [sym_string] = STATE(112), - [sym_simple_expansion] = STATE(112), - [sym_string_expansion] = STATE(112), - [sym_expansion] = STATE(112), - [sym_command_substitution] = STATE(112), - [sym_process_substitution] = STATE(112), - [aux_sym_declaration_command_repeat1] = STATE(388), - [sym_variable_name] = ACTIONS(181), - [ts_builtin_sym_end] = ACTIONS(687), - [anon_sym_SEMI] = ACTIONS(689), - [anon_sym_PIPE] = ACTIONS(689), - [anon_sym_SEMI_SEMI] = ACTIONS(687), - [anon_sym_PIPE_AMP] = ACTIONS(687), - [anon_sym_AMP_AMP] = ACTIONS(687), - [anon_sym_PIPE_PIPE] = ACTIONS(687), - [sym__special_characters] = ACTIONS(187), - [anon_sym_DQUOTE] = ACTIONS(189), - [anon_sym_DOLLAR] = ACTIONS(191), - [sym_raw_string] = ACTIONS(193), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(195), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(197), - [anon_sym_BQUOTE] = ACTIONS(199), - [anon_sym_LT_LPAREN] = ACTIONS(201), - [anon_sym_GT_LPAREN] = ACTIONS(201), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(691), - [sym_word] = ACTIONS(205), - [anon_sym_LF] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(689), - }, - [119] = { - [aux_sym_concatenation_repeat1] = STATE(390), - [sym__concat] = ACTIONS(693), - [ts_builtin_sym_end] = ACTIONS(695), - [anon_sym_SEMI] = ACTIONS(697), - [anon_sym_PIPE] = ACTIONS(697), - [anon_sym_SEMI_SEMI] = ACTIONS(695), - [anon_sym_PIPE_AMP] = ACTIONS(695), - [anon_sym_AMP_AMP] = ACTIONS(695), - [anon_sym_PIPE_PIPE] = ACTIONS(695), - [sym__special_characters] = ACTIONS(695), - [anon_sym_DQUOTE] = ACTIONS(695), - [anon_sym_DOLLAR] = ACTIONS(697), - [sym_raw_string] = ACTIONS(695), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(695), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(695), - [anon_sym_BQUOTE] = ACTIONS(695), - [anon_sym_LT_LPAREN] = ACTIONS(695), - [anon_sym_GT_LPAREN] = ACTIONS(695), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(697), - [sym_word] = ACTIONS(697), - [anon_sym_LF] = ACTIONS(695), - [anon_sym_AMP] = ACTIONS(697), - }, - [120] = { - [sym_simple_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [sym_command_substitution] = STATE(141), - [aux_sym_string_repeat1] = STATE(393), + [aux_sym_concatenation_repeat1] = STATE(391), + [sym__concat] = ACTIONS(697), + [sym_variable_name] = ACTIONS(699), + [ts_builtin_sym_end] = ACTIONS(699), + [anon_sym_SEMI] = ACTIONS(701), + [anon_sym_PIPE] = ACTIONS(701), + [anon_sym_SEMI_SEMI] = ACTIONS(699), + [anon_sym_PIPE_AMP] = ACTIONS(699), + [anon_sym_AMP_AMP] = ACTIONS(699), + [anon_sym_PIPE_PIPE] = ACTIONS(699), + [sym__special_characters] = ACTIONS(699), [anon_sym_DQUOTE] = ACTIONS(699), [anon_sym_DOLLAR] = ACTIONS(701), - [sym__string_content] = ACTIONS(257), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(261), - [anon_sym_BQUOTE] = ACTIONS(263), - [sym_comment] = ACTIONS(265), + [sym_raw_string] = ACTIONS(699), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(699), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(699), + [anon_sym_BQUOTE] = ACTIONS(699), + [anon_sym_LT_LPAREN] = ACTIONS(699), + [anon_sym_GT_LPAREN] = ACTIONS(699), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(701), + [sym_word] = ACTIONS(701), + [anon_sym_LF] = ACTIONS(699), + [anon_sym_AMP] = ACTIONS(701), + }, + [117] = { + [sym_simple_expansion] = STATE(148), + [sym_expansion] = STATE(148), + [sym_command_substitution] = STATE(148), + [aux_sym_string_repeat1] = STATE(394), + [anon_sym_DQUOTE] = ACTIONS(703), + [anon_sym_DOLLAR] = ACTIONS(705), + [sym__string_content] = ACTIONS(273), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(277), + [anon_sym_BQUOTE] = ACTIONS(279), + [sym_comment] = ACTIONS(281), + }, + [118] = { + [sym_string] = STATE(396), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_DQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR] = ACTIONS(707), + [sym_raw_string] = ACTIONS(709), + [anon_sym_POUND] = ACTIONS(707), + [sym_comment] = ACTIONS(281), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(711), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(713), + [anon_sym_QMARK] = ACTIONS(713), + [anon_sym_0] = ACTIONS(711), + [anon_sym__] = ACTIONS(711), + }, + [119] = { + [aux_sym_concatenation_repeat1] = STATE(391), + [sym__concat] = ACTIONS(697), + [sym_variable_name] = ACTIONS(715), + [ts_builtin_sym_end] = ACTIONS(715), + [anon_sym_SEMI] = ACTIONS(717), + [anon_sym_PIPE] = ACTIONS(717), + [anon_sym_SEMI_SEMI] = ACTIONS(715), + [anon_sym_PIPE_AMP] = ACTIONS(715), + [anon_sym_AMP_AMP] = ACTIONS(715), + [anon_sym_PIPE_PIPE] = ACTIONS(715), + [sym__special_characters] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(715), + [anon_sym_DOLLAR] = ACTIONS(717), + [sym_raw_string] = ACTIONS(715), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(715), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(715), + [anon_sym_BQUOTE] = ACTIONS(715), + [anon_sym_LT_LPAREN] = ACTIONS(715), + [anon_sym_GT_LPAREN] = ACTIONS(715), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(717), + [sym_word] = ACTIONS(717), + [anon_sym_LF] = ACTIONS(715), + [anon_sym_AMP] = ACTIONS(717), + }, + [120] = { + [sym_subscript] = STATE(401), + [sym_variable_name] = ACTIONS(719), + [anon_sym_BANG] = ACTIONS(721), + [anon_sym_DASH] = ACTIONS(723), + [anon_sym_DOLLAR] = ACTIONS(723), + [anon_sym_POUND] = ACTIONS(721), + [sym_comment] = ACTIONS(281), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(725), + [anon_sym_STAR] = ACTIONS(727), + [anon_sym_AT] = ACTIONS(727), + [anon_sym_QMARK] = ACTIONS(727), + [anon_sym_0] = ACTIONS(725), + [anon_sym__] = ACTIONS(725), }, [121] = { - [sym_string] = STATE(395), - [anon_sym_DQUOTE] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(703), - [sym_raw_string] = ACTIONS(705), - [anon_sym_POUND] = ACTIONS(703), - [anon_sym_DASH] = ACTIONS(703), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(709), - [anon_sym_AT] = ACTIONS(709), - [anon_sym_QMARK] = ACTIONS(709), - [anon_sym_0] = ACTIONS(707), - [anon_sym__] = ACTIONS(707), + [sym__terminated_statement] = STATE(404), + [sym_for_statement] = STATE(402), + [sym_c_style_for_statement] = STATE(402), + [sym_while_statement] = STATE(402), + [sym_if_statement] = STATE(402), + [sym_case_statement] = STATE(402), + [sym_function_definition] = STATE(402), + [sym_subshell] = STATE(402), + [sym_pipeline] = STATE(402), + [sym_list] = STATE(402), + [sym_negated_command] = STATE(402), + [sym_test_command] = STATE(402), + [sym_declaration_command] = STATE(402), + [sym_unset_command] = STATE(402), + [sym_command] = STATE(402), + [sym_command_name] = STATE(92), + [sym_variable_assignment] = STATE(403), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(96), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), + [aux_sym__statements_repeat1] = STATE(404), + [aux_sym_command_repeat1] = STATE(96), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(137), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(149), + [anon_sym_declare] = ACTIONS(151), + [anon_sym_typeset] = ACTIONS(151), + [anon_sym_export] = ACTIONS(151), + [anon_sym_readonly] = ACTIONS(151), + [anon_sym_local] = ACTIONS(151), + [anon_sym_unset] = ACTIONS(153), + [anon_sym_unsetenv] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(159), }, [122] = { - [aux_sym_concatenation_repeat1] = STATE(390), - [sym__concat] = ACTIONS(693), - [ts_builtin_sym_end] = ACTIONS(711), - [anon_sym_SEMI] = ACTIONS(713), - [anon_sym_PIPE] = ACTIONS(713), - [anon_sym_SEMI_SEMI] = ACTIONS(711), - [anon_sym_PIPE_AMP] = ACTIONS(711), - [anon_sym_AMP_AMP] = ACTIONS(711), - [anon_sym_PIPE_PIPE] = ACTIONS(711), - [sym__special_characters] = ACTIONS(711), - [anon_sym_DQUOTE] = ACTIONS(711), - [anon_sym_DOLLAR] = ACTIONS(713), - [sym_raw_string] = ACTIONS(711), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(711), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(711), - [anon_sym_BQUOTE] = ACTIONS(711), - [anon_sym_LT_LPAREN] = ACTIONS(711), - [anon_sym_GT_LPAREN] = ACTIONS(711), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(713), - [sym_word] = ACTIONS(713), - [anon_sym_LF] = ACTIONS(711), - [anon_sym_AMP] = ACTIONS(713), + [sym__terminated_statement] = STATE(407), + [sym_for_statement] = STATE(405), + [sym_c_style_for_statement] = STATE(405), + [sym_while_statement] = STATE(405), + [sym_if_statement] = STATE(405), + [sym_case_statement] = STATE(405), + [sym_function_definition] = STATE(405), + [sym_subshell] = STATE(405), + [sym_pipeline] = STATE(405), + [sym_list] = STATE(405), + [sym_negated_command] = STATE(405), + [sym_test_command] = STATE(405), + [sym_declaration_command] = STATE(405), + [sym_unset_command] = STATE(405), + [sym_command] = STATE(405), + [sym_command_name] = STATE(173), + [sym_variable_assignment] = STATE(406), + [sym_subscript] = STATE(66), + [sym_file_redirect] = STATE(176), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(60), + [sym_simple_expansion] = STATE(60), + [sym_string_expansion] = STATE(60), + [sym_expansion] = STATE(60), + [sym_command_substitution] = STATE(60), + [sym_process_substitution] = STATE(60), + [aux_sym__statements_repeat1] = STATE(407), + [aux_sym_command_repeat1] = STATE(176), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(95), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(305), + [anon_sym_while] = ACTIONS(307), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(311), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(315), + [anon_sym_declare] = ACTIONS(317), + [anon_sym_typeset] = ACTIONS(317), + [anon_sym_export] = ACTIONS(317), + [anon_sym_readonly] = ACTIONS(317), + [anon_sym_local] = ACTIONS(317), + [anon_sym_unset] = ACTIONS(319), + [anon_sym_unsetenv] = ACTIONS(319), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(115), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(321), }, [123] = { - [sym_subscript] = STATE(400), - [sym_variable_name] = ACTIONS(715), - [anon_sym_BANG] = ACTIONS(717), - [anon_sym_DOLLAR] = ACTIONS(719), - [anon_sym_POUND] = ACTIONS(717), - [anon_sym_DASH] = ACTIONS(719), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(721), - [anon_sym_STAR] = ACTIONS(723), - [anon_sym_AT] = ACTIONS(723), - [anon_sym_QMARK] = ACTIONS(723), - [anon_sym_0] = ACTIONS(721), - [anon_sym__] = ACTIONS(721), + [sym__terminated_statement] = STATE(410), + [sym_for_statement] = STATE(408), + [sym_c_style_for_statement] = STATE(408), + [sym_while_statement] = STATE(408), + [sym_if_statement] = STATE(408), + [sym_case_statement] = STATE(408), + [sym_function_definition] = STATE(408), + [sym_subshell] = STATE(408), + [sym_pipeline] = STATE(408), + [sym_list] = STATE(408), + [sym_negated_command] = STATE(408), + [sym_test_command] = STATE(408), + [sym_declaration_command] = STATE(408), + [sym_unset_command] = STATE(408), + [sym_command] = STATE(408), + [sym_command_name] = STATE(92), + [sym_variable_assignment] = STATE(409), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(96), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), + [aux_sym__statements_repeat1] = STATE(410), + [aux_sym_command_repeat1] = STATE(96), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(137), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(149), + [anon_sym_declare] = ACTIONS(151), + [anon_sym_typeset] = ACTIONS(151), + [anon_sym_export] = ACTIONS(151), + [anon_sym_readonly] = ACTIONS(151), + [anon_sym_local] = ACTIONS(151), + [anon_sym_unset] = ACTIONS(153), + [anon_sym_unsetenv] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(159), }, [124] = { - [sym__terminated_statement] = STATE(403), - [sym_for_statement] = STATE(401), - [sym_c_style_for_statement] = STATE(401), - [sym_while_statement] = STATE(401), - [sym_if_statement] = STATE(401), - [sym_case_statement] = STATE(401), - [sym_function_definition] = STATE(401), - [sym_subshell] = STATE(401), - [sym_pipeline] = STATE(401), - [sym_list] = STATE(401), - [sym_negated_command] = STATE(401), - [sym_test_command] = STATE(401), - [sym_declaration_command] = STATE(401), - [sym_unset_command] = STATE(401), - [sym_command] = STATE(401), - [sym_command_name] = STATE(78), - [sym_variable_assignment] = STATE(402), - [sym_subscript] = STATE(80), - [sym_file_redirect] = STATE(82), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(75), - [sym_simple_expansion] = STATE(75), - [sym_string_expansion] = STATE(75), - [sym_expansion] = STATE(75), - [sym_command_substitution] = STATE(75), - [sym_process_substitution] = STATE(75), - [aux_sym__statements_repeat1] = STATE(403), - [aux_sym_command_repeat1] = STATE(82), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(111), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(119), - [anon_sym_declare] = ACTIONS(121), - [anon_sym_typeset] = ACTIONS(121), - [anon_sym_export] = ACTIONS(121), - [anon_sym_readonly] = ACTIONS(121), - [anon_sym_local] = ACTIONS(121), - [anon_sym_unset] = ACTIONS(123), - [anon_sym_unsetenv] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), + [anon_sym_EQ] = ACTIONS(695), + [anon_sym_PLUS_EQ] = ACTIONS(695), + [sym_comment] = ACTIONS(55), }, [125] = { - [sym__terminated_statement] = STATE(406), - [sym_for_statement] = STATE(404), - [sym_c_style_for_statement] = STATE(404), - [sym_while_statement] = STATE(404), - [sym_if_statement] = STATE(404), - [sym_case_statement] = STATE(404), - [sym_function_definition] = STATE(404), - [sym_subshell] = STATE(404), - [sym_pipeline] = STATE(404), - [sym_list] = STATE(404), - [sym_negated_command] = STATE(404), - [sym_test_command] = STATE(404), - [sym_declaration_command] = STATE(404), - [sym_unset_command] = STATE(404), - [sym_command] = STATE(404), - [sym_command_name] = STATE(165), - [sym_variable_assignment] = STATE(405), - [sym_subscript] = STATE(53), - [sym_file_redirect] = STATE(168), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(47), - [sym_simple_expansion] = STATE(47), - [sym_string_expansion] = STATE(47), - [sym_expansion] = STATE(47), - [sym_command_substitution] = STATE(47), - [sym_process_substitution] = STATE(47), - [aux_sym__statements_repeat1] = STATE(406), - [aux_sym_command_repeat1] = STATE(168), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(69), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(289), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(291), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(293), - [anon_sym_LBRACK] = ACTIONS(295), - [anon_sym_LBRACK_LBRACK] = ACTIONS(297), - [anon_sym_declare] = ACTIONS(299), - [anon_sym_typeset] = ACTIONS(299), - [anon_sym_export] = ACTIONS(299), - [anon_sym_readonly] = ACTIONS(299), - [anon_sym_local] = ACTIONS(299), - [anon_sym_unset] = ACTIONS(301), - [anon_sym_unsetenv] = ACTIONS(301), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(87), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(303), + [sym_variable_assignment] = STATE(411), + [sym_subscript] = STATE(124), + [sym_concatenation] = STATE(411), + [sym_string] = STATE(119), + [sym_simple_expansion] = STATE(119), + [sym_string_expansion] = STATE(119), + [sym_expansion] = STATE(119), + [sym_command_substitution] = STATE(119), + [sym_process_substitution] = STATE(119), + [aux_sym_declaration_command_repeat1] = STATE(411), + [sym_variable_name] = ACTIONS(197), + [ts_builtin_sym_end] = ACTIONS(729), + [anon_sym_SEMI] = ACTIONS(731), + [anon_sym_PIPE] = ACTIONS(731), + [anon_sym_SEMI_SEMI] = ACTIONS(729), + [anon_sym_PIPE_AMP] = ACTIONS(729), + [anon_sym_AMP_AMP] = ACTIONS(729), + [anon_sym_PIPE_PIPE] = ACTIONS(729), + [sym__special_characters] = ACTIONS(203), + [anon_sym_DQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR] = ACTIONS(207), + [sym_raw_string] = ACTIONS(209), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_LT_LPAREN] = ACTIONS(217), + [anon_sym_GT_LPAREN] = ACTIONS(217), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(733), + [sym_word] = ACTIONS(221), + [anon_sym_LF] = ACTIONS(729), + [anon_sym_AMP] = ACTIONS(731), }, [126] = { - [sym__terminated_statement] = STATE(409), - [sym_for_statement] = STATE(407), - [sym_c_style_for_statement] = STATE(407), - [sym_while_statement] = STATE(407), - [sym_if_statement] = STATE(407), - [sym_case_statement] = STATE(407), - [sym_function_definition] = STATE(407), - [sym_subshell] = STATE(407), - [sym_pipeline] = STATE(407), - [sym_list] = STATE(407), - [sym_negated_command] = STATE(407), - [sym_test_command] = STATE(407), - [sym_declaration_command] = STATE(407), - [sym_unset_command] = STATE(407), - [sym_command] = STATE(407), - [sym_command_name] = STATE(78), - [sym_variable_assignment] = STATE(408), - [sym_subscript] = STATE(80), - [sym_file_redirect] = STATE(82), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(75), - [sym_simple_expansion] = STATE(75), - [sym_string_expansion] = STATE(75), - [sym_expansion] = STATE(75), - [sym_command_substitution] = STATE(75), - [sym_process_substitution] = STATE(75), - [aux_sym__statements_repeat1] = STATE(409), - [aux_sym_command_repeat1] = STATE(82), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(111), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(119), - [anon_sym_declare] = ACTIONS(121), - [anon_sym_typeset] = ACTIONS(121), - [anon_sym_export] = ACTIONS(121), - [anon_sym_readonly] = ACTIONS(121), - [anon_sym_local] = ACTIONS(121), - [anon_sym_unset] = ACTIONS(123), - [anon_sym_unsetenv] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), - }, - [127] = { - [sym_concatenation] = STATE(410), - [sym_string] = STATE(122), - [sym_simple_expansion] = STATE(122), - [sym_string_expansion] = STATE(122), - [sym_expansion] = STATE(122), - [sym_command_substitution] = STATE(122), - [sym_process_substitution] = STATE(122), - [aux_sym_unset_command_repeat1] = STATE(410), - [ts_builtin_sym_end] = ACTIONS(725), - [anon_sym_SEMI] = ACTIONS(727), - [anon_sym_PIPE] = ACTIONS(727), - [anon_sym_SEMI_SEMI] = ACTIONS(725), - [anon_sym_PIPE_AMP] = ACTIONS(725), - [anon_sym_AMP_AMP] = ACTIONS(725), - [anon_sym_PIPE_PIPE] = ACTIONS(725), - [sym__special_characters] = ACTIONS(211), - [anon_sym_DQUOTE] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(215), - [sym_raw_string] = ACTIONS(217), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(219), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(221), - [anon_sym_BQUOTE] = ACTIONS(223), - [anon_sym_LT_LPAREN] = ACTIONS(225), - [anon_sym_GT_LPAREN] = ACTIONS(225), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(729), - [sym_word] = ACTIONS(229), - [anon_sym_LF] = ACTIONS(725), - [anon_sym_AMP] = ACTIONS(727), - }, - [128] = { - [aux_sym_concatenation_repeat1] = STATE(412), - [sym_file_descriptor] = ACTIONS(731), - [sym__concat] = ACTIONS(733), - [sym_variable_name] = ACTIONS(731), - [anon_sym_LT] = ACTIONS(735), - [anon_sym_GT] = ACTIONS(735), - [anon_sym_GT_GT] = ACTIONS(731), - [anon_sym_AMP_GT] = ACTIONS(735), - [anon_sym_AMP_GT_GT] = ACTIONS(731), - [anon_sym_LT_AMP] = ACTIONS(731), - [anon_sym_GT_AMP] = ACTIONS(731), - [sym__special_characters] = ACTIONS(731), - [anon_sym_DQUOTE] = ACTIONS(731), - [anon_sym_DOLLAR] = ACTIONS(735), - [sym_raw_string] = ACTIONS(731), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(731), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(731), - [anon_sym_BQUOTE] = ACTIONS(731), - [anon_sym_LT_LPAREN] = ACTIONS(731), - [anon_sym_GT_LPAREN] = ACTIONS(731), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(731), - }, - [129] = { - [sym_simple_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [sym_command_substitution] = STATE(141), - [aux_sym_string_repeat1] = STATE(415), + [aux_sym_concatenation_repeat1] = STATE(413), + [sym__concat] = ACTIONS(735), + [ts_builtin_sym_end] = ACTIONS(737), + [anon_sym_SEMI] = ACTIONS(739), + [anon_sym_PIPE] = ACTIONS(739), + [anon_sym_SEMI_SEMI] = ACTIONS(737), + [anon_sym_PIPE_AMP] = ACTIONS(737), + [anon_sym_AMP_AMP] = ACTIONS(737), + [anon_sym_PIPE_PIPE] = ACTIONS(737), + [sym__special_characters] = ACTIONS(737), [anon_sym_DQUOTE] = ACTIONS(737), [anon_sym_DOLLAR] = ACTIONS(739), - [sym__string_content] = ACTIONS(257), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(261), - [anon_sym_BQUOTE] = ACTIONS(263), - [sym_comment] = ACTIONS(265), + [sym_raw_string] = ACTIONS(737), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(737), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(737), + [anon_sym_BQUOTE] = ACTIONS(737), + [anon_sym_LT_LPAREN] = ACTIONS(737), + [anon_sym_GT_LPAREN] = ACTIONS(737), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(739), + [sym_word] = ACTIONS(739), + [anon_sym_LF] = ACTIONS(737), + [anon_sym_AMP] = ACTIONS(739), + }, + [127] = { + [sym_simple_expansion] = STATE(148), + [sym_expansion] = STATE(148), + [sym_command_substitution] = STATE(148), + [aux_sym_string_repeat1] = STATE(416), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(743), + [sym__string_content] = ACTIONS(273), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(277), + [anon_sym_BQUOTE] = ACTIONS(279), + [sym_comment] = ACTIONS(281), + }, + [128] = { + [sym_string] = STATE(418), + [anon_sym_DASH] = ACTIONS(745), + [anon_sym_DQUOTE] = ACTIONS(229), + [anon_sym_DOLLAR] = ACTIONS(745), + [sym_raw_string] = ACTIONS(747), + [anon_sym_POUND] = ACTIONS(745), + [sym_comment] = ACTIONS(281), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(749), + [anon_sym_STAR] = ACTIONS(751), + [anon_sym_AT] = ACTIONS(751), + [anon_sym_QMARK] = ACTIONS(751), + [anon_sym_0] = ACTIONS(749), + [anon_sym__] = ACTIONS(749), + }, + [129] = { + [aux_sym_concatenation_repeat1] = STATE(413), + [sym__concat] = ACTIONS(735), + [ts_builtin_sym_end] = ACTIONS(753), + [anon_sym_SEMI] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_SEMI_SEMI] = ACTIONS(753), + [anon_sym_PIPE_AMP] = ACTIONS(753), + [anon_sym_AMP_AMP] = ACTIONS(753), + [anon_sym_PIPE_PIPE] = ACTIONS(753), + [sym__special_characters] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(753), + [anon_sym_DOLLAR] = ACTIONS(755), + [sym_raw_string] = ACTIONS(753), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(753), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(753), + [anon_sym_LT_LPAREN] = ACTIONS(753), + [anon_sym_GT_LPAREN] = ACTIONS(753), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(755), + [sym_word] = ACTIONS(755), + [anon_sym_LF] = ACTIONS(753), + [anon_sym_AMP] = ACTIONS(755), }, [130] = { - [sym_string] = STATE(417), - [anon_sym_DQUOTE] = ACTIONS(233), - [anon_sym_DOLLAR] = ACTIONS(741), - [sym_raw_string] = ACTIONS(743), - [anon_sym_POUND] = ACTIONS(741), - [anon_sym_DASH] = ACTIONS(741), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(745), - [anon_sym_STAR] = ACTIONS(747), - [anon_sym_AT] = ACTIONS(747), - [anon_sym_QMARK] = ACTIONS(747), - [anon_sym_0] = ACTIONS(745), - [anon_sym__] = ACTIONS(745), + [sym_subscript] = STATE(423), + [sym_variable_name] = ACTIONS(757), + [anon_sym_BANG] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(761), + [anon_sym_POUND] = ACTIONS(759), + [sym_comment] = ACTIONS(281), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(763), + [anon_sym_STAR] = ACTIONS(765), + [anon_sym_AT] = ACTIONS(765), + [anon_sym_QMARK] = ACTIONS(765), + [anon_sym_0] = ACTIONS(763), + [anon_sym__] = ACTIONS(763), }, [131] = { - [aux_sym_concatenation_repeat1] = STATE(412), - [sym_file_descriptor] = ACTIONS(749), - [sym__concat] = ACTIONS(733), - [sym_variable_name] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(751), - [anon_sym_GT] = ACTIONS(751), - [anon_sym_GT_GT] = ACTIONS(749), - [anon_sym_AMP_GT] = ACTIONS(751), - [anon_sym_AMP_GT_GT] = ACTIONS(749), - [anon_sym_LT_AMP] = ACTIONS(749), - [anon_sym_GT_AMP] = ACTIONS(749), - [sym__special_characters] = ACTIONS(749), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(749), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(749), - [anon_sym_BQUOTE] = ACTIONS(749), - [anon_sym_LT_LPAREN] = ACTIONS(749), - [anon_sym_GT_LPAREN] = ACTIONS(749), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(749), + [sym__terminated_statement] = STATE(426), + [sym_for_statement] = STATE(424), + [sym_c_style_for_statement] = STATE(424), + [sym_while_statement] = STATE(424), + [sym_if_statement] = STATE(424), + [sym_case_statement] = STATE(424), + [sym_function_definition] = STATE(424), + [sym_subshell] = STATE(424), + [sym_pipeline] = STATE(424), + [sym_list] = STATE(424), + [sym_negated_command] = STATE(424), + [sym_test_command] = STATE(424), + [sym_declaration_command] = STATE(424), + [sym_unset_command] = STATE(424), + [sym_command] = STATE(424), + [sym_command_name] = STATE(92), + [sym_variable_assignment] = STATE(425), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(96), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_command_repeat1] = STATE(96), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(137), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(149), + [anon_sym_declare] = ACTIONS(151), + [anon_sym_typeset] = ACTIONS(151), + [anon_sym_export] = ACTIONS(151), + [anon_sym_readonly] = ACTIONS(151), + [anon_sym_local] = ACTIONS(151), + [anon_sym_unset] = ACTIONS(153), + [anon_sym_unsetenv] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(159), }, [132] = { - [sym_subscript] = STATE(422), - [sym_variable_name] = ACTIONS(753), - [anon_sym_BANG] = ACTIONS(755), - [anon_sym_DOLLAR] = ACTIONS(757), - [anon_sym_POUND] = ACTIONS(755), - [anon_sym_DASH] = ACTIONS(757), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(759), - [anon_sym_STAR] = ACTIONS(761), - [anon_sym_AT] = ACTIONS(761), - [anon_sym_QMARK] = ACTIONS(761), - [anon_sym_0] = ACTIONS(759), - [anon_sym__] = ACTIONS(759), + [sym__terminated_statement] = STATE(429), + [sym_for_statement] = STATE(427), + [sym_c_style_for_statement] = STATE(427), + [sym_while_statement] = STATE(427), + [sym_if_statement] = STATE(427), + [sym_case_statement] = STATE(427), + [sym_function_definition] = STATE(427), + [sym_subshell] = STATE(427), + [sym_pipeline] = STATE(427), + [sym_list] = STATE(427), + [sym_negated_command] = STATE(427), + [sym_test_command] = STATE(427), + [sym_declaration_command] = STATE(427), + [sym_unset_command] = STATE(427), + [sym_command] = STATE(427), + [sym_command_name] = STATE(173), + [sym_variable_assignment] = STATE(428), + [sym_subscript] = STATE(66), + [sym_file_redirect] = STATE(176), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(60), + [sym_simple_expansion] = STATE(60), + [sym_string_expansion] = STATE(60), + [sym_expansion] = STATE(60), + [sym_command_substitution] = STATE(60), + [sym_process_substitution] = STATE(60), + [aux_sym__statements_repeat1] = STATE(429), + [aux_sym_command_repeat1] = STATE(176), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(95), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(305), + [anon_sym_while] = ACTIONS(307), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(311), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(315), + [anon_sym_declare] = ACTIONS(317), + [anon_sym_typeset] = ACTIONS(317), + [anon_sym_export] = ACTIONS(317), + [anon_sym_readonly] = ACTIONS(317), + [anon_sym_local] = ACTIONS(317), + [anon_sym_unset] = ACTIONS(319), + [anon_sym_unsetenv] = ACTIONS(319), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(115), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(321), }, [133] = { - [sym__terminated_statement] = STATE(425), - [sym_for_statement] = STATE(423), - [sym_c_style_for_statement] = STATE(423), - [sym_while_statement] = STATE(423), - [sym_if_statement] = STATE(423), - [sym_case_statement] = STATE(423), - [sym_function_definition] = STATE(423), - [sym_subshell] = STATE(423), - [sym_pipeline] = STATE(423), - [sym_list] = STATE(423), - [sym_negated_command] = STATE(423), - [sym_test_command] = STATE(423), - [sym_declaration_command] = STATE(423), - [sym_unset_command] = STATE(423), - [sym_command] = STATE(423), - [sym_command_name] = STATE(78), - [sym_variable_assignment] = STATE(424), - [sym_subscript] = STATE(80), - [sym_file_redirect] = STATE(82), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(75), - [sym_simple_expansion] = STATE(75), - [sym_string_expansion] = STATE(75), - [sym_expansion] = STATE(75), - [sym_command_substitution] = STATE(75), - [sym_process_substitution] = STATE(75), - [aux_sym__statements_repeat1] = STATE(425), - [aux_sym_command_repeat1] = STATE(82), + [sym__terminated_statement] = STATE(432), + [sym_for_statement] = STATE(430), + [sym_c_style_for_statement] = STATE(430), + [sym_while_statement] = STATE(430), + [sym_if_statement] = STATE(430), + [sym_case_statement] = STATE(430), + [sym_function_definition] = STATE(430), + [sym_subshell] = STATE(430), + [sym_pipeline] = STATE(430), + [sym_list] = STATE(430), + [sym_negated_command] = STATE(430), + [sym_test_command] = STATE(430), + [sym_declaration_command] = STATE(430), + [sym_unset_command] = STATE(430), + [sym_command] = STATE(430), + [sym_command_name] = STATE(92), + [sym_variable_assignment] = STATE(431), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(96), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), + [aux_sym__statements_repeat1] = STATE(432), + [aux_sym_command_repeat1] = STATE(96), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), + [sym_variable_name] = ACTIONS(137), [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(111), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(119), - [anon_sym_declare] = ACTIONS(121), - [anon_sym_typeset] = ACTIONS(121), - [anon_sym_export] = ACTIONS(121), - [anon_sym_readonly] = ACTIONS(121), - [anon_sym_local] = ACTIONS(121), - [anon_sym_unset] = ACTIONS(123), - [anon_sym_unsetenv] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), + [anon_sym_LPAREN_LPAREN] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(149), + [anon_sym_declare] = ACTIONS(151), + [anon_sym_typeset] = ACTIONS(151), + [anon_sym_export] = ACTIONS(151), + [anon_sym_readonly] = ACTIONS(151), + [anon_sym_local] = ACTIONS(151), + [anon_sym_unset] = ACTIONS(153), + [anon_sym_unsetenv] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(159), }, [134] = { - [sym__terminated_statement] = STATE(428), - [sym_for_statement] = STATE(426), - [sym_c_style_for_statement] = STATE(426), - [sym_while_statement] = STATE(426), - [sym_if_statement] = STATE(426), - [sym_case_statement] = STATE(426), - [sym_function_definition] = STATE(426), - [sym_subshell] = STATE(426), - [sym_pipeline] = STATE(426), - [sym_list] = STATE(426), - [sym_negated_command] = STATE(426), - [sym_test_command] = STATE(426), - [sym_declaration_command] = STATE(426), - [sym_unset_command] = STATE(426), - [sym_command] = STATE(426), - [sym_command_name] = STATE(165), - [sym_variable_assignment] = STATE(427), - [sym_subscript] = STATE(53), - [sym_file_redirect] = STATE(168), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(47), - [sym_simple_expansion] = STATE(47), - [sym_string_expansion] = STATE(47), - [sym_expansion] = STATE(47), - [sym_command_substitution] = STATE(47), - [sym_process_substitution] = STATE(47), - [aux_sym__statements_repeat1] = STATE(428), - [aux_sym_command_repeat1] = STATE(168), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(69), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(289), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(291), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(293), - [anon_sym_LBRACK] = ACTIONS(295), - [anon_sym_LBRACK_LBRACK] = ACTIONS(297), - [anon_sym_declare] = ACTIONS(299), - [anon_sym_typeset] = ACTIONS(299), - [anon_sym_export] = ACTIONS(299), - [anon_sym_readonly] = ACTIONS(299), - [anon_sym_local] = ACTIONS(299), - [anon_sym_unset] = ACTIONS(301), - [anon_sym_unsetenv] = ACTIONS(301), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(87), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(303), + [sym_concatenation] = STATE(433), + [sym_string] = STATE(129), + [sym_simple_expansion] = STATE(129), + [sym_string_expansion] = STATE(129), + [sym_expansion] = STATE(129), + [sym_command_substitution] = STATE(129), + [sym_process_substitution] = STATE(129), + [aux_sym_unset_command_repeat1] = STATE(433), + [ts_builtin_sym_end] = ACTIONS(767), + [anon_sym_SEMI] = ACTIONS(769), + [anon_sym_PIPE] = ACTIONS(769), + [anon_sym_SEMI_SEMI] = ACTIONS(767), + [anon_sym_PIPE_AMP] = ACTIONS(767), + [anon_sym_AMP_AMP] = ACTIONS(767), + [anon_sym_PIPE_PIPE] = ACTIONS(767), + [sym__special_characters] = ACTIONS(227), + [anon_sym_DQUOTE] = ACTIONS(229), + [anon_sym_DOLLAR] = ACTIONS(231), + [sym_raw_string] = ACTIONS(233), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), + [anon_sym_BQUOTE] = ACTIONS(239), + [anon_sym_LT_LPAREN] = ACTIONS(241), + [anon_sym_GT_LPAREN] = ACTIONS(241), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(771), + [sym_word] = ACTIONS(245), + [anon_sym_LF] = ACTIONS(767), + [anon_sym_AMP] = ACTIONS(769), }, [135] = { - [sym__terminated_statement] = STATE(431), - [sym_for_statement] = STATE(429), - [sym_c_style_for_statement] = STATE(429), - [sym_while_statement] = STATE(429), - [sym_if_statement] = STATE(429), - [sym_case_statement] = STATE(429), - [sym_function_definition] = STATE(429), - [sym_subshell] = STATE(429), - [sym_pipeline] = STATE(429), - [sym_list] = STATE(429), - [sym_negated_command] = STATE(429), - [sym_test_command] = STATE(429), - [sym_declaration_command] = STATE(429), - [sym_unset_command] = STATE(429), - [sym_command] = STATE(429), - [sym_command_name] = STATE(78), - [sym_variable_assignment] = STATE(430), - [sym_subscript] = STATE(80), - [sym_file_redirect] = STATE(82), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(75), - [sym_simple_expansion] = STATE(75), - [sym_string_expansion] = STATE(75), - [sym_expansion] = STATE(75), - [sym_command_substitution] = STATE(75), - [sym_process_substitution] = STATE(75), - [aux_sym__statements_repeat1] = STATE(431), - [aux_sym_command_repeat1] = STATE(82), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(111), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(119), - [anon_sym_declare] = ACTIONS(121), - [anon_sym_typeset] = ACTIONS(121), - [anon_sym_export] = ACTIONS(121), - [anon_sym_readonly] = ACTIONS(121), - [anon_sym_local] = ACTIONS(121), - [anon_sym_unset] = ACTIONS(123), - [anon_sym_unsetenv] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), + [aux_sym_concatenation_repeat1] = STATE(435), + [sym_file_descriptor] = ACTIONS(773), + [sym__concat] = ACTIONS(775), + [sym_variable_name] = ACTIONS(773), + [anon_sym_LT] = ACTIONS(777), + [anon_sym_GT] = ACTIONS(777), + [anon_sym_GT_GT] = ACTIONS(773), + [anon_sym_AMP_GT] = ACTIONS(777), + [anon_sym_AMP_GT_GT] = ACTIONS(773), + [anon_sym_LT_AMP] = ACTIONS(773), + [anon_sym_GT_AMP] = ACTIONS(773), + [sym__special_characters] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(773), + [anon_sym_DOLLAR] = ACTIONS(777), + [sym_raw_string] = ACTIONS(773), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(773), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(773), + [anon_sym_LT_LPAREN] = ACTIONS(773), + [anon_sym_GT_LPAREN] = ACTIONS(773), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(773), }, [136] = { - [sym_file_descriptor] = ACTIONS(749), - [sym_variable_name] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(751), - [anon_sym_GT] = ACTIONS(751), - [anon_sym_GT_GT] = ACTIONS(749), - [anon_sym_AMP_GT] = ACTIONS(751), - [anon_sym_AMP_GT_GT] = ACTIONS(749), - [anon_sym_LT_AMP] = ACTIONS(749), - [anon_sym_GT_AMP] = ACTIONS(749), - [sym__special_characters] = ACTIONS(749), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DOLLAR] = ACTIONS(751), - [sym_raw_string] = ACTIONS(749), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(749), - [anon_sym_BQUOTE] = ACTIONS(749), - [anon_sym_LT_LPAREN] = ACTIONS(749), - [anon_sym_GT_LPAREN] = ACTIONS(749), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(749), + [sym_simple_expansion] = STATE(148), + [sym_expansion] = STATE(148), + [sym_command_substitution] = STATE(148), + [aux_sym_string_repeat1] = STATE(438), + [anon_sym_DQUOTE] = ACTIONS(779), + [anon_sym_DOLLAR] = ACTIONS(781), + [sym__string_content] = ACTIONS(273), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(277), + [anon_sym_BQUOTE] = ACTIONS(279), + [sym_comment] = ACTIONS(281), }, [137] = { - [sym_string] = STATE(432), - [sym_simple_expansion] = STATE(432), - [sym_string_expansion] = STATE(432), - [sym_expansion] = STATE(432), - [sym_command_substitution] = STATE(432), - [sym_process_substitution] = STATE(432), - [sym__special_characters] = ACTIONS(763), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(763), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(763), + [sym_string] = STATE(440), + [anon_sym_DASH] = ACTIONS(783), + [anon_sym_DQUOTE] = ACTIONS(249), + [anon_sym_DOLLAR] = ACTIONS(783), + [sym_raw_string] = ACTIONS(785), + [anon_sym_POUND] = ACTIONS(783), + [sym_comment] = ACTIONS(281), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(787), + [anon_sym_STAR] = ACTIONS(789), + [anon_sym_AT] = ACTIONS(789), + [anon_sym_QMARK] = ACTIONS(789), + [anon_sym_0] = ACTIONS(787), + [anon_sym__] = ACTIONS(787), }, [138] = { - [aux_sym_concatenation_repeat1] = STATE(433), - [sym__simple_heredoc_body] = ACTIONS(765), - [sym__heredoc_body_beginning] = ACTIONS(765), - [sym_file_descriptor] = ACTIONS(765), - [sym__concat] = ACTIONS(249), - [ts_builtin_sym_end] = ACTIONS(765), - [anon_sym_SEMI] = ACTIONS(767), - [anon_sym_PIPE] = ACTIONS(767), - [anon_sym_SEMI_SEMI] = ACTIONS(765), - [anon_sym_PIPE_AMP] = ACTIONS(765), - [anon_sym_AMP_AMP] = ACTIONS(765), - [anon_sym_PIPE_PIPE] = ACTIONS(765), - [anon_sym_EQ_TILDE] = ACTIONS(767), - [anon_sym_EQ_EQ] = ACTIONS(767), - [anon_sym_LT] = ACTIONS(767), - [anon_sym_GT] = ACTIONS(767), - [anon_sym_GT_GT] = ACTIONS(765), - [anon_sym_AMP_GT] = ACTIONS(767), - [anon_sym_AMP_GT_GT] = ACTIONS(765), - [anon_sym_LT_AMP] = ACTIONS(765), - [anon_sym_GT_AMP] = ACTIONS(765), - [anon_sym_LT_LT] = ACTIONS(767), - [anon_sym_LT_LT_DASH] = ACTIONS(765), - [anon_sym_LT_LT_LT] = ACTIONS(765), - [sym__special_characters] = ACTIONS(765), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_DOLLAR] = ACTIONS(767), - [sym_raw_string] = ACTIONS(765), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(765), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(765), - [anon_sym_BQUOTE] = ACTIONS(765), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(767), - [anon_sym_LF] = ACTIONS(765), - [anon_sym_AMP] = ACTIONS(767), + [aux_sym_concatenation_repeat1] = STATE(435), + [sym_file_descriptor] = ACTIONS(791), + [sym__concat] = ACTIONS(775), + [sym_variable_name] = ACTIONS(791), + [anon_sym_LT] = ACTIONS(793), + [anon_sym_GT] = ACTIONS(793), + [anon_sym_GT_GT] = ACTIONS(791), + [anon_sym_AMP_GT] = ACTIONS(793), + [anon_sym_AMP_GT_GT] = ACTIONS(791), + [anon_sym_LT_AMP] = ACTIONS(791), + [anon_sym_GT_AMP] = ACTIONS(791), + [sym__special_characters] = ACTIONS(791), + [anon_sym_DQUOTE] = ACTIONS(791), + [anon_sym_DOLLAR] = ACTIONS(793), + [sym_raw_string] = ACTIONS(791), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(791), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(791), + [anon_sym_BQUOTE] = ACTIONS(791), + [anon_sym_LT_LPAREN] = ACTIONS(791), + [anon_sym_GT_LPAREN] = ACTIONS(791), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(791), }, [139] = { - [sym__simple_heredoc_body] = ACTIONS(769), - [sym__heredoc_body_beginning] = ACTIONS(769), - [sym_file_descriptor] = ACTIONS(769), - [sym__concat] = ACTIONS(769), - [ts_builtin_sym_end] = ACTIONS(769), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_RPAREN] = ACTIONS(769), - [anon_sym_SEMI_SEMI] = ACTIONS(769), - [anon_sym_PIPE_AMP] = ACTIONS(769), - [anon_sym_AMP_AMP] = ACTIONS(769), - [anon_sym_PIPE_PIPE] = ACTIONS(769), - [anon_sym_EQ_TILDE] = ACTIONS(771), - [anon_sym_EQ_EQ] = ACTIONS(771), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_GT] = ACTIONS(769), - [anon_sym_AMP_GT] = ACTIONS(771), - [anon_sym_AMP_GT_GT] = ACTIONS(769), - [anon_sym_LT_AMP] = ACTIONS(769), - [anon_sym_GT_AMP] = ACTIONS(769), - [anon_sym_LT_LT] = ACTIONS(771), - [anon_sym_LT_LT_DASH] = ACTIONS(769), - [anon_sym_LT_LT_LT] = ACTIONS(769), - [sym__special_characters] = ACTIONS(769), - [anon_sym_DQUOTE] = ACTIONS(769), - [anon_sym_DOLLAR] = ACTIONS(771), - [sym_raw_string] = ACTIONS(769), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(769), - [anon_sym_BQUOTE] = ACTIONS(769), - [anon_sym_LT_LPAREN] = ACTIONS(769), - [anon_sym_GT_LPAREN] = ACTIONS(769), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(771), - [anon_sym_LF] = ACTIONS(769), - [anon_sym_AMP] = ACTIONS(771), + [sym_subscript] = STATE(445), + [sym_variable_name] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(797), + [anon_sym_DASH] = ACTIONS(799), + [anon_sym_DOLLAR] = ACTIONS(799), + [anon_sym_POUND] = ACTIONS(797), + [sym_comment] = ACTIONS(281), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(801), + [anon_sym_STAR] = ACTIONS(803), + [anon_sym_AT] = ACTIONS(803), + [anon_sym_QMARK] = ACTIONS(803), + [anon_sym_0] = ACTIONS(801), + [anon_sym__] = ACTIONS(801), }, [140] = { - [anon_sym_DQUOTE] = ACTIONS(773), - [anon_sym_DOLLAR] = ACTIONS(775), - [sym__string_content] = ACTIONS(777), - [anon_sym_POUND] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(781), - [anon_sym_STAR] = ACTIONS(783), - [anon_sym_AT] = ACTIONS(783), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_0] = ACTIONS(781), - [anon_sym__] = ACTIONS(781), - }, - [141] = { - [sym__concat] = ACTIONS(785), - [anon_sym_DQUOTE] = ACTIONS(787), - [anon_sym_DOLLAR] = ACTIONS(787), - [sym__string_content] = ACTIONS(789), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(787), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(787), - [anon_sym_BQUOTE] = ACTIONS(787), - [sym_comment] = ACTIONS(265), - }, - [142] = { - [sym_subscript] = STATE(442), - [sym_variable_name] = ACTIONS(791), - [anon_sym_BANG] = ACTIONS(793), - [anon_sym_DOLLAR] = ACTIONS(795), - [anon_sym_POUND] = ACTIONS(793), - [anon_sym_DASH] = ACTIONS(795), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(797), - [anon_sym_STAR] = ACTIONS(799), - [anon_sym_AT] = ACTIONS(799), - [anon_sym_QMARK] = ACTIONS(799), - [anon_sym_0] = ACTIONS(797), - [anon_sym__] = ACTIONS(797), - }, - [143] = { - [sym__terminated_statement] = STATE(445), - [sym_for_statement] = STATE(443), - [sym_c_style_for_statement] = STATE(443), - [sym_while_statement] = STATE(443), - [sym_if_statement] = STATE(443), - [sym_case_statement] = STATE(443), - [sym_function_definition] = STATE(443), - [sym_subshell] = STATE(443), - [sym_pipeline] = STATE(443), - [sym_list] = STATE(443), - [sym_negated_command] = STATE(443), - [sym_test_command] = STATE(443), - [sym_declaration_command] = STATE(443), - [sym_unset_command] = STATE(443), - [sym_command] = STATE(443), - [sym_command_name] = STATE(78), - [sym_variable_assignment] = STATE(444), - [sym_subscript] = STATE(80), - [sym_file_redirect] = STATE(82), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(75), - [sym_simple_expansion] = STATE(75), - [sym_string_expansion] = STATE(75), - [sym_expansion] = STATE(75), - [sym_command_substitution] = STATE(75), - [sym_process_substitution] = STATE(75), - [aux_sym__statements_repeat1] = STATE(445), - [aux_sym_command_repeat1] = STATE(82), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(111), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(119), - [anon_sym_declare] = ACTIONS(121), - [anon_sym_typeset] = ACTIONS(121), - [anon_sym_export] = ACTIONS(121), - [anon_sym_readonly] = ACTIONS(121), - [anon_sym_local] = ACTIONS(121), - [anon_sym_unset] = ACTIONS(123), - [anon_sym_unsetenv] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), - }, - [144] = { [sym__terminated_statement] = STATE(448), [sym_for_statement] = STATE(446), [sym_c_style_for_statement] = STATE(446), @@ -13061,117 +12680,241 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(446), [sym_unset_command] = STATE(446), [sym_command] = STATE(446), - [sym_command_name] = STATE(165), + [sym_command_name] = STATE(92), [sym_variable_assignment] = STATE(447), - [sym_subscript] = STATE(53), - [sym_file_redirect] = STATE(168), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(47), - [sym_simple_expansion] = STATE(47), - [sym_string_expansion] = STATE(47), - [sym_expansion] = STATE(47), - [sym_command_substitution] = STATE(47), - [sym_process_substitution] = STATE(47), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(96), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), [aux_sym__statements_repeat1] = STATE(448), - [aux_sym_command_repeat1] = STATE(168), + [aux_sym_command_repeat1] = STATE(96), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(69), + [sym_variable_name] = ACTIONS(137), [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(289), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(291), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(293), - [anon_sym_LBRACK] = ACTIONS(295), - [anon_sym_LBRACK_LBRACK] = ACTIONS(297), - [anon_sym_declare] = ACTIONS(299), - [anon_sym_typeset] = ACTIONS(299), - [anon_sym_export] = ACTIONS(299), - [anon_sym_readonly] = ACTIONS(299), - [anon_sym_local] = ACTIONS(299), - [anon_sym_unset] = ACTIONS(301), - [anon_sym_unsetenv] = ACTIONS(301), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(87), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(303), + [anon_sym_LPAREN_LPAREN] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(149), + [anon_sym_declare] = ACTIONS(151), + [anon_sym_typeset] = ACTIONS(151), + [anon_sym_export] = ACTIONS(151), + [anon_sym_readonly] = ACTIONS(151), + [anon_sym_local] = ACTIONS(151), + [anon_sym_unset] = ACTIONS(153), + [anon_sym_unsetenv] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(159), + }, + [141] = { + [sym__terminated_statement] = STATE(451), + [sym_for_statement] = STATE(449), + [sym_c_style_for_statement] = STATE(449), + [sym_while_statement] = STATE(449), + [sym_if_statement] = STATE(449), + [sym_case_statement] = STATE(449), + [sym_function_definition] = STATE(449), + [sym_subshell] = STATE(449), + [sym_pipeline] = STATE(449), + [sym_list] = STATE(449), + [sym_negated_command] = STATE(449), + [sym_test_command] = STATE(449), + [sym_declaration_command] = STATE(449), + [sym_unset_command] = STATE(449), + [sym_command] = STATE(449), + [sym_command_name] = STATE(173), + [sym_variable_assignment] = STATE(450), + [sym_subscript] = STATE(66), + [sym_file_redirect] = STATE(176), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(60), + [sym_simple_expansion] = STATE(60), + [sym_string_expansion] = STATE(60), + [sym_expansion] = STATE(60), + [sym_command_substitution] = STATE(60), + [sym_process_substitution] = STATE(60), + [aux_sym__statements_repeat1] = STATE(451), + [aux_sym_command_repeat1] = STATE(176), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(95), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(305), + [anon_sym_while] = ACTIONS(307), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(311), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(315), + [anon_sym_declare] = ACTIONS(317), + [anon_sym_typeset] = ACTIONS(317), + [anon_sym_export] = ACTIONS(317), + [anon_sym_readonly] = ACTIONS(317), + [anon_sym_local] = ACTIONS(317), + [anon_sym_unset] = ACTIONS(319), + [anon_sym_unsetenv] = ACTIONS(319), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(115), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(321), + }, + [142] = { + [sym__terminated_statement] = STATE(454), + [sym_for_statement] = STATE(452), + [sym_c_style_for_statement] = STATE(452), + [sym_while_statement] = STATE(452), + [sym_if_statement] = STATE(452), + [sym_case_statement] = STATE(452), + [sym_function_definition] = STATE(452), + [sym_subshell] = STATE(452), + [sym_pipeline] = STATE(452), + [sym_list] = STATE(452), + [sym_negated_command] = STATE(452), + [sym_test_command] = STATE(452), + [sym_declaration_command] = STATE(452), + [sym_unset_command] = STATE(452), + [sym_command] = STATE(452), + [sym_command_name] = STATE(92), + [sym_variable_assignment] = STATE(453), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(96), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_command_repeat1] = STATE(96), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(137), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(149), + [anon_sym_declare] = ACTIONS(151), + [anon_sym_typeset] = ACTIONS(151), + [anon_sym_export] = ACTIONS(151), + [anon_sym_readonly] = ACTIONS(151), + [anon_sym_local] = ACTIONS(151), + [anon_sym_unset] = ACTIONS(153), + [anon_sym_unsetenv] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(159), + }, + [143] = { + [sym_file_descriptor] = ACTIONS(791), + [sym_variable_name] = ACTIONS(791), + [anon_sym_LT] = ACTIONS(793), + [anon_sym_GT] = ACTIONS(793), + [anon_sym_GT_GT] = ACTIONS(791), + [anon_sym_AMP_GT] = ACTIONS(793), + [anon_sym_AMP_GT_GT] = ACTIONS(791), + [anon_sym_LT_AMP] = ACTIONS(791), + [anon_sym_GT_AMP] = ACTIONS(791), + [sym__special_characters] = ACTIONS(791), + [anon_sym_DQUOTE] = ACTIONS(791), + [anon_sym_DOLLAR] = ACTIONS(793), + [sym_raw_string] = ACTIONS(791), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(791), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(791), + [anon_sym_BQUOTE] = ACTIONS(791), + [anon_sym_LT_LPAREN] = ACTIONS(791), + [anon_sym_GT_LPAREN] = ACTIONS(791), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(791), + }, + [144] = { + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [sym__special_characters] = ACTIONS(805), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(805), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(805), }, [145] = { - [sym_simple_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [sym_command_substitution] = STATE(141), - [aux_sym_string_repeat1] = STATE(450), - [anon_sym_DQUOTE] = ACTIONS(773), - [anon_sym_DOLLAR] = ACTIONS(801), - [sym__string_content] = ACTIONS(257), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(261), - [anon_sym_BQUOTE] = ACTIONS(263), - [sym_comment] = ACTIONS(265), - }, - [146] = { - [sym__simple_heredoc_body] = ACTIONS(803), - [sym__heredoc_body_beginning] = ACTIONS(803), - [sym_file_descriptor] = ACTIONS(803), - [sym__concat] = ACTIONS(803), - [ts_builtin_sym_end] = ACTIONS(803), - [anon_sym_SEMI] = ACTIONS(805), - [anon_sym_PIPE] = ACTIONS(805), - [anon_sym_RPAREN] = ACTIONS(803), - [anon_sym_SEMI_SEMI] = ACTIONS(803), - [anon_sym_PIPE_AMP] = ACTIONS(803), - [anon_sym_AMP_AMP] = ACTIONS(803), - [anon_sym_PIPE_PIPE] = ACTIONS(803), - [anon_sym_EQ_TILDE] = ACTIONS(805), - [anon_sym_EQ_EQ] = ACTIONS(805), - [anon_sym_LT] = ACTIONS(805), - [anon_sym_GT] = ACTIONS(805), - [anon_sym_GT_GT] = ACTIONS(803), - [anon_sym_AMP_GT] = ACTIONS(805), - [anon_sym_AMP_GT_GT] = ACTIONS(803), - [anon_sym_LT_AMP] = ACTIONS(803), - [anon_sym_GT_AMP] = ACTIONS(803), - [anon_sym_LT_LT] = ACTIONS(805), - [anon_sym_LT_LT_DASH] = ACTIONS(803), - [anon_sym_LT_LT_LT] = ACTIONS(803), - [sym__special_characters] = ACTIONS(803), - [anon_sym_DQUOTE] = ACTIONS(803), - [anon_sym_DOLLAR] = ACTIONS(805), - [sym_raw_string] = ACTIONS(803), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(803), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(803), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(803), - [anon_sym_GT_LPAREN] = ACTIONS(803), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(805), - [anon_sym_LF] = ACTIONS(803), - [anon_sym_AMP] = ACTIONS(805), - }, - [147] = { + [aux_sym_concatenation_repeat1] = STATE(456), [sym__simple_heredoc_body] = ACTIONS(807), [sym__heredoc_body_beginning] = ACTIONS(807), [sym_file_descriptor] = ACTIONS(807), - [sym__concat] = ACTIONS(807), + [sym__concat] = ACTIONS(265), [ts_builtin_sym_end] = ACTIONS(807), [anon_sym_SEMI] = ACTIONS(809), [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_RPAREN] = ACTIONS(807), [anon_sym_SEMI_SEMI] = ACTIONS(807), [anon_sym_PIPE_AMP] = ACTIONS(807), [anon_sym_AMP_AMP] = ACTIONS(807), @@ -13197,12 +12940,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(807), [anon_sym_LT_LPAREN] = ACTIONS(807), [anon_sym_GT_LPAREN] = ACTIONS(807), - [sym_comment] = ACTIONS(53), + [sym_comment] = ACTIONS(55), [sym_word] = ACTIONS(809), [anon_sym_LF] = ACTIONS(807), [anon_sym_AMP] = ACTIONS(809), }, - [148] = { + [146] = { [sym__simple_heredoc_body] = ACTIONS(811), [sym__heredoc_body_beginning] = ACTIONS(811), [sym_file_descriptor] = ACTIONS(811), @@ -13236,22 +12979,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(811), [anon_sym_LT_LPAREN] = ACTIONS(811), [anon_sym_GT_LPAREN] = ACTIONS(811), - [sym_comment] = ACTIONS(53), + [sym_comment] = ACTIONS(55), [sym_word] = ACTIONS(813), [anon_sym_LF] = ACTIONS(811), [anon_sym_AMP] = ACTIONS(813), }, - [149] = { - [anon_sym_LBRACK] = ACTIONS(815), - [anon_sym_EQ] = ACTIONS(817), - [sym_comment] = ACTIONS(53), - }, - [150] = { - [sym_subscript] = STATE(455), - [sym_variable_name] = ACTIONS(819), - [anon_sym_DOLLAR] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [sym_comment] = ACTIONS(53), + [147] = { + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym__string_content] = ACTIONS(821), + [anon_sym_POUND] = ACTIONS(815), + [sym_comment] = ACTIONS(281), [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(823), [anon_sym_STAR] = ACTIONS(825), [anon_sym_AT] = ACTIONS(825), @@ -13259,4676 +12998,6100 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0] = ACTIONS(823), [anon_sym__] = ACTIONS(823), }, + [148] = { + [sym__concat] = ACTIONS(827), + [anon_sym_DQUOTE] = ACTIONS(829), + [anon_sym_DOLLAR] = ACTIONS(829), + [sym__string_content] = ACTIONS(831), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(829), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(829), + [anon_sym_BQUOTE] = ACTIONS(829), + [sym_comment] = ACTIONS(281), + }, + [149] = { + [sym_subscript] = STATE(465), + [sym_variable_name] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(835), + [anon_sym_DASH] = ACTIONS(837), + [anon_sym_DOLLAR] = ACTIONS(837), + [anon_sym_POUND] = ACTIONS(835), + [sym_comment] = ACTIONS(281), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(839), + [anon_sym_STAR] = ACTIONS(841), + [anon_sym_AT] = ACTIONS(841), + [anon_sym_QMARK] = ACTIONS(841), + [anon_sym_0] = ACTIONS(839), + [anon_sym__] = ACTIONS(839), + }, + [150] = { + [sym__terminated_statement] = STATE(468), + [sym_for_statement] = STATE(466), + [sym_c_style_for_statement] = STATE(466), + [sym_while_statement] = STATE(466), + [sym_if_statement] = STATE(466), + [sym_case_statement] = STATE(466), + [sym_function_definition] = STATE(466), + [sym_subshell] = STATE(466), + [sym_pipeline] = STATE(466), + [sym_list] = STATE(466), + [sym_negated_command] = STATE(466), + [sym_test_command] = STATE(466), + [sym_declaration_command] = STATE(466), + [sym_unset_command] = STATE(466), + [sym_command] = STATE(466), + [sym_command_name] = STATE(92), + [sym_variable_assignment] = STATE(467), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(96), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), + [aux_sym__statements_repeat1] = STATE(468), + [aux_sym_command_repeat1] = STATE(96), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(137), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(149), + [anon_sym_declare] = ACTIONS(151), + [anon_sym_typeset] = ACTIONS(151), + [anon_sym_export] = ACTIONS(151), + [anon_sym_readonly] = ACTIONS(151), + [anon_sym_local] = ACTIONS(151), + [anon_sym_unset] = ACTIONS(153), + [anon_sym_unsetenv] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(159), + }, [151] = { - [sym_concatenation] = STATE(466), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(466), - [anon_sym_RBRACE] = ACTIONS(827), - [anon_sym_EQ] = ACTIONS(829), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(839), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(843), - [anon_sym_COLON] = ACTIONS(829), - [anon_sym_COLON_QMARK] = ACTIONS(829), - [anon_sym_COLON_DASH] = ACTIONS(829), - [anon_sym_PERCENT] = ACTIONS(829), - [anon_sym_DASH] = ACTIONS(829), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym__terminated_statement] = STATE(471), + [sym_for_statement] = STATE(469), + [sym_c_style_for_statement] = STATE(469), + [sym_while_statement] = STATE(469), + [sym_if_statement] = STATE(469), + [sym_case_statement] = STATE(469), + [sym_function_definition] = STATE(469), + [sym_subshell] = STATE(469), + [sym_pipeline] = STATE(469), + [sym_list] = STATE(469), + [sym_negated_command] = STATE(469), + [sym_test_command] = STATE(469), + [sym_declaration_command] = STATE(469), + [sym_unset_command] = STATE(469), + [sym_command] = STATE(469), + [sym_command_name] = STATE(173), + [sym_variable_assignment] = STATE(470), + [sym_subscript] = STATE(66), + [sym_file_redirect] = STATE(176), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(60), + [sym_simple_expansion] = STATE(60), + [sym_string_expansion] = STATE(60), + [sym_expansion] = STATE(60), + [sym_command_substitution] = STATE(60), + [sym_process_substitution] = STATE(60), + [aux_sym__statements_repeat1] = STATE(471), + [aux_sym_command_repeat1] = STATE(176), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(95), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(305), + [anon_sym_while] = ACTIONS(307), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(311), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(315), + [anon_sym_declare] = ACTIONS(317), + [anon_sym_typeset] = ACTIONS(317), + [anon_sym_export] = ACTIONS(317), + [anon_sym_readonly] = ACTIONS(317), + [anon_sym_local] = ACTIONS(317), + [anon_sym_unset] = ACTIONS(319), + [anon_sym_unsetenv] = ACTIONS(319), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(115), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(321), }, [152] = { - [sym_concatenation] = STATE(469), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(469), - [anon_sym_RBRACE] = ACTIONS(853), - [anon_sym_EQ] = ACTIONS(855), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(857), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(859), - [anon_sym_COLON] = ACTIONS(855), - [anon_sym_COLON_QMARK] = ACTIONS(855), - [anon_sym_COLON_DASH] = ACTIONS(855), - [anon_sym_PERCENT] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(855), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_simple_expansion] = STATE(148), + [sym_expansion] = STATE(148), + [sym_command_substitution] = STATE(148), + [aux_sym_string_repeat1] = STATE(473), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(843), + [sym__string_content] = ACTIONS(273), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(277), + [anon_sym_BQUOTE] = ACTIONS(279), + [sym_comment] = ACTIONS(281), }, [153] = { - [anon_sym_SEMI] = ACTIONS(861), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(863), - [anon_sym_SEMI_SEMI] = ACTIONS(865), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(865), - [anon_sym_AMP] = ACTIONS(861), + [sym__simple_heredoc_body] = ACTIONS(845), + [sym__heredoc_body_beginning] = ACTIONS(845), + [sym_file_descriptor] = ACTIONS(845), + [sym__concat] = ACTIONS(845), + [ts_builtin_sym_end] = ACTIONS(845), + [anon_sym_SEMI] = ACTIONS(847), + [anon_sym_PIPE] = ACTIONS(847), + [anon_sym_RPAREN] = ACTIONS(845), + [anon_sym_SEMI_SEMI] = ACTIONS(845), + [anon_sym_PIPE_AMP] = ACTIONS(845), + [anon_sym_AMP_AMP] = ACTIONS(845), + [anon_sym_PIPE_PIPE] = ACTIONS(845), + [anon_sym_EQ_TILDE] = ACTIONS(847), + [anon_sym_EQ_EQ] = ACTIONS(847), + [anon_sym_LT] = ACTIONS(847), + [anon_sym_GT] = ACTIONS(847), + [anon_sym_GT_GT] = ACTIONS(845), + [anon_sym_AMP_GT] = ACTIONS(847), + [anon_sym_AMP_GT_GT] = ACTIONS(845), + [anon_sym_LT_AMP] = ACTIONS(845), + [anon_sym_GT_AMP] = ACTIONS(845), + [anon_sym_LT_LT] = ACTIONS(847), + [anon_sym_LT_LT_DASH] = ACTIONS(845), + [anon_sym_LT_LT_LT] = ACTIONS(845), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(845), + [anon_sym_DOLLAR] = ACTIONS(847), + [sym_raw_string] = ACTIONS(845), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(845), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), + [anon_sym_BQUOTE] = ACTIONS(845), + [anon_sym_LT_LPAREN] = ACTIONS(845), + [anon_sym_GT_LPAREN] = ACTIONS(845), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(847), + [anon_sym_LF] = ACTIONS(845), + [anon_sym_AMP] = ACTIONS(847), }, [154] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(861), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(863), - [anon_sym_SEMI_SEMI] = ACTIONS(865), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(865), - [anon_sym_AMP] = ACTIONS(861), + [sym__simple_heredoc_body] = ACTIONS(849), + [sym__heredoc_body_beginning] = ACTIONS(849), + [sym_file_descriptor] = ACTIONS(849), + [sym__concat] = ACTIONS(849), + [ts_builtin_sym_end] = ACTIONS(849), + [anon_sym_SEMI] = ACTIONS(851), + [anon_sym_PIPE] = ACTIONS(851), + [anon_sym_RPAREN] = ACTIONS(849), + [anon_sym_SEMI_SEMI] = ACTIONS(849), + [anon_sym_PIPE_AMP] = ACTIONS(849), + [anon_sym_AMP_AMP] = ACTIONS(849), + [anon_sym_PIPE_PIPE] = ACTIONS(849), + [anon_sym_EQ_TILDE] = ACTIONS(851), + [anon_sym_EQ_EQ] = ACTIONS(851), + [anon_sym_LT] = ACTIONS(851), + [anon_sym_GT] = ACTIONS(851), + [anon_sym_GT_GT] = ACTIONS(849), + [anon_sym_AMP_GT] = ACTIONS(851), + [anon_sym_AMP_GT_GT] = ACTIONS(849), + [anon_sym_LT_AMP] = ACTIONS(849), + [anon_sym_GT_AMP] = ACTIONS(849), + [anon_sym_LT_LT] = ACTIONS(851), + [anon_sym_LT_LT_DASH] = ACTIONS(849), + [anon_sym_LT_LT_LT] = ACTIONS(849), + [sym__special_characters] = ACTIONS(849), + [anon_sym_DQUOTE] = ACTIONS(849), + [anon_sym_DOLLAR] = ACTIONS(851), + [sym_raw_string] = ACTIONS(849), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(849), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(849), + [anon_sym_BQUOTE] = ACTIONS(849), + [anon_sym_LT_LPAREN] = ACTIONS(849), + [anon_sym_GT_LPAREN] = ACTIONS(849), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(851), + [anon_sym_LF] = ACTIONS(849), + [anon_sym_AMP] = ACTIONS(851), }, [155] = { - [sym__terminated_statement] = STATE(190), - [sym_for_statement] = STATE(472), - [sym_c_style_for_statement] = STATE(472), - [sym_while_statement] = STATE(472), - [sym_if_statement] = STATE(472), - [sym_case_statement] = STATE(472), - [sym_function_definition] = STATE(472), - [sym_subshell] = STATE(472), - [sym_pipeline] = STATE(472), - [sym_list] = STATE(472), - [sym_negated_command] = STATE(472), - [sym_test_command] = STATE(472), - [sym_declaration_command] = STATE(472), - [sym_unset_command] = STATE(472), - [sym_command] = STATE(472), - [sym_command_name] = STATE(78), - [sym_variable_assignment] = STATE(473), - [sym_subscript] = STATE(80), - [sym_file_redirect] = STATE(82), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(75), - [sym_simple_expansion] = STATE(75), - [sym_string_expansion] = STATE(75), - [sym_expansion] = STATE(75), - [sym_command_substitution] = STATE(75), - [sym_process_substitution] = STATE(75), - [aux_sym__statements_repeat1] = STATE(190), - [aux_sym_command_repeat1] = STATE(82), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(111), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(119), - [anon_sym_declare] = ACTIONS(121), - [anon_sym_typeset] = ACTIONS(121), - [anon_sym_export] = ACTIONS(121), - [anon_sym_readonly] = ACTIONS(121), - [anon_sym_local] = ACTIONS(121), - [anon_sym_unset] = ACTIONS(123), - [anon_sym_unsetenv] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), + [sym__simple_heredoc_body] = ACTIONS(853), + [sym__heredoc_body_beginning] = ACTIONS(853), + [sym_file_descriptor] = ACTIONS(853), + [sym__concat] = ACTIONS(853), + [ts_builtin_sym_end] = ACTIONS(853), + [anon_sym_SEMI] = ACTIONS(855), + [anon_sym_PIPE] = ACTIONS(855), + [anon_sym_RPAREN] = ACTIONS(853), + [anon_sym_SEMI_SEMI] = ACTIONS(853), + [anon_sym_PIPE_AMP] = ACTIONS(853), + [anon_sym_AMP_AMP] = ACTIONS(853), + [anon_sym_PIPE_PIPE] = ACTIONS(853), + [anon_sym_EQ_TILDE] = ACTIONS(855), + [anon_sym_EQ_EQ] = ACTIONS(855), + [anon_sym_LT] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_GT_GT] = ACTIONS(853), + [anon_sym_AMP_GT] = ACTIONS(855), + [anon_sym_AMP_GT_GT] = ACTIONS(853), + [anon_sym_LT_AMP] = ACTIONS(853), + [anon_sym_GT_AMP] = ACTIONS(853), + [anon_sym_LT_LT] = ACTIONS(855), + [anon_sym_LT_LT_DASH] = ACTIONS(853), + [anon_sym_LT_LT_LT] = ACTIONS(853), + [sym__special_characters] = ACTIONS(853), + [anon_sym_DQUOTE] = ACTIONS(853), + [anon_sym_DOLLAR] = ACTIONS(855), + [sym_raw_string] = ACTIONS(853), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(853), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(853), + [anon_sym_BQUOTE] = ACTIONS(853), + [anon_sym_LT_LPAREN] = ACTIONS(853), + [anon_sym_GT_LPAREN] = ACTIONS(853), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(855), + [anon_sym_LF] = ACTIONS(853), + [anon_sym_AMP] = ACTIONS(855), }, [156] = { - [sym__terminated_statement] = STATE(474), - [sym_for_statement] = STATE(50), - [sym_c_style_for_statement] = STATE(50), - [sym_while_statement] = STATE(50), - [sym_if_statement] = STATE(50), - [sym_case_statement] = STATE(50), - [sym_function_definition] = STATE(50), - [sym_subshell] = STATE(50), - [sym_pipeline] = STATE(50), - [sym_list] = STATE(50), - [sym_negated_command] = STATE(50), - [sym_test_command] = STATE(50), - [sym_declaration_command] = STATE(50), - [sym_unset_command] = STATE(50), - [sym_command] = STATE(50), - [sym_command_name] = STATE(51), - [sym_variable_assignment] = STATE(52), - [sym_subscript] = STATE(53), - [sym_file_redirect] = STATE(54), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(47), - [sym_simple_expansion] = STATE(47), - [sym_string_expansion] = STATE(47), - [sym_expansion] = STATE(47), - [sym_command_substitution] = STATE(47), - [sym_process_substitution] = STATE(47), - [aux_sym_command_repeat1] = STATE(54), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(69), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(71), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(73), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(75), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_LBRACK_LBRACK] = ACTIONS(79), - [anon_sym_declare] = ACTIONS(81), - [anon_sym_typeset] = ACTIONS(81), - [anon_sym_export] = ACTIONS(81), - [anon_sym_readonly] = ACTIONS(81), - [anon_sym_local] = ACTIONS(81), - [anon_sym_unset] = ACTIONS(83), - [anon_sym_unsetenv] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(87), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(857), + [anon_sym_EQ] = ACTIONS(859), + [sym_comment] = ACTIONS(55), }, [157] = { - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(867), + [sym_subscript] = STATE(478), + [sym_variable_name] = ACTIONS(861), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DOLLAR] = ACTIONS(863), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(865), + [anon_sym_STAR] = ACTIONS(867), + [anon_sym_AT] = ACTIONS(867), + [anon_sym_QMARK] = ACTIONS(867), + [anon_sym_0] = ACTIONS(865), + [anon_sym__] = ACTIONS(865), }, [158] = { - [sym_subshell] = STATE(84), - [sym_test_command] = STATE(84), - [sym_command] = STATE(84), - [sym_command_name] = STATE(165), - [sym_variable_assignment] = STATE(168), - [sym_subscript] = STATE(85), - [sym_file_redirect] = STATE(168), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(47), - [sym_simple_expansion] = STATE(47), - [sym_string_expansion] = STATE(47), - [sym_expansion] = STATE(47), - [sym_command_substitution] = STATE(47), - [sym_process_substitution] = STATE(47), - [aux_sym_command_repeat1] = STATE(168), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(295), - [anon_sym_LBRACK_LBRACK] = ACTIONS(297), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(87), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(87), + [sym_concatenation] = STATE(489), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(489), + [anon_sym_RBRACE] = ACTIONS(869), + [anon_sym_EQ] = ACTIONS(871), + [anon_sym_DASH] = ACTIONS(871), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(881), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(885), + [anon_sym_COLON] = ACTIONS(871), + [anon_sym_COLON_QMARK] = ACTIONS(871), + [anon_sym_COLON_DASH] = ACTIONS(871), + [anon_sym_PERCENT] = ACTIONS(871), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [159] = { - [sym__expression] = STATE(476), - [sym_binary_expression] = STATE(476), - [sym_unary_expression] = STATE(476), - [sym_parenthesized_expression] = STATE(476), - [sym_concatenation] = STATE(476), - [sym_string] = STATE(91), - [sym_simple_expansion] = STATE(91), - [sym_string_expansion] = STATE(91), - [sym_expansion] = STATE(91), - [sym_command_substitution] = STATE(91), - [sym_process_substitution] = STATE(91), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(135), - [sym__special_characters] = ACTIONS(137), - [anon_sym_DQUOTE] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(141), - [sym_raw_string] = ACTIONS(143), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(145), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(147), - [anon_sym_BQUOTE] = ACTIONS(149), - [anon_sym_LT_LPAREN] = ACTIONS(151), - [anon_sym_GT_LPAREN] = ACTIONS(151), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(153), - [sym_test_operator] = ACTIONS(155), + [sym_concatenation] = STATE(492), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(492), + [anon_sym_RBRACE] = ACTIONS(895), + [anon_sym_EQ] = ACTIONS(897), + [anon_sym_DASH] = ACTIONS(897), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(899), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(901), + [anon_sym_COLON] = ACTIONS(897), + [anon_sym_COLON_QMARK] = ACTIONS(897), + [anon_sym_COLON_DASH] = ACTIONS(897), + [anon_sym_PERCENT] = ACTIONS(897), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [160] = { - [sym__expression] = STATE(477), - [sym_binary_expression] = STATE(477), - [sym_unary_expression] = STATE(477), - [sym_parenthesized_expression] = STATE(477), - [sym_concatenation] = STATE(477), - [sym_string] = STATE(102), - [sym_simple_expansion] = STATE(102), - [sym_string_expansion] = STATE(102), - [sym_expansion] = STATE(102), - [sym_command_substitution] = STATE(102), - [sym_process_substitution] = STATE(102), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_BANG] = ACTIONS(159), - [sym__special_characters] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(163), - [anon_sym_DOLLAR] = ACTIONS(165), - [sym_raw_string] = ACTIONS(167), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(169), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(171), - [anon_sym_BQUOTE] = ACTIONS(173), - [anon_sym_LT_LPAREN] = ACTIONS(175), - [anon_sym_GT_LPAREN] = ACTIONS(175), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(177), - [sym_test_operator] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(903), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(905), + [anon_sym_SEMI_SEMI] = ACTIONS(907), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(903), }, [161] = { - [sym_variable_assignment] = STATE(478), - [sym_subscript] = STATE(231), - [sym_concatenation] = STATE(478), - [sym_string] = STATE(230), - [sym_simple_expansion] = STATE(230), - [sym_string_expansion] = STATE(230), - [sym_expansion] = STATE(230), - [sym_command_substitution] = STATE(230), - [sym_process_substitution] = STATE(230), - [aux_sym_declaration_command_repeat1] = STATE(478), - [sym_variable_name] = ACTIONS(421), - [anon_sym_SEMI] = ACTIONS(185), - [anon_sym_PIPE] = ACTIONS(185), - [anon_sym_SEMI_SEMI] = ACTIONS(183), - [anon_sym_PIPE_AMP] = ACTIONS(183), - [anon_sym_AMP_AMP] = ACTIONS(183), - [anon_sym_PIPE_PIPE] = ACTIONS(183), - [sym__special_characters] = ACTIONS(423), - [anon_sym_DQUOTE] = ACTIONS(189), - [anon_sym_DOLLAR] = ACTIONS(191), - [sym_raw_string] = ACTIONS(425), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(195), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(197), - [anon_sym_BQUOTE] = ACTIONS(183), - [anon_sym_LT_LPAREN] = ACTIONS(201), - [anon_sym_GT_LPAREN] = ACTIONS(201), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(869), - [sym_word] = ACTIONS(429), - [anon_sym_LF] = ACTIONS(183), - [anon_sym_AMP] = ACTIONS(185), + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(903), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(905), + [anon_sym_SEMI_SEMI] = ACTIONS(907), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(903), }, [162] = { - [sym_concatenation] = STATE(479), - [sym_string] = STATE(234), - [sym_simple_expansion] = STATE(234), - [sym_string_expansion] = STATE(234), - [sym_expansion] = STATE(234), - [sym_command_substitution] = STATE(234), - [sym_process_substitution] = STATE(234), - [aux_sym_unset_command_repeat1] = STATE(479), - [anon_sym_SEMI] = ACTIONS(209), - [anon_sym_PIPE] = ACTIONS(209), - [anon_sym_SEMI_SEMI] = ACTIONS(207), - [anon_sym_PIPE_AMP] = ACTIONS(207), - [anon_sym_AMP_AMP] = ACTIONS(207), - [anon_sym_PIPE_PIPE] = ACTIONS(207), - [sym__special_characters] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(215), - [sym_raw_string] = ACTIONS(433), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(219), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(221), - [anon_sym_BQUOTE] = ACTIONS(207), - [anon_sym_LT_LPAREN] = ACTIONS(225), - [anon_sym_GT_LPAREN] = ACTIONS(225), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(871), - [sym_word] = ACTIONS(437), - [anon_sym_LF] = ACTIONS(207), - [anon_sym_AMP] = ACTIONS(209), + [sym__terminated_statement] = STATE(198), + [sym_for_statement] = STATE(495), + [sym_c_style_for_statement] = STATE(495), + [sym_while_statement] = STATE(495), + [sym_if_statement] = STATE(495), + [sym_case_statement] = STATE(495), + [sym_function_definition] = STATE(495), + [sym_subshell] = STATE(495), + [sym_pipeline] = STATE(495), + [sym_list] = STATE(495), + [sym_negated_command] = STATE(495), + [sym_test_command] = STATE(495), + [sym_declaration_command] = STATE(495), + [sym_unset_command] = STATE(495), + [sym_command] = STATE(495), + [sym_command_name] = STATE(92), + [sym_variable_assignment] = STATE(496), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(96), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), + [aux_sym__statements_repeat1] = STATE(198), + [aux_sym_command_repeat1] = STATE(96), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(137), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(149), + [anon_sym_declare] = ACTIONS(151), + [anon_sym_typeset] = ACTIONS(151), + [anon_sym_export] = ACTIONS(151), + [anon_sym_readonly] = ACTIONS(151), + [anon_sym_local] = ACTIONS(151), + [anon_sym_unset] = ACTIONS(153), + [anon_sym_unsetenv] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(159), }, [163] = { - [aux_sym_concatenation_repeat1] = STATE(236), - [sym__simple_heredoc_body] = ACTIONS(275), - [sym__heredoc_body_beginning] = ACTIONS(275), - [sym_file_descriptor] = ACTIONS(275), - [sym__concat] = ACTIONS(249), - [anon_sym_SEMI] = ACTIONS(277), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_SEMI_SEMI] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(873), - [anon_sym_PIPE_AMP] = ACTIONS(275), - [anon_sym_AMP_AMP] = ACTIONS(275), - [anon_sym_PIPE_PIPE] = ACTIONS(275), - [anon_sym_EQ_TILDE] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_LT] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(277), - [anon_sym_GT_GT] = ACTIONS(275), - [anon_sym_AMP_GT] = ACTIONS(277), - [anon_sym_AMP_GT_GT] = ACTIONS(275), - [anon_sym_LT_AMP] = ACTIONS(275), - [anon_sym_GT_AMP] = ACTIONS(275), - [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_LT_LT_DASH] = ACTIONS(275), - [anon_sym_LT_LT_LT] = ACTIONS(275), - [sym__special_characters] = ACTIONS(275), - [anon_sym_DQUOTE] = ACTIONS(275), - [anon_sym_DOLLAR] = ACTIONS(277), - [sym_raw_string] = ACTIONS(275), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), - [anon_sym_BQUOTE] = ACTIONS(275), - [anon_sym_LT_LPAREN] = ACTIONS(275), - [anon_sym_GT_LPAREN] = ACTIONS(275), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(277), - [anon_sym_LF] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), + [sym__expression] = STATE(497), + [sym_binary_expression] = STATE(497), + [sym_unary_expression] = STATE(497), + [sym_postfix_expression] = STATE(497), + [sym_parenthesized_expression] = STATE(497), + [sym_concatenation] = STATE(497), + [sym_string] = STATE(44), + [sym_simple_expansion] = STATE(44), + [sym_string_expansion] = STATE(44), + [sym_expansion] = STATE(44), + [sym_command_substitution] = STATE(44), + [sym_process_substitution] = STATE(44), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(73), + [sym__special_characters] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(79), + [sym_raw_string] = ACTIONS(81), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(83), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(85), + [anon_sym_BQUOTE] = ACTIONS(87), + [anon_sym_LT_LPAREN] = ACTIONS(89), + [anon_sym_GT_LPAREN] = ACTIONS(89), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(91), + [sym_test_operator] = ACTIONS(93), }, [164] = { - [anon_sym_SEMI] = ACTIONS(875), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_SEMI_SEMI] = ACTIONS(879), - [anon_sym_PIPE_AMP] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(883), - [anon_sym_PIPE_PIPE] = ACTIONS(883), - [anon_sym_BQUOTE] = ACTIONS(863), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(879), - [anon_sym_AMP] = ACTIONS(875), + [sym__terminated_statement] = STATE(498), + [sym_for_statement] = STATE(63), + [sym_c_style_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_if_statement] = STATE(63), + [sym_case_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_subshell] = STATE(63), + [sym_pipeline] = STATE(63), + [sym_list] = STATE(63), + [sym_negated_command] = STATE(63), + [sym_test_command] = STATE(63), + [sym_declaration_command] = STATE(63), + [sym_unset_command] = STATE(63), + [sym_command] = STATE(63), + [sym_command_name] = STATE(64), + [sym_variable_assignment] = STATE(65), + [sym_subscript] = STATE(66), + [sym_file_redirect] = STATE(67), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(60), + [sym_simple_expansion] = STATE(60), + [sym_string_expansion] = STATE(60), + [sym_expansion] = STATE(60), + [sym_command_substitution] = STATE(60), + [sym_process_substitution] = STATE(60), + [aux_sym_command_repeat1] = STATE(67), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(95), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(97), + [anon_sym_while] = ACTIONS(99), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(101), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_LBRACK] = ACTIONS(107), + [anon_sym_declare] = ACTIONS(109), + [anon_sym_typeset] = ACTIONS(109), + [anon_sym_export] = ACTIONS(109), + [anon_sym_readonly] = ACTIONS(109), + [anon_sym_local] = ACTIONS(109), + [anon_sym_unset] = ACTIONS(111), + [anon_sym_unsetenv] = ACTIONS(111), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(115), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(117), }, [165] = { - [sym_file_redirect] = STATE(487), - [sym_heredoc_redirect] = STATE(487), - [sym_heredoc_body] = STATE(185), - [sym_herestring_redirect] = STATE(487), - [sym_concatenation] = STATE(488), - [sym_string] = STATE(248), - [sym_simple_expansion] = STATE(248), - [sym_string_expansion] = STATE(248), - [sym_expansion] = STATE(248), - [sym_command_substitution] = STATE(248), - [sym_process_substitution] = STATE(248), - [aux_sym_while_statement_repeat1] = STATE(487), - [aux_sym_command_repeat2] = STATE(488), - [sym__simple_heredoc_body] = ACTIONS(321), - [sym__heredoc_body_beginning] = ACTIONS(323), - [sym_file_descriptor] = ACTIONS(885), - [anon_sym_SEMI] = ACTIONS(329), - [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_SEMI_SEMI] = ACTIONS(327), - [anon_sym_PIPE_AMP] = ACTIONS(327), - [anon_sym_AMP_AMP] = ACTIONS(327), - [anon_sym_PIPE_PIPE] = ACTIONS(327), - [anon_sym_EQ_TILDE] = ACTIONS(455), - [anon_sym_EQ_EQ] = ACTIONS(455), - [anon_sym_LT] = ACTIONS(887), - [anon_sym_GT] = ACTIONS(887), - [anon_sym_GT_GT] = ACTIONS(889), - [anon_sym_AMP_GT] = ACTIONS(887), - [anon_sym_AMP_GT_GT] = ACTIONS(889), - [anon_sym_LT_AMP] = ACTIONS(889), - [anon_sym_GT_AMP] = ACTIONS(889), - [anon_sym_LT_LT] = ACTIONS(337), - [anon_sym_LT_LT_DASH] = ACTIONS(339), - [anon_sym_LT_LT_LT] = ACTIONS(891), - [sym__special_characters] = ACTIONS(463), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(465), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(327), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(467), - [anon_sym_LF] = ACTIONS(327), - [anon_sym_AMP] = ACTIONS(329), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(909), }, [166] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(875), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_SEMI_SEMI] = ACTIONS(879), - [anon_sym_PIPE_AMP] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(883), - [anon_sym_PIPE_PIPE] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(863), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(879), - [anon_sym_AMP] = ACTIONS(875), + [sym_subshell] = STATE(98), + [sym_test_command] = STATE(98), + [sym_command] = STATE(98), + [sym_command_name] = STATE(173), + [sym_variable_assignment] = STATE(176), + [sym_subscript] = STATE(99), + [sym_file_redirect] = STATE(176), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(60), + [sym_simple_expansion] = STATE(60), + [sym_string_expansion] = STATE(60), + [sym_expansion] = STATE(60), + [sym_command_substitution] = STATE(60), + [sym_process_substitution] = STATE(60), + [aux_sym_command_repeat1] = STATE(176), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(161), + [anon_sym_LPAREN_LPAREN] = ACTIONS(305), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(315), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(115), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(115), }, [167] = { - [sym__terminated_statement] = STATE(190), - [sym_for_statement] = STATE(489), - [sym_c_style_for_statement] = STATE(489), - [sym_while_statement] = STATE(489), - [sym_if_statement] = STATE(489), - [sym_case_statement] = STATE(489), - [sym_function_definition] = STATE(489), - [sym_subshell] = STATE(489), - [sym_pipeline] = STATE(489), - [sym_list] = STATE(489), - [sym_negated_command] = STATE(489), - [sym_test_command] = STATE(489), - [sym_declaration_command] = STATE(489), - [sym_unset_command] = STATE(489), - [sym_command] = STATE(489), - [sym_command_name] = STATE(165), - [sym_variable_assignment] = STATE(490), - [sym_subscript] = STATE(53), - [sym_file_redirect] = STATE(168), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(47), - [sym_simple_expansion] = STATE(47), - [sym_string_expansion] = STATE(47), - [sym_expansion] = STATE(47), - [sym_command_substitution] = STATE(47), - [sym_process_substitution] = STATE(47), - [aux_sym__statements_repeat1] = STATE(190), - [aux_sym_command_repeat1] = STATE(168), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(69), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(289), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(291), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(293), - [anon_sym_LBRACK] = ACTIONS(295), - [anon_sym_LBRACK_LBRACK] = ACTIONS(297), - [anon_sym_declare] = ACTIONS(299), - [anon_sym_typeset] = ACTIONS(299), - [anon_sym_export] = ACTIONS(299), - [anon_sym_readonly] = ACTIONS(299), - [anon_sym_local] = ACTIONS(299), - [anon_sym_unset] = ACTIONS(301), - [anon_sym_unsetenv] = ACTIONS(301), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(87), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(303), + [sym__expression] = STATE(500), + [sym_binary_expression] = STATE(500), + [sym_unary_expression] = STATE(500), + [sym_postfix_expression] = STATE(500), + [sym_parenthesized_expression] = STATE(500), + [sym_concatenation] = STATE(500), + [sym_string] = STATE(105), + [sym_simple_expansion] = STATE(105), + [sym_string_expansion] = STATE(105), + [sym_expansion] = STATE(105), + [sym_command_substitution] = STATE(105), + [sym_process_substitution] = STATE(105), + [anon_sym_LPAREN] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(165), + [sym__special_characters] = ACTIONS(167), + [anon_sym_DQUOTE] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(171), + [sym_raw_string] = ACTIONS(173), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(175), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(177), + [anon_sym_BQUOTE] = ACTIONS(179), + [anon_sym_LT_LPAREN] = ACTIONS(181), + [anon_sym_GT_LPAREN] = ACTIONS(181), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(183), + [sym_test_operator] = ACTIONS(185), }, [168] = { - [sym_command_name] = STATE(491), - [sym_variable_assignment] = STATE(192), - [sym_subscript] = STATE(85), - [sym_file_redirect] = STATE(192), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(47), - [sym_simple_expansion] = STATE(47), - [sym_string_expansion] = STATE(47), - [sym_expansion] = STATE(47), - [sym_command_substitution] = STATE(47), - [sym_process_substitution] = STATE(47), - [aux_sym_command_repeat1] = STATE(192), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(131), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(469), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(87), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(87), + [sym__expression] = STATE(501), + [sym_binary_expression] = STATE(501), + [sym_unary_expression] = STATE(501), + [sym_postfix_expression] = STATE(501), + [sym_parenthesized_expression] = STATE(501), + [sym_concatenation] = STATE(501), + [sym_string] = STATE(113), + [sym_simple_expansion] = STATE(113), + [sym_string_expansion] = STATE(113), + [sym_expansion] = STATE(113), + [sym_command_substitution] = STATE(113), + [sym_process_substitution] = STATE(113), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(187), + [sym__special_characters] = ACTIONS(189), + [anon_sym_DQUOTE] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(79), + [sym_raw_string] = ACTIONS(191), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(83), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(85), + [anon_sym_BQUOTE] = ACTIONS(87), + [anon_sym_LT_LPAREN] = ACTIONS(89), + [anon_sym_GT_LPAREN] = ACTIONS(89), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(193), + [sym_test_operator] = ACTIONS(195), }, [169] = { - [anon_sym_SEMI] = ACTIONS(893), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(895), - [anon_sym_SEMI_SEMI] = ACTIONS(897), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(897), - [anon_sym_AMP] = ACTIONS(893), + [sym_variable_assignment] = STATE(502), + [sym_subscript] = STATE(277), + [sym_concatenation] = STATE(502), + [sym_string] = STATE(276), + [sym_simple_expansion] = STATE(276), + [sym_string_expansion] = STATE(276), + [sym_expansion] = STATE(276), + [sym_command_substitution] = STATE(276), + [sym_process_substitution] = STATE(276), + [aux_sym_declaration_command_repeat1] = STATE(502), + [sym_variable_name] = ACTIONS(505), + [anon_sym_SEMI] = ACTIONS(201), + [anon_sym_PIPE] = ACTIONS(201), + [anon_sym_SEMI_SEMI] = ACTIONS(199), + [anon_sym_PIPE_AMP] = ACTIONS(199), + [anon_sym_AMP_AMP] = ACTIONS(199), + [anon_sym_PIPE_PIPE] = ACTIONS(199), + [sym__special_characters] = ACTIONS(507), + [anon_sym_DQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR] = ACTIONS(207), + [sym_raw_string] = ACTIONS(509), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(199), + [anon_sym_LT_LPAREN] = ACTIONS(217), + [anon_sym_GT_LPAREN] = ACTIONS(217), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(911), + [sym_word] = ACTIONS(513), + [anon_sym_LF] = ACTIONS(199), + [anon_sym_AMP] = ACTIONS(201), }, [170] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(893), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(895), - [anon_sym_SEMI_SEMI] = ACTIONS(897), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(897), - [anon_sym_AMP] = ACTIONS(893), + [sym_concatenation] = STATE(503), + [sym_string] = STATE(280), + [sym_simple_expansion] = STATE(280), + [sym_string_expansion] = STATE(280), + [sym_expansion] = STATE(280), + [sym_command_substitution] = STATE(280), + [sym_process_substitution] = STATE(280), + [aux_sym_unset_command_repeat1] = STATE(503), + [anon_sym_SEMI] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(225), + [anon_sym_SEMI_SEMI] = ACTIONS(223), + [anon_sym_PIPE_AMP] = ACTIONS(223), + [anon_sym_AMP_AMP] = ACTIONS(223), + [anon_sym_PIPE_PIPE] = ACTIONS(223), + [sym__special_characters] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(229), + [anon_sym_DOLLAR] = ACTIONS(231), + [sym_raw_string] = ACTIONS(517), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), + [anon_sym_BQUOTE] = ACTIONS(223), + [anon_sym_LT_LPAREN] = ACTIONS(241), + [anon_sym_GT_LPAREN] = ACTIONS(241), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(913), + [sym_word] = ACTIONS(521), + [anon_sym_LF] = ACTIONS(223), + [anon_sym_AMP] = ACTIONS(225), }, [171] = { - [sym__terminated_statement] = STATE(190), - [sym_for_statement] = STATE(494), - [sym_c_style_for_statement] = STATE(494), - [sym_while_statement] = STATE(494), - [sym_if_statement] = STATE(494), - [sym_case_statement] = STATE(494), - [sym_function_definition] = STATE(494), - [sym_subshell] = STATE(494), - [sym_pipeline] = STATE(494), - [sym_list] = STATE(494), - [sym_negated_command] = STATE(494), - [sym_test_command] = STATE(494), - [sym_declaration_command] = STATE(494), - [sym_unset_command] = STATE(494), - [sym_command] = STATE(494), - [sym_command_name] = STATE(78), - [sym_variable_assignment] = STATE(495), - [sym_subscript] = STATE(80), - [sym_file_redirect] = STATE(82), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(75), - [sym_simple_expansion] = STATE(75), - [sym_string_expansion] = STATE(75), - [sym_expansion] = STATE(75), - [sym_command_substitution] = STATE(75), - [sym_process_substitution] = STATE(75), - [aux_sym__statements_repeat1] = STATE(190), - [aux_sym_command_repeat1] = STATE(82), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(111), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(119), - [anon_sym_declare] = ACTIONS(121), - [anon_sym_typeset] = ACTIONS(121), - [anon_sym_export] = ACTIONS(121), - [anon_sym_readonly] = ACTIONS(121), - [anon_sym_local] = ACTIONS(121), - [anon_sym_unset] = ACTIONS(123), - [anon_sym_unsetenv] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), + [aux_sym_concatenation_repeat1] = STATE(282), + [sym__simple_heredoc_body] = ACTIONS(291), + [sym__heredoc_body_beginning] = ACTIONS(291), + [sym_file_descriptor] = ACTIONS(291), + [sym__concat] = ACTIONS(265), + [anon_sym_SEMI] = ACTIONS(293), + [anon_sym_PIPE] = ACTIONS(293), + [anon_sym_SEMI_SEMI] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(915), + [anon_sym_PIPE_AMP] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(291), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_EQ_TILDE] = ACTIONS(293), + [anon_sym_EQ_EQ] = ACTIONS(293), + [anon_sym_LT] = ACTIONS(293), + [anon_sym_GT] = ACTIONS(293), + [anon_sym_GT_GT] = ACTIONS(291), + [anon_sym_AMP_GT] = ACTIONS(293), + [anon_sym_AMP_GT_GT] = ACTIONS(291), + [anon_sym_LT_AMP] = ACTIONS(291), + [anon_sym_GT_AMP] = ACTIONS(291), + [anon_sym_LT_LT] = ACTIONS(293), + [anon_sym_LT_LT_DASH] = ACTIONS(291), + [anon_sym_LT_LT_LT] = ACTIONS(291), + [sym__special_characters] = ACTIONS(291), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_DOLLAR] = ACTIONS(293), + [sym_raw_string] = ACTIONS(291), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(291), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(291), + [anon_sym_BQUOTE] = ACTIONS(291), + [anon_sym_LT_LPAREN] = ACTIONS(291), + [anon_sym_GT_LPAREN] = ACTIONS(291), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(293), + [anon_sym_LF] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(293), }, [172] = { - [anon_sym_RPAREN] = ACTIONS(899), - [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(917), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_SEMI_SEMI] = ACTIONS(921), + [anon_sym_PIPE_AMP] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_BQUOTE] = ACTIONS(905), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(921), + [anon_sym_AMP] = ACTIONS(917), }, [173] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [ts_builtin_sym_end] = ACTIONS(903), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(901), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), + [sym_file_redirect] = STATE(511), + [sym_heredoc_redirect] = STATE(511), + [sym_heredoc_body] = STATE(193), + [sym_herestring_redirect] = STATE(511), + [sym_concatenation] = STATE(512), + [sym_string] = STATE(294), + [sym_simple_expansion] = STATE(294), + [sym_string_expansion] = STATE(294), + [sym_expansion] = STATE(294), + [sym_command_substitution] = STATE(294), + [sym_process_substitution] = STATE(294), + [aux_sym_while_statement_repeat1] = STATE(511), + [aux_sym_command_repeat2] = STATE(512), + [sym__simple_heredoc_body] = ACTIONS(339), + [sym__heredoc_body_beginning] = ACTIONS(341), + [sym_file_descriptor] = ACTIONS(927), + [anon_sym_SEMI] = ACTIONS(347), + [anon_sym_PIPE] = ACTIONS(347), + [anon_sym_SEMI_SEMI] = ACTIONS(345), + [anon_sym_PIPE_AMP] = ACTIONS(345), + [anon_sym_AMP_AMP] = ACTIONS(345), + [anon_sym_PIPE_PIPE] = ACTIONS(345), + [anon_sym_EQ_TILDE] = ACTIONS(539), + [anon_sym_EQ_EQ] = ACTIONS(539), + [anon_sym_LT] = ACTIONS(929), + [anon_sym_GT] = ACTIONS(929), + [anon_sym_GT_GT] = ACTIONS(931), + [anon_sym_AMP_GT] = ACTIONS(929), + [anon_sym_AMP_GT_GT] = ACTIONS(931), + [anon_sym_LT_AMP] = ACTIONS(931), + [anon_sym_GT_AMP] = ACTIONS(931), + [anon_sym_LT_LT] = ACTIONS(355), + [anon_sym_LT_LT_DASH] = ACTIONS(357), + [anon_sym_LT_LT_LT] = ACTIONS(933), + [sym__special_characters] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(549), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(345), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(551), + [anon_sym_LF] = ACTIONS(345), + [anon_sym_AMP] = ACTIONS(347), }, [174] = { - [sym_for_statement] = STATE(497), - [sym_c_style_for_statement] = STATE(497), - [sym_while_statement] = STATE(497), - [sym_if_statement] = STATE(497), - [sym_case_statement] = STATE(497), - [sym_function_definition] = STATE(497), - [sym_subshell] = STATE(497), - [sym_pipeline] = STATE(497), - [sym_list] = STATE(497), - [sym_negated_command] = STATE(497), - [sym_test_command] = STATE(497), - [sym_declaration_command] = STATE(497), - [sym_unset_command] = STATE(497), - [sym_command] = STATE(497), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(498), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(32), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(19), - [sym_simple_expansion] = STATE(19), - [sym_string_expansion] = STATE(19), - [sym_expansion] = STATE(19), - [sym_command_substitution] = STATE(19), - [sym_process_substitution] = STATE(19), - [aux_sym_command_repeat1] = STATE(32), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(7), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(13), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACK_LBRACK] = ACTIONS(27), - [anon_sym_declare] = ACTIONS(29), - [anon_sym_typeset] = ACTIONS(29), - [anon_sym_export] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(29), - [anon_sym_local] = ACTIONS(29), - [anon_sym_unset] = ACTIONS(31), - [anon_sym_unsetenv] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(37), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(43), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(55), + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(917), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_SEMI_SEMI] = ACTIONS(921), + [anon_sym_PIPE_AMP] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(905), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(921), + [anon_sym_AMP] = ACTIONS(917), }, [175] = { - [sym_for_statement] = STATE(499), - [sym_c_style_for_statement] = STATE(499), - [sym_while_statement] = STATE(499), - [sym_if_statement] = STATE(499), - [sym_case_statement] = STATE(499), - [sym_function_definition] = STATE(499), - [sym_subshell] = STATE(499), - [sym_pipeline] = STATE(499), - [sym_list] = STATE(499), - [sym_negated_command] = STATE(499), - [sym_test_command] = STATE(499), - [sym_declaration_command] = STATE(499), - [sym_unset_command] = STATE(499), - [sym_command] = STATE(499), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(500), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(32), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(19), - [sym_simple_expansion] = STATE(19), - [sym_string_expansion] = STATE(19), - [sym_expansion] = STATE(19), - [sym_command_substitution] = STATE(19), - [sym_process_substitution] = STATE(19), - [aux_sym_command_repeat1] = STATE(32), + [sym__terminated_statement] = STATE(198), + [sym_for_statement] = STATE(513), + [sym_c_style_for_statement] = STATE(513), + [sym_while_statement] = STATE(513), + [sym_if_statement] = STATE(513), + [sym_case_statement] = STATE(513), + [sym_function_definition] = STATE(513), + [sym_subshell] = STATE(513), + [sym_pipeline] = STATE(513), + [sym_list] = STATE(513), + [sym_negated_command] = STATE(513), + [sym_test_command] = STATE(513), + [sym_declaration_command] = STATE(513), + [sym_unset_command] = STATE(513), + [sym_command] = STATE(513), + [sym_command_name] = STATE(173), + [sym_variable_assignment] = STATE(514), + [sym_subscript] = STATE(66), + [sym_file_redirect] = STATE(176), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(60), + [sym_simple_expansion] = STATE(60), + [sym_string_expansion] = STATE(60), + [sym_expansion] = STATE(60), + [sym_command_substitution] = STATE(60), + [sym_process_substitution] = STATE(60), + [aux_sym__statements_repeat1] = STATE(198), + [aux_sym_command_repeat1] = STATE(176), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(95), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(305), + [anon_sym_while] = ACTIONS(307), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(311), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(315), + [anon_sym_declare] = ACTIONS(317), + [anon_sym_typeset] = ACTIONS(317), + [anon_sym_export] = ACTIONS(317), + [anon_sym_readonly] = ACTIONS(317), + [anon_sym_local] = ACTIONS(317), + [anon_sym_unset] = ACTIONS(319), + [anon_sym_unsetenv] = ACTIONS(319), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(115), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(321), + }, + [176] = { + [sym_command_name] = STATE(515), + [sym_variable_assignment] = STATE(200), + [sym_subscript] = STATE(99), + [sym_file_redirect] = STATE(200), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(60), + [sym_simple_expansion] = STATE(60), + [sym_string_expansion] = STATE(60), + [sym_expansion] = STATE(60), + [sym_command_substitution] = STATE(60), + [sym_process_substitution] = STATE(60), + [aux_sym_command_repeat1] = STATE(200), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(553), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(115), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(115), + }, + [177] = { + [anon_sym_SEMI] = ACTIONS(935), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(937), + [anon_sym_SEMI_SEMI] = ACTIONS(939), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(939), + [anon_sym_AMP] = ACTIONS(935), + }, + [178] = { + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(935), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(937), + [anon_sym_SEMI_SEMI] = ACTIONS(939), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(939), + [anon_sym_AMP] = ACTIONS(935), + }, + [179] = { + [sym__terminated_statement] = STATE(198), + [sym_for_statement] = STATE(518), + [sym_c_style_for_statement] = STATE(518), + [sym_while_statement] = STATE(518), + [sym_if_statement] = STATE(518), + [sym_case_statement] = STATE(518), + [sym_function_definition] = STATE(518), + [sym_subshell] = STATE(518), + [sym_pipeline] = STATE(518), + [sym_list] = STATE(518), + [sym_negated_command] = STATE(518), + [sym_test_command] = STATE(518), + [sym_declaration_command] = STATE(518), + [sym_unset_command] = STATE(518), + [sym_command] = STATE(518), + [sym_command_name] = STATE(92), + [sym_variable_assignment] = STATE(519), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(96), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), + [aux_sym__statements_repeat1] = STATE(198), + [aux_sym_command_repeat1] = STATE(96), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(137), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(149), + [anon_sym_declare] = ACTIONS(151), + [anon_sym_typeset] = ACTIONS(151), + [anon_sym_export] = ACTIONS(151), + [anon_sym_readonly] = ACTIONS(151), + [anon_sym_local] = ACTIONS(151), + [anon_sym_unset] = ACTIONS(153), + [anon_sym_unsetenv] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(159), + }, + [180] = { + [anon_sym_RPAREN] = ACTIONS(941), + [sym_comment] = ACTIONS(55), + }, + [181] = { + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [ts_builtin_sym_end] = ACTIONS(945), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), + }, + [182] = { + [sym_for_statement] = STATE(521), + [sym_c_style_for_statement] = STATE(521), + [sym_while_statement] = STATE(521), + [sym_if_statement] = STATE(521), + [sym_case_statement] = STATE(521), + [sym_function_definition] = STATE(521), + [sym_subshell] = STATE(521), + [sym_pipeline] = STATE(521), + [sym_list] = STATE(521), + [sym_negated_command] = STATE(521), + [sym_test_command] = STATE(521), + [sym_declaration_command] = STATE(521), + [sym_unset_command] = STATE(521), + [sym_command] = STATE(521), + [sym_command_name] = STATE(28), + [sym_variable_assignment] = STATE(522), + [sym_subscript] = STATE(30), + [sym_file_redirect] = STATE(33), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(20), + [sym_simple_expansion] = STATE(20), + [sym_string_expansion] = STATE(20), + [sym_expansion] = STATE(20), + [sym_command_substitution] = STATE(20), + [sym_process_substitution] = STATE(20), + [aux_sym_command_repeat1] = STATE(33), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(13), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACK_LBRACK] = ACTIONS(27), - [anon_sym_declare] = ACTIONS(29), - [anon_sym_typeset] = ACTIONS(29), - [anon_sym_export] = ACTIONS(29), - [anon_sym_readonly] = ACTIONS(29), - [anon_sym_local] = ACTIONS(29), - [anon_sym_unset] = ACTIONS(31), - [anon_sym_unsetenv] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(37), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(43), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(55), - }, - [176] = { - [ts_builtin_sym_end] = ACTIONS(907), - [anon_sym_SEMI] = ACTIONS(909), - [anon_sym_esac] = ACTIONS(907), - [anon_sym_PIPE] = ACTIONS(909), - [anon_sym_RPAREN] = ACTIONS(907), - [anon_sym_SEMI_SEMI] = ACTIONS(907), - [anon_sym_PIPE_AMP] = ACTIONS(907), - [anon_sym_AMP_AMP] = ACTIONS(907), - [anon_sym_PIPE_PIPE] = ACTIONS(907), - [anon_sym_BQUOTE] = ACTIONS(907), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(909), - }, - [177] = { - [sym_simple_expansion] = STATE(504), - [sym_expansion] = STATE(504), - [aux_sym_heredoc_body_repeat1] = STATE(504), - [sym__heredoc_body_middle] = ACTIONS(911), - [sym__heredoc_body_end] = ACTIONS(913), - [anon_sym_DOLLAR] = ACTIONS(915), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(917), - [sym_comment] = ACTIONS(53), - }, - [178] = { - [anon_sym_LT] = ACTIONS(919), - [anon_sym_GT] = ACTIONS(919), - [anon_sym_GT_GT] = ACTIONS(921), - [anon_sym_AMP_GT] = ACTIONS(919), - [anon_sym_AMP_GT_GT] = ACTIONS(921), - [anon_sym_LT_AMP] = ACTIONS(921), - [anon_sym_GT_AMP] = ACTIONS(921), - [sym_comment] = ACTIONS(53), - }, - [179] = { - [sym_concatenation] = STATE(508), - [sym_string] = STATE(507), - [sym_simple_expansion] = STATE(507), - [sym_string_expansion] = STATE(507), - [sym_expansion] = STATE(507), - [sym_command_substitution] = STATE(507), - [sym_process_substitution] = STATE(507), - [sym__special_characters] = ACTIONS(923), - [anon_sym_DQUOTE] = ACTIONS(925), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(927), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(929), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(933), - [anon_sym_LT_LPAREN] = ACTIONS(935), - [anon_sym_GT_LPAREN] = ACTIONS(935), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(927), - [sym_regex] = ACTIONS(937), - }, - [180] = { - [sym_concatenation] = STATE(511), - [sym_string] = STATE(510), - [sym_simple_expansion] = STATE(510), - [sym_string_expansion] = STATE(510), - [sym_expansion] = STATE(510), - [sym_command_substitution] = STATE(510), - [sym_process_substitution] = STATE(510), - [sym__special_characters] = ACTIONS(939), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(941), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(941), - }, - [181] = { - [sym_heredoc_start] = ACTIONS(943), - [sym_comment] = ACTIONS(53), - }, - [182] = { - [sym_concatenation] = STATE(515), - [sym_string] = STATE(514), - [sym_simple_expansion] = STATE(514), - [sym_string_expansion] = STATE(514), - [sym_expansion] = STATE(514), - [sym_command_substitution] = STATE(514), - [sym_process_substitution] = STATE(514), - [sym__special_characters] = ACTIONS(945), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(947), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_LBRACK] = ACTIONS(27), + [anon_sym_LBRACK_LBRACK] = ACTIONS(29), + [anon_sym_declare] = ACTIONS(31), + [anon_sym_typeset] = ACTIONS(31), + [anon_sym_export] = ACTIONS(31), + [anon_sym_readonly] = ACTIONS(31), + [anon_sym_local] = ACTIONS(31), + [anon_sym_unset] = ACTIONS(33), + [anon_sym_unsetenv] = ACTIONS(33), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(39), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(57), }, [183] = { - [aux_sym_concatenation_repeat1] = STATE(138), - [sym__simple_heredoc_body] = ACTIONS(949), - [sym__heredoc_body_beginning] = ACTIONS(949), - [sym_file_descriptor] = ACTIONS(949), - [sym__concat] = ACTIONS(249), - [ts_builtin_sym_end] = ACTIONS(949), - [anon_sym_SEMI] = ACTIONS(951), - [anon_sym_PIPE] = ACTIONS(951), - [anon_sym_SEMI_SEMI] = ACTIONS(949), - [anon_sym_PIPE_AMP] = ACTIONS(949), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_PIPE_PIPE] = ACTIONS(949), - [anon_sym_EQ_TILDE] = ACTIONS(951), - [anon_sym_EQ_EQ] = ACTIONS(951), - [anon_sym_LT] = ACTIONS(951), - [anon_sym_GT] = ACTIONS(951), - [anon_sym_GT_GT] = ACTIONS(949), - [anon_sym_AMP_GT] = ACTIONS(951), - [anon_sym_AMP_GT_GT] = ACTIONS(949), - [anon_sym_LT_AMP] = ACTIONS(949), - [anon_sym_GT_AMP] = ACTIONS(949), - [anon_sym_LT_LT] = ACTIONS(951), - [anon_sym_LT_LT_DASH] = ACTIONS(949), - [anon_sym_LT_LT_LT] = ACTIONS(949), - [sym__special_characters] = ACTIONS(949), - [anon_sym_DQUOTE] = ACTIONS(949), - [anon_sym_DOLLAR] = ACTIONS(951), - [sym_raw_string] = ACTIONS(949), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(949), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(949), - [anon_sym_BQUOTE] = ACTIONS(949), - [anon_sym_LT_LPAREN] = ACTIONS(949), - [anon_sym_GT_LPAREN] = ACTIONS(949), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(951), - [anon_sym_LF] = ACTIONS(949), - [anon_sym_AMP] = ACTIONS(951), + [sym_for_statement] = STATE(523), + [sym_c_style_for_statement] = STATE(523), + [sym_while_statement] = STATE(523), + [sym_if_statement] = STATE(523), + [sym_case_statement] = STATE(523), + [sym_function_definition] = STATE(523), + [sym_subshell] = STATE(523), + [sym_pipeline] = STATE(523), + [sym_list] = STATE(523), + [sym_negated_command] = STATE(523), + [sym_test_command] = STATE(523), + [sym_declaration_command] = STATE(523), + [sym_unset_command] = STATE(523), + [sym_command] = STATE(523), + [sym_command_name] = STATE(28), + [sym_variable_assignment] = STATE(524), + [sym_subscript] = STATE(30), + [sym_file_redirect] = STATE(33), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(20), + [sym_simple_expansion] = STATE(20), + [sym_string_expansion] = STATE(20), + [sym_expansion] = STATE(20), + [sym_command_substitution] = STATE(20), + [sym_process_substitution] = STATE(20), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_LBRACK] = ACTIONS(27), + [anon_sym_LBRACK_LBRACK] = ACTIONS(29), + [anon_sym_declare] = ACTIONS(31), + [anon_sym_typeset] = ACTIONS(31), + [anon_sym_export] = ACTIONS(31), + [anon_sym_readonly] = ACTIONS(31), + [anon_sym_local] = ACTIONS(31), + [anon_sym_unset] = ACTIONS(33), + [anon_sym_unsetenv] = ACTIONS(33), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(39), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(57), }, [184] = { - [aux_sym_concatenation_repeat1] = STATE(138), - [sym__simple_heredoc_body] = ACTIONS(953), - [sym__heredoc_body_beginning] = ACTIONS(953), - [sym_file_descriptor] = ACTIONS(953), - [sym__concat] = ACTIONS(249), - [ts_builtin_sym_end] = ACTIONS(953), - [anon_sym_SEMI] = ACTIONS(955), - [anon_sym_PIPE] = ACTIONS(955), - [anon_sym_SEMI_SEMI] = ACTIONS(953), - [anon_sym_PIPE_AMP] = ACTIONS(953), - [anon_sym_AMP_AMP] = ACTIONS(953), - [anon_sym_PIPE_PIPE] = ACTIONS(953), - [anon_sym_EQ_TILDE] = ACTIONS(955), - [anon_sym_EQ_EQ] = ACTIONS(955), - [anon_sym_LT] = ACTIONS(955), - [anon_sym_GT] = ACTIONS(955), - [anon_sym_GT_GT] = ACTIONS(953), - [anon_sym_AMP_GT] = ACTIONS(955), - [anon_sym_AMP_GT_GT] = ACTIONS(953), - [anon_sym_LT_AMP] = ACTIONS(953), - [anon_sym_GT_AMP] = ACTIONS(953), - [anon_sym_LT_LT] = ACTIONS(955), - [anon_sym_LT_LT_DASH] = ACTIONS(953), - [anon_sym_LT_LT_LT] = ACTIONS(953), - [sym__special_characters] = ACTIONS(953), - [anon_sym_DQUOTE] = ACTIONS(953), - [anon_sym_DOLLAR] = ACTIONS(955), - [sym_raw_string] = ACTIONS(953), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(953), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(953), - [anon_sym_BQUOTE] = ACTIONS(953), - [anon_sym_LT_LPAREN] = ACTIONS(953), - [anon_sym_GT_LPAREN] = ACTIONS(953), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(955), - [anon_sym_LF] = ACTIONS(953), - [anon_sym_AMP] = ACTIONS(955), - }, - [185] = { - [ts_builtin_sym_end] = ACTIONS(957), - [anon_sym_SEMI] = ACTIONS(959), - [anon_sym_esac] = ACTIONS(957), - [anon_sym_PIPE] = ACTIONS(959), - [anon_sym_RPAREN] = ACTIONS(957), - [anon_sym_SEMI_SEMI] = ACTIONS(957), - [anon_sym_PIPE_AMP] = ACTIONS(957), - [anon_sym_AMP_AMP] = ACTIONS(957), - [anon_sym_PIPE_PIPE] = ACTIONS(957), - [anon_sym_BQUOTE] = ACTIONS(957), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(957), - [anon_sym_AMP] = ACTIONS(959), - }, - [186] = { - [sym_file_redirect] = STATE(517), - [sym_heredoc_redirect] = STATE(517), - [sym_heredoc_body] = STATE(516), - [sym_herestring_redirect] = STATE(517), - [aux_sym_while_statement_repeat1] = STATE(517), - [sym__simple_heredoc_body] = ACTIONS(321), - [sym__heredoc_body_beginning] = ACTIONS(323), - [sym_file_descriptor] = ACTIONS(325), - [ts_builtin_sym_end] = ACTIONS(957), - [anon_sym_SEMI] = ACTIONS(959), - [anon_sym_PIPE] = ACTIONS(959), - [anon_sym_SEMI_SEMI] = ACTIONS(957), - [anon_sym_PIPE_AMP] = ACTIONS(957), - [anon_sym_AMP_AMP] = ACTIONS(957), - [anon_sym_PIPE_PIPE] = ACTIONS(957), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), - [anon_sym_AMP_GT] = ACTIONS(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(335), - [anon_sym_GT_AMP] = ACTIONS(335), - [anon_sym_LT_LT] = ACTIONS(337), - [anon_sym_LT_LT_DASH] = ACTIONS(339), - [anon_sym_LT_LT_LT] = ACTIONS(341), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(957), - [anon_sym_AMP] = ACTIONS(959), - }, - [187] = { - [sym_file_redirect] = STATE(518), - [sym_heredoc_redirect] = STATE(518), - [sym_heredoc_body] = STATE(516), - [sym_herestring_redirect] = STATE(518), - [sym_concatenation] = STATE(519), - [sym_string] = STATE(184), - [sym_simple_expansion] = STATE(184), - [sym_string_expansion] = STATE(184), - [sym_expansion] = STATE(184), - [sym_command_substitution] = STATE(184), - [sym_process_substitution] = STATE(184), - [aux_sym_while_statement_repeat1] = STATE(518), - [aux_sym_command_repeat2] = STATE(519), - [sym__simple_heredoc_body] = ACTIONS(321), - [sym__heredoc_body_beginning] = ACTIONS(323), - [sym_file_descriptor] = ACTIONS(325), - [ts_builtin_sym_end] = ACTIONS(957), - [anon_sym_SEMI] = ACTIONS(959), - [anon_sym_PIPE] = ACTIONS(959), - [anon_sym_SEMI_SEMI] = ACTIONS(957), - [anon_sym_PIPE_AMP] = ACTIONS(957), - [anon_sym_AMP_AMP] = ACTIONS(957), - [anon_sym_PIPE_PIPE] = ACTIONS(957), - [anon_sym_EQ_TILDE] = ACTIONS(331), - [anon_sym_EQ_EQ] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), - [anon_sym_AMP_GT] = ACTIONS(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(335), - [anon_sym_GT_AMP] = ACTIONS(335), - [anon_sym_LT_LT] = ACTIONS(337), - [anon_sym_LT_LT_DASH] = ACTIONS(339), - [anon_sym_LT_LT_LT] = ACTIONS(341), - [sym__special_characters] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(345), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(347), - [anon_sym_LF] = ACTIONS(957), - [anon_sym_AMP] = ACTIONS(959), - }, - [188] = { - [ts_builtin_sym_end] = ACTIONS(903), - [anon_sym_SEMI] = ACTIONS(961), - [anon_sym_PIPE] = ACTIONS(313), - [anon_sym_SEMI_SEMI] = ACTIONS(963), - [anon_sym_PIPE_AMP] = ACTIONS(317), - [anon_sym_AMP_AMP] = ACTIONS(319), - [anon_sym_PIPE_PIPE] = ACTIONS(319), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(963), - [anon_sym_AMP] = ACTIONS(961), - }, - [189] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [ts_builtin_sym_end] = ACTIONS(903), - [anon_sym_SEMI] = ACTIONS(961), - [anon_sym_PIPE] = ACTIONS(313), - [anon_sym_SEMI_SEMI] = ACTIONS(963), - [anon_sym_PIPE_AMP] = ACTIONS(317), - [anon_sym_AMP_AMP] = ACTIONS(319), - [anon_sym_PIPE_PIPE] = ACTIONS(319), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(963), - [anon_sym_AMP] = ACTIONS(961), - }, - [190] = { - [sym__terminated_statement] = STATE(190), - [sym_for_statement] = STATE(521), - [sym_c_style_for_statement] = STATE(521), - [sym_while_statement] = STATE(521), - [sym_if_statement] = STATE(521), - [sym_case_statement] = STATE(521), - [sym_function_definition] = STATE(521), - [sym_subshell] = STATE(521), - [sym_pipeline] = STATE(521), - [sym_list] = STATE(521), - [sym_negated_command] = STATE(521), - [sym_test_command] = STATE(521), - [sym_declaration_command] = STATE(521), - [sym_unset_command] = STATE(521), - [sym_command] = STATE(521), - [sym_command_name] = STATE(51), - [sym_variable_assignment] = STATE(522), - [sym_subscript] = STATE(53), - [sym_file_redirect] = STATE(54), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(47), - [sym_simple_expansion] = STATE(47), - [sym_string_expansion] = STATE(47), - [sym_expansion] = STATE(47), - [sym_command_substitution] = STATE(47), - [sym_process_substitution] = STATE(47), - [aux_sym__statements_repeat1] = STATE(190), - [aux_sym_command_repeat1] = STATE(54), - [sym_file_descriptor] = ACTIONS(965), - [sym_variable_name] = ACTIONS(968), - [anon_sym_for] = ACTIONS(971), - [anon_sym_while] = ACTIONS(974), - [anon_sym_if] = ACTIONS(977), - [anon_sym_case] = ACTIONS(980), - [anon_sym_function] = ACTIONS(983), - [anon_sym_LPAREN] = ACTIONS(986), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_LBRACK] = ACTIONS(992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(995), - [anon_sym_declare] = ACTIONS(998), - [anon_sym_typeset] = ACTIONS(998), - [anon_sym_export] = ACTIONS(998), - [anon_sym_readonly] = ACTIONS(998), - [anon_sym_local] = ACTIONS(998), - [anon_sym_unset] = ACTIONS(1001), - [anon_sym_unsetenv] = ACTIONS(1001), - [anon_sym_LT] = ACTIONS(1004), - [anon_sym_GT] = ACTIONS(1004), - [anon_sym_GT_GT] = ACTIONS(1007), - [anon_sym_AMP_GT] = ACTIONS(1004), - [anon_sym_AMP_GT_GT] = ACTIONS(1007), - [anon_sym_LT_AMP] = ACTIONS(1007), - [anon_sym_GT_AMP] = ACTIONS(1007), - [sym__special_characters] = ACTIONS(1010), - [anon_sym_DQUOTE] = ACTIONS(1013), - [anon_sym_DOLLAR] = ACTIONS(1016), - [sym_raw_string] = ACTIONS(1019), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1022), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1025), - [anon_sym_BQUOTE] = ACTIONS(1028), - [anon_sym_LT_LPAREN] = ACTIONS(1031), - [anon_sym_GT_LPAREN] = ACTIONS(1031), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1034), - }, - [191] = { - [sym_file_redirect] = STATE(518), - [sym_heredoc_redirect] = STATE(518), - [sym_heredoc_body] = STATE(516), - [sym_herestring_redirect] = STATE(518), - [sym_concatenation] = STATE(523), - [sym_string] = STATE(184), - [sym_simple_expansion] = STATE(184), - [sym_string_expansion] = STATE(184), - [sym_expansion] = STATE(184), - [sym_command_substitution] = STATE(184), - [sym_process_substitution] = STATE(184), - [aux_sym_while_statement_repeat1] = STATE(518), - [aux_sym_command_repeat2] = STATE(523), - [sym__simple_heredoc_body] = ACTIONS(321), - [sym__heredoc_body_beginning] = ACTIONS(323), - [sym_file_descriptor] = ACTIONS(325), - [ts_builtin_sym_end] = ACTIONS(957), - [anon_sym_SEMI] = ACTIONS(959), - [anon_sym_PIPE] = ACTIONS(959), - [anon_sym_SEMI_SEMI] = ACTIONS(957), - [anon_sym_PIPE_AMP] = ACTIONS(957), - [anon_sym_AMP_AMP] = ACTIONS(957), - [anon_sym_PIPE_PIPE] = ACTIONS(957), - [anon_sym_EQ_TILDE] = ACTIONS(331), - [anon_sym_EQ_EQ] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), - [anon_sym_AMP_GT] = ACTIONS(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(335), - [anon_sym_GT_AMP] = ACTIONS(335), - [anon_sym_LT_LT] = ACTIONS(337), - [anon_sym_LT_LT_DASH] = ACTIONS(339), - [anon_sym_LT_LT_LT] = ACTIONS(341), - [sym__special_characters] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(345), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(347), - [anon_sym_LF] = ACTIONS(957), - [anon_sym_AMP] = ACTIONS(959), - }, - [192] = { - [sym_variable_assignment] = STATE(192), - [sym_subscript] = STATE(85), - [sym_file_redirect] = STATE(192), - [aux_sym_command_repeat1] = STATE(192), - [sym_file_descriptor] = ACTIONS(1037), - [sym_variable_name] = ACTIONS(1040), - [anon_sym_LT] = ACTIONS(1043), - [anon_sym_GT] = ACTIONS(1043), - [anon_sym_GT_GT] = ACTIONS(1046), - [anon_sym_AMP_GT] = ACTIONS(1043), - [anon_sym_AMP_GT_GT] = ACTIONS(1046), - [anon_sym_LT_AMP] = ACTIONS(1046), - [anon_sym_GT_AMP] = ACTIONS(1046), - [sym__special_characters] = ACTIONS(1049), - [anon_sym_DQUOTE] = ACTIONS(1049), - [anon_sym_DOLLAR] = ACTIONS(1051), - [sym_raw_string] = ACTIONS(1049), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1049), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1049), - [anon_sym_BQUOTE] = ACTIONS(1049), - [anon_sym_LT_LPAREN] = ACTIONS(1049), - [anon_sym_GT_LPAREN] = ACTIONS(1049), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1049), - }, - [193] = { - [aux_sym_concatenation_repeat1] = STATE(412), - [sym_file_descriptor] = ACTIONS(1053), - [sym__concat] = ACTIONS(733), - [sym_variable_name] = ACTIONS(1053), - [anon_sym_LT] = ACTIONS(1055), - [anon_sym_GT] = ACTIONS(1055), - [anon_sym_GT_GT] = ACTIONS(1053), - [anon_sym_AMP_GT] = ACTIONS(1055), - [anon_sym_AMP_GT_GT] = ACTIONS(1053), - [anon_sym_LT_AMP] = ACTIONS(1053), - [anon_sym_GT_AMP] = ACTIONS(1053), - [sym__special_characters] = ACTIONS(1053), - [anon_sym_DQUOTE] = ACTIONS(1053), - [anon_sym_DOLLAR] = ACTIONS(1055), - [sym_raw_string] = ACTIONS(1053), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1053), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1053), - [anon_sym_BQUOTE] = ACTIONS(1053), - [anon_sym_LT_LPAREN] = ACTIONS(1053), - [anon_sym_GT_LPAREN] = ACTIONS(1053), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1053), - }, - [194] = { - [aux_sym_concatenation_repeat1] = STATE(412), - [sym_file_descriptor] = ACTIONS(1057), - [sym__concat] = ACTIONS(733), - [sym_variable_name] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_GT_GT] = ACTIONS(1057), - [anon_sym_AMP_GT] = ACTIONS(1059), - [anon_sym_AMP_GT_GT] = ACTIONS(1057), - [anon_sym_LT_AMP] = ACTIONS(1057), - [anon_sym_GT_AMP] = ACTIONS(1057), - [sym__special_characters] = ACTIONS(1057), - [anon_sym_DQUOTE] = ACTIONS(1057), - [anon_sym_DOLLAR] = ACTIONS(1059), - [sym_raw_string] = ACTIONS(1057), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1057), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1057), - [anon_sym_BQUOTE] = ACTIONS(1057), - [anon_sym_LT_LPAREN] = ACTIONS(1057), - [anon_sym_GT_LPAREN] = ACTIONS(1057), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1057), - }, - [195] = { - [sym_file_descriptor] = ACTIONS(1057), - [sym_variable_name] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_GT_GT] = ACTIONS(1057), - [anon_sym_AMP_GT] = ACTIONS(1059), - [anon_sym_AMP_GT_GT] = ACTIONS(1057), - [anon_sym_LT_AMP] = ACTIONS(1057), - [anon_sym_GT_AMP] = ACTIONS(1057), - [sym__special_characters] = ACTIONS(1057), - [anon_sym_DQUOTE] = ACTIONS(1057), - [anon_sym_DOLLAR] = ACTIONS(1059), - [sym_raw_string] = ACTIONS(1057), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1057), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1057), - [anon_sym_BQUOTE] = ACTIONS(1057), - [anon_sym_LT_LPAREN] = ACTIONS(1057), - [anon_sym_GT_LPAREN] = ACTIONS(1057), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1057), - }, - [196] = { - [aux_sym_concatenation_repeat1] = STATE(526), - [sym__concat] = ACTIONS(1061), - [anon_sym_RBRACK] = ACTIONS(1063), - [sym_comment] = ACTIONS(53), - }, - [197] = { - [aux_sym_concatenation_repeat1] = STATE(526), - [sym__concat] = ACTIONS(1065), - [anon_sym_RBRACK] = ACTIONS(1067), - [sym_comment] = ACTIONS(53), - }, - [198] = { - [sym__concat] = ACTIONS(1069), - [anon_sym_RBRACK] = ACTIONS(1067), - [sym_comment] = ACTIONS(53), - }, - [199] = { - [sym_file_descriptor] = ACTIONS(1071), - [sym_variable_name] = ACTIONS(1071), - [ts_builtin_sym_end] = ACTIONS(1071), - [anon_sym_SEMI] = ACTIONS(1073), - [anon_sym_PIPE] = ACTIONS(1073), - [anon_sym_RPAREN] = ACTIONS(1071), - [anon_sym_SEMI_SEMI] = ACTIONS(1071), - [anon_sym_PIPE_AMP] = ACTIONS(1071), - [anon_sym_AMP_AMP] = ACTIONS(1071), - [anon_sym_PIPE_PIPE] = ACTIONS(1071), - [anon_sym_LT] = ACTIONS(1073), - [anon_sym_GT] = ACTIONS(1073), - [anon_sym_GT_GT] = ACTIONS(1071), - [anon_sym_AMP_GT] = ACTIONS(1073), - [anon_sym_AMP_GT_GT] = ACTIONS(1071), - [anon_sym_LT_AMP] = ACTIONS(1071), - [anon_sym_GT_AMP] = ACTIONS(1071), - [sym__special_characters] = ACTIONS(1071), - [anon_sym_DQUOTE] = ACTIONS(1071), - [anon_sym_DOLLAR] = ACTIONS(1073), - [sym_raw_string] = ACTIONS(1071), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1071), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1071), - [anon_sym_BQUOTE] = ACTIONS(1071), - [anon_sym_LT_LPAREN] = ACTIONS(1071), - [anon_sym_GT_LPAREN] = ACTIONS(1071), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1073), - [anon_sym_LF] = ACTIONS(1071), - [anon_sym_AMP] = ACTIONS(1073), - }, - [200] = { - [sym_concatenation] = STATE(539), - [sym_string] = STATE(534), - [sym_simple_expansion] = STATE(534), - [sym_string_expansion] = STATE(534), - [sym_expansion] = STATE(534), - [sym_command_substitution] = STATE(534), - [sym_process_substitution] = STATE(534), - [aux_sym_for_statement_repeat1] = STATE(539), - [anon_sym_RPAREN] = ACTIONS(1075), - [sym__special_characters] = ACTIONS(1077), - [anon_sym_DQUOTE] = ACTIONS(1079), - [anon_sym_DOLLAR] = ACTIONS(1081), - [sym_raw_string] = ACTIONS(1083), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1085), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1087), - [anon_sym_BQUOTE] = ACTIONS(1089), - [anon_sym_LT_LPAREN] = ACTIONS(1091), - [anon_sym_GT_LPAREN] = ACTIONS(1091), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1083), - }, - [201] = { - [aux_sym_concatenation_repeat1] = STATE(541), - [sym_file_descriptor] = ACTIONS(1093), - [sym__concat] = ACTIONS(1095), - [sym_variable_name] = ACTIONS(1093), - [ts_builtin_sym_end] = ACTIONS(1093), - [anon_sym_SEMI] = ACTIONS(1097), - [anon_sym_PIPE] = ACTIONS(1097), - [anon_sym_SEMI_SEMI] = ACTIONS(1093), - [anon_sym_PIPE_AMP] = ACTIONS(1093), - [anon_sym_AMP_AMP] = ACTIONS(1093), - [anon_sym_PIPE_PIPE] = ACTIONS(1093), - [anon_sym_LT] = ACTIONS(1097), - [anon_sym_GT] = ACTIONS(1097), - [anon_sym_GT_GT] = ACTIONS(1093), - [anon_sym_AMP_GT] = ACTIONS(1097), - [anon_sym_AMP_GT_GT] = ACTIONS(1093), - [anon_sym_LT_AMP] = ACTIONS(1093), - [anon_sym_GT_AMP] = ACTIONS(1093), - [sym__special_characters] = ACTIONS(1093), - [anon_sym_DQUOTE] = ACTIONS(1093), - [anon_sym_DOLLAR] = ACTIONS(1097), - [sym_raw_string] = ACTIONS(1093), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1093), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1093), - [anon_sym_BQUOTE] = ACTIONS(1093), - [anon_sym_LT_LPAREN] = ACTIONS(1093), - [anon_sym_GT_LPAREN] = ACTIONS(1093), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1097), - [anon_sym_LF] = ACTIONS(1093), - [anon_sym_AMP] = ACTIONS(1097), - }, - [202] = { - [sym_simple_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [sym_command_substitution] = STATE(141), - [aux_sym_string_repeat1] = STATE(544), - [anon_sym_DQUOTE] = ACTIONS(1099), - [anon_sym_DOLLAR] = ACTIONS(1101), - [sym__string_content] = ACTIONS(257), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(261), - [anon_sym_BQUOTE] = ACTIONS(263), - [sym_comment] = ACTIONS(265), - }, - [203] = { - [sym_string] = STATE(546), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(1103), - [sym_raw_string] = ACTIONS(1105), - [anon_sym_POUND] = ACTIONS(1103), - [anon_sym_DASH] = ACTIONS(1103), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1107), - [anon_sym_STAR] = ACTIONS(1109), - [anon_sym_AT] = ACTIONS(1109), - [anon_sym_QMARK] = ACTIONS(1109), - [anon_sym_0] = ACTIONS(1107), - [anon_sym__] = ACTIONS(1107), - }, - [204] = { - [aux_sym_concatenation_repeat1] = STATE(541), - [sym_file_descriptor] = ACTIONS(1071), - [sym__concat] = ACTIONS(1095), - [sym_variable_name] = ACTIONS(1071), - [ts_builtin_sym_end] = ACTIONS(1071), - [anon_sym_SEMI] = ACTIONS(1073), - [anon_sym_PIPE] = ACTIONS(1073), - [anon_sym_SEMI_SEMI] = ACTIONS(1071), - [anon_sym_PIPE_AMP] = ACTIONS(1071), - [anon_sym_AMP_AMP] = ACTIONS(1071), - [anon_sym_PIPE_PIPE] = ACTIONS(1071), - [anon_sym_LT] = ACTIONS(1073), - [anon_sym_GT] = ACTIONS(1073), - [anon_sym_GT_GT] = ACTIONS(1071), - [anon_sym_AMP_GT] = ACTIONS(1073), - [anon_sym_AMP_GT_GT] = ACTIONS(1071), - [anon_sym_LT_AMP] = ACTIONS(1071), - [anon_sym_GT_AMP] = ACTIONS(1071), - [sym__special_characters] = ACTIONS(1071), - [anon_sym_DQUOTE] = ACTIONS(1071), - [anon_sym_DOLLAR] = ACTIONS(1073), - [sym_raw_string] = ACTIONS(1071), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1071), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1071), - [anon_sym_BQUOTE] = ACTIONS(1071), - [anon_sym_LT_LPAREN] = ACTIONS(1071), - [anon_sym_GT_LPAREN] = ACTIONS(1071), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1073), - [anon_sym_LF] = ACTIONS(1071), - [anon_sym_AMP] = ACTIONS(1073), - }, - [205] = { - [sym_subscript] = STATE(551), - [sym_variable_name] = ACTIONS(1111), - [anon_sym_BANG] = ACTIONS(1113), - [anon_sym_DOLLAR] = ACTIONS(1115), - [anon_sym_POUND] = ACTIONS(1113), - [anon_sym_DASH] = ACTIONS(1115), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1117), - [anon_sym_STAR] = ACTIONS(1119), - [anon_sym_AT] = ACTIONS(1119), - [anon_sym_QMARK] = ACTIONS(1119), - [anon_sym_0] = ACTIONS(1117), - [anon_sym__] = ACTIONS(1117), - }, - [206] = { - [sym__terminated_statement] = STATE(554), - [sym_for_statement] = STATE(552), - [sym_c_style_for_statement] = STATE(552), - [sym_while_statement] = STATE(552), - [sym_if_statement] = STATE(552), - [sym_case_statement] = STATE(552), - [sym_function_definition] = STATE(552), - [sym_subshell] = STATE(552), - [sym_pipeline] = STATE(552), - [sym_list] = STATE(552), - [sym_negated_command] = STATE(552), - [sym_test_command] = STATE(552), - [sym_declaration_command] = STATE(552), - [sym_unset_command] = STATE(552), - [sym_command] = STATE(552), - [sym_command_name] = STATE(78), - [sym_variable_assignment] = STATE(553), - [sym_subscript] = STATE(80), - [sym_file_redirect] = STATE(82), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(75), - [sym_simple_expansion] = STATE(75), - [sym_string_expansion] = STATE(75), - [sym_expansion] = STATE(75), - [sym_command_substitution] = STATE(75), - [sym_process_substitution] = STATE(75), - [aux_sym__statements_repeat1] = STATE(554), - [aux_sym_command_repeat1] = STATE(82), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(111), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(119), - [anon_sym_declare] = ACTIONS(121), - [anon_sym_typeset] = ACTIONS(121), - [anon_sym_export] = ACTIONS(121), - [anon_sym_readonly] = ACTIONS(121), - [anon_sym_local] = ACTIONS(121), - [anon_sym_unset] = ACTIONS(123), - [anon_sym_unsetenv] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), - }, - [207] = { - [sym__terminated_statement] = STATE(557), - [sym_for_statement] = STATE(555), - [sym_c_style_for_statement] = STATE(555), - [sym_while_statement] = STATE(555), - [sym_if_statement] = STATE(555), - [sym_case_statement] = STATE(555), - [sym_function_definition] = STATE(555), - [sym_subshell] = STATE(555), - [sym_pipeline] = STATE(555), - [sym_list] = STATE(555), - [sym_negated_command] = STATE(555), - [sym_test_command] = STATE(555), - [sym_declaration_command] = STATE(555), - [sym_unset_command] = STATE(555), - [sym_command] = STATE(555), - [sym_command_name] = STATE(165), - [sym_variable_assignment] = STATE(556), - [sym_subscript] = STATE(53), - [sym_file_redirect] = STATE(168), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(47), - [sym_simple_expansion] = STATE(47), - [sym_string_expansion] = STATE(47), - [sym_expansion] = STATE(47), - [sym_command_substitution] = STATE(47), - [sym_process_substitution] = STATE(47), - [aux_sym__statements_repeat1] = STATE(557), - [aux_sym_command_repeat1] = STATE(168), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(69), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(289), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(291), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(293), - [anon_sym_LBRACK] = ACTIONS(295), - [anon_sym_LBRACK_LBRACK] = ACTIONS(297), - [anon_sym_declare] = ACTIONS(299), - [anon_sym_typeset] = ACTIONS(299), - [anon_sym_export] = ACTIONS(299), - [anon_sym_readonly] = ACTIONS(299), - [anon_sym_local] = ACTIONS(299), - [anon_sym_unset] = ACTIONS(301), - [anon_sym_unsetenv] = ACTIONS(301), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(87), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(303), - }, - [208] = { - [sym__terminated_statement] = STATE(560), - [sym_for_statement] = STATE(558), - [sym_c_style_for_statement] = STATE(558), - [sym_while_statement] = STATE(558), - [sym_if_statement] = STATE(558), - [sym_case_statement] = STATE(558), - [sym_function_definition] = STATE(558), - [sym_subshell] = STATE(558), - [sym_pipeline] = STATE(558), - [sym_list] = STATE(558), - [sym_negated_command] = STATE(558), - [sym_test_command] = STATE(558), - [sym_declaration_command] = STATE(558), - [sym_unset_command] = STATE(558), - [sym_command] = STATE(558), - [sym_command_name] = STATE(78), - [sym_variable_assignment] = STATE(559), - [sym_subscript] = STATE(80), - [sym_file_redirect] = STATE(82), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(75), - [sym_simple_expansion] = STATE(75), - [sym_string_expansion] = STATE(75), - [sym_expansion] = STATE(75), - [sym_command_substitution] = STATE(75), - [sym_process_substitution] = STATE(75), - [aux_sym__statements_repeat1] = STATE(560), - [aux_sym_command_repeat1] = STATE(82), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(111), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(119), - [anon_sym_declare] = ACTIONS(121), - [anon_sym_typeset] = ACTIONS(121), - [anon_sym_export] = ACTIONS(121), - [anon_sym_readonly] = ACTIONS(121), - [anon_sym_local] = ACTIONS(121), - [anon_sym_unset] = ACTIONS(123), - [anon_sym_unsetenv] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), - }, - [209] = { - [sym__expression] = STATE(562), - [sym_binary_expression] = STATE(562), - [sym_unary_expression] = STATE(562), - [sym_parenthesized_expression] = STATE(562), - [sym_concatenation] = STATE(562), - [sym_string] = STATE(215), - [sym_simple_expansion] = STATE(215), - [sym_string_expansion] = STATE(215), - [sym_expansion] = STATE(215), - [sym_command_substitution] = STATE(215), - [sym_process_substitution] = STATE(215), - [anon_sym_SEMI] = ACTIONS(1121), - [anon_sym_SEMI_SEMI] = ACTIONS(1123), - [anon_sym_LPAREN] = ACTIONS(387), - [anon_sym_BANG] = ACTIONS(389), - [sym__special_characters] = ACTIONS(391), - [anon_sym_DQUOTE] = ACTIONS(393), - [anon_sym_DOLLAR] = ACTIONS(395), - [sym_raw_string] = ACTIONS(397), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(399), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(401), - [anon_sym_BQUOTE] = ACTIONS(403), - [anon_sym_LT_LPAREN] = ACTIONS(405), - [anon_sym_GT_LPAREN] = ACTIONS(405), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(407), - [sym_test_operator] = ACTIONS(409), - [anon_sym_LF] = ACTIONS(1123), - [anon_sym_AMP] = ACTIONS(1123), - }, - [210] = { - [sym__expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_parenthesized_expression] = STATE(563), - [sym_concatenation] = STATE(563), - [sym_string] = STATE(314), - [sym_simple_expansion] = STATE(314), - [sym_string_expansion] = STATE(314), - [sym_expansion] = STATE(314), - [sym_command_substitution] = STATE(314), - [sym_process_substitution] = STATE(314), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_BANG] = ACTIONS(573), - [sym__special_characters] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(163), - [anon_sym_DOLLAR] = ACTIONS(165), - [sym_raw_string] = ACTIONS(577), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(169), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(171), - [anon_sym_BQUOTE] = ACTIONS(173), - [anon_sym_LT_LPAREN] = ACTIONS(175), - [anon_sym_GT_LPAREN] = ACTIONS(175), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(579), - [sym_test_operator] = ACTIONS(581), - }, - [211] = { - [sym__expression] = STATE(564), - [sym_binary_expression] = STATE(564), - [sym_unary_expression] = STATE(564), - [sym_parenthesized_expression] = STATE(564), - [sym_concatenation] = STATE(564), - [sym_string] = STATE(215), - [sym_simple_expansion] = STATE(215), - [sym_string_expansion] = STATE(215), - [sym_expansion] = STATE(215), - [sym_command_substitution] = STATE(215), - [sym_process_substitution] = STATE(215), - [anon_sym_LPAREN] = ACTIONS(387), - [anon_sym_BANG] = ACTIONS(389), - [sym__special_characters] = ACTIONS(391), - [anon_sym_DQUOTE] = ACTIONS(393), - [anon_sym_DOLLAR] = ACTIONS(395), - [sym_raw_string] = ACTIONS(397), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(399), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(401), - [anon_sym_BQUOTE] = ACTIONS(403), - [anon_sym_LT_LPAREN] = ACTIONS(405), - [anon_sym_GT_LPAREN] = ACTIONS(405), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(407), - [sym_test_operator] = ACTIONS(409), - }, - [212] = { - [aux_sym_concatenation_repeat1] = STATE(566), - [sym__concat] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(587), - [anon_sym_SEMI_SEMI] = ACTIONS(585), - [anon_sym_AMP_AMP] = ACTIONS(585), - [anon_sym_PIPE_PIPE] = ACTIONS(585), - [anon_sym_EQ_TILDE] = ACTIONS(585), - [anon_sym_EQ_EQ] = ACTIONS(585), - [anon_sym_EQ] = ACTIONS(587), - [anon_sym_LT] = ACTIONS(585), - [anon_sym_GT] = ACTIONS(585), - [anon_sym_BANG_EQ] = ACTIONS(585), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(585), - [anon_sym_LF] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(587), - }, - [213] = { - [sym_simple_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [sym_command_substitution] = STATE(141), - [aux_sym_string_repeat1] = STATE(569), - [anon_sym_DQUOTE] = ACTIONS(1127), - [anon_sym_DOLLAR] = ACTIONS(1129), - [sym__string_content] = ACTIONS(257), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(261), - [anon_sym_BQUOTE] = ACTIONS(263), - [sym_comment] = ACTIONS(265), - }, - [214] = { - [sym_string] = STATE(571), - [anon_sym_DQUOTE] = ACTIONS(393), - [anon_sym_DOLLAR] = ACTIONS(1131), - [sym_raw_string] = ACTIONS(1133), - [anon_sym_POUND] = ACTIONS(1131), - [anon_sym_DASH] = ACTIONS(1131), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1135), - [anon_sym_STAR] = ACTIONS(1137), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_QMARK] = ACTIONS(1137), - [anon_sym_0] = ACTIONS(1135), - [anon_sym__] = ACTIONS(1135), - }, - [215] = { - [aux_sym_concatenation_repeat1] = STATE(566), - [sym__concat] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(603), - [anon_sym_SEMI_SEMI] = ACTIONS(601), - [anon_sym_AMP_AMP] = ACTIONS(601), - [anon_sym_PIPE_PIPE] = ACTIONS(601), - [anon_sym_EQ_TILDE] = ACTIONS(601), - [anon_sym_EQ_EQ] = ACTIONS(601), - [anon_sym_EQ] = ACTIONS(603), - [anon_sym_LT] = ACTIONS(601), - [anon_sym_GT] = ACTIONS(601), - [anon_sym_BANG_EQ] = ACTIONS(601), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(601), - [anon_sym_LF] = ACTIONS(601), - [anon_sym_AMP] = ACTIONS(603), - }, - [216] = { - [sym_subscript] = STATE(576), - [sym_variable_name] = ACTIONS(1139), - [anon_sym_BANG] = ACTIONS(1141), - [anon_sym_DOLLAR] = ACTIONS(1143), - [anon_sym_POUND] = ACTIONS(1141), - [anon_sym_DASH] = ACTIONS(1143), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1145), - [anon_sym_STAR] = ACTIONS(1147), - [anon_sym_AT] = ACTIONS(1147), - [anon_sym_QMARK] = ACTIONS(1147), - [anon_sym_0] = ACTIONS(1145), - [anon_sym__] = ACTIONS(1145), - }, - [217] = { - [sym__terminated_statement] = STATE(579), - [sym_for_statement] = STATE(577), - [sym_c_style_for_statement] = STATE(577), - [sym_while_statement] = STATE(577), - [sym_if_statement] = STATE(577), - [sym_case_statement] = STATE(577), - [sym_function_definition] = STATE(577), - [sym_subshell] = STATE(577), - [sym_pipeline] = STATE(577), - [sym_list] = STATE(577), - [sym_negated_command] = STATE(577), - [sym_test_command] = STATE(577), - [sym_declaration_command] = STATE(577), - [sym_unset_command] = STATE(577), - [sym_command] = STATE(577), - [sym_command_name] = STATE(78), - [sym_variable_assignment] = STATE(578), - [sym_subscript] = STATE(80), - [sym_file_redirect] = STATE(82), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(75), - [sym_simple_expansion] = STATE(75), - [sym_string_expansion] = STATE(75), - [sym_expansion] = STATE(75), - [sym_command_substitution] = STATE(75), - [sym_process_substitution] = STATE(75), - [aux_sym__statements_repeat1] = STATE(579), - [aux_sym_command_repeat1] = STATE(82), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(111), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(119), - [anon_sym_declare] = ACTIONS(121), - [anon_sym_typeset] = ACTIONS(121), - [anon_sym_export] = ACTIONS(121), - [anon_sym_readonly] = ACTIONS(121), - [anon_sym_local] = ACTIONS(121), - [anon_sym_unset] = ACTIONS(123), - [anon_sym_unsetenv] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), - }, - [218] = { - [sym__terminated_statement] = STATE(582), - [sym_for_statement] = STATE(580), - [sym_c_style_for_statement] = STATE(580), - [sym_while_statement] = STATE(580), - [sym_if_statement] = STATE(580), - [sym_case_statement] = STATE(580), - [sym_function_definition] = STATE(580), - [sym_subshell] = STATE(580), - [sym_pipeline] = STATE(580), - [sym_list] = STATE(580), - [sym_negated_command] = STATE(580), - [sym_test_command] = STATE(580), - [sym_declaration_command] = STATE(580), - [sym_unset_command] = STATE(580), - [sym_command] = STATE(580), - [sym_command_name] = STATE(165), - [sym_variable_assignment] = STATE(581), - [sym_subscript] = STATE(53), - [sym_file_redirect] = STATE(168), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(47), - [sym_simple_expansion] = STATE(47), - [sym_string_expansion] = STATE(47), - [sym_expansion] = STATE(47), - [sym_command_substitution] = STATE(47), - [sym_process_substitution] = STATE(47), - [aux_sym__statements_repeat1] = STATE(582), - [aux_sym_command_repeat1] = STATE(168), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(69), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(289), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(291), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(293), - [anon_sym_LBRACK] = ACTIONS(295), - [anon_sym_LBRACK_LBRACK] = ACTIONS(297), - [anon_sym_declare] = ACTIONS(299), - [anon_sym_typeset] = ACTIONS(299), - [anon_sym_export] = ACTIONS(299), - [anon_sym_readonly] = ACTIONS(299), - [anon_sym_local] = ACTIONS(299), - [anon_sym_unset] = ACTIONS(301), - [anon_sym_unsetenv] = ACTIONS(301), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(87), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(303), - }, - [219] = { - [sym__terminated_statement] = STATE(585), - [sym_for_statement] = STATE(583), - [sym_c_style_for_statement] = STATE(583), - [sym_while_statement] = STATE(583), - [sym_if_statement] = STATE(583), - [sym_case_statement] = STATE(583), - [sym_function_definition] = STATE(583), - [sym_subshell] = STATE(583), - [sym_pipeline] = STATE(583), - [sym_list] = STATE(583), - [sym_negated_command] = STATE(583), - [sym_test_command] = STATE(583), - [sym_declaration_command] = STATE(583), - [sym_unset_command] = STATE(583), - [sym_command] = STATE(583), - [sym_command_name] = STATE(78), - [sym_variable_assignment] = STATE(584), - [sym_subscript] = STATE(80), - [sym_file_redirect] = STATE(82), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(75), - [sym_simple_expansion] = STATE(75), - [sym_string_expansion] = STATE(75), - [sym_expansion] = STATE(75), - [sym_command_substitution] = STATE(75), - [sym_process_substitution] = STATE(75), - [aux_sym__statements_repeat1] = STATE(585), - [aux_sym_command_repeat1] = STATE(82), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(111), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(119), - [anon_sym_declare] = ACTIONS(121), - [anon_sym_typeset] = ACTIONS(121), - [anon_sym_export] = ACTIONS(121), - [anon_sym_readonly] = ACTIONS(121), - [anon_sym_local] = ACTIONS(121), - [anon_sym_unset] = ACTIONS(123), - [anon_sym_unsetenv] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), - }, - [220] = { - [anon_sym_SEMI] = ACTIONS(1149), - [anon_sym_SEMI_SEMI] = ACTIONS(1151), - [anon_sym_AMP_AMP] = ACTIONS(1153), - [anon_sym_PIPE_PIPE] = ACTIONS(1153), - [anon_sym_EQ_TILDE] = ACTIONS(1155), - [anon_sym_EQ_EQ] = ACTIONS(1155), - [anon_sym_EQ] = ACTIONS(1157), - [anon_sym_LT] = ACTIONS(1153), - [anon_sym_GT] = ACTIONS(1153), - [anon_sym_BANG_EQ] = ACTIONS(1153), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1153), - [anon_sym_LF] = ACTIONS(1151), - [anon_sym_AMP] = ACTIONS(1149), - }, - [221] = { - [sym_concatenation] = STATE(597), - [sym_string] = STATE(592), - [sym_simple_expansion] = STATE(592), - [sym_string_expansion] = STATE(592), - [sym_expansion] = STATE(592), - [sym_command_substitution] = STATE(592), - [sym_process_substitution] = STATE(592), - [aux_sym_for_statement_repeat1] = STATE(597), - [sym__special_characters] = ACTIONS(1159), - [anon_sym_DQUOTE] = ACTIONS(1161), - [anon_sym_DOLLAR] = ACTIONS(1163), - [sym_raw_string] = ACTIONS(1165), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1167), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1169), - [anon_sym_BQUOTE] = ACTIONS(1171), - [anon_sym_LT_LPAREN] = ACTIONS(1173), - [anon_sym_GT_LPAREN] = ACTIONS(1173), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1165), - }, - [222] = { - [sym_do_group] = STATE(599), - [anon_sym_do] = ACTIONS(1175), - [sym_comment] = ACTIONS(53), - }, - [223] = { - [sym_concatenation] = STATE(199), - [sym_string] = STATE(601), - [sym_array] = STATE(199), - [sym_simple_expansion] = STATE(601), - [sym_string_expansion] = STATE(601), - [sym_expansion] = STATE(601), - [sym_command_substitution] = STATE(601), - [sym_process_substitution] = STATE(601), - [sym__empty_value] = ACTIONS(363), - [anon_sym_LPAREN] = ACTIONS(365), - [sym__special_characters] = ACTIONS(1177), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(1179), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(375), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(377), - [anon_sym_BQUOTE] = ACTIONS(379), - [anon_sym_LT_LPAREN] = ACTIONS(381), - [anon_sym_GT_LPAREN] = ACTIONS(381), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1179), - }, - [224] = { - [sym_do_group] = STATE(602), - [anon_sym_do] = ACTIONS(441), - [sym_comment] = ACTIONS(53), - }, - [225] = { - [sym_compound_statement] = STATE(604), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_LBRACE] = ACTIONS(511), - [sym_comment] = ACTIONS(53), - }, - [226] = { - [anon_sym_AMP_AMP] = ACTIONS(615), - [anon_sym_PIPE_PIPE] = ACTIONS(615), - [anon_sym_RBRACK] = ACTIONS(1183), - [anon_sym_EQ_TILDE] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(619), - [anon_sym_EQ] = ACTIONS(621), - [anon_sym_LT] = ACTIONS(615), - [anon_sym_GT] = ACTIONS(615), - [anon_sym_BANG_EQ] = ACTIONS(615), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(615), - }, - [227] = { - [anon_sym_AMP_AMP] = ACTIONS(647), - [anon_sym_PIPE_PIPE] = ACTIONS(647), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1183), - [anon_sym_EQ_TILDE] = ACTIONS(649), - [anon_sym_EQ_EQ] = ACTIONS(649), - [anon_sym_EQ] = ACTIONS(651), - [anon_sym_LT] = ACTIONS(647), - [anon_sym_GT] = ACTIONS(647), - [anon_sym_BANG_EQ] = ACTIONS(647), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(647), - }, - [228] = { - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_EQ] = ACTIONS(1185), - [anon_sym_PLUS_EQ] = ACTIONS(1185), - [sym_comment] = ACTIONS(53), - }, - [229] = { - [aux_sym_concatenation_repeat1] = STATE(607), - [sym__concat] = ACTIONS(655), - [sym_variable_name] = ACTIONS(657), - [anon_sym_SEMI] = ACTIONS(659), - [anon_sym_PIPE] = ACTIONS(659), - [anon_sym_SEMI_SEMI] = ACTIONS(657), - [anon_sym_PIPE_AMP] = ACTIONS(657), - [anon_sym_AMP_AMP] = ACTIONS(657), - [anon_sym_PIPE_PIPE] = ACTIONS(657), - [sym__special_characters] = ACTIONS(657), - [anon_sym_DQUOTE] = ACTIONS(657), - [anon_sym_DOLLAR] = ACTIONS(659), - [sym_raw_string] = ACTIONS(657), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(657), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(657), - [anon_sym_BQUOTE] = ACTIONS(657), - [anon_sym_LT_LPAREN] = ACTIONS(657), - [anon_sym_GT_LPAREN] = ACTIONS(657), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(659), - [sym_word] = ACTIONS(659), - [anon_sym_LF] = ACTIONS(657), - [anon_sym_AMP] = ACTIONS(659), - }, - [230] = { - [aux_sym_concatenation_repeat1] = STATE(607), - [sym__concat] = ACTIONS(655), - [sym_variable_name] = ACTIONS(673), - [anon_sym_SEMI] = ACTIONS(675), - [anon_sym_PIPE] = ACTIONS(675), - [anon_sym_SEMI_SEMI] = ACTIONS(673), - [anon_sym_PIPE_AMP] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(673), - [anon_sym_PIPE_PIPE] = ACTIONS(673), - [sym__special_characters] = ACTIONS(673), - [anon_sym_DQUOTE] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [sym_raw_string] = ACTIONS(673), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(673), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(673), - [anon_sym_BQUOTE] = ACTIONS(673), - [anon_sym_LT_LPAREN] = ACTIONS(673), - [anon_sym_GT_LPAREN] = ACTIONS(673), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(675), - [sym_word] = ACTIONS(675), - [anon_sym_LF] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(675), - }, - [231] = { - [anon_sym_EQ] = ACTIONS(1185), - [anon_sym_PLUS_EQ] = ACTIONS(1185), - [sym_comment] = ACTIONS(53), - }, - [232] = { - [sym_variable_assignment] = STATE(608), - [sym_subscript] = STATE(231), - [sym_concatenation] = STATE(608), - [sym_string] = STATE(230), - [sym_simple_expansion] = STATE(230), - [sym_string_expansion] = STATE(230), - [sym_expansion] = STATE(230), - [sym_command_substitution] = STATE(230), - [sym_process_substitution] = STATE(230), - [aux_sym_declaration_command_repeat1] = STATE(608), - [sym_variable_name] = ACTIONS(421), - [anon_sym_SEMI] = ACTIONS(689), - [anon_sym_PIPE] = ACTIONS(689), - [anon_sym_SEMI_SEMI] = ACTIONS(687), - [anon_sym_PIPE_AMP] = ACTIONS(687), - [anon_sym_AMP_AMP] = ACTIONS(687), - [anon_sym_PIPE_PIPE] = ACTIONS(687), - [sym__special_characters] = ACTIONS(423), - [anon_sym_DQUOTE] = ACTIONS(189), - [anon_sym_DOLLAR] = ACTIONS(191), - [sym_raw_string] = ACTIONS(425), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(195), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(197), - [anon_sym_BQUOTE] = ACTIONS(199), - [anon_sym_LT_LPAREN] = ACTIONS(201), - [anon_sym_GT_LPAREN] = ACTIONS(201), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1187), - [sym_word] = ACTIONS(429), - [anon_sym_LF] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(689), - }, - [233] = { - [aux_sym_concatenation_repeat1] = STATE(609), - [sym__concat] = ACTIONS(693), - [anon_sym_SEMI] = ACTIONS(697), - [anon_sym_PIPE] = ACTIONS(697), - [anon_sym_SEMI_SEMI] = ACTIONS(695), - [anon_sym_PIPE_AMP] = ACTIONS(695), - [anon_sym_AMP_AMP] = ACTIONS(695), - [anon_sym_PIPE_PIPE] = ACTIONS(695), - [sym__special_characters] = ACTIONS(695), - [anon_sym_DQUOTE] = ACTIONS(695), - [anon_sym_DOLLAR] = ACTIONS(697), - [sym_raw_string] = ACTIONS(695), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(695), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(695), - [anon_sym_BQUOTE] = ACTIONS(695), - [anon_sym_LT_LPAREN] = ACTIONS(695), - [anon_sym_GT_LPAREN] = ACTIONS(695), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(697), - [sym_word] = ACTIONS(697), - [anon_sym_LF] = ACTIONS(695), - [anon_sym_AMP] = ACTIONS(697), - }, - [234] = { - [aux_sym_concatenation_repeat1] = STATE(609), - [sym__concat] = ACTIONS(693), - [anon_sym_SEMI] = ACTIONS(713), - [anon_sym_PIPE] = ACTIONS(713), - [anon_sym_SEMI_SEMI] = ACTIONS(711), - [anon_sym_PIPE_AMP] = ACTIONS(711), - [anon_sym_AMP_AMP] = ACTIONS(711), - [anon_sym_PIPE_PIPE] = ACTIONS(711), - [sym__special_characters] = ACTIONS(711), - [anon_sym_DQUOTE] = ACTIONS(711), - [anon_sym_DOLLAR] = ACTIONS(713), - [sym_raw_string] = ACTIONS(711), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(711), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(711), - [anon_sym_BQUOTE] = ACTIONS(711), - [anon_sym_LT_LPAREN] = ACTIONS(711), - [anon_sym_GT_LPAREN] = ACTIONS(711), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(713), - [sym_word] = ACTIONS(713), - [anon_sym_LF] = ACTIONS(711), - [anon_sym_AMP] = ACTIONS(713), - }, - [235] = { - [sym_concatenation] = STATE(610), - [sym_string] = STATE(234), - [sym_simple_expansion] = STATE(234), - [sym_string_expansion] = STATE(234), - [sym_expansion] = STATE(234), - [sym_command_substitution] = STATE(234), - [sym_process_substitution] = STATE(234), - [aux_sym_unset_command_repeat1] = STATE(610), - [anon_sym_SEMI] = ACTIONS(727), - [anon_sym_PIPE] = ACTIONS(727), - [anon_sym_SEMI_SEMI] = ACTIONS(725), - [anon_sym_PIPE_AMP] = ACTIONS(725), - [anon_sym_AMP_AMP] = ACTIONS(725), - [anon_sym_PIPE_PIPE] = ACTIONS(725), - [sym__special_characters] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(215), - [sym_raw_string] = ACTIONS(433), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(219), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(221), - [anon_sym_BQUOTE] = ACTIONS(223), - [anon_sym_LT_LPAREN] = ACTIONS(225), - [anon_sym_GT_LPAREN] = ACTIONS(225), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1189), - [sym_word] = ACTIONS(437), - [anon_sym_LF] = ACTIONS(725), - [anon_sym_AMP] = ACTIONS(727), - }, - [236] = { - [aux_sym_concatenation_repeat1] = STATE(611), - [sym__simple_heredoc_body] = ACTIONS(765), - [sym__heredoc_body_beginning] = ACTIONS(765), - [sym_file_descriptor] = ACTIONS(765), - [sym__concat] = ACTIONS(249), - [anon_sym_SEMI] = ACTIONS(767), - [anon_sym_PIPE] = ACTIONS(767), - [anon_sym_SEMI_SEMI] = ACTIONS(765), - [anon_sym_PIPE_AMP] = ACTIONS(765), - [anon_sym_AMP_AMP] = ACTIONS(765), - [anon_sym_PIPE_PIPE] = ACTIONS(765), - [anon_sym_EQ_TILDE] = ACTIONS(767), - [anon_sym_EQ_EQ] = ACTIONS(767), - [anon_sym_LT] = ACTIONS(767), - [anon_sym_GT] = ACTIONS(767), - [anon_sym_GT_GT] = ACTIONS(765), - [anon_sym_AMP_GT] = ACTIONS(767), - [anon_sym_AMP_GT_GT] = ACTIONS(765), - [anon_sym_LT_AMP] = ACTIONS(765), - [anon_sym_GT_AMP] = ACTIONS(765), - [anon_sym_LT_LT] = ACTIONS(767), - [anon_sym_LT_LT_DASH] = ACTIONS(765), - [anon_sym_LT_LT_LT] = ACTIONS(765), - [sym__special_characters] = ACTIONS(765), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_DOLLAR] = ACTIONS(767), - [sym_raw_string] = ACTIONS(765), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(765), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(765), - [anon_sym_BQUOTE] = ACTIONS(765), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(767), - [anon_sym_LF] = ACTIONS(765), - [anon_sym_AMP] = ACTIONS(767), - }, - [237] = { - [anon_sym_RPAREN] = ACTIONS(1191), - [sym_comment] = ACTIONS(53), - }, - [238] = { - [sym__terminated_statement] = STATE(614), - [sym_for_statement] = STATE(521), - [sym_c_style_for_statement] = STATE(521), - [sym_while_statement] = STATE(521), - [sym_if_statement] = STATE(521), - [sym_case_statement] = STATE(521), - [sym_function_definition] = STATE(521), - [sym_subshell] = STATE(521), - [sym_pipeline] = STATE(521), - [sym_list] = STATE(521), - [sym_negated_command] = STATE(521), - [sym_test_command] = STATE(521), - [sym_declaration_command] = STATE(521), - [sym_unset_command] = STATE(521), - [sym_command] = STATE(521), - [sym_command_name] = STATE(51), - [sym_variable_assignment] = STATE(522), - [sym_subscript] = STATE(53), - [sym_file_redirect] = STATE(54), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(47), - [sym_simple_expansion] = STATE(47), - [sym_string_expansion] = STATE(47), - [sym_expansion] = STATE(47), - [sym_command_substitution] = STATE(47), - [sym_process_substitution] = STATE(47), - [aux_sym__statements_repeat1] = STATE(614), - [aux_sym_command_repeat1] = STATE(54), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(69), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(71), - [anon_sym_done] = ACTIONS(1193), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(73), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(75), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_LBRACK_LBRACK] = ACTIONS(79), - [anon_sym_declare] = ACTIONS(81), - [anon_sym_typeset] = ACTIONS(81), - [anon_sym_export] = ACTIONS(81), - [anon_sym_readonly] = ACTIONS(81), - [anon_sym_local] = ACTIONS(81), - [anon_sym_unset] = ACTIONS(83), - [anon_sym_unsetenv] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(87), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(89), - }, - [239] = { - [sym_file_redirect] = STATE(616), - [sym_heredoc_redirect] = STATE(616), - [sym_heredoc_body] = STATE(615), - [sym_herestring_redirect] = STATE(616), - [aux_sym_while_statement_repeat1] = STATE(616), - [sym__simple_heredoc_body] = ACTIONS(321), - [sym__heredoc_body_beginning] = ACTIONS(323), - [sym_file_descriptor] = ACTIONS(325), - [ts_builtin_sym_end] = ACTIONS(1195), - [anon_sym_SEMI] = ACTIONS(1197), - [anon_sym_PIPE] = ACTIONS(1197), - [anon_sym_SEMI_SEMI] = ACTIONS(1195), - [anon_sym_PIPE_AMP] = ACTIONS(1195), - [anon_sym_AMP_AMP] = ACTIONS(1195), - [anon_sym_PIPE_PIPE] = ACTIONS(1195), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), - [anon_sym_AMP_GT] = ACTIONS(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(335), - [anon_sym_GT_AMP] = ACTIONS(335), - [anon_sym_LT_LT] = ACTIONS(337), - [anon_sym_LT_LT_DASH] = ACTIONS(339), - [anon_sym_LT_LT_LT] = ACTIONS(341), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1195), - [anon_sym_AMP] = ACTIONS(1197), - }, - [240] = { - [anon_sym_do] = ACTIONS(901), - [anon_sym_then] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - }, - [241] = { - [sym_for_statement] = STATE(497), - [sym_c_style_for_statement] = STATE(497), - [sym_while_statement] = STATE(497), - [sym_if_statement] = STATE(497), - [sym_case_statement] = STATE(497), - [sym_function_definition] = STATE(497), - [sym_subshell] = STATE(497), - [sym_pipeline] = STATE(497), - [sym_list] = STATE(497), - [sym_negated_command] = STATE(497), - [sym_test_command] = STATE(497), - [sym_declaration_command] = STATE(497), - [sym_unset_command] = STATE(497), - [sym_command] = STATE(497), - [sym_command_name] = STATE(51), - [sym_variable_assignment] = STATE(498), - [sym_subscript] = STATE(53), - [sym_file_redirect] = STATE(54), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(47), - [sym_simple_expansion] = STATE(47), - [sym_string_expansion] = STATE(47), - [sym_expansion] = STATE(47), - [sym_command_substitution] = STATE(47), - [sym_process_substitution] = STATE(47), - [aux_sym_command_repeat1] = STATE(54), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(69), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(71), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(73), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(75), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_LBRACK_LBRACK] = ACTIONS(79), - [anon_sym_declare] = ACTIONS(81), - [anon_sym_typeset] = ACTIONS(81), - [anon_sym_export] = ACTIONS(81), - [anon_sym_readonly] = ACTIONS(81), - [anon_sym_local] = ACTIONS(81), - [anon_sym_unset] = ACTIONS(83), - [anon_sym_unsetenv] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(87), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(89), - }, - [242] = { - [sym_for_statement] = STATE(617), - [sym_c_style_for_statement] = STATE(617), - [sym_while_statement] = STATE(617), - [sym_if_statement] = STATE(617), - [sym_case_statement] = STATE(617), - [sym_function_definition] = STATE(617), - [sym_subshell] = STATE(617), - [sym_pipeline] = STATE(617), - [sym_list] = STATE(617), - [sym_negated_command] = STATE(617), - [sym_test_command] = STATE(617), - [sym_declaration_command] = STATE(617), - [sym_unset_command] = STATE(617), - [sym_command] = STATE(617), - [sym_command_name] = STATE(51), - [sym_variable_assignment] = STATE(618), - [sym_subscript] = STATE(53), - [sym_file_redirect] = STATE(54), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(47), - [sym_simple_expansion] = STATE(47), - [sym_string_expansion] = STATE(47), - [sym_expansion] = STATE(47), - [sym_command_substitution] = STATE(47), - [sym_process_substitution] = STATE(47), - [aux_sym_command_repeat1] = STATE(54), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(69), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(71), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(73), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(75), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_LBRACK_LBRACK] = ACTIONS(79), - [anon_sym_declare] = ACTIONS(81), - [anon_sym_typeset] = ACTIONS(81), - [anon_sym_export] = ACTIONS(81), - [anon_sym_readonly] = ACTIONS(81), - [anon_sym_local] = ACTIONS(81), - [anon_sym_unset] = ACTIONS(83), - [anon_sym_unsetenv] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(87), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(89), - }, - [243] = { - [anon_sym_LT] = ACTIONS(1199), - [anon_sym_GT] = ACTIONS(1199), - [anon_sym_GT_GT] = ACTIONS(1201), - [anon_sym_AMP_GT] = ACTIONS(1199), - [anon_sym_AMP_GT_GT] = ACTIONS(1201), - [anon_sym_LT_AMP] = ACTIONS(1201), - [anon_sym_GT_AMP] = ACTIONS(1201), - [sym_comment] = ACTIONS(53), - }, - [244] = { - [sym_concatenation] = STATE(508), - [sym_string] = STATE(621), - [sym_simple_expansion] = STATE(621), - [sym_string_expansion] = STATE(621), - [sym_expansion] = STATE(621), - [sym_command_substitution] = STATE(621), - [sym_process_substitution] = STATE(621), - [sym__special_characters] = ACTIONS(1203), - [anon_sym_DQUOTE] = ACTIONS(925), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1205), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(929), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(933), - [anon_sym_LT_LPAREN] = ACTIONS(935), - [anon_sym_GT_LPAREN] = ACTIONS(935), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(1205), - [sym_regex] = ACTIONS(937), - }, - [245] = { - [sym_concatenation] = STATE(511), - [sym_string] = STATE(623), - [sym_simple_expansion] = STATE(623), - [sym_string_expansion] = STATE(623), - [sym_expansion] = STATE(623), - [sym_command_substitution] = STATE(623), - [sym_process_substitution] = STATE(623), - [sym__special_characters] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1209), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1209), - }, - [246] = { - [sym_concatenation] = STATE(515), - [sym_string] = STATE(625), - [sym_simple_expansion] = STATE(625), - [sym_string_expansion] = STATE(625), - [sym_expansion] = STATE(625), - [sym_command_substitution] = STATE(625), - [sym_process_substitution] = STATE(625), - [sym__special_characters] = ACTIONS(1211), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1213), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1213), - }, - [247] = { - [aux_sym_concatenation_repeat1] = STATE(236), - [sym__simple_heredoc_body] = ACTIONS(949), - [sym__heredoc_body_beginning] = ACTIONS(949), - [sym_file_descriptor] = ACTIONS(949), - [sym__concat] = ACTIONS(249), - [anon_sym_SEMI] = ACTIONS(951), - [anon_sym_PIPE] = ACTIONS(951), - [anon_sym_SEMI_SEMI] = ACTIONS(949), - [anon_sym_PIPE_AMP] = ACTIONS(949), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_PIPE_PIPE] = ACTIONS(949), - [anon_sym_EQ_TILDE] = ACTIONS(951), - [anon_sym_EQ_EQ] = ACTIONS(951), - [anon_sym_LT] = ACTIONS(951), - [anon_sym_GT] = ACTIONS(951), - [anon_sym_GT_GT] = ACTIONS(949), - [anon_sym_AMP_GT] = ACTIONS(951), - [anon_sym_AMP_GT_GT] = ACTIONS(949), - [anon_sym_LT_AMP] = ACTIONS(949), - [anon_sym_GT_AMP] = ACTIONS(949), - [anon_sym_LT_LT] = ACTIONS(951), - [anon_sym_LT_LT_DASH] = ACTIONS(949), - [anon_sym_LT_LT_LT] = ACTIONS(949), - [sym__special_characters] = ACTIONS(949), - [anon_sym_DQUOTE] = ACTIONS(949), - [anon_sym_DOLLAR] = ACTIONS(951), - [sym_raw_string] = ACTIONS(949), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(949), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(949), - [anon_sym_BQUOTE] = ACTIONS(949), - [anon_sym_LT_LPAREN] = ACTIONS(949), - [anon_sym_GT_LPAREN] = ACTIONS(949), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(951), - [anon_sym_LF] = ACTIONS(949), - [anon_sym_AMP] = ACTIONS(951), - }, - [248] = { - [aux_sym_concatenation_repeat1] = STATE(236), - [sym__simple_heredoc_body] = ACTIONS(953), - [sym__heredoc_body_beginning] = ACTIONS(953), - [sym_file_descriptor] = ACTIONS(953), - [sym__concat] = ACTIONS(249), - [anon_sym_SEMI] = ACTIONS(955), - [anon_sym_PIPE] = ACTIONS(955), - [anon_sym_SEMI_SEMI] = ACTIONS(953), - [anon_sym_PIPE_AMP] = ACTIONS(953), - [anon_sym_AMP_AMP] = ACTIONS(953), - [anon_sym_PIPE_PIPE] = ACTIONS(953), - [anon_sym_EQ_TILDE] = ACTIONS(955), - [anon_sym_EQ_EQ] = ACTIONS(955), - [anon_sym_LT] = ACTIONS(955), - [anon_sym_GT] = ACTIONS(955), - [anon_sym_GT_GT] = ACTIONS(953), - [anon_sym_AMP_GT] = ACTIONS(955), - [anon_sym_AMP_GT_GT] = ACTIONS(953), - [anon_sym_LT_AMP] = ACTIONS(953), - [anon_sym_GT_AMP] = ACTIONS(953), - [anon_sym_LT_LT] = ACTIONS(955), - [anon_sym_LT_LT_DASH] = ACTIONS(953), - [anon_sym_LT_LT_LT] = ACTIONS(953), - [sym__special_characters] = ACTIONS(953), - [anon_sym_DQUOTE] = ACTIONS(953), - [anon_sym_DOLLAR] = ACTIONS(955), - [sym_raw_string] = ACTIONS(953), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(953), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(953), - [anon_sym_BQUOTE] = ACTIONS(953), - [anon_sym_LT_LPAREN] = ACTIONS(953), - [anon_sym_GT_LPAREN] = ACTIONS(953), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(955), - [anon_sym_LF] = ACTIONS(953), - [anon_sym_AMP] = ACTIONS(955), - }, - [249] = { - [sym_file_redirect] = STATE(626), - [sym_heredoc_redirect] = STATE(626), - [sym_heredoc_body] = STATE(516), - [sym_herestring_redirect] = STATE(626), - [aux_sym_while_statement_repeat1] = STATE(626), - [sym__simple_heredoc_body] = ACTIONS(321), - [sym__heredoc_body_beginning] = ACTIONS(323), - [sym_file_descriptor] = ACTIONS(453), - [anon_sym_SEMI] = ACTIONS(959), - [anon_sym_PIPE] = ACTIONS(959), - [anon_sym_SEMI_SEMI] = ACTIONS(957), - [anon_sym_PIPE_AMP] = ACTIONS(957), - [anon_sym_AMP_AMP] = ACTIONS(957), - [anon_sym_PIPE_PIPE] = ACTIONS(957), - [anon_sym_LT] = ACTIONS(457), - [anon_sym_GT] = ACTIONS(457), - [anon_sym_GT_GT] = ACTIONS(459), - [anon_sym_AMP_GT] = ACTIONS(457), - [anon_sym_AMP_GT_GT] = ACTIONS(459), - [anon_sym_LT_AMP] = ACTIONS(459), - [anon_sym_GT_AMP] = ACTIONS(459), - [anon_sym_LT_LT] = ACTIONS(337), - [anon_sym_LT_LT_DASH] = ACTIONS(339), - [anon_sym_LT_LT_LT] = ACTIONS(461), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(957), - [anon_sym_AMP] = ACTIONS(959), - }, - [250] = { - [sym_file_redirect] = STATE(627), - [sym_heredoc_redirect] = STATE(627), - [sym_heredoc_body] = STATE(516), - [sym_herestring_redirect] = STATE(627), - [sym_concatenation] = STATE(628), - [sym_string] = STATE(248), - [sym_simple_expansion] = STATE(248), - [sym_string_expansion] = STATE(248), - [sym_expansion] = STATE(248), - [sym_command_substitution] = STATE(248), - [sym_process_substitution] = STATE(248), - [aux_sym_while_statement_repeat1] = STATE(627), - [aux_sym_command_repeat2] = STATE(628), - [sym__simple_heredoc_body] = ACTIONS(321), - [sym__heredoc_body_beginning] = ACTIONS(323), - [sym_file_descriptor] = ACTIONS(453), - [anon_sym_SEMI] = ACTIONS(959), - [anon_sym_PIPE] = ACTIONS(959), - [anon_sym_SEMI_SEMI] = ACTIONS(957), - [anon_sym_PIPE_AMP] = ACTIONS(957), - [anon_sym_AMP_AMP] = ACTIONS(957), - [anon_sym_PIPE_PIPE] = ACTIONS(957), - [anon_sym_EQ_TILDE] = ACTIONS(455), - [anon_sym_EQ_EQ] = ACTIONS(455), - [anon_sym_LT] = ACTIONS(457), - [anon_sym_GT] = ACTIONS(457), - [anon_sym_GT_GT] = ACTIONS(459), - [anon_sym_AMP_GT] = ACTIONS(457), - [anon_sym_AMP_GT_GT] = ACTIONS(459), - [anon_sym_LT_AMP] = ACTIONS(459), - [anon_sym_GT_AMP] = ACTIONS(459), - [anon_sym_LT_LT] = ACTIONS(337), - [anon_sym_LT_LT_DASH] = ACTIONS(339), - [anon_sym_LT_LT_LT] = ACTIONS(461), - [sym__special_characters] = ACTIONS(463), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(465), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(467), - [anon_sym_LF] = ACTIONS(957), - [anon_sym_AMP] = ACTIONS(959), - }, - [251] = { - [sym_file_redirect] = STATE(627), - [sym_heredoc_redirect] = STATE(627), - [sym_heredoc_body] = STATE(516), - [sym_herestring_redirect] = STATE(627), - [sym_concatenation] = STATE(629), - [sym_string] = STATE(248), - [sym_simple_expansion] = STATE(248), - [sym_string_expansion] = STATE(248), - [sym_expansion] = STATE(248), - [sym_command_substitution] = STATE(248), - [sym_process_substitution] = STATE(248), - [aux_sym_while_statement_repeat1] = STATE(627), - [aux_sym_command_repeat2] = STATE(629), - [sym__simple_heredoc_body] = ACTIONS(321), - [sym__heredoc_body_beginning] = ACTIONS(323), - [sym_file_descriptor] = ACTIONS(453), - [anon_sym_SEMI] = ACTIONS(959), - [anon_sym_PIPE] = ACTIONS(959), - [anon_sym_SEMI_SEMI] = ACTIONS(957), - [anon_sym_PIPE_AMP] = ACTIONS(957), - [anon_sym_AMP_AMP] = ACTIONS(957), - [anon_sym_PIPE_PIPE] = ACTIONS(957), - [anon_sym_EQ_TILDE] = ACTIONS(455), - [anon_sym_EQ_EQ] = ACTIONS(455), - [anon_sym_LT] = ACTIONS(457), - [anon_sym_GT] = ACTIONS(457), - [anon_sym_GT_GT] = ACTIONS(459), - [anon_sym_AMP_GT] = ACTIONS(457), - [anon_sym_AMP_GT_GT] = ACTIONS(459), - [anon_sym_LT_AMP] = ACTIONS(459), - [anon_sym_GT_AMP] = ACTIONS(459), - [anon_sym_LT_LT] = ACTIONS(337), - [anon_sym_LT_LT_DASH] = ACTIONS(339), - [anon_sym_LT_LT_LT] = ACTIONS(461), - [sym__special_characters] = ACTIONS(463), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(465), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(467), - [anon_sym_LF] = ACTIONS(957), - [anon_sym_AMP] = ACTIONS(959), - }, - [252] = { - [sym__terminated_statement] = STATE(634), - [sym_for_statement] = STATE(521), - [sym_c_style_for_statement] = STATE(521), - [sym_while_statement] = STATE(521), - [sym_if_statement] = STATE(521), - [sym_elif_clause] = STATE(635), - [sym_else_clause] = STATE(633), - [sym_case_statement] = STATE(521), - [sym_function_definition] = STATE(521), - [sym_subshell] = STATE(521), - [sym_pipeline] = STATE(521), - [sym_list] = STATE(521), - [sym_negated_command] = STATE(521), - [sym_test_command] = STATE(521), - [sym_declaration_command] = STATE(521), - [sym_unset_command] = STATE(521), - [sym_command] = STATE(521), - [sym_command_name] = STATE(51), - [sym_variable_assignment] = STATE(522), - [sym_subscript] = STATE(53), - [sym_file_redirect] = STATE(54), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(47), - [sym_simple_expansion] = STATE(47), - [sym_string_expansion] = STATE(47), - [sym_expansion] = STATE(47), - [sym_command_substitution] = STATE(47), - [sym_process_substitution] = STATE(47), - [aux_sym__statements_repeat1] = STATE(634), - [aux_sym_if_statement_repeat1] = STATE(635), - [aux_sym_command_repeat1] = STATE(54), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(69), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(71), - [anon_sym_if] = ACTIONS(15), - [anon_sym_fi] = ACTIONS(1215), - [anon_sym_elif] = ACTIONS(1217), - [anon_sym_else] = ACTIONS(1219), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(73), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(75), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_LBRACK_LBRACK] = ACTIONS(79), - [anon_sym_declare] = ACTIONS(81), - [anon_sym_typeset] = ACTIONS(81), - [anon_sym_export] = ACTIONS(81), - [anon_sym_readonly] = ACTIONS(81), - [anon_sym_local] = ACTIONS(81), - [anon_sym_unset] = ACTIONS(83), - [anon_sym_unsetenv] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(87), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(89), - }, - [253] = { - [sym_string] = STATE(636), - [sym_simple_expansion] = STATE(636), - [sym_string_expansion] = STATE(636), - [sym_expansion] = STATE(636), - [sym_command_substitution] = STATE(636), - [sym_process_substitution] = STATE(636), - [sym__special_characters] = ACTIONS(1221), - [anon_sym_DQUOTE] = ACTIONS(93), - [anon_sym_DOLLAR] = ACTIONS(95), - [sym_raw_string] = ACTIONS(1221), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1221), - }, - [254] = { - [anon_sym_SEMI] = ACTIONS(1223), - [anon_sym_SEMI_SEMI] = ACTIONS(1225), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1225), - [anon_sym_AMP] = ACTIONS(1225), - }, - [255] = { - [anon_sym_in] = ACTIONS(1227), - [sym_comment] = ACTIONS(53), - }, - [256] = { - [aux_sym_concatenation_repeat1] = STATE(639), - [sym__concat] = ACTIONS(473), - [anon_sym_in] = ACTIONS(765), - [anon_sym_SEMI] = ACTIONS(767), - [anon_sym_SEMI_SEMI] = ACTIONS(765), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(765), - [anon_sym_AMP] = ACTIONS(765), - }, - [257] = { - [sym__concat] = ACTIONS(769), - [anon_sym_in] = ACTIONS(769), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_SEMI_SEMI] = ACTIONS(769), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(769), - [anon_sym_AMP] = ACTIONS(769), - }, - [258] = { - [anon_sym_DQUOTE] = ACTIONS(1229), - [anon_sym_DOLLAR] = ACTIONS(775), - [sym__string_content] = ACTIONS(777), - [anon_sym_POUND] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(781), - [anon_sym_STAR] = ACTIONS(783), - [anon_sym_AT] = ACTIONS(783), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_0] = ACTIONS(781), - [anon_sym__] = ACTIONS(781), - }, - [259] = { - [sym_simple_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [sym_command_substitution] = STATE(141), - [aux_sym_string_repeat1] = STATE(450), - [anon_sym_DQUOTE] = ACTIONS(1229), - [anon_sym_DOLLAR] = ACTIONS(1231), - [sym__string_content] = ACTIONS(257), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(261), - [anon_sym_BQUOTE] = ACTIONS(263), - [sym_comment] = ACTIONS(265), - }, - [260] = { - [sym__concat] = ACTIONS(803), - [anon_sym_in] = ACTIONS(803), - [anon_sym_SEMI] = ACTIONS(805), - [anon_sym_SEMI_SEMI] = ACTIONS(803), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(803), - [anon_sym_AMP] = ACTIONS(803), - }, - [261] = { - [sym__concat] = ACTIONS(807), - [anon_sym_in] = ACTIONS(807), - [anon_sym_SEMI] = ACTIONS(809), - [anon_sym_SEMI_SEMI] = ACTIONS(807), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(807), - [anon_sym_AMP] = ACTIONS(807), - }, - [262] = { - [sym__concat] = ACTIONS(811), - [anon_sym_in] = ACTIONS(811), - [anon_sym_SEMI] = ACTIONS(813), - [anon_sym_SEMI_SEMI] = ACTIONS(811), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(811), - }, - [263] = { - [anon_sym_SEMI] = ACTIONS(1233), - [anon_sym_SEMI_SEMI] = ACTIONS(1235), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1235), - [anon_sym_AMP] = ACTIONS(1235), - }, - [264] = { - [anon_sym_in] = ACTIONS(1237), - [sym_comment] = ACTIONS(53), - }, - [265] = { - [anon_sym_LBRACK] = ACTIONS(815), - [anon_sym_EQ] = ACTIONS(1239), - [sym_comment] = ACTIONS(53), - }, - [266] = { - [sym_subscript] = STATE(647), - [sym_variable_name] = ACTIONS(1241), - [anon_sym_DOLLAR] = ACTIONS(1243), - [anon_sym_DASH] = ACTIONS(1243), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1245), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_AT] = ACTIONS(1247), - [anon_sym_QMARK] = ACTIONS(1247), - [anon_sym_0] = ACTIONS(1245), - [anon_sym__] = ACTIONS(1245), - }, - [267] = { - [sym_concatenation] = STATE(650), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(650), - [anon_sym_RBRACE] = ACTIONS(1249), - [anon_sym_EQ] = ACTIONS(1251), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1253), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(1255), - [anon_sym_COLON] = ACTIONS(1251), - [anon_sym_COLON_QMARK] = ACTIONS(1251), - [anon_sym_COLON_DASH] = ACTIONS(1251), - [anon_sym_PERCENT] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [268] = { - [sym_concatenation] = STATE(653), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(653), - [anon_sym_RBRACE] = ACTIONS(1257), - [anon_sym_EQ] = ACTIONS(1259), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1261), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(1263), - [anon_sym_COLON] = ACTIONS(1259), - [anon_sym_COLON_QMARK] = ACTIONS(1259), - [anon_sym_COLON_DASH] = ACTIONS(1259), - [anon_sym_PERCENT] = ACTIONS(1259), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [269] = { - [anon_sym_SEMI] = ACTIONS(1265), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(1267), - [anon_sym_SEMI_SEMI] = ACTIONS(1269), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1269), - [anon_sym_AMP] = ACTIONS(1265), - }, - [270] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(1265), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(1267), - [anon_sym_SEMI_SEMI] = ACTIONS(1269), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(1269), - [anon_sym_AMP] = ACTIONS(1265), - }, - [271] = { - [sym__terminated_statement] = STATE(190), - [sym_for_statement] = STATE(656), - [sym_c_style_for_statement] = STATE(656), - [sym_while_statement] = STATE(656), - [sym_if_statement] = STATE(656), - [sym_case_statement] = STATE(656), - [sym_function_definition] = STATE(656), - [sym_subshell] = STATE(656), - [sym_pipeline] = STATE(656), - [sym_list] = STATE(656), - [sym_negated_command] = STATE(656), - [sym_test_command] = STATE(656), - [sym_declaration_command] = STATE(656), - [sym_unset_command] = STATE(656), - [sym_command] = STATE(656), - [sym_command_name] = STATE(78), - [sym_variable_assignment] = STATE(657), - [sym_subscript] = STATE(80), - [sym_file_redirect] = STATE(82), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(75), - [sym_simple_expansion] = STATE(75), - [sym_string_expansion] = STATE(75), - [sym_expansion] = STATE(75), - [sym_command_substitution] = STATE(75), - [sym_process_substitution] = STATE(75), - [aux_sym__statements_repeat1] = STATE(190), - [aux_sym_command_repeat1] = STATE(82), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(111), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(119), - [anon_sym_declare] = ACTIONS(121), - [anon_sym_typeset] = ACTIONS(121), - [anon_sym_export] = ACTIONS(121), - [anon_sym_readonly] = ACTIONS(121), - [anon_sym_local] = ACTIONS(121), - [anon_sym_unset] = ACTIONS(123), - [anon_sym_unsetenv] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), - }, - [272] = { - [anon_sym_SEMI] = ACTIONS(1271), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_SEMI_SEMI] = ACTIONS(1273), - [anon_sym_PIPE_AMP] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(883), - [anon_sym_PIPE_PIPE] = ACTIONS(883), - [anon_sym_BQUOTE] = ACTIONS(1267), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1273), - [anon_sym_AMP] = ACTIONS(1271), - }, - [273] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(1271), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_SEMI_SEMI] = ACTIONS(1273), - [anon_sym_PIPE_AMP] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(883), - [anon_sym_PIPE_PIPE] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(1267), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(1273), - [anon_sym_AMP] = ACTIONS(1271), - }, - [274] = { - [sym__terminated_statement] = STATE(190), - [sym_for_statement] = STATE(659), - [sym_c_style_for_statement] = STATE(659), - [sym_while_statement] = STATE(659), - [sym_if_statement] = STATE(659), - [sym_case_statement] = STATE(659), - [sym_function_definition] = STATE(659), - [sym_subshell] = STATE(659), - [sym_pipeline] = STATE(659), - [sym_list] = STATE(659), - [sym_negated_command] = STATE(659), - [sym_test_command] = STATE(659), - [sym_declaration_command] = STATE(659), - [sym_unset_command] = STATE(659), - [sym_command] = STATE(659), - [sym_command_name] = STATE(165), - [sym_variable_assignment] = STATE(660), - [sym_subscript] = STATE(53), - [sym_file_redirect] = STATE(168), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(47), - [sym_simple_expansion] = STATE(47), - [sym_string_expansion] = STATE(47), - [sym_expansion] = STATE(47), - [sym_command_substitution] = STATE(47), - [sym_process_substitution] = STATE(47), - [aux_sym__statements_repeat1] = STATE(190), - [aux_sym_command_repeat1] = STATE(168), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(69), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(289), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(291), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(293), - [anon_sym_LBRACK] = ACTIONS(295), - [anon_sym_LBRACK_LBRACK] = ACTIONS(297), - [anon_sym_declare] = ACTIONS(299), - [anon_sym_typeset] = ACTIONS(299), - [anon_sym_export] = ACTIONS(299), - [anon_sym_readonly] = ACTIONS(299), - [anon_sym_local] = ACTIONS(299), - [anon_sym_unset] = ACTIONS(301), - [anon_sym_unsetenv] = ACTIONS(301), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(87), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(303), - }, - [275] = { - [anon_sym_SEMI] = ACTIONS(1275), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(1277), - [anon_sym_SEMI_SEMI] = ACTIONS(1279), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1279), - [anon_sym_AMP] = ACTIONS(1275), - }, - [276] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(1275), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(1277), - [anon_sym_SEMI_SEMI] = ACTIONS(1279), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(1279), - [anon_sym_AMP] = ACTIONS(1275), - }, - [277] = { - [sym__terminated_statement] = STATE(190), - [sym_for_statement] = STATE(663), - [sym_c_style_for_statement] = STATE(663), - [sym_while_statement] = STATE(663), - [sym_if_statement] = STATE(663), - [sym_case_statement] = STATE(663), - [sym_function_definition] = STATE(663), - [sym_subshell] = STATE(663), - [sym_pipeline] = STATE(663), - [sym_list] = STATE(663), - [sym_negated_command] = STATE(663), - [sym_test_command] = STATE(663), - [sym_declaration_command] = STATE(663), - [sym_unset_command] = STATE(663), - [sym_command] = STATE(663), - [sym_command_name] = STATE(78), - [sym_variable_assignment] = STATE(664), - [sym_subscript] = STATE(80), - [sym_file_redirect] = STATE(82), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(75), - [sym_simple_expansion] = STATE(75), - [sym_string_expansion] = STATE(75), - [sym_expansion] = STATE(75), - [sym_command_substitution] = STATE(75), - [sym_process_substitution] = STATE(75), - [aux_sym__statements_repeat1] = STATE(190), - [aux_sym_command_repeat1] = STATE(82), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(111), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(119), - [anon_sym_declare] = ACTIONS(121), - [anon_sym_typeset] = ACTIONS(121), - [anon_sym_export] = ACTIONS(121), - [anon_sym_readonly] = ACTIONS(121), - [anon_sym_local] = ACTIONS(121), - [anon_sym_unset] = ACTIONS(123), - [anon_sym_unsetenv] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), - }, - [278] = { - [anon_sym_RPAREN] = ACTIONS(1281), - [sym_comment] = ACTIONS(53), - }, - [279] = { - [sym__terminated_statement] = STATE(669), - [sym_for_statement] = STATE(667), - [sym_c_style_for_statement] = STATE(667), - [sym_while_statement] = STATE(667), - [sym_if_statement] = STATE(667), - [sym_case_statement] = STATE(667), - [sym_function_definition] = STATE(667), - [sym_subshell] = STATE(667), - [sym_pipeline] = STATE(667), - [sym_list] = STATE(667), - [sym_negated_command] = STATE(667), - [sym_test_command] = STATE(667), - [sym_declaration_command] = STATE(667), - [sym_unset_command] = STATE(667), - [sym_command] = STATE(667), - [sym_command_name] = STATE(51), - [sym_variable_assignment] = STATE(668), - [sym_subscript] = STATE(53), - [sym_file_redirect] = STATE(54), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(47), - [sym_simple_expansion] = STATE(47), - [sym_string_expansion] = STATE(47), - [sym_expansion] = STATE(47), - [sym_command_substitution] = STATE(47), - [sym_process_substitution] = STATE(47), - [aux_sym__statements_repeat1] = STATE(669), - [aux_sym_command_repeat1] = STATE(54), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(69), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(71), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(73), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_RBRACE] = ACTIONS(1283), - [anon_sym_BANG] = ACTIONS(75), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_LBRACK_LBRACK] = ACTIONS(79), - [anon_sym_declare] = ACTIONS(81), - [anon_sym_typeset] = ACTIONS(81), - [anon_sym_export] = ACTIONS(81), - [anon_sym_readonly] = ACTIONS(81), - [anon_sym_local] = ACTIONS(81), - [anon_sym_unset] = ACTIONS(83), - [anon_sym_unsetenv] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(87), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(89), - }, - [280] = { - [sym_file_redirect] = STATE(672), - [sym_file_descriptor] = ACTIONS(1285), - [ts_builtin_sym_end] = ACTIONS(1287), - [anon_sym_SEMI] = ACTIONS(1289), - [anon_sym_PIPE] = ACTIONS(1289), - [anon_sym_SEMI_SEMI] = ACTIONS(1287), - [anon_sym_PIPE_AMP] = ACTIONS(1287), - [anon_sym_AMP_AMP] = ACTIONS(1287), - [anon_sym_PIPE_PIPE] = ACTIONS(1287), - [anon_sym_LT] = ACTIONS(1291), - [anon_sym_GT] = ACTIONS(1291), - [anon_sym_GT_GT] = ACTIONS(1293), - [anon_sym_AMP_GT] = ACTIONS(1291), - [anon_sym_AMP_GT_GT] = ACTIONS(1293), - [anon_sym_LT_AMP] = ACTIONS(1293), - [anon_sym_GT_AMP] = ACTIONS(1293), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1287), - [anon_sym_AMP] = ACTIONS(1289), - }, - [281] = { - [sym_concatenation] = STATE(199), - [sym_string] = STATE(674), - [sym_array] = STATE(199), - [sym_simple_expansion] = STATE(674), - [sym_string_expansion] = STATE(674), - [sym_expansion] = STATE(674), - [sym_command_substitution] = STATE(674), - [sym_process_substitution] = STATE(674), - [sym__empty_value] = ACTIONS(363), - [anon_sym_LPAREN] = ACTIONS(365), - [sym__special_characters] = ACTIONS(1295), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(1297), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(375), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(377), - [anon_sym_BQUOTE] = ACTIONS(379), - [anon_sym_LT_LPAREN] = ACTIONS(381), - [anon_sym_GT_LPAREN] = ACTIONS(381), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1297), - }, - [282] = { - [sym_do_group] = STATE(675), - [anon_sym_do] = ACTIONS(441), - [sym_comment] = ACTIONS(53), - }, - [283] = { - [sym_compound_statement] = STATE(677), - [anon_sym_LPAREN] = ACTIONS(1299), - [anon_sym_LBRACE] = ACTIONS(511), - [sym_comment] = ACTIONS(53), - }, - [284] = { - [anon_sym_AMP_AMP] = ACTIONS(615), - [anon_sym_PIPE_PIPE] = ACTIONS(615), - [anon_sym_RBRACK] = ACTIONS(1301), - [anon_sym_EQ_TILDE] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(619), - [anon_sym_EQ] = ACTIONS(621), - [anon_sym_LT] = ACTIONS(615), - [anon_sym_GT] = ACTIONS(615), - [anon_sym_BANG_EQ] = ACTIONS(615), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(615), - }, - [285] = { - [anon_sym_AMP_AMP] = ACTIONS(647), - [anon_sym_PIPE_PIPE] = ACTIONS(647), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1301), - [anon_sym_EQ_TILDE] = ACTIONS(649), - [anon_sym_EQ_EQ] = ACTIONS(649), - [anon_sym_EQ] = ACTIONS(651), - [anon_sym_LT] = ACTIONS(647), - [anon_sym_GT] = ACTIONS(647), - [anon_sym_BANG_EQ] = ACTIONS(647), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(647), - }, - [286] = { - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_EQ] = ACTIONS(1303), - [anon_sym_PLUS_EQ] = ACTIONS(1303), - [sym_comment] = ACTIONS(53), - }, - [287] = { - [aux_sym_concatenation_repeat1] = STATE(680), - [sym__concat] = ACTIONS(655), - [sym_variable_name] = ACTIONS(657), - [anon_sym_SEMI] = ACTIONS(659), - [anon_sym_PIPE] = ACTIONS(659), - [anon_sym_RPAREN] = ACTIONS(657), - [anon_sym_SEMI_SEMI] = ACTIONS(657), - [anon_sym_PIPE_AMP] = ACTIONS(657), - [anon_sym_AMP_AMP] = ACTIONS(657), - [anon_sym_PIPE_PIPE] = ACTIONS(657), - [sym__special_characters] = ACTIONS(657), - [anon_sym_DQUOTE] = ACTIONS(657), - [anon_sym_DOLLAR] = ACTIONS(659), - [sym_raw_string] = ACTIONS(657), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(657), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(657), - [anon_sym_BQUOTE] = ACTIONS(657), - [anon_sym_LT_LPAREN] = ACTIONS(657), - [anon_sym_GT_LPAREN] = ACTIONS(657), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(659), - [sym_word] = ACTIONS(659), - [anon_sym_LF] = ACTIONS(657), - [anon_sym_AMP] = ACTIONS(659), - }, - [288] = { - [aux_sym_concatenation_repeat1] = STATE(680), - [sym__concat] = ACTIONS(655), - [sym_variable_name] = ACTIONS(673), - [anon_sym_SEMI] = ACTIONS(675), - [anon_sym_PIPE] = ACTIONS(675), - [anon_sym_RPAREN] = ACTIONS(673), - [anon_sym_SEMI_SEMI] = ACTIONS(673), - [anon_sym_PIPE_AMP] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(673), - [anon_sym_PIPE_PIPE] = ACTIONS(673), - [sym__special_characters] = ACTIONS(673), - [anon_sym_DQUOTE] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [sym_raw_string] = ACTIONS(673), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(673), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(673), - [anon_sym_BQUOTE] = ACTIONS(673), - [anon_sym_LT_LPAREN] = ACTIONS(673), - [anon_sym_GT_LPAREN] = ACTIONS(673), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(675), - [sym_word] = ACTIONS(675), - [anon_sym_LF] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(675), - }, - [289] = { - [anon_sym_EQ] = ACTIONS(1303), - [anon_sym_PLUS_EQ] = ACTIONS(1303), - [sym_comment] = ACTIONS(53), - }, - [290] = { - [sym_variable_assignment] = STATE(681), - [sym_subscript] = STATE(289), - [sym_concatenation] = STATE(681), - [sym_string] = STATE(288), - [sym_simple_expansion] = STATE(288), - [sym_string_expansion] = STATE(288), - [sym_expansion] = STATE(288), - [sym_command_substitution] = STATE(288), - [sym_process_substitution] = STATE(288), - [aux_sym_declaration_command_repeat1] = STATE(681), - [sym_variable_name] = ACTIONS(517), - [anon_sym_SEMI] = ACTIONS(689), - [anon_sym_PIPE] = ACTIONS(689), - [anon_sym_RPAREN] = ACTIONS(687), - [anon_sym_SEMI_SEMI] = ACTIONS(687), - [anon_sym_PIPE_AMP] = ACTIONS(687), - [anon_sym_AMP_AMP] = ACTIONS(687), - [anon_sym_PIPE_PIPE] = ACTIONS(687), - [sym__special_characters] = ACTIONS(519), - [anon_sym_DQUOTE] = ACTIONS(189), - [anon_sym_DOLLAR] = ACTIONS(191), - [sym_raw_string] = ACTIONS(521), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(195), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(197), - [anon_sym_BQUOTE] = ACTIONS(199), - [anon_sym_LT_LPAREN] = ACTIONS(201), - [anon_sym_GT_LPAREN] = ACTIONS(201), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1305), - [sym_word] = ACTIONS(525), - [anon_sym_LF] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(689), - }, - [291] = { - [aux_sym_concatenation_repeat1] = STATE(682), - [sym__concat] = ACTIONS(693), - [anon_sym_SEMI] = ACTIONS(697), - [anon_sym_PIPE] = ACTIONS(697), - [anon_sym_RPAREN] = ACTIONS(695), - [anon_sym_SEMI_SEMI] = ACTIONS(695), - [anon_sym_PIPE_AMP] = ACTIONS(695), - [anon_sym_AMP_AMP] = ACTIONS(695), - [anon_sym_PIPE_PIPE] = ACTIONS(695), - [sym__special_characters] = ACTIONS(695), - [anon_sym_DQUOTE] = ACTIONS(695), - [anon_sym_DOLLAR] = ACTIONS(697), - [sym_raw_string] = ACTIONS(695), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(695), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(695), - [anon_sym_BQUOTE] = ACTIONS(695), - [anon_sym_LT_LPAREN] = ACTIONS(695), - [anon_sym_GT_LPAREN] = ACTIONS(695), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(697), - [sym_word] = ACTIONS(697), - [anon_sym_LF] = ACTIONS(695), - [anon_sym_AMP] = ACTIONS(697), - }, - [292] = { - [aux_sym_concatenation_repeat1] = STATE(682), - [sym__concat] = ACTIONS(693), - [anon_sym_SEMI] = ACTIONS(713), - [anon_sym_PIPE] = ACTIONS(713), - [anon_sym_RPAREN] = ACTIONS(711), - [anon_sym_SEMI_SEMI] = ACTIONS(711), - [anon_sym_PIPE_AMP] = ACTIONS(711), - [anon_sym_AMP_AMP] = ACTIONS(711), - [anon_sym_PIPE_PIPE] = ACTIONS(711), - [sym__special_characters] = ACTIONS(711), - [anon_sym_DQUOTE] = ACTIONS(711), - [anon_sym_DOLLAR] = ACTIONS(713), - [sym_raw_string] = ACTIONS(711), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(711), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(711), - [anon_sym_BQUOTE] = ACTIONS(711), - [anon_sym_LT_LPAREN] = ACTIONS(711), - [anon_sym_GT_LPAREN] = ACTIONS(711), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(713), - [sym_word] = ACTIONS(713), - [anon_sym_LF] = ACTIONS(711), - [anon_sym_AMP] = ACTIONS(713), - }, - [293] = { - [sym_concatenation] = STATE(683), - [sym_string] = STATE(292), - [sym_simple_expansion] = STATE(292), - [sym_string_expansion] = STATE(292), - [sym_expansion] = STATE(292), - [sym_command_substitution] = STATE(292), - [sym_process_substitution] = STATE(292), - [aux_sym_unset_command_repeat1] = STATE(683), - [anon_sym_SEMI] = ACTIONS(727), - [anon_sym_PIPE] = ACTIONS(727), - [anon_sym_RPAREN] = ACTIONS(725), - [anon_sym_SEMI_SEMI] = ACTIONS(725), - [anon_sym_PIPE_AMP] = ACTIONS(725), - [anon_sym_AMP_AMP] = ACTIONS(725), - [anon_sym_PIPE_PIPE] = ACTIONS(725), - [sym__special_characters] = ACTIONS(527), - [anon_sym_DQUOTE] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(215), - [sym_raw_string] = ACTIONS(529), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(219), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(221), - [anon_sym_BQUOTE] = ACTIONS(223), - [anon_sym_LT_LPAREN] = ACTIONS(225), - [anon_sym_GT_LPAREN] = ACTIONS(225), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1307), - [sym_word] = ACTIONS(533), - [anon_sym_LF] = ACTIONS(725), - [anon_sym_AMP] = ACTIONS(727), - }, - [294] = { - [aux_sym_concatenation_repeat1] = STATE(684), - [sym__simple_heredoc_body] = ACTIONS(765), - [sym__heredoc_body_beginning] = ACTIONS(765), - [sym_file_descriptor] = ACTIONS(765), - [sym__concat] = ACTIONS(249), - [anon_sym_SEMI] = ACTIONS(767), - [anon_sym_PIPE] = ACTIONS(767), - [anon_sym_RPAREN] = ACTIONS(765), - [anon_sym_SEMI_SEMI] = ACTIONS(765), - [anon_sym_PIPE_AMP] = ACTIONS(765), - [anon_sym_AMP_AMP] = ACTIONS(765), - [anon_sym_PIPE_PIPE] = ACTIONS(765), - [anon_sym_EQ_TILDE] = ACTIONS(767), - [anon_sym_EQ_EQ] = ACTIONS(767), - [anon_sym_LT] = ACTIONS(767), - [anon_sym_GT] = ACTIONS(767), - [anon_sym_GT_GT] = ACTIONS(765), - [anon_sym_AMP_GT] = ACTIONS(767), - [anon_sym_AMP_GT_GT] = ACTIONS(765), - [anon_sym_LT_AMP] = ACTIONS(765), - [anon_sym_GT_AMP] = ACTIONS(765), - [anon_sym_LT_LT] = ACTIONS(767), - [anon_sym_LT_LT_DASH] = ACTIONS(765), - [anon_sym_LT_LT_LT] = ACTIONS(765), - [sym__special_characters] = ACTIONS(765), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_DOLLAR] = ACTIONS(767), - [sym_raw_string] = ACTIONS(765), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(765), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(765), - [anon_sym_BQUOTE] = ACTIONS(765), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(767), - [anon_sym_LF] = ACTIONS(765), - [anon_sym_AMP] = ACTIONS(767), - }, - [295] = { - [anon_sym_RPAREN] = ACTIONS(1309), - [sym_comment] = ACTIONS(53), - }, - [296] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(1311), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(901), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), - }, - [297] = { - [sym_for_statement] = STATE(497), - [sym_c_style_for_statement] = STATE(497), - [sym_while_statement] = STATE(497), - [sym_if_statement] = STATE(497), - [sym_case_statement] = STATE(497), - [sym_function_definition] = STATE(497), - [sym_subshell] = STATE(497), - [sym_pipeline] = STATE(497), - [sym_list] = STATE(497), - [sym_negated_command] = STATE(497), - [sym_test_command] = STATE(497), - [sym_declaration_command] = STATE(497), - [sym_unset_command] = STATE(497), - [sym_command] = STATE(497), - [sym_command_name] = STATE(78), - [sym_variable_assignment] = STATE(498), - [sym_subscript] = STATE(80), - [sym_file_redirect] = STATE(82), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(75), - [sym_simple_expansion] = STATE(75), - [sym_string_expansion] = STATE(75), - [sym_expansion] = STATE(75), - [sym_command_substitution] = STATE(75), - [sym_process_substitution] = STATE(75), - [aux_sym_command_repeat1] = STATE(82), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(111), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(119), - [anon_sym_declare] = ACTIONS(121), - [anon_sym_typeset] = ACTIONS(121), - [anon_sym_export] = ACTIONS(121), - [anon_sym_readonly] = ACTIONS(121), - [anon_sym_local] = ACTIONS(121), - [anon_sym_unset] = ACTIONS(123), - [anon_sym_unsetenv] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), - }, - [298] = { - [ts_builtin_sym_end] = ACTIONS(1313), - [anon_sym_SEMI] = ACTIONS(1315), - [anon_sym_esac] = ACTIONS(1313), - [anon_sym_PIPE] = ACTIONS(1315), - [anon_sym_RPAREN] = ACTIONS(1313), - [anon_sym_SEMI_SEMI] = ACTIONS(1313), - [anon_sym_PIPE_AMP] = ACTIONS(1313), - [anon_sym_AMP_AMP] = ACTIONS(1313), - [anon_sym_PIPE_PIPE] = ACTIONS(1313), - [anon_sym_BQUOTE] = ACTIONS(1313), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1313), - [anon_sym_AMP] = ACTIONS(1315), - }, - [299] = { - [sym_for_statement] = STATE(687), - [sym_c_style_for_statement] = STATE(687), - [sym_while_statement] = STATE(687), - [sym_if_statement] = STATE(687), - [sym_case_statement] = STATE(687), - [sym_function_definition] = STATE(687), - [sym_subshell] = STATE(687), - [sym_pipeline] = STATE(687), - [sym_list] = STATE(687), - [sym_negated_command] = STATE(687), - [sym_test_command] = STATE(687), - [sym_declaration_command] = STATE(687), - [sym_unset_command] = STATE(687), - [sym_command] = STATE(687), - [sym_command_name] = STATE(78), - [sym_variable_assignment] = STATE(688), - [sym_subscript] = STATE(80), - [sym_file_redirect] = STATE(82), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(75), - [sym_simple_expansion] = STATE(75), - [sym_string_expansion] = STATE(75), - [sym_expansion] = STATE(75), - [sym_command_substitution] = STATE(75), - [sym_process_substitution] = STATE(75), - [aux_sym_command_repeat1] = STATE(82), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(111), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(119), - [anon_sym_declare] = ACTIONS(121), - [anon_sym_typeset] = ACTIONS(121), - [anon_sym_export] = ACTIONS(121), - [anon_sym_readonly] = ACTIONS(121), - [anon_sym_local] = ACTIONS(121), - [anon_sym_unset] = ACTIONS(123), - [anon_sym_unsetenv] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), - }, - [300] = { - [anon_sym_LT] = ACTIONS(1317), - [anon_sym_GT] = ACTIONS(1317), - [anon_sym_GT_GT] = ACTIONS(1319), - [anon_sym_AMP_GT] = ACTIONS(1317), - [anon_sym_AMP_GT_GT] = ACTIONS(1319), - [anon_sym_LT_AMP] = ACTIONS(1319), - [anon_sym_GT_AMP] = ACTIONS(1319), - [sym_comment] = ACTIONS(53), - }, - [301] = { - [sym_concatenation] = STATE(508), - [sym_string] = STATE(691), - [sym_simple_expansion] = STATE(691), - [sym_string_expansion] = STATE(691), - [sym_expansion] = STATE(691), - [sym_command_substitution] = STATE(691), - [sym_process_substitution] = STATE(691), - [sym__special_characters] = ACTIONS(1321), - [anon_sym_DQUOTE] = ACTIONS(925), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1323), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(929), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(933), - [anon_sym_LT_LPAREN] = ACTIONS(935), - [anon_sym_GT_LPAREN] = ACTIONS(935), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(1323), - [sym_regex] = ACTIONS(937), - }, - [302] = { - [sym_concatenation] = STATE(511), - [sym_string] = STATE(693), - [sym_simple_expansion] = STATE(693), - [sym_string_expansion] = STATE(693), - [sym_expansion] = STATE(693), - [sym_command_substitution] = STATE(693), - [sym_process_substitution] = STATE(693), - [sym__special_characters] = ACTIONS(1325), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1327), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1327), - }, - [303] = { - [sym_concatenation] = STATE(515), - [sym_string] = STATE(695), - [sym_simple_expansion] = STATE(695), - [sym_string_expansion] = STATE(695), - [sym_expansion] = STATE(695), - [sym_command_substitution] = STATE(695), - [sym_process_substitution] = STATE(695), - [sym__special_characters] = ACTIONS(1329), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1331), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1331), - }, - [304] = { - [aux_sym_concatenation_repeat1] = STATE(294), - [sym__simple_heredoc_body] = ACTIONS(949), - [sym__heredoc_body_beginning] = ACTIONS(949), - [sym_file_descriptor] = ACTIONS(949), - [sym__concat] = ACTIONS(249), + [ts_builtin_sym_end] = ACTIONS(949), [anon_sym_SEMI] = ACTIONS(951), + [anon_sym_esac] = ACTIONS(949), [anon_sym_PIPE] = ACTIONS(951), [anon_sym_RPAREN] = ACTIONS(949), [anon_sym_SEMI_SEMI] = ACTIONS(949), [anon_sym_PIPE_AMP] = ACTIONS(949), [anon_sym_AMP_AMP] = ACTIONS(949), [anon_sym_PIPE_PIPE] = ACTIONS(949), - [anon_sym_EQ_TILDE] = ACTIONS(951), - [anon_sym_EQ_EQ] = ACTIONS(951), - [anon_sym_LT] = ACTIONS(951), - [anon_sym_GT] = ACTIONS(951), - [anon_sym_GT_GT] = ACTIONS(949), - [anon_sym_AMP_GT] = ACTIONS(951), - [anon_sym_AMP_GT_GT] = ACTIONS(949), - [anon_sym_LT_AMP] = ACTIONS(949), - [anon_sym_GT_AMP] = ACTIONS(949), - [anon_sym_LT_LT] = ACTIONS(951), - [anon_sym_LT_LT_DASH] = ACTIONS(949), - [anon_sym_LT_LT_LT] = ACTIONS(949), - [sym__special_characters] = ACTIONS(949), - [anon_sym_DQUOTE] = ACTIONS(949), - [anon_sym_DOLLAR] = ACTIONS(951), - [sym_raw_string] = ACTIONS(949), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(949), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(949), [anon_sym_BQUOTE] = ACTIONS(949), - [anon_sym_LT_LPAREN] = ACTIONS(949), - [anon_sym_GT_LPAREN] = ACTIONS(949), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(951), + [sym_comment] = ACTIONS(55), [anon_sym_LF] = ACTIONS(949), [anon_sym_AMP] = ACTIONS(951), }, - [305] = { - [aux_sym_concatenation_repeat1] = STATE(294), - [sym__simple_heredoc_body] = ACTIONS(953), - [sym__heredoc_body_beginning] = ACTIONS(953), - [sym_file_descriptor] = ACTIONS(953), - [sym__concat] = ACTIONS(249), - [anon_sym_SEMI] = ACTIONS(955), - [anon_sym_PIPE] = ACTIONS(955), - [anon_sym_RPAREN] = ACTIONS(953), - [anon_sym_SEMI_SEMI] = ACTIONS(953), - [anon_sym_PIPE_AMP] = ACTIONS(953), - [anon_sym_AMP_AMP] = ACTIONS(953), - [anon_sym_PIPE_PIPE] = ACTIONS(953), - [anon_sym_EQ_TILDE] = ACTIONS(955), - [anon_sym_EQ_EQ] = ACTIONS(955), - [anon_sym_LT] = ACTIONS(955), - [anon_sym_GT] = ACTIONS(955), - [anon_sym_GT_GT] = ACTIONS(953), - [anon_sym_AMP_GT] = ACTIONS(955), - [anon_sym_AMP_GT_GT] = ACTIONS(953), - [anon_sym_LT_AMP] = ACTIONS(953), - [anon_sym_GT_AMP] = ACTIONS(953), - [anon_sym_LT_LT] = ACTIONS(955), - [anon_sym_LT_LT_DASH] = ACTIONS(953), - [anon_sym_LT_LT_LT] = ACTIONS(953), - [sym__special_characters] = ACTIONS(953), - [anon_sym_DQUOTE] = ACTIONS(953), - [anon_sym_DOLLAR] = ACTIONS(955), - [sym_raw_string] = ACTIONS(953), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(953), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(953), - [anon_sym_BQUOTE] = ACTIONS(953), - [anon_sym_LT_LPAREN] = ACTIONS(953), - [anon_sym_GT_LPAREN] = ACTIONS(953), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(955), - [anon_sym_LF] = ACTIONS(953), - [anon_sym_AMP] = ACTIONS(955), + [185] = { + [sym_simple_expansion] = STATE(528), + [sym_expansion] = STATE(528), + [aux_sym_heredoc_body_repeat1] = STATE(528), + [sym__heredoc_body_middle] = ACTIONS(953), + [sym__heredoc_body_end] = ACTIONS(955), + [anon_sym_DOLLAR] = ACTIONS(957), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(959), + [sym_comment] = ACTIONS(55), }, - [306] = { - [sym_file_redirect] = STATE(696), - [sym_heredoc_redirect] = STATE(696), - [sym_heredoc_body] = STATE(516), - [sym_herestring_redirect] = STATE(696), - [aux_sym_while_statement_repeat1] = STATE(696), - [sym__simple_heredoc_body] = ACTIONS(321), - [sym__heredoc_body_beginning] = ACTIONS(323), - [sym_file_descriptor] = ACTIONS(549), - [anon_sym_SEMI] = ACTIONS(959), - [anon_sym_PIPE] = ACTIONS(959), - [anon_sym_RPAREN] = ACTIONS(957), - [anon_sym_SEMI_SEMI] = ACTIONS(957), - [anon_sym_PIPE_AMP] = ACTIONS(957), - [anon_sym_AMP_AMP] = ACTIONS(957), - [anon_sym_PIPE_PIPE] = ACTIONS(957), - [anon_sym_LT] = ACTIONS(553), - [anon_sym_GT] = ACTIONS(553), - [anon_sym_GT_GT] = ACTIONS(555), - [anon_sym_AMP_GT] = ACTIONS(553), - [anon_sym_AMP_GT_GT] = ACTIONS(555), - [anon_sym_LT_AMP] = ACTIONS(555), - [anon_sym_GT_AMP] = ACTIONS(555), - [anon_sym_LT_LT] = ACTIONS(337), - [anon_sym_LT_LT_DASH] = ACTIONS(339), - [anon_sym_LT_LT_LT] = ACTIONS(557), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(957), - [anon_sym_AMP] = ACTIONS(959), + [186] = { + [anon_sym_LT] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(963), + [anon_sym_AMP_GT] = ACTIONS(961), + [anon_sym_AMP_GT_GT] = ACTIONS(963), + [anon_sym_LT_AMP] = ACTIONS(963), + [anon_sym_GT_AMP] = ACTIONS(963), + [sym_comment] = ACTIONS(55), }, - [307] = { - [sym_file_redirect] = STATE(697), - [sym_heredoc_redirect] = STATE(697), - [sym_heredoc_body] = STATE(516), - [sym_herestring_redirect] = STATE(697), - [sym_concatenation] = STATE(698), - [sym_string] = STATE(305), - [sym_simple_expansion] = STATE(305), - [sym_string_expansion] = STATE(305), - [sym_expansion] = STATE(305), - [sym_command_substitution] = STATE(305), - [sym_process_substitution] = STATE(305), - [aux_sym_while_statement_repeat1] = STATE(697), - [aux_sym_command_repeat2] = STATE(698), - [sym__simple_heredoc_body] = ACTIONS(321), - [sym__heredoc_body_beginning] = ACTIONS(323), - [sym_file_descriptor] = ACTIONS(549), - [anon_sym_SEMI] = ACTIONS(959), - [anon_sym_PIPE] = ACTIONS(959), - [anon_sym_RPAREN] = ACTIONS(957), - [anon_sym_SEMI_SEMI] = ACTIONS(957), - [anon_sym_PIPE_AMP] = ACTIONS(957), - [anon_sym_AMP_AMP] = ACTIONS(957), - [anon_sym_PIPE_PIPE] = ACTIONS(957), - [anon_sym_EQ_TILDE] = ACTIONS(551), - [anon_sym_EQ_EQ] = ACTIONS(551), - [anon_sym_LT] = ACTIONS(553), - [anon_sym_GT] = ACTIONS(553), - [anon_sym_GT_GT] = ACTIONS(555), - [anon_sym_AMP_GT] = ACTIONS(553), - [anon_sym_AMP_GT_GT] = ACTIONS(555), - [anon_sym_LT_AMP] = ACTIONS(555), - [anon_sym_GT_AMP] = ACTIONS(555), - [anon_sym_LT_LT] = ACTIONS(337), - [anon_sym_LT_LT_DASH] = ACTIONS(339), - [anon_sym_LT_LT_LT] = ACTIONS(557), - [sym__special_characters] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(561), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(563), - [anon_sym_LF] = ACTIONS(957), - [anon_sym_AMP] = ACTIONS(959), + [187] = { + [sym_concatenation] = STATE(530), + [sym_string] = STATE(532), + [sym_simple_expansion] = STATE(532), + [sym_string_expansion] = STATE(532), + [sym_expansion] = STATE(532), + [sym_command_substitution] = STATE(532), + [sym_process_substitution] = STATE(532), + [sym_regex] = ACTIONS(965), + [sym__special_characters] = ACTIONS(967), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(969), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(969), }, - [308] = { - [anon_sym_SEMI] = ACTIONS(1333), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(1311), - [anon_sym_SEMI_SEMI] = ACTIONS(1335), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1335), - [anon_sym_AMP] = ACTIONS(1333), + [188] = { + [sym_concatenation] = STATE(535), + [sym_string] = STATE(534), + [sym_simple_expansion] = STATE(534), + [sym_string_expansion] = STATE(534), + [sym_expansion] = STATE(534), + [sym_command_substitution] = STATE(534), + [sym_process_substitution] = STATE(534), + [sym__special_characters] = ACTIONS(971), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(973), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(973), }, - [309] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(1333), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(1311), - [anon_sym_SEMI_SEMI] = ACTIONS(1335), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), + [189] = { + [sym_heredoc_start] = ACTIONS(975), + [sym_comment] = ACTIONS(55), + }, + [190] = { + [sym_concatenation] = STATE(539), + [sym_string] = STATE(538), + [sym_simple_expansion] = STATE(538), + [sym_string_expansion] = STATE(538), + [sym_expansion] = STATE(538), + [sym_command_substitution] = STATE(538), + [sym_process_substitution] = STATE(538), + [sym__special_characters] = ACTIONS(977), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(979), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(979), + }, + [191] = { + [aux_sym_concatenation_repeat1] = STATE(145), + [sym__simple_heredoc_body] = ACTIONS(981), + [sym__heredoc_body_beginning] = ACTIONS(981), + [sym_file_descriptor] = ACTIONS(981), + [sym__concat] = ACTIONS(265), + [ts_builtin_sym_end] = ACTIONS(981), + [anon_sym_SEMI] = ACTIONS(983), + [anon_sym_PIPE] = ACTIONS(983), + [anon_sym_SEMI_SEMI] = ACTIONS(981), + [anon_sym_PIPE_AMP] = ACTIONS(981), + [anon_sym_AMP_AMP] = ACTIONS(981), + [anon_sym_PIPE_PIPE] = ACTIONS(981), + [anon_sym_EQ_TILDE] = ACTIONS(983), + [anon_sym_EQ_EQ] = ACTIONS(983), + [anon_sym_LT] = ACTIONS(983), + [anon_sym_GT] = ACTIONS(983), + [anon_sym_GT_GT] = ACTIONS(981), + [anon_sym_AMP_GT] = ACTIONS(983), + [anon_sym_AMP_GT_GT] = ACTIONS(981), + [anon_sym_LT_AMP] = ACTIONS(981), + [anon_sym_GT_AMP] = ACTIONS(981), + [anon_sym_LT_LT] = ACTIONS(983), + [anon_sym_LT_LT_DASH] = ACTIONS(981), + [anon_sym_LT_LT_LT] = ACTIONS(981), + [sym__special_characters] = ACTIONS(981), + [anon_sym_DQUOTE] = ACTIONS(981), + [anon_sym_DOLLAR] = ACTIONS(983), + [sym_raw_string] = ACTIONS(981), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(981), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(981), + [anon_sym_BQUOTE] = ACTIONS(981), + [anon_sym_LT_LPAREN] = ACTIONS(981), + [anon_sym_GT_LPAREN] = ACTIONS(981), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(983), + [anon_sym_LF] = ACTIONS(981), + [anon_sym_AMP] = ACTIONS(983), + }, + [192] = { + [aux_sym_concatenation_repeat1] = STATE(145), + [sym__simple_heredoc_body] = ACTIONS(985), + [sym__heredoc_body_beginning] = ACTIONS(985), + [sym_file_descriptor] = ACTIONS(985), + [sym__concat] = ACTIONS(265), + [ts_builtin_sym_end] = ACTIONS(985), + [anon_sym_SEMI] = ACTIONS(987), + [anon_sym_PIPE] = ACTIONS(987), + [anon_sym_SEMI_SEMI] = ACTIONS(985), + [anon_sym_PIPE_AMP] = ACTIONS(985), + [anon_sym_AMP_AMP] = ACTIONS(985), + [anon_sym_PIPE_PIPE] = ACTIONS(985), + [anon_sym_EQ_TILDE] = ACTIONS(987), + [anon_sym_EQ_EQ] = ACTIONS(987), + [anon_sym_LT] = ACTIONS(987), + [anon_sym_GT] = ACTIONS(987), + [anon_sym_GT_GT] = ACTIONS(985), + [anon_sym_AMP_GT] = ACTIONS(987), + [anon_sym_AMP_GT_GT] = ACTIONS(985), + [anon_sym_LT_AMP] = ACTIONS(985), + [anon_sym_GT_AMP] = ACTIONS(985), + [anon_sym_LT_LT] = ACTIONS(987), + [anon_sym_LT_LT_DASH] = ACTIONS(985), + [anon_sym_LT_LT_LT] = ACTIONS(985), + [sym__special_characters] = ACTIONS(985), + [anon_sym_DQUOTE] = ACTIONS(985), + [anon_sym_DOLLAR] = ACTIONS(987), + [sym_raw_string] = ACTIONS(985), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(985), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(985), + [anon_sym_BQUOTE] = ACTIONS(985), + [anon_sym_LT_LPAREN] = ACTIONS(985), + [anon_sym_GT_LPAREN] = ACTIONS(985), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(987), + [anon_sym_LF] = ACTIONS(985), + [anon_sym_AMP] = ACTIONS(987), + }, + [193] = { + [ts_builtin_sym_end] = ACTIONS(989), + [anon_sym_SEMI] = ACTIONS(991), + [anon_sym_esac] = ACTIONS(989), + [anon_sym_PIPE] = ACTIONS(991), + [anon_sym_RPAREN] = ACTIONS(989), + [anon_sym_SEMI_SEMI] = ACTIONS(989), + [anon_sym_PIPE_AMP] = ACTIONS(989), + [anon_sym_AMP_AMP] = ACTIONS(989), + [anon_sym_PIPE_PIPE] = ACTIONS(989), + [anon_sym_BQUOTE] = ACTIONS(989), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(991), + }, + [194] = { + [sym_file_redirect] = STATE(541), + [sym_heredoc_redirect] = STATE(541), + [sym_heredoc_body] = STATE(540), + [sym_herestring_redirect] = STATE(541), + [aux_sym_while_statement_repeat1] = STATE(541), + [sym__simple_heredoc_body] = ACTIONS(339), + [sym__heredoc_body_beginning] = ACTIONS(341), + [sym_file_descriptor] = ACTIONS(343), + [ts_builtin_sym_end] = ACTIONS(989), + [anon_sym_SEMI] = ACTIONS(991), + [anon_sym_PIPE] = ACTIONS(991), + [anon_sym_SEMI_SEMI] = ACTIONS(989), + [anon_sym_PIPE_AMP] = ACTIONS(989), + [anon_sym_AMP_AMP] = ACTIONS(989), + [anon_sym_PIPE_PIPE] = ACTIONS(989), [anon_sym_LT] = ACTIONS(351), [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), + [anon_sym_GT_GT] = ACTIONS(353), [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(1335), - [anon_sym_AMP] = ACTIONS(1333), + [anon_sym_AMP_GT_GT] = ACTIONS(353), + [anon_sym_LT_AMP] = ACTIONS(353), + [anon_sym_GT_AMP] = ACTIONS(353), + [anon_sym_LT_LT] = ACTIONS(355), + [anon_sym_LT_LT_DASH] = ACTIONS(357), + [anon_sym_LT_LT_LT] = ACTIONS(359), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(991), + }, + [195] = { + [sym_file_redirect] = STATE(542), + [sym_heredoc_redirect] = STATE(542), + [sym_heredoc_body] = STATE(540), + [sym_herestring_redirect] = STATE(542), + [sym_concatenation] = STATE(543), + [sym_string] = STATE(192), + [sym_simple_expansion] = STATE(192), + [sym_string_expansion] = STATE(192), + [sym_expansion] = STATE(192), + [sym_command_substitution] = STATE(192), + [sym_process_substitution] = STATE(192), + [aux_sym_while_statement_repeat1] = STATE(542), + [aux_sym_command_repeat2] = STATE(543), + [sym__simple_heredoc_body] = ACTIONS(339), + [sym__heredoc_body_beginning] = ACTIONS(341), + [sym_file_descriptor] = ACTIONS(343), + [ts_builtin_sym_end] = ACTIONS(989), + [anon_sym_SEMI] = ACTIONS(991), + [anon_sym_PIPE] = ACTIONS(991), + [anon_sym_SEMI_SEMI] = ACTIONS(989), + [anon_sym_PIPE_AMP] = ACTIONS(989), + [anon_sym_AMP_AMP] = ACTIONS(989), + [anon_sym_PIPE_PIPE] = ACTIONS(989), + [anon_sym_EQ_TILDE] = ACTIONS(349), + [anon_sym_EQ_EQ] = ACTIONS(349), + [anon_sym_LT] = ACTIONS(351), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_GT_GT] = ACTIONS(353), + [anon_sym_AMP_GT] = ACTIONS(351), + [anon_sym_AMP_GT_GT] = ACTIONS(353), + [anon_sym_LT_AMP] = ACTIONS(353), + [anon_sym_GT_AMP] = ACTIONS(353), + [anon_sym_LT_LT] = ACTIONS(355), + [anon_sym_LT_LT_DASH] = ACTIONS(357), + [anon_sym_LT_LT_LT] = ACTIONS(359), + [sym__special_characters] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(363), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(365), + [anon_sym_LF] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(991), + }, + [196] = { + [ts_builtin_sym_end] = ACTIONS(945), + [anon_sym_SEMI] = ACTIONS(993), + [anon_sym_PIPE] = ACTIONS(331), + [anon_sym_SEMI_SEMI] = ACTIONS(995), + [anon_sym_PIPE_AMP] = ACTIONS(335), + [anon_sym_AMP_AMP] = ACTIONS(337), + [anon_sym_PIPE_PIPE] = ACTIONS(337), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(995), + [anon_sym_AMP] = ACTIONS(993), + }, + [197] = { + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [ts_builtin_sym_end] = ACTIONS(945), + [anon_sym_SEMI] = ACTIONS(993), + [anon_sym_PIPE] = ACTIONS(331), + [anon_sym_SEMI_SEMI] = ACTIONS(995), + [anon_sym_PIPE_AMP] = ACTIONS(335), + [anon_sym_AMP_AMP] = ACTIONS(337), + [anon_sym_PIPE_PIPE] = ACTIONS(337), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(995), + [anon_sym_AMP] = ACTIONS(993), + }, + [198] = { + [sym__terminated_statement] = STATE(198), + [sym_for_statement] = STATE(545), + [sym_c_style_for_statement] = STATE(545), + [sym_while_statement] = STATE(545), + [sym_if_statement] = STATE(545), + [sym_case_statement] = STATE(545), + [sym_function_definition] = STATE(545), + [sym_subshell] = STATE(545), + [sym_pipeline] = STATE(545), + [sym_list] = STATE(545), + [sym_negated_command] = STATE(545), + [sym_test_command] = STATE(545), + [sym_declaration_command] = STATE(545), + [sym_unset_command] = STATE(545), + [sym_command] = STATE(545), + [sym_command_name] = STATE(64), + [sym_variable_assignment] = STATE(546), + [sym_subscript] = STATE(66), + [sym_file_redirect] = STATE(67), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(60), + [sym_simple_expansion] = STATE(60), + [sym_string_expansion] = STATE(60), + [sym_expansion] = STATE(60), + [sym_command_substitution] = STATE(60), + [sym_process_substitution] = STATE(60), + [aux_sym__statements_repeat1] = STATE(198), + [aux_sym_command_repeat1] = STATE(67), + [sym_file_descriptor] = ACTIONS(997), + [sym_variable_name] = ACTIONS(1000), + [anon_sym_for] = ACTIONS(1003), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1006), + [anon_sym_while] = ACTIONS(1009), + [anon_sym_if] = ACTIONS(1012), + [anon_sym_case] = ACTIONS(1015), + [anon_sym_function] = ACTIONS(1018), + [anon_sym_LPAREN] = ACTIONS(1021), + [anon_sym_BANG] = ACTIONS(1024), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1030), + [anon_sym_declare] = ACTIONS(1033), + [anon_sym_typeset] = ACTIONS(1033), + [anon_sym_export] = ACTIONS(1033), + [anon_sym_readonly] = ACTIONS(1033), + [anon_sym_local] = ACTIONS(1033), + [anon_sym_unset] = ACTIONS(1036), + [anon_sym_unsetenv] = ACTIONS(1036), + [anon_sym_LT] = ACTIONS(1039), + [anon_sym_GT] = ACTIONS(1039), + [anon_sym_GT_GT] = ACTIONS(1042), + [anon_sym_AMP_GT] = ACTIONS(1039), + [anon_sym_AMP_GT_GT] = ACTIONS(1042), + [anon_sym_LT_AMP] = ACTIONS(1042), + [anon_sym_GT_AMP] = ACTIONS(1042), + [sym__special_characters] = ACTIONS(1045), + [anon_sym_DQUOTE] = ACTIONS(1048), + [anon_sym_DOLLAR] = ACTIONS(1051), + [sym_raw_string] = ACTIONS(1054), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1057), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1060), + [anon_sym_BQUOTE] = ACTIONS(1063), + [anon_sym_LT_LPAREN] = ACTIONS(1066), + [anon_sym_GT_LPAREN] = ACTIONS(1066), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1069), + }, + [199] = { + [sym_file_redirect] = STATE(542), + [sym_heredoc_redirect] = STATE(542), + [sym_heredoc_body] = STATE(540), + [sym_herestring_redirect] = STATE(542), + [sym_concatenation] = STATE(547), + [sym_string] = STATE(192), + [sym_simple_expansion] = STATE(192), + [sym_string_expansion] = STATE(192), + [sym_expansion] = STATE(192), + [sym_command_substitution] = STATE(192), + [sym_process_substitution] = STATE(192), + [aux_sym_while_statement_repeat1] = STATE(542), + [aux_sym_command_repeat2] = STATE(547), + [sym__simple_heredoc_body] = ACTIONS(339), + [sym__heredoc_body_beginning] = ACTIONS(341), + [sym_file_descriptor] = ACTIONS(343), + [ts_builtin_sym_end] = ACTIONS(989), + [anon_sym_SEMI] = ACTIONS(991), + [anon_sym_PIPE] = ACTIONS(991), + [anon_sym_SEMI_SEMI] = ACTIONS(989), + [anon_sym_PIPE_AMP] = ACTIONS(989), + [anon_sym_AMP_AMP] = ACTIONS(989), + [anon_sym_PIPE_PIPE] = ACTIONS(989), + [anon_sym_EQ_TILDE] = ACTIONS(349), + [anon_sym_EQ_EQ] = ACTIONS(349), + [anon_sym_LT] = ACTIONS(351), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_GT_GT] = ACTIONS(353), + [anon_sym_AMP_GT] = ACTIONS(351), + [anon_sym_AMP_GT_GT] = ACTIONS(353), + [anon_sym_LT_AMP] = ACTIONS(353), + [anon_sym_GT_AMP] = ACTIONS(353), + [anon_sym_LT_LT] = ACTIONS(355), + [anon_sym_LT_LT_DASH] = ACTIONS(357), + [anon_sym_LT_LT_LT] = ACTIONS(359), + [sym__special_characters] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(363), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(365), + [anon_sym_LF] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(991), + }, + [200] = { + [sym_variable_assignment] = STATE(200), + [sym_subscript] = STATE(99), + [sym_file_redirect] = STATE(200), + [aux_sym_command_repeat1] = STATE(200), + [sym_file_descriptor] = ACTIONS(1072), + [sym_variable_name] = ACTIONS(1075), + [anon_sym_LT] = ACTIONS(1078), + [anon_sym_GT] = ACTIONS(1078), + [anon_sym_GT_GT] = ACTIONS(1081), + [anon_sym_AMP_GT] = ACTIONS(1078), + [anon_sym_AMP_GT_GT] = ACTIONS(1081), + [anon_sym_LT_AMP] = ACTIONS(1081), + [anon_sym_GT_AMP] = ACTIONS(1081), + [sym__special_characters] = ACTIONS(1084), + [anon_sym_DQUOTE] = ACTIONS(1084), + [anon_sym_DOLLAR] = ACTIONS(1086), + [sym_raw_string] = ACTIONS(1084), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1084), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1084), + [anon_sym_BQUOTE] = ACTIONS(1084), + [anon_sym_LT_LPAREN] = ACTIONS(1084), + [anon_sym_GT_LPAREN] = ACTIONS(1084), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1084), + }, + [201] = { + [aux_sym_concatenation_repeat1] = STATE(435), + [sym_file_descriptor] = ACTIONS(1088), + [sym__concat] = ACTIONS(775), + [sym_variable_name] = ACTIONS(1088), + [anon_sym_LT] = ACTIONS(1090), + [anon_sym_GT] = ACTIONS(1090), + [anon_sym_GT_GT] = ACTIONS(1088), + [anon_sym_AMP_GT] = ACTIONS(1090), + [anon_sym_AMP_GT_GT] = ACTIONS(1088), + [anon_sym_LT_AMP] = ACTIONS(1088), + [anon_sym_GT_AMP] = ACTIONS(1088), + [sym__special_characters] = ACTIONS(1088), + [anon_sym_DQUOTE] = ACTIONS(1088), + [anon_sym_DOLLAR] = ACTIONS(1090), + [sym_raw_string] = ACTIONS(1088), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1088), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1088), + [anon_sym_BQUOTE] = ACTIONS(1088), + [anon_sym_LT_LPAREN] = ACTIONS(1088), + [anon_sym_GT_LPAREN] = ACTIONS(1088), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1088), + }, + [202] = { + [aux_sym_concatenation_repeat1] = STATE(435), + [sym_file_descriptor] = ACTIONS(1092), + [sym__concat] = ACTIONS(775), + [sym_variable_name] = ACTIONS(1092), + [anon_sym_LT] = ACTIONS(1094), + [anon_sym_GT] = ACTIONS(1094), + [anon_sym_GT_GT] = ACTIONS(1092), + [anon_sym_AMP_GT] = ACTIONS(1094), + [anon_sym_AMP_GT_GT] = ACTIONS(1092), + [anon_sym_LT_AMP] = ACTIONS(1092), + [anon_sym_GT_AMP] = ACTIONS(1092), + [sym__special_characters] = ACTIONS(1092), + [anon_sym_DQUOTE] = ACTIONS(1092), + [anon_sym_DOLLAR] = ACTIONS(1094), + [sym_raw_string] = ACTIONS(1092), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1092), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1092), + [anon_sym_BQUOTE] = ACTIONS(1092), + [anon_sym_LT_LPAREN] = ACTIONS(1092), + [anon_sym_GT_LPAREN] = ACTIONS(1092), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1092), + }, + [203] = { + [sym_file_descriptor] = ACTIONS(1092), + [sym_variable_name] = ACTIONS(1092), + [anon_sym_LT] = ACTIONS(1094), + [anon_sym_GT] = ACTIONS(1094), + [anon_sym_GT_GT] = ACTIONS(1092), + [anon_sym_AMP_GT] = ACTIONS(1094), + [anon_sym_AMP_GT_GT] = ACTIONS(1092), + [anon_sym_LT_AMP] = ACTIONS(1092), + [anon_sym_GT_AMP] = ACTIONS(1092), + [sym__special_characters] = ACTIONS(1092), + [anon_sym_DQUOTE] = ACTIONS(1092), + [anon_sym_DOLLAR] = ACTIONS(1094), + [sym_raw_string] = ACTIONS(1092), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1092), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1092), + [anon_sym_BQUOTE] = ACTIONS(1092), + [anon_sym_LT_LPAREN] = ACTIONS(1092), + [anon_sym_GT_LPAREN] = ACTIONS(1092), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1092), + }, + [204] = { + [aux_sym_concatenation_repeat1] = STATE(550), + [sym__concat] = ACTIONS(1096), + [anon_sym_RBRACK] = ACTIONS(1098), + [sym_comment] = ACTIONS(55), + }, + [205] = { + [aux_sym_concatenation_repeat1] = STATE(550), + [sym__concat] = ACTIONS(1100), + [anon_sym_RBRACK] = ACTIONS(1102), + [sym_comment] = ACTIONS(55), + }, + [206] = { + [sym__concat] = ACTIONS(1104), + [anon_sym_RBRACK] = ACTIONS(1102), + [sym_comment] = ACTIONS(55), + }, + [207] = { + [sym_file_descriptor] = ACTIONS(1106), + [sym_variable_name] = ACTIONS(1106), + [ts_builtin_sym_end] = ACTIONS(1106), + [anon_sym_SEMI] = ACTIONS(1108), + [anon_sym_PIPE] = ACTIONS(1108), + [anon_sym_RPAREN] = ACTIONS(1106), + [anon_sym_SEMI_SEMI] = ACTIONS(1106), + [anon_sym_PIPE_AMP] = ACTIONS(1106), + [anon_sym_AMP_AMP] = ACTIONS(1106), + [anon_sym_PIPE_PIPE] = ACTIONS(1106), + [anon_sym_LT] = ACTIONS(1108), + [anon_sym_GT] = ACTIONS(1108), + [anon_sym_GT_GT] = ACTIONS(1106), + [anon_sym_AMP_GT] = ACTIONS(1108), + [anon_sym_AMP_GT_GT] = ACTIONS(1106), + [anon_sym_LT_AMP] = ACTIONS(1106), + [anon_sym_GT_AMP] = ACTIONS(1106), + [sym__special_characters] = ACTIONS(1106), + [anon_sym_DQUOTE] = ACTIONS(1106), + [anon_sym_DOLLAR] = ACTIONS(1108), + [sym_raw_string] = ACTIONS(1106), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1106), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1106), + [anon_sym_BQUOTE] = ACTIONS(1106), + [anon_sym_LT_LPAREN] = ACTIONS(1106), + [anon_sym_GT_LPAREN] = ACTIONS(1106), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1108), + [anon_sym_LF] = ACTIONS(1106), + [anon_sym_AMP] = ACTIONS(1108), + }, + [208] = { + [sym_concatenation] = STATE(563), + [sym_string] = STATE(558), + [sym_simple_expansion] = STATE(558), + [sym_string_expansion] = STATE(558), + [sym_expansion] = STATE(558), + [sym_command_substitution] = STATE(558), + [sym_process_substitution] = STATE(558), + [aux_sym_for_statement_repeat1] = STATE(563), + [anon_sym_RPAREN] = ACTIONS(1110), + [sym__special_characters] = ACTIONS(1112), + [anon_sym_DQUOTE] = ACTIONS(1114), + [anon_sym_DOLLAR] = ACTIONS(1116), + [sym_raw_string] = ACTIONS(1118), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1120), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1122), + [anon_sym_BQUOTE] = ACTIONS(1124), + [anon_sym_LT_LPAREN] = ACTIONS(1126), + [anon_sym_GT_LPAREN] = ACTIONS(1126), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1118), + }, + [209] = { + [aux_sym_concatenation_repeat1] = STATE(565), + [sym_file_descriptor] = ACTIONS(1128), + [sym__concat] = ACTIONS(1130), + [sym_variable_name] = ACTIONS(1128), + [ts_builtin_sym_end] = ACTIONS(1128), + [anon_sym_SEMI] = ACTIONS(1132), + [anon_sym_PIPE] = ACTIONS(1132), + [anon_sym_SEMI_SEMI] = ACTIONS(1128), + [anon_sym_PIPE_AMP] = ACTIONS(1128), + [anon_sym_AMP_AMP] = ACTIONS(1128), + [anon_sym_PIPE_PIPE] = ACTIONS(1128), + [anon_sym_LT] = ACTIONS(1132), + [anon_sym_GT] = ACTIONS(1132), + [anon_sym_GT_GT] = ACTIONS(1128), + [anon_sym_AMP_GT] = ACTIONS(1132), + [anon_sym_AMP_GT_GT] = ACTIONS(1128), + [anon_sym_LT_AMP] = ACTIONS(1128), + [anon_sym_GT_AMP] = ACTIONS(1128), + [sym__special_characters] = ACTIONS(1128), + [anon_sym_DQUOTE] = ACTIONS(1128), + [anon_sym_DOLLAR] = ACTIONS(1132), + [sym_raw_string] = ACTIONS(1128), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1128), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1128), + [anon_sym_BQUOTE] = ACTIONS(1128), + [anon_sym_LT_LPAREN] = ACTIONS(1128), + [anon_sym_GT_LPAREN] = ACTIONS(1128), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1132), + [anon_sym_LF] = ACTIONS(1128), + [anon_sym_AMP] = ACTIONS(1132), + }, + [210] = { + [sym_simple_expansion] = STATE(148), + [sym_expansion] = STATE(148), + [sym_command_substitution] = STATE(148), + [aux_sym_string_repeat1] = STATE(568), + [anon_sym_DQUOTE] = ACTIONS(1134), + [anon_sym_DOLLAR] = ACTIONS(1136), + [sym__string_content] = ACTIONS(273), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(277), + [anon_sym_BQUOTE] = ACTIONS(279), + [sym_comment] = ACTIONS(281), + }, + [211] = { + [sym_string] = STATE(570), + [anon_sym_DASH] = ACTIONS(1138), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(1138), + [sym_raw_string] = ACTIONS(1140), + [anon_sym_POUND] = ACTIONS(1138), + [sym_comment] = ACTIONS(281), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1142), + [anon_sym_STAR] = ACTIONS(1144), + [anon_sym_AT] = ACTIONS(1144), + [anon_sym_QMARK] = ACTIONS(1144), + [anon_sym_0] = ACTIONS(1142), + [anon_sym__] = ACTIONS(1142), + }, + [212] = { + [aux_sym_concatenation_repeat1] = STATE(565), + [sym_file_descriptor] = ACTIONS(1106), + [sym__concat] = ACTIONS(1130), + [sym_variable_name] = ACTIONS(1106), + [ts_builtin_sym_end] = ACTIONS(1106), + [anon_sym_SEMI] = ACTIONS(1108), + [anon_sym_PIPE] = ACTIONS(1108), + [anon_sym_SEMI_SEMI] = ACTIONS(1106), + [anon_sym_PIPE_AMP] = ACTIONS(1106), + [anon_sym_AMP_AMP] = ACTIONS(1106), + [anon_sym_PIPE_PIPE] = ACTIONS(1106), + [anon_sym_LT] = ACTIONS(1108), + [anon_sym_GT] = ACTIONS(1108), + [anon_sym_GT_GT] = ACTIONS(1106), + [anon_sym_AMP_GT] = ACTIONS(1108), + [anon_sym_AMP_GT_GT] = ACTIONS(1106), + [anon_sym_LT_AMP] = ACTIONS(1106), + [anon_sym_GT_AMP] = ACTIONS(1106), + [sym__special_characters] = ACTIONS(1106), + [anon_sym_DQUOTE] = ACTIONS(1106), + [anon_sym_DOLLAR] = ACTIONS(1108), + [sym_raw_string] = ACTIONS(1106), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1106), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1106), + [anon_sym_BQUOTE] = ACTIONS(1106), + [anon_sym_LT_LPAREN] = ACTIONS(1106), + [anon_sym_GT_LPAREN] = ACTIONS(1106), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1108), + [anon_sym_LF] = ACTIONS(1106), + [anon_sym_AMP] = ACTIONS(1108), + }, + [213] = { + [sym_subscript] = STATE(575), + [sym_variable_name] = ACTIONS(1146), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_DASH] = ACTIONS(1150), + [anon_sym_DOLLAR] = ACTIONS(1150), + [anon_sym_POUND] = ACTIONS(1148), + [sym_comment] = ACTIONS(281), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1152), + [anon_sym_STAR] = ACTIONS(1154), + [anon_sym_AT] = ACTIONS(1154), + [anon_sym_QMARK] = ACTIONS(1154), + [anon_sym_0] = ACTIONS(1152), + [anon_sym__] = ACTIONS(1152), + }, + [214] = { + [sym__terminated_statement] = STATE(578), + [sym_for_statement] = STATE(576), + [sym_c_style_for_statement] = STATE(576), + [sym_while_statement] = STATE(576), + [sym_if_statement] = STATE(576), + [sym_case_statement] = STATE(576), + [sym_function_definition] = STATE(576), + [sym_subshell] = STATE(576), + [sym_pipeline] = STATE(576), + [sym_list] = STATE(576), + [sym_negated_command] = STATE(576), + [sym_test_command] = STATE(576), + [sym_declaration_command] = STATE(576), + [sym_unset_command] = STATE(576), + [sym_command] = STATE(576), + [sym_command_name] = STATE(92), + [sym_variable_assignment] = STATE(577), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(96), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), + [aux_sym__statements_repeat1] = STATE(578), + [aux_sym_command_repeat1] = STATE(96), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(137), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(149), + [anon_sym_declare] = ACTIONS(151), + [anon_sym_typeset] = ACTIONS(151), + [anon_sym_export] = ACTIONS(151), + [anon_sym_readonly] = ACTIONS(151), + [anon_sym_local] = ACTIONS(151), + [anon_sym_unset] = ACTIONS(153), + [anon_sym_unsetenv] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(159), + }, + [215] = { + [sym__terminated_statement] = STATE(581), + [sym_for_statement] = STATE(579), + [sym_c_style_for_statement] = STATE(579), + [sym_while_statement] = STATE(579), + [sym_if_statement] = STATE(579), + [sym_case_statement] = STATE(579), + [sym_function_definition] = STATE(579), + [sym_subshell] = STATE(579), + [sym_pipeline] = STATE(579), + [sym_list] = STATE(579), + [sym_negated_command] = STATE(579), + [sym_test_command] = STATE(579), + [sym_declaration_command] = STATE(579), + [sym_unset_command] = STATE(579), + [sym_command] = STATE(579), + [sym_command_name] = STATE(173), + [sym_variable_assignment] = STATE(580), + [sym_subscript] = STATE(66), + [sym_file_redirect] = STATE(176), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(60), + [sym_simple_expansion] = STATE(60), + [sym_string_expansion] = STATE(60), + [sym_expansion] = STATE(60), + [sym_command_substitution] = STATE(60), + [sym_process_substitution] = STATE(60), + [aux_sym__statements_repeat1] = STATE(581), + [aux_sym_command_repeat1] = STATE(176), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(95), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(305), + [anon_sym_while] = ACTIONS(307), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(311), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(315), + [anon_sym_declare] = ACTIONS(317), + [anon_sym_typeset] = ACTIONS(317), + [anon_sym_export] = ACTIONS(317), + [anon_sym_readonly] = ACTIONS(317), + [anon_sym_local] = ACTIONS(317), + [anon_sym_unset] = ACTIONS(319), + [anon_sym_unsetenv] = ACTIONS(319), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(115), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(321), + }, + [216] = { + [sym__terminated_statement] = STATE(584), + [sym_for_statement] = STATE(582), + [sym_c_style_for_statement] = STATE(582), + [sym_while_statement] = STATE(582), + [sym_if_statement] = STATE(582), + [sym_case_statement] = STATE(582), + [sym_function_definition] = STATE(582), + [sym_subshell] = STATE(582), + [sym_pipeline] = STATE(582), + [sym_list] = STATE(582), + [sym_negated_command] = STATE(582), + [sym_test_command] = STATE(582), + [sym_declaration_command] = STATE(582), + [sym_unset_command] = STATE(582), + [sym_command] = STATE(582), + [sym_command_name] = STATE(92), + [sym_variable_assignment] = STATE(583), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(96), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), + [aux_sym__statements_repeat1] = STATE(584), + [aux_sym_command_repeat1] = STATE(96), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(137), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(149), + [anon_sym_declare] = ACTIONS(151), + [anon_sym_typeset] = ACTIONS(151), + [anon_sym_export] = ACTIONS(151), + [anon_sym_readonly] = ACTIONS(151), + [anon_sym_local] = ACTIONS(151), + [anon_sym_unset] = ACTIONS(153), + [anon_sym_unsetenv] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(159), + }, + [217] = { + [sym__expression] = STATE(586), + [sym_binary_expression] = STATE(586), + [sym_unary_expression] = STATE(586), + [sym_postfix_expression] = STATE(586), + [sym_parenthesized_expression] = STATE(586), + [sym_concatenation] = STATE(586), + [sym_string] = STATE(223), + [sym_simple_expansion] = STATE(223), + [sym_string_expansion] = STATE(223), + [sym_expansion] = STATE(223), + [sym_command_substitution] = STATE(223), + [sym_process_substitution] = STATE(223), + [anon_sym_SEMI] = ACTIONS(1156), + [anon_sym_SEMI_SEMI] = ACTIONS(1158), + [anon_sym_LPAREN] = ACTIONS(405), + [anon_sym_BANG] = ACTIONS(407), + [sym__special_characters] = ACTIONS(409), + [anon_sym_DQUOTE] = ACTIONS(411), + [anon_sym_DOLLAR] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), + [anon_sym_BQUOTE] = ACTIONS(421), + [anon_sym_LT_LPAREN] = ACTIONS(423), + [anon_sym_GT_LPAREN] = ACTIONS(423), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(425), + [sym_test_operator] = ACTIONS(427), + [anon_sym_LF] = ACTIONS(1158), + [anon_sym_AMP] = ACTIONS(1158), + }, + [218] = { + [sym__expression] = STATE(587), + [sym_binary_expression] = STATE(587), + [sym_unary_expression] = STATE(587), + [sym_postfix_expression] = STATE(587), + [sym_parenthesized_expression] = STATE(587), + [sym_concatenation] = STATE(587), + [sym_string] = STATE(236), + [sym_simple_expansion] = STATE(236), + [sym_string_expansion] = STATE(236), + [sym_expansion] = STATE(236), + [sym_command_substitution] = STATE(236), + [sym_process_substitution] = STATE(236), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_BANG] = ACTIONS(437), + [sym__special_characters] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(441), + [anon_sym_DOLLAR] = ACTIONS(443), + [sym_raw_string] = ACTIONS(445), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(447), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(449), + [anon_sym_BQUOTE] = ACTIONS(451), + [anon_sym_LT_LPAREN] = ACTIONS(453), + [anon_sym_GT_LPAREN] = ACTIONS(453), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(455), + [sym_test_operator] = ACTIONS(457), + }, + [219] = { + [sym__expression] = STATE(588), + [sym_binary_expression] = STATE(588), + [sym_unary_expression] = STATE(588), + [sym_postfix_expression] = STATE(588), + [sym_parenthesized_expression] = STATE(588), + [sym_concatenation] = STATE(588), + [sym_string] = STATE(223), + [sym_simple_expansion] = STATE(223), + [sym_string_expansion] = STATE(223), + [sym_expansion] = STATE(223), + [sym_command_substitution] = STATE(223), + [sym_process_substitution] = STATE(223), + [anon_sym_LPAREN] = ACTIONS(405), + [anon_sym_BANG] = ACTIONS(407), + [sym__special_characters] = ACTIONS(409), + [anon_sym_DQUOTE] = ACTIONS(411), + [anon_sym_DOLLAR] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), + [anon_sym_BQUOTE] = ACTIONS(421), + [anon_sym_LT_LPAREN] = ACTIONS(423), + [anon_sym_GT_LPAREN] = ACTIONS(423), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(425), + [sym_test_operator] = ACTIONS(427), + }, + [220] = { + [aux_sym_concatenation_repeat1] = STATE(590), + [sym__concat] = ACTIONS(1160), + [anon_sym_SEMI] = ACTIONS(463), + [anon_sym_SEMI_SEMI] = ACTIONS(461), + [anon_sym_AMP_AMP] = ACTIONS(461), + [anon_sym_PIPE_PIPE] = ACTIONS(461), + [anon_sym_EQ_TILDE] = ACTIONS(461), + [anon_sym_EQ_EQ] = ACTIONS(461), + [anon_sym_EQ] = ACTIONS(463), + [anon_sym_PLUS_EQ] = ACTIONS(461), + [anon_sym_LT] = ACTIONS(463), + [anon_sym_GT] = ACTIONS(463), + [anon_sym_BANG_EQ] = ACTIONS(461), + [anon_sym_PLUS] = ACTIONS(463), + [anon_sym_DASH] = ACTIONS(463), + [anon_sym_DASH_EQ] = ACTIONS(461), + [anon_sym_LT_EQ] = ACTIONS(461), + [anon_sym_GT_EQ] = ACTIONS(461), + [anon_sym_PLUS_PLUS] = ACTIONS(461), + [anon_sym_DASH_DASH] = ACTIONS(461), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(461), + [anon_sym_LF] = ACTIONS(461), + [anon_sym_AMP] = ACTIONS(463), + }, + [221] = { + [sym_simple_expansion] = STATE(148), + [sym_expansion] = STATE(148), + [sym_command_substitution] = STATE(148), + [aux_sym_string_repeat1] = STATE(593), + [anon_sym_DQUOTE] = ACTIONS(1162), + [anon_sym_DOLLAR] = ACTIONS(1164), + [sym__string_content] = ACTIONS(273), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(277), + [anon_sym_BQUOTE] = ACTIONS(279), + [sym_comment] = ACTIONS(281), + }, + [222] = { + [sym_string] = STATE(595), + [anon_sym_DASH] = ACTIONS(1166), + [anon_sym_DQUOTE] = ACTIONS(411), + [anon_sym_DOLLAR] = ACTIONS(1166), + [sym_raw_string] = ACTIONS(1168), + [anon_sym_POUND] = ACTIONS(1166), + [sym_comment] = ACTIONS(281), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1170), + [anon_sym_STAR] = ACTIONS(1172), + [anon_sym_AT] = ACTIONS(1172), + [anon_sym_QMARK] = ACTIONS(1172), + [anon_sym_0] = ACTIONS(1170), + [anon_sym__] = ACTIONS(1170), + }, + [223] = { + [aux_sym_concatenation_repeat1] = STATE(590), + [sym__concat] = ACTIONS(1160), + [anon_sym_SEMI] = ACTIONS(479), + [anon_sym_SEMI_SEMI] = ACTIONS(477), + [anon_sym_AMP_AMP] = ACTIONS(477), + [anon_sym_PIPE_PIPE] = ACTIONS(477), + [anon_sym_EQ_TILDE] = ACTIONS(477), + [anon_sym_EQ_EQ] = ACTIONS(477), + [anon_sym_EQ] = ACTIONS(479), + [anon_sym_PLUS_EQ] = ACTIONS(477), + [anon_sym_LT] = ACTIONS(479), + [anon_sym_GT] = ACTIONS(479), + [anon_sym_BANG_EQ] = ACTIONS(477), + [anon_sym_PLUS] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(479), + [anon_sym_DASH_EQ] = ACTIONS(477), + [anon_sym_LT_EQ] = ACTIONS(477), + [anon_sym_GT_EQ] = ACTIONS(477), + [anon_sym_PLUS_PLUS] = ACTIONS(477), + [anon_sym_DASH_DASH] = ACTIONS(477), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(477), + [anon_sym_LF] = ACTIONS(477), + [anon_sym_AMP] = ACTIONS(479), + }, + [224] = { + [sym_subscript] = STATE(600), + [sym_variable_name] = ACTIONS(1174), + [anon_sym_BANG] = ACTIONS(1176), + [anon_sym_DASH] = ACTIONS(1178), + [anon_sym_DOLLAR] = ACTIONS(1178), + [anon_sym_POUND] = ACTIONS(1176), + [sym_comment] = ACTIONS(281), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1180), + [anon_sym_STAR] = ACTIONS(1182), + [anon_sym_AT] = ACTIONS(1182), + [anon_sym_QMARK] = ACTIONS(1182), + [anon_sym_0] = ACTIONS(1180), + [anon_sym__] = ACTIONS(1180), + }, + [225] = { + [sym__terminated_statement] = STATE(603), + [sym_for_statement] = STATE(601), + [sym_c_style_for_statement] = STATE(601), + [sym_while_statement] = STATE(601), + [sym_if_statement] = STATE(601), + [sym_case_statement] = STATE(601), + [sym_function_definition] = STATE(601), + [sym_subshell] = STATE(601), + [sym_pipeline] = STATE(601), + [sym_list] = STATE(601), + [sym_negated_command] = STATE(601), + [sym_test_command] = STATE(601), + [sym_declaration_command] = STATE(601), + [sym_unset_command] = STATE(601), + [sym_command] = STATE(601), + [sym_command_name] = STATE(92), + [sym_variable_assignment] = STATE(602), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(96), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), + [aux_sym__statements_repeat1] = STATE(603), + [aux_sym_command_repeat1] = STATE(96), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(137), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(149), + [anon_sym_declare] = ACTIONS(151), + [anon_sym_typeset] = ACTIONS(151), + [anon_sym_export] = ACTIONS(151), + [anon_sym_readonly] = ACTIONS(151), + [anon_sym_local] = ACTIONS(151), + [anon_sym_unset] = ACTIONS(153), + [anon_sym_unsetenv] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(159), + }, + [226] = { + [sym__terminated_statement] = STATE(606), + [sym_for_statement] = STATE(604), + [sym_c_style_for_statement] = STATE(604), + [sym_while_statement] = STATE(604), + [sym_if_statement] = STATE(604), + [sym_case_statement] = STATE(604), + [sym_function_definition] = STATE(604), + [sym_subshell] = STATE(604), + [sym_pipeline] = STATE(604), + [sym_list] = STATE(604), + [sym_negated_command] = STATE(604), + [sym_test_command] = STATE(604), + [sym_declaration_command] = STATE(604), + [sym_unset_command] = STATE(604), + [sym_command] = STATE(604), + [sym_command_name] = STATE(173), + [sym_variable_assignment] = STATE(605), + [sym_subscript] = STATE(66), + [sym_file_redirect] = STATE(176), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(60), + [sym_simple_expansion] = STATE(60), + [sym_string_expansion] = STATE(60), + [sym_expansion] = STATE(60), + [sym_command_substitution] = STATE(60), + [sym_process_substitution] = STATE(60), + [aux_sym__statements_repeat1] = STATE(606), + [aux_sym_command_repeat1] = STATE(176), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(95), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(305), + [anon_sym_while] = ACTIONS(307), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(311), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(315), + [anon_sym_declare] = ACTIONS(317), + [anon_sym_typeset] = ACTIONS(317), + [anon_sym_export] = ACTIONS(317), + [anon_sym_readonly] = ACTIONS(317), + [anon_sym_local] = ACTIONS(317), + [anon_sym_unset] = ACTIONS(319), + [anon_sym_unsetenv] = ACTIONS(319), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(115), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(321), + }, + [227] = { + [sym__terminated_statement] = STATE(609), + [sym_for_statement] = STATE(607), + [sym_c_style_for_statement] = STATE(607), + [sym_while_statement] = STATE(607), + [sym_if_statement] = STATE(607), + [sym_case_statement] = STATE(607), + [sym_function_definition] = STATE(607), + [sym_subshell] = STATE(607), + [sym_pipeline] = STATE(607), + [sym_list] = STATE(607), + [sym_negated_command] = STATE(607), + [sym_test_command] = STATE(607), + [sym_declaration_command] = STATE(607), + [sym_unset_command] = STATE(607), + [sym_command] = STATE(607), + [sym_command_name] = STATE(92), + [sym_variable_assignment] = STATE(608), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(96), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), + [aux_sym__statements_repeat1] = STATE(609), + [aux_sym_command_repeat1] = STATE(96), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(137), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(149), + [anon_sym_declare] = ACTIONS(151), + [anon_sym_typeset] = ACTIONS(151), + [anon_sym_export] = ACTIONS(151), + [anon_sym_readonly] = ACTIONS(151), + [anon_sym_local] = ACTIONS(151), + [anon_sym_unset] = ACTIONS(153), + [anon_sym_unsetenv] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(159), + }, + [228] = { + [anon_sym_SEMI] = ACTIONS(1184), + [anon_sym_SEMI_SEMI] = ACTIONS(1186), + [anon_sym_AMP_AMP] = ACTIONS(1188), + [anon_sym_PIPE_PIPE] = ACTIONS(1188), + [anon_sym_EQ_TILDE] = ACTIONS(1190), + [anon_sym_EQ_EQ] = ACTIONS(1190), + [anon_sym_EQ] = ACTIONS(1192), + [anon_sym_PLUS_EQ] = ACTIONS(1188), + [anon_sym_LT] = ACTIONS(1192), + [anon_sym_GT] = ACTIONS(1192), + [anon_sym_BANG_EQ] = ACTIONS(1188), + [anon_sym_PLUS] = ACTIONS(1192), + [anon_sym_DASH] = ACTIONS(1192), + [anon_sym_DASH_EQ] = ACTIONS(1188), + [anon_sym_LT_EQ] = ACTIONS(1188), + [anon_sym_GT_EQ] = ACTIONS(1188), + [anon_sym_PLUS_PLUS] = ACTIONS(1194), + [anon_sym_DASH_DASH] = ACTIONS(1194), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(1188), + [anon_sym_LF] = ACTIONS(1186), + [anon_sym_AMP] = ACTIONS(1184), + }, + [229] = { + [sym_concatenation] = STATE(622), + [sym_string] = STATE(617), + [sym_simple_expansion] = STATE(617), + [sym_string_expansion] = STATE(617), + [sym_expansion] = STATE(617), + [sym_command_substitution] = STATE(617), + [sym_process_substitution] = STATE(617), + [aux_sym_for_statement_repeat1] = STATE(622), + [sym__special_characters] = ACTIONS(1196), + [anon_sym_DQUOTE] = ACTIONS(1198), + [anon_sym_DOLLAR] = ACTIONS(1200), + [sym_raw_string] = ACTIONS(1202), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1204), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1206), + [anon_sym_BQUOTE] = ACTIONS(1208), + [anon_sym_LT_LPAREN] = ACTIONS(1210), + [anon_sym_GT_LPAREN] = ACTIONS(1210), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1202), + }, + [230] = { + [sym_do_group] = STATE(624), + [anon_sym_do] = ACTIONS(1212), + [sym_comment] = ACTIONS(55), + }, + [231] = { + [sym__expression] = STATE(625), + [sym_binary_expression] = STATE(625), + [sym_unary_expression] = STATE(625), + [sym_postfix_expression] = STATE(625), + [sym_parenthesized_expression] = STATE(625), + [sym_concatenation] = STATE(625), + [sym_string] = STATE(236), + [sym_simple_expansion] = STATE(236), + [sym_string_expansion] = STATE(236), + [sym_expansion] = STATE(236), + [sym_command_substitution] = STATE(236), + [sym_process_substitution] = STATE(236), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_BANG] = ACTIONS(437), + [sym__special_characters] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(441), + [anon_sym_DOLLAR] = ACTIONS(443), + [sym_raw_string] = ACTIONS(445), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(447), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(449), + [anon_sym_BQUOTE] = ACTIONS(451), + [anon_sym_LT_LPAREN] = ACTIONS(453), + [anon_sym_GT_LPAREN] = ACTIONS(453), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(455), + [sym_test_operator] = ACTIONS(457), + }, + [232] = { + [sym__expression] = STATE(626), + [sym_binary_expression] = STATE(626), + [sym_unary_expression] = STATE(626), + [sym_postfix_expression] = STATE(626), + [sym_parenthesized_expression] = STATE(626), + [sym_concatenation] = STATE(626), + [sym_string] = STATE(236), + [sym_simple_expansion] = STATE(236), + [sym_string_expansion] = STATE(236), + [sym_expansion] = STATE(236), + [sym_command_substitution] = STATE(236), + [sym_process_substitution] = STATE(236), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_BANG] = ACTIONS(437), + [sym__special_characters] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(441), + [anon_sym_DOLLAR] = ACTIONS(443), + [sym_raw_string] = ACTIONS(445), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(447), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(449), + [anon_sym_BQUOTE] = ACTIONS(451), + [anon_sym_LT_LPAREN] = ACTIONS(453), + [anon_sym_GT_LPAREN] = ACTIONS(453), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(455), + [sym_test_operator] = ACTIONS(457), + }, + [233] = { + [aux_sym_concatenation_repeat1] = STATE(628), + [sym__concat] = ACTIONS(1214), + [anon_sym_RPAREN] = ACTIONS(461), + [anon_sym_AMP_AMP] = ACTIONS(461), + [anon_sym_PIPE_PIPE] = ACTIONS(461), + [anon_sym_EQ_TILDE] = ACTIONS(461), + [anon_sym_EQ_EQ] = ACTIONS(461), + [anon_sym_EQ] = ACTIONS(463), + [anon_sym_PLUS_EQ] = ACTIONS(461), + [anon_sym_LT] = ACTIONS(463), + [anon_sym_GT] = ACTIONS(463), + [anon_sym_BANG_EQ] = ACTIONS(461), + [anon_sym_PLUS] = ACTIONS(463), + [anon_sym_DASH] = ACTIONS(463), + [anon_sym_DASH_EQ] = ACTIONS(461), + [anon_sym_LT_EQ] = ACTIONS(461), + [anon_sym_GT_EQ] = ACTIONS(461), + [anon_sym_PLUS_PLUS] = ACTIONS(461), + [anon_sym_DASH_DASH] = ACTIONS(461), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(461), + }, + [234] = { + [sym_simple_expansion] = STATE(148), + [sym_expansion] = STATE(148), + [sym_command_substitution] = STATE(148), + [aux_sym_string_repeat1] = STATE(631), + [anon_sym_DQUOTE] = ACTIONS(1216), + [anon_sym_DOLLAR] = ACTIONS(1218), + [sym__string_content] = ACTIONS(273), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(277), + [anon_sym_BQUOTE] = ACTIONS(279), + [sym_comment] = ACTIONS(281), + }, + [235] = { + [sym_string] = STATE(633), + [anon_sym_DASH] = ACTIONS(1220), + [anon_sym_DQUOTE] = ACTIONS(441), + [anon_sym_DOLLAR] = ACTIONS(1220), + [sym_raw_string] = ACTIONS(1222), + [anon_sym_POUND] = ACTIONS(1220), + [sym_comment] = ACTIONS(281), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1224), + [anon_sym_STAR] = ACTIONS(1226), + [anon_sym_AT] = ACTIONS(1226), + [anon_sym_QMARK] = ACTIONS(1226), + [anon_sym_0] = ACTIONS(1224), + [anon_sym__] = ACTIONS(1224), + }, + [236] = { + [aux_sym_concatenation_repeat1] = STATE(628), + [sym__concat] = ACTIONS(1214), + [anon_sym_RPAREN] = ACTIONS(477), + [anon_sym_AMP_AMP] = ACTIONS(477), + [anon_sym_PIPE_PIPE] = ACTIONS(477), + [anon_sym_EQ_TILDE] = ACTIONS(477), + [anon_sym_EQ_EQ] = ACTIONS(477), + [anon_sym_EQ] = ACTIONS(479), + [anon_sym_PLUS_EQ] = ACTIONS(477), + [anon_sym_LT] = ACTIONS(479), + [anon_sym_GT] = ACTIONS(479), + [anon_sym_BANG_EQ] = ACTIONS(477), + [anon_sym_PLUS] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(479), + [anon_sym_DASH_EQ] = ACTIONS(477), + [anon_sym_LT_EQ] = ACTIONS(477), + [anon_sym_GT_EQ] = ACTIONS(477), + [anon_sym_PLUS_PLUS] = ACTIONS(477), + [anon_sym_DASH_DASH] = ACTIONS(477), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(477), + }, + [237] = { + [sym_subscript] = STATE(638), + [sym_variable_name] = ACTIONS(1228), + [anon_sym_BANG] = ACTIONS(1230), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_DOLLAR] = ACTIONS(1232), + [anon_sym_POUND] = ACTIONS(1230), + [sym_comment] = ACTIONS(281), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1234), + [anon_sym_STAR] = ACTIONS(1236), + [anon_sym_AT] = ACTIONS(1236), + [anon_sym_QMARK] = ACTIONS(1236), + [anon_sym_0] = ACTIONS(1234), + [anon_sym__] = ACTIONS(1234), + }, + [238] = { + [sym__terminated_statement] = STATE(641), + [sym_for_statement] = STATE(639), + [sym_c_style_for_statement] = STATE(639), + [sym_while_statement] = STATE(639), + [sym_if_statement] = STATE(639), + [sym_case_statement] = STATE(639), + [sym_function_definition] = STATE(639), + [sym_subshell] = STATE(639), + [sym_pipeline] = STATE(639), + [sym_list] = STATE(639), + [sym_negated_command] = STATE(639), + [sym_test_command] = STATE(639), + [sym_declaration_command] = STATE(639), + [sym_unset_command] = STATE(639), + [sym_command] = STATE(639), + [sym_command_name] = STATE(92), + [sym_variable_assignment] = STATE(640), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(96), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), + [aux_sym__statements_repeat1] = STATE(641), + [aux_sym_command_repeat1] = STATE(96), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(137), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(149), + [anon_sym_declare] = ACTIONS(151), + [anon_sym_typeset] = ACTIONS(151), + [anon_sym_export] = ACTIONS(151), + [anon_sym_readonly] = ACTIONS(151), + [anon_sym_local] = ACTIONS(151), + [anon_sym_unset] = ACTIONS(153), + [anon_sym_unsetenv] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(159), + }, + [239] = { + [sym__terminated_statement] = STATE(644), + [sym_for_statement] = STATE(642), + [sym_c_style_for_statement] = STATE(642), + [sym_while_statement] = STATE(642), + [sym_if_statement] = STATE(642), + [sym_case_statement] = STATE(642), + [sym_function_definition] = STATE(642), + [sym_subshell] = STATE(642), + [sym_pipeline] = STATE(642), + [sym_list] = STATE(642), + [sym_negated_command] = STATE(642), + [sym_test_command] = STATE(642), + [sym_declaration_command] = STATE(642), + [sym_unset_command] = STATE(642), + [sym_command] = STATE(642), + [sym_command_name] = STATE(173), + [sym_variable_assignment] = STATE(643), + [sym_subscript] = STATE(66), + [sym_file_redirect] = STATE(176), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(60), + [sym_simple_expansion] = STATE(60), + [sym_string_expansion] = STATE(60), + [sym_expansion] = STATE(60), + [sym_command_substitution] = STATE(60), + [sym_process_substitution] = STATE(60), + [aux_sym__statements_repeat1] = STATE(644), + [aux_sym_command_repeat1] = STATE(176), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(95), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(305), + [anon_sym_while] = ACTIONS(307), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(311), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(315), + [anon_sym_declare] = ACTIONS(317), + [anon_sym_typeset] = ACTIONS(317), + [anon_sym_export] = ACTIONS(317), + [anon_sym_readonly] = ACTIONS(317), + [anon_sym_local] = ACTIONS(317), + [anon_sym_unset] = ACTIONS(319), + [anon_sym_unsetenv] = ACTIONS(319), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(115), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(321), + }, + [240] = { + [sym__terminated_statement] = STATE(647), + [sym_for_statement] = STATE(645), + [sym_c_style_for_statement] = STATE(645), + [sym_while_statement] = STATE(645), + [sym_if_statement] = STATE(645), + [sym_case_statement] = STATE(645), + [sym_function_definition] = STATE(645), + [sym_subshell] = STATE(645), + [sym_pipeline] = STATE(645), + [sym_list] = STATE(645), + [sym_negated_command] = STATE(645), + [sym_test_command] = STATE(645), + [sym_declaration_command] = STATE(645), + [sym_unset_command] = STATE(645), + [sym_command] = STATE(645), + [sym_command_name] = STATE(92), + [sym_variable_assignment] = STATE(646), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(96), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), + [aux_sym__statements_repeat1] = STATE(647), + [aux_sym_command_repeat1] = STATE(96), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(137), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(149), + [anon_sym_declare] = ACTIONS(151), + [anon_sym_typeset] = ACTIONS(151), + [anon_sym_export] = ACTIONS(151), + [anon_sym_readonly] = ACTIONS(151), + [anon_sym_local] = ACTIONS(151), + [anon_sym_unset] = ACTIONS(153), + [anon_sym_unsetenv] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(159), + }, + [241] = { + [anon_sym_RPAREN] = ACTIONS(1238), + [anon_sym_AMP_AMP] = ACTIONS(1240), + [anon_sym_PIPE_PIPE] = ACTIONS(1240), + [anon_sym_EQ_TILDE] = ACTIONS(1242), + [anon_sym_EQ_EQ] = ACTIONS(1242), + [anon_sym_EQ] = ACTIONS(1244), + [anon_sym_PLUS_EQ] = ACTIONS(1240), + [anon_sym_LT] = ACTIONS(1244), + [anon_sym_GT] = ACTIONS(1244), + [anon_sym_BANG_EQ] = ACTIONS(1240), + [anon_sym_PLUS] = ACTIONS(1244), + [anon_sym_DASH] = ACTIONS(1244), + [anon_sym_DASH_EQ] = ACTIONS(1240), + [anon_sym_LT_EQ] = ACTIONS(1240), + [anon_sym_GT_EQ] = ACTIONS(1240), + [anon_sym_PLUS_PLUS] = ACTIONS(1246), + [anon_sym_DASH_DASH] = ACTIONS(1246), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(1240), + }, + [242] = { + [anon_sym_RPAREN_RPAREN] = ACTIONS(1248), + [anon_sym_AMP_AMP] = ACTIONS(493), + [anon_sym_PIPE_PIPE] = ACTIONS(493), + [anon_sym_EQ_TILDE] = ACTIONS(495), + [anon_sym_EQ_EQ] = ACTIONS(495), + [anon_sym_EQ] = ACTIONS(497), + [anon_sym_PLUS_EQ] = ACTIONS(493), + [anon_sym_LT] = ACTIONS(497), + [anon_sym_GT] = ACTIONS(497), + [anon_sym_BANG_EQ] = ACTIONS(493), + [anon_sym_PLUS] = ACTIONS(497), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_DASH_EQ] = ACTIONS(493), + [anon_sym_LT_EQ] = ACTIONS(493), + [anon_sym_GT_EQ] = ACTIONS(493), + [anon_sym_PLUS_PLUS] = ACTIONS(499), + [anon_sym_DASH_DASH] = ACTIONS(499), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(493), + }, + [243] = { + [sym_string] = STATE(652), + [sym_simple_expansion] = STATE(652), + [sym_string_expansion] = STATE(652), + [sym_expansion] = STATE(652), + [sym_command_substitution] = STATE(652), + [sym_process_substitution] = STATE(652), + [sym__special_characters] = ACTIONS(1250), + [anon_sym_DQUOTE] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(79), + [sym_raw_string] = ACTIONS(1250), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(83), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(85), + [anon_sym_BQUOTE] = ACTIONS(87), + [anon_sym_LT_LPAREN] = ACTIONS(89), + [anon_sym_GT_LPAREN] = ACTIONS(89), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1250), + }, + [244] = { + [aux_sym_concatenation_repeat1] = STATE(653), + [sym__concat] = ACTIONS(459), + [anon_sym_RPAREN_RPAREN] = ACTIONS(807), + [anon_sym_AMP_AMP] = ACTIONS(807), + [anon_sym_PIPE_PIPE] = ACTIONS(807), + [anon_sym_EQ_TILDE] = ACTIONS(807), + [anon_sym_EQ_EQ] = ACTIONS(807), + [anon_sym_EQ] = ACTIONS(809), + [anon_sym_PLUS_EQ] = ACTIONS(807), + [anon_sym_LT] = ACTIONS(809), + [anon_sym_GT] = ACTIONS(809), + [anon_sym_BANG_EQ] = ACTIONS(807), + [anon_sym_PLUS] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(809), + [anon_sym_DASH_EQ] = ACTIONS(807), + [anon_sym_LT_EQ] = ACTIONS(807), + [anon_sym_GT_EQ] = ACTIONS(807), + [anon_sym_PLUS_PLUS] = ACTIONS(807), + [anon_sym_DASH_DASH] = ACTIONS(807), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(807), + }, + [245] = { + [sym__concat] = ACTIONS(811), + [anon_sym_RPAREN_RPAREN] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(811), + [anon_sym_PIPE_PIPE] = ACTIONS(811), + [anon_sym_RBRACK_RBRACK] = ACTIONS(811), + [anon_sym_EQ_TILDE] = ACTIONS(811), + [anon_sym_EQ_EQ] = ACTIONS(811), + [anon_sym_EQ] = ACTIONS(813), + [anon_sym_PLUS_EQ] = ACTIONS(811), + [anon_sym_LT] = ACTIONS(813), + [anon_sym_GT] = ACTIONS(813), + [anon_sym_BANG_EQ] = ACTIONS(811), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_DASH_EQ] = ACTIONS(811), + [anon_sym_LT_EQ] = ACTIONS(811), + [anon_sym_GT_EQ] = ACTIONS(811), + [anon_sym_PLUS_PLUS] = ACTIONS(811), + [anon_sym_DASH_DASH] = ACTIONS(811), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(811), + }, + [246] = { + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_DQUOTE] = ACTIONS(1252), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym__string_content] = ACTIONS(821), + [anon_sym_POUND] = ACTIONS(815), + [sym_comment] = ACTIONS(281), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(823), + [anon_sym_STAR] = ACTIONS(825), + [anon_sym_AT] = ACTIONS(825), + [anon_sym_QMARK] = ACTIONS(825), + [anon_sym_0] = ACTIONS(823), + [anon_sym__] = ACTIONS(823), + }, + [247] = { + [sym_simple_expansion] = STATE(148), + [sym_expansion] = STATE(148), + [sym_command_substitution] = STATE(148), + [aux_sym_string_repeat1] = STATE(473), + [anon_sym_DQUOTE] = ACTIONS(1252), + [anon_sym_DOLLAR] = ACTIONS(1254), + [sym__string_content] = ACTIONS(273), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(277), + [anon_sym_BQUOTE] = ACTIONS(279), + [sym_comment] = ACTIONS(281), + }, + [248] = { + [sym__concat] = ACTIONS(845), + [anon_sym_RPAREN_RPAREN] = ACTIONS(845), + [anon_sym_AMP_AMP] = ACTIONS(845), + [anon_sym_PIPE_PIPE] = ACTIONS(845), + [anon_sym_RBRACK_RBRACK] = ACTIONS(845), + [anon_sym_EQ_TILDE] = ACTIONS(845), + [anon_sym_EQ_EQ] = ACTIONS(845), + [anon_sym_EQ] = ACTIONS(847), + [anon_sym_PLUS_EQ] = ACTIONS(845), + [anon_sym_LT] = ACTIONS(847), + [anon_sym_GT] = ACTIONS(847), + [anon_sym_BANG_EQ] = ACTIONS(845), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_DASH_EQ] = ACTIONS(845), + [anon_sym_LT_EQ] = ACTIONS(845), + [anon_sym_GT_EQ] = ACTIONS(845), + [anon_sym_PLUS_PLUS] = ACTIONS(845), + [anon_sym_DASH_DASH] = ACTIONS(845), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(845), + }, + [249] = { + [sym__concat] = ACTIONS(849), + [anon_sym_RPAREN_RPAREN] = ACTIONS(849), + [anon_sym_AMP_AMP] = ACTIONS(849), + [anon_sym_PIPE_PIPE] = ACTIONS(849), + [anon_sym_RBRACK_RBRACK] = ACTIONS(849), + [anon_sym_EQ_TILDE] = ACTIONS(849), + [anon_sym_EQ_EQ] = ACTIONS(849), + [anon_sym_EQ] = ACTIONS(851), + [anon_sym_PLUS_EQ] = ACTIONS(849), + [anon_sym_LT] = ACTIONS(851), + [anon_sym_GT] = ACTIONS(851), + [anon_sym_BANG_EQ] = ACTIONS(849), + [anon_sym_PLUS] = ACTIONS(851), + [anon_sym_DASH] = ACTIONS(851), + [anon_sym_DASH_EQ] = ACTIONS(849), + [anon_sym_LT_EQ] = ACTIONS(849), + [anon_sym_GT_EQ] = ACTIONS(849), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(849), + }, + [250] = { + [sym__concat] = ACTIONS(853), + [anon_sym_RPAREN_RPAREN] = ACTIONS(853), + [anon_sym_AMP_AMP] = ACTIONS(853), + [anon_sym_PIPE_PIPE] = ACTIONS(853), + [anon_sym_RBRACK_RBRACK] = ACTIONS(853), + [anon_sym_EQ_TILDE] = ACTIONS(853), + [anon_sym_EQ_EQ] = ACTIONS(853), + [anon_sym_EQ] = ACTIONS(855), + [anon_sym_PLUS_EQ] = ACTIONS(853), + [anon_sym_LT] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_BANG_EQ] = ACTIONS(853), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_DASH_EQ] = ACTIONS(853), + [anon_sym_LT_EQ] = ACTIONS(853), + [anon_sym_GT_EQ] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(853), + [anon_sym_DASH_DASH] = ACTIONS(853), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(853), + }, + [251] = { + [anon_sym_LBRACK] = ACTIONS(857), + [anon_sym_EQ] = ACTIONS(1256), + [sym_comment] = ACTIONS(55), + }, + [252] = { + [sym_subscript] = STATE(659), + [sym_variable_name] = ACTIONS(1258), + [anon_sym_DASH] = ACTIONS(1260), + [anon_sym_DOLLAR] = ACTIONS(1260), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1264), + [anon_sym_AT] = ACTIONS(1264), + [anon_sym_QMARK] = ACTIONS(1264), + [anon_sym_0] = ACTIONS(1262), + [anon_sym__] = ACTIONS(1262), + }, + [253] = { + [sym_concatenation] = STATE(662), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(662), + [anon_sym_RBRACE] = ACTIONS(1266), + [anon_sym_EQ] = ACTIONS(1268), + [anon_sym_DASH] = ACTIONS(1268), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1270), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(1272), + [anon_sym_COLON] = ACTIONS(1268), + [anon_sym_COLON_QMARK] = ACTIONS(1268), + [anon_sym_COLON_DASH] = ACTIONS(1268), + [anon_sym_PERCENT] = ACTIONS(1268), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [254] = { + [sym_concatenation] = STATE(665), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(665), + [anon_sym_RBRACE] = ACTIONS(1274), + [anon_sym_EQ] = ACTIONS(1276), + [anon_sym_DASH] = ACTIONS(1276), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1278), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(1280), + [anon_sym_COLON] = ACTIONS(1276), + [anon_sym_COLON_QMARK] = ACTIONS(1276), + [anon_sym_COLON_DASH] = ACTIONS(1276), + [anon_sym_PERCENT] = ACTIONS(1276), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [255] = { + [anon_sym_SEMI] = ACTIONS(1282), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(1284), + [anon_sym_SEMI_SEMI] = ACTIONS(1286), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1286), + [anon_sym_AMP] = ACTIONS(1282), + }, + [256] = { + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(1282), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(1284), + [anon_sym_SEMI_SEMI] = ACTIONS(1286), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(1286), + [anon_sym_AMP] = ACTIONS(1282), + }, + [257] = { + [sym__terminated_statement] = STATE(198), + [sym_for_statement] = STATE(668), + [sym_c_style_for_statement] = STATE(668), + [sym_while_statement] = STATE(668), + [sym_if_statement] = STATE(668), + [sym_case_statement] = STATE(668), + [sym_function_definition] = STATE(668), + [sym_subshell] = STATE(668), + [sym_pipeline] = STATE(668), + [sym_list] = STATE(668), + [sym_negated_command] = STATE(668), + [sym_test_command] = STATE(668), + [sym_declaration_command] = STATE(668), + [sym_unset_command] = STATE(668), + [sym_command] = STATE(668), + [sym_command_name] = STATE(92), + [sym_variable_assignment] = STATE(669), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(96), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), + [aux_sym__statements_repeat1] = STATE(198), + [aux_sym_command_repeat1] = STATE(96), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(137), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(149), + [anon_sym_declare] = ACTIONS(151), + [anon_sym_typeset] = ACTIONS(151), + [anon_sym_export] = ACTIONS(151), + [anon_sym_readonly] = ACTIONS(151), + [anon_sym_local] = ACTIONS(151), + [anon_sym_unset] = ACTIONS(153), + [anon_sym_unsetenv] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(159), + }, + [258] = { + [anon_sym_SEMI] = ACTIONS(1288), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_SEMI_SEMI] = ACTIONS(1290), + [anon_sym_PIPE_AMP] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_BQUOTE] = ACTIONS(1284), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1290), + [anon_sym_AMP] = ACTIONS(1288), + }, + [259] = { + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(1288), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_SEMI_SEMI] = ACTIONS(1290), + [anon_sym_PIPE_AMP] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(1284), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(1290), + [anon_sym_AMP] = ACTIONS(1288), + }, + [260] = { + [sym__terminated_statement] = STATE(198), + [sym_for_statement] = STATE(671), + [sym_c_style_for_statement] = STATE(671), + [sym_while_statement] = STATE(671), + [sym_if_statement] = STATE(671), + [sym_case_statement] = STATE(671), + [sym_function_definition] = STATE(671), + [sym_subshell] = STATE(671), + [sym_pipeline] = STATE(671), + [sym_list] = STATE(671), + [sym_negated_command] = STATE(671), + [sym_test_command] = STATE(671), + [sym_declaration_command] = STATE(671), + [sym_unset_command] = STATE(671), + [sym_command] = STATE(671), + [sym_command_name] = STATE(173), + [sym_variable_assignment] = STATE(672), + [sym_subscript] = STATE(66), + [sym_file_redirect] = STATE(176), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(60), + [sym_simple_expansion] = STATE(60), + [sym_string_expansion] = STATE(60), + [sym_expansion] = STATE(60), + [sym_command_substitution] = STATE(60), + [sym_process_substitution] = STATE(60), + [aux_sym__statements_repeat1] = STATE(198), + [aux_sym_command_repeat1] = STATE(176), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(95), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(305), + [anon_sym_while] = ACTIONS(307), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(311), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(315), + [anon_sym_declare] = ACTIONS(317), + [anon_sym_typeset] = ACTIONS(317), + [anon_sym_export] = ACTIONS(317), + [anon_sym_readonly] = ACTIONS(317), + [anon_sym_local] = ACTIONS(317), + [anon_sym_unset] = ACTIONS(319), + [anon_sym_unsetenv] = ACTIONS(319), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(115), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(321), + }, + [261] = { + [anon_sym_SEMI] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(1294), + [anon_sym_SEMI_SEMI] = ACTIONS(1296), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1296), + [anon_sym_AMP] = ACTIONS(1292), + }, + [262] = { + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(1294), + [anon_sym_SEMI_SEMI] = ACTIONS(1296), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(1296), + [anon_sym_AMP] = ACTIONS(1292), + }, + [263] = { + [sym__terminated_statement] = STATE(198), + [sym_for_statement] = STATE(675), + [sym_c_style_for_statement] = STATE(675), + [sym_while_statement] = STATE(675), + [sym_if_statement] = STATE(675), + [sym_case_statement] = STATE(675), + [sym_function_definition] = STATE(675), + [sym_subshell] = STATE(675), + [sym_pipeline] = STATE(675), + [sym_list] = STATE(675), + [sym_negated_command] = STATE(675), + [sym_test_command] = STATE(675), + [sym_declaration_command] = STATE(675), + [sym_unset_command] = STATE(675), + [sym_command] = STATE(675), + [sym_command_name] = STATE(92), + [sym_variable_assignment] = STATE(676), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(96), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), + [aux_sym__statements_repeat1] = STATE(198), + [aux_sym_command_repeat1] = STATE(96), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(137), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(149), + [anon_sym_declare] = ACTIONS(151), + [anon_sym_typeset] = ACTIONS(151), + [anon_sym_export] = ACTIONS(151), + [anon_sym_readonly] = ACTIONS(151), + [anon_sym_local] = ACTIONS(151), + [anon_sym_unset] = ACTIONS(153), + [anon_sym_unsetenv] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(159), + }, + [264] = { + [sym_file_redirect] = STATE(681), + [sym_heredoc_redirect] = STATE(681), + [sym_herestring_redirect] = STATE(681), + [aux_sym_while_statement_repeat1] = STATE(681), + [sym_file_descriptor] = ACTIONS(1298), + [ts_builtin_sym_end] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1302), + [anon_sym_PIPE] = ACTIONS(1302), + [anon_sym_SEMI_SEMI] = ACTIONS(1300), + [anon_sym_PIPE_AMP] = ACTIONS(1300), + [anon_sym_AMP_AMP] = ACTIONS(1300), + [anon_sym_PIPE_PIPE] = ACTIONS(1300), + [anon_sym_LT] = ACTIONS(1304), + [anon_sym_GT] = ACTIONS(1304), + [anon_sym_GT_GT] = ACTIONS(1306), + [anon_sym_AMP_GT] = ACTIONS(1304), + [anon_sym_AMP_GT_GT] = ACTIONS(1306), + [anon_sym_LT_AMP] = ACTIONS(1306), + [anon_sym_GT_AMP] = ACTIONS(1306), + [anon_sym_LT_LT] = ACTIONS(1308), + [anon_sym_LT_LT_DASH] = ACTIONS(1310), + [anon_sym_LT_LT_LT] = ACTIONS(1312), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1302), + }, + [265] = { + [sym__expression] = STATE(682), + [sym_binary_expression] = STATE(682), + [sym_unary_expression] = STATE(682), + [sym_postfix_expression] = STATE(682), + [sym_parenthesized_expression] = STATE(682), + [sym_concatenation] = STATE(682), + [sym_string] = STATE(44), + [sym_simple_expansion] = STATE(44), + [sym_string_expansion] = STATE(44), + [sym_expansion] = STATE(44), + [sym_command_substitution] = STATE(44), + [sym_process_substitution] = STATE(44), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(73), + [sym__special_characters] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(79), + [sym_raw_string] = ACTIONS(81), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(83), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(85), + [anon_sym_BQUOTE] = ACTIONS(87), + [anon_sym_LT_LPAREN] = ACTIONS(89), + [anon_sym_GT_LPAREN] = ACTIONS(89), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(91), + [sym_test_operator] = ACTIONS(93), + }, + [266] = { + [sym__expression] = STATE(682), + [sym_binary_expression] = STATE(682), + [sym_unary_expression] = STATE(682), + [sym_postfix_expression] = STATE(682), + [sym_parenthesized_expression] = STATE(682), + [sym_concatenation] = STATE(682), + [sym_string] = STATE(44), + [sym_simple_expansion] = STATE(44), + [sym_string_expansion] = STATE(44), + [sym_expansion] = STATE(44), + [sym_command_substitution] = STATE(44), + [sym_process_substitution] = STATE(44), + [sym_regex] = ACTIONS(1314), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(73), + [sym__special_characters] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(79), + [sym_raw_string] = ACTIONS(81), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(83), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(85), + [anon_sym_BQUOTE] = ACTIONS(87), + [anon_sym_LT_LPAREN] = ACTIONS(89), + [anon_sym_GT_LPAREN] = ACTIONS(89), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(91), + [sym_test_operator] = ACTIONS(93), + }, + [267] = { + [anon_sym_RPAREN_RPAREN] = ACTIONS(1316), + [anon_sym_AMP_AMP] = ACTIONS(1316), + [anon_sym_PIPE_PIPE] = ACTIONS(1316), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1316), + [anon_sym_EQ_TILDE] = ACTIONS(1316), + [anon_sym_EQ_EQ] = ACTIONS(1316), + [anon_sym_EQ] = ACTIONS(1318), + [anon_sym_PLUS_EQ] = ACTIONS(1316), + [anon_sym_LT] = ACTIONS(1318), + [anon_sym_GT] = ACTIONS(1318), + [anon_sym_BANG_EQ] = ACTIONS(1316), + [anon_sym_PLUS] = ACTIONS(1318), + [anon_sym_DASH] = ACTIONS(1318), + [anon_sym_DASH_EQ] = ACTIONS(1316), + [anon_sym_LT_EQ] = ACTIONS(1316), + [anon_sym_GT_EQ] = ACTIONS(1316), + [anon_sym_PLUS_PLUS] = ACTIONS(1316), + [anon_sym_DASH_DASH] = ACTIONS(1316), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(1316), + }, + [268] = { + [sym_concatenation] = STATE(207), + [sym_string] = STATE(685), + [sym_array] = STATE(207), + [sym_simple_expansion] = STATE(685), + [sym_string_expansion] = STATE(685), + [sym_expansion] = STATE(685), + [sym_command_substitution] = STATE(685), + [sym_process_substitution] = STATE(685), + [sym__empty_value] = ACTIONS(381), + [anon_sym_LPAREN] = ACTIONS(383), + [sym__special_characters] = ACTIONS(1320), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(389), + [sym_raw_string] = ACTIONS(1322), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(393), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(395), + [anon_sym_BQUOTE] = ACTIONS(397), + [anon_sym_LT_LPAREN] = ACTIONS(399), + [anon_sym_GT_LPAREN] = ACTIONS(399), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1322), + }, + [269] = { + [anon_sym_RPAREN_RPAREN] = ACTIONS(1324), + [anon_sym_AMP_AMP] = ACTIONS(493), + [anon_sym_PIPE_PIPE] = ACTIONS(493), + [anon_sym_EQ_TILDE] = ACTIONS(495), + [anon_sym_EQ_EQ] = ACTIONS(495), + [anon_sym_EQ] = ACTIONS(497), + [anon_sym_PLUS_EQ] = ACTIONS(493), + [anon_sym_LT] = ACTIONS(497), + [anon_sym_GT] = ACTIONS(497), + [anon_sym_BANG_EQ] = ACTIONS(493), + [anon_sym_PLUS] = ACTIONS(497), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_DASH_EQ] = ACTIONS(493), + [anon_sym_LT_EQ] = ACTIONS(493), + [anon_sym_GT_EQ] = ACTIONS(493), + [anon_sym_PLUS_PLUS] = ACTIONS(499), + [anon_sym_DASH_DASH] = ACTIONS(499), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(493), + }, + [270] = { + [sym_do_group] = STATE(687), + [anon_sym_do] = ACTIONS(525), + [sym_comment] = ACTIONS(55), + }, + [271] = { + [sym_compound_statement] = STATE(689), + [anon_sym_LPAREN] = ACTIONS(1326), + [anon_sym_LBRACE] = ACTIONS(595), + [sym_comment] = ACTIONS(55), + }, + [272] = { + [anon_sym_AMP_AMP] = ACTIONS(681), + [anon_sym_PIPE_PIPE] = ACTIONS(681), + [anon_sym_RBRACK] = ACTIONS(1324), + [anon_sym_EQ_TILDE] = ACTIONS(683), + [anon_sym_EQ_EQ] = ACTIONS(683), + [anon_sym_EQ] = ACTIONS(685), + [anon_sym_PLUS_EQ] = ACTIONS(681), + [anon_sym_LT] = ACTIONS(685), + [anon_sym_GT] = ACTIONS(685), + [anon_sym_BANG_EQ] = ACTIONS(681), + [anon_sym_PLUS] = ACTIONS(685), + [anon_sym_DASH] = ACTIONS(685), + [anon_sym_DASH_EQ] = ACTIONS(681), + [anon_sym_LT_EQ] = ACTIONS(681), + [anon_sym_GT_EQ] = ACTIONS(681), + [anon_sym_PLUS_PLUS] = ACTIONS(687), + [anon_sym_DASH_DASH] = ACTIONS(687), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(681), + }, + [273] = { + [anon_sym_AMP_AMP] = ACTIONS(689), + [anon_sym_PIPE_PIPE] = ACTIONS(689), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1324), + [anon_sym_EQ_TILDE] = ACTIONS(691), + [anon_sym_EQ_EQ] = ACTIONS(691), + [anon_sym_EQ] = ACTIONS(693), + [anon_sym_PLUS_EQ] = ACTIONS(689), + [anon_sym_LT] = ACTIONS(693), + [anon_sym_GT] = ACTIONS(693), + [anon_sym_BANG_EQ] = ACTIONS(689), + [anon_sym_PLUS] = ACTIONS(693), + [anon_sym_DASH] = ACTIONS(693), + [anon_sym_DASH_EQ] = ACTIONS(689), + [anon_sym_LT_EQ] = ACTIONS(689), + [anon_sym_GT_EQ] = ACTIONS(689), + [anon_sym_PLUS_PLUS] = ACTIONS(499), + [anon_sym_DASH_DASH] = ACTIONS(499), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(689), + }, + [274] = { + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_EQ] = ACTIONS(1328), + [anon_sym_PLUS_EQ] = ACTIONS(1328), + [sym_comment] = ACTIONS(55), + }, + [275] = { + [aux_sym_concatenation_repeat1] = STATE(691), + [sym__concat] = ACTIONS(697), + [sym_variable_name] = ACTIONS(699), + [anon_sym_SEMI] = ACTIONS(701), + [anon_sym_PIPE] = ACTIONS(701), + [anon_sym_SEMI_SEMI] = ACTIONS(699), + [anon_sym_PIPE_AMP] = ACTIONS(699), + [anon_sym_AMP_AMP] = ACTIONS(699), + [anon_sym_PIPE_PIPE] = ACTIONS(699), + [sym__special_characters] = ACTIONS(699), + [anon_sym_DQUOTE] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(701), + [sym_raw_string] = ACTIONS(699), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(699), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(699), + [anon_sym_BQUOTE] = ACTIONS(699), + [anon_sym_LT_LPAREN] = ACTIONS(699), + [anon_sym_GT_LPAREN] = ACTIONS(699), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(701), + [sym_word] = ACTIONS(701), + [anon_sym_LF] = ACTIONS(699), + [anon_sym_AMP] = ACTIONS(701), + }, + [276] = { + [aux_sym_concatenation_repeat1] = STATE(691), + [sym__concat] = ACTIONS(697), + [sym_variable_name] = ACTIONS(715), + [anon_sym_SEMI] = ACTIONS(717), + [anon_sym_PIPE] = ACTIONS(717), + [anon_sym_SEMI_SEMI] = ACTIONS(715), + [anon_sym_PIPE_AMP] = ACTIONS(715), + [anon_sym_AMP_AMP] = ACTIONS(715), + [anon_sym_PIPE_PIPE] = ACTIONS(715), + [sym__special_characters] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(715), + [anon_sym_DOLLAR] = ACTIONS(717), + [sym_raw_string] = ACTIONS(715), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(715), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(715), + [anon_sym_BQUOTE] = ACTIONS(715), + [anon_sym_LT_LPAREN] = ACTIONS(715), + [anon_sym_GT_LPAREN] = ACTIONS(715), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(717), + [sym_word] = ACTIONS(717), + [anon_sym_LF] = ACTIONS(715), + [anon_sym_AMP] = ACTIONS(717), + }, + [277] = { + [anon_sym_EQ] = ACTIONS(1328), + [anon_sym_PLUS_EQ] = ACTIONS(1328), + [sym_comment] = ACTIONS(55), + }, + [278] = { + [sym_variable_assignment] = STATE(692), + [sym_subscript] = STATE(277), + [sym_concatenation] = STATE(692), + [sym_string] = STATE(276), + [sym_simple_expansion] = STATE(276), + [sym_string_expansion] = STATE(276), + [sym_expansion] = STATE(276), + [sym_command_substitution] = STATE(276), + [sym_process_substitution] = STATE(276), + [aux_sym_declaration_command_repeat1] = STATE(692), + [sym_variable_name] = ACTIONS(505), + [anon_sym_SEMI] = ACTIONS(731), + [anon_sym_PIPE] = ACTIONS(731), + [anon_sym_SEMI_SEMI] = ACTIONS(729), + [anon_sym_PIPE_AMP] = ACTIONS(729), + [anon_sym_AMP_AMP] = ACTIONS(729), + [anon_sym_PIPE_PIPE] = ACTIONS(729), + [sym__special_characters] = ACTIONS(507), + [anon_sym_DQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR] = ACTIONS(207), + [sym_raw_string] = ACTIONS(509), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_LT_LPAREN] = ACTIONS(217), + [anon_sym_GT_LPAREN] = ACTIONS(217), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1330), + [sym_word] = ACTIONS(513), + [anon_sym_LF] = ACTIONS(729), + [anon_sym_AMP] = ACTIONS(731), + }, + [279] = { + [aux_sym_concatenation_repeat1] = STATE(693), + [sym__concat] = ACTIONS(735), + [anon_sym_SEMI] = ACTIONS(739), + [anon_sym_PIPE] = ACTIONS(739), + [anon_sym_SEMI_SEMI] = ACTIONS(737), + [anon_sym_PIPE_AMP] = ACTIONS(737), + [anon_sym_AMP_AMP] = ACTIONS(737), + [anon_sym_PIPE_PIPE] = ACTIONS(737), + [sym__special_characters] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(737), + [anon_sym_DOLLAR] = ACTIONS(739), + [sym_raw_string] = ACTIONS(737), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(737), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(737), + [anon_sym_BQUOTE] = ACTIONS(737), + [anon_sym_LT_LPAREN] = ACTIONS(737), + [anon_sym_GT_LPAREN] = ACTIONS(737), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(739), + [sym_word] = ACTIONS(739), + [anon_sym_LF] = ACTIONS(737), + [anon_sym_AMP] = ACTIONS(739), + }, + [280] = { + [aux_sym_concatenation_repeat1] = STATE(693), + [sym__concat] = ACTIONS(735), + [anon_sym_SEMI] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_SEMI_SEMI] = ACTIONS(753), + [anon_sym_PIPE_AMP] = ACTIONS(753), + [anon_sym_AMP_AMP] = ACTIONS(753), + [anon_sym_PIPE_PIPE] = ACTIONS(753), + [sym__special_characters] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(753), + [anon_sym_DOLLAR] = ACTIONS(755), + [sym_raw_string] = ACTIONS(753), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(753), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(753), + [anon_sym_LT_LPAREN] = ACTIONS(753), + [anon_sym_GT_LPAREN] = ACTIONS(753), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(755), + [sym_word] = ACTIONS(755), + [anon_sym_LF] = ACTIONS(753), + [anon_sym_AMP] = ACTIONS(755), + }, + [281] = { + [sym_concatenation] = STATE(694), + [sym_string] = STATE(280), + [sym_simple_expansion] = STATE(280), + [sym_string_expansion] = STATE(280), + [sym_expansion] = STATE(280), + [sym_command_substitution] = STATE(280), + [sym_process_substitution] = STATE(280), + [aux_sym_unset_command_repeat1] = STATE(694), + [anon_sym_SEMI] = ACTIONS(769), + [anon_sym_PIPE] = ACTIONS(769), + [anon_sym_SEMI_SEMI] = ACTIONS(767), + [anon_sym_PIPE_AMP] = ACTIONS(767), + [anon_sym_AMP_AMP] = ACTIONS(767), + [anon_sym_PIPE_PIPE] = ACTIONS(767), + [sym__special_characters] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(229), + [anon_sym_DOLLAR] = ACTIONS(231), + [sym_raw_string] = ACTIONS(517), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), + [anon_sym_BQUOTE] = ACTIONS(239), + [anon_sym_LT_LPAREN] = ACTIONS(241), + [anon_sym_GT_LPAREN] = ACTIONS(241), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1332), + [sym_word] = ACTIONS(521), + [anon_sym_LF] = ACTIONS(767), + [anon_sym_AMP] = ACTIONS(769), + }, + [282] = { + [aux_sym_concatenation_repeat1] = STATE(695), + [sym__simple_heredoc_body] = ACTIONS(807), + [sym__heredoc_body_beginning] = ACTIONS(807), + [sym_file_descriptor] = ACTIONS(807), + [sym__concat] = ACTIONS(265), + [anon_sym_SEMI] = ACTIONS(809), + [anon_sym_PIPE] = ACTIONS(809), + [anon_sym_SEMI_SEMI] = ACTIONS(807), + [anon_sym_PIPE_AMP] = ACTIONS(807), + [anon_sym_AMP_AMP] = ACTIONS(807), + [anon_sym_PIPE_PIPE] = ACTIONS(807), + [anon_sym_EQ_TILDE] = ACTIONS(809), + [anon_sym_EQ_EQ] = ACTIONS(809), + [anon_sym_LT] = ACTIONS(809), + [anon_sym_GT] = ACTIONS(809), + [anon_sym_GT_GT] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(809), + [anon_sym_AMP_GT_GT] = ACTIONS(807), + [anon_sym_LT_AMP] = ACTIONS(807), + [anon_sym_GT_AMP] = ACTIONS(807), + [anon_sym_LT_LT] = ACTIONS(809), + [anon_sym_LT_LT_DASH] = ACTIONS(807), + [anon_sym_LT_LT_LT] = ACTIONS(807), + [sym__special_characters] = ACTIONS(807), + [anon_sym_DQUOTE] = ACTIONS(807), + [anon_sym_DOLLAR] = ACTIONS(809), + [sym_raw_string] = ACTIONS(807), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(807), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(807), + [anon_sym_BQUOTE] = ACTIONS(807), + [anon_sym_LT_LPAREN] = ACTIONS(807), + [anon_sym_GT_LPAREN] = ACTIONS(807), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(809), + [anon_sym_LF] = ACTIONS(807), + [anon_sym_AMP] = ACTIONS(809), + }, + [283] = { + [anon_sym_RPAREN] = ACTIONS(1334), + [sym_comment] = ACTIONS(55), + }, + [284] = { + [sym__terminated_statement] = STATE(698), + [sym_for_statement] = STATE(545), + [sym_c_style_for_statement] = STATE(545), + [sym_while_statement] = STATE(545), + [sym_if_statement] = STATE(545), + [sym_case_statement] = STATE(545), + [sym_function_definition] = STATE(545), + [sym_subshell] = STATE(545), + [sym_pipeline] = STATE(545), + [sym_list] = STATE(545), + [sym_negated_command] = STATE(545), + [sym_test_command] = STATE(545), + [sym_declaration_command] = STATE(545), + [sym_unset_command] = STATE(545), + [sym_command] = STATE(545), + [sym_command_name] = STATE(64), + [sym_variable_assignment] = STATE(546), + [sym_subscript] = STATE(66), + [sym_file_redirect] = STATE(67), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(60), + [sym_simple_expansion] = STATE(60), + [sym_string_expansion] = STATE(60), + [sym_expansion] = STATE(60), + [sym_command_substitution] = STATE(60), + [sym_process_substitution] = STATE(60), + [aux_sym__statements_repeat1] = STATE(698), + [aux_sym_command_repeat1] = STATE(67), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(95), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(97), + [anon_sym_while] = ACTIONS(99), + [anon_sym_done] = ACTIONS(1336), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(101), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_LBRACK] = ACTIONS(107), + [anon_sym_declare] = ACTIONS(109), + [anon_sym_typeset] = ACTIONS(109), + [anon_sym_export] = ACTIONS(109), + [anon_sym_readonly] = ACTIONS(109), + [anon_sym_local] = ACTIONS(109), + [anon_sym_unset] = ACTIONS(111), + [anon_sym_unsetenv] = ACTIONS(111), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(115), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(117), + }, + [285] = { + [sym_file_redirect] = STATE(700), + [sym_heredoc_redirect] = STATE(700), + [sym_heredoc_body] = STATE(699), + [sym_herestring_redirect] = STATE(700), + [aux_sym_while_statement_repeat1] = STATE(700), + [sym__simple_heredoc_body] = ACTIONS(339), + [sym__heredoc_body_beginning] = ACTIONS(341), + [sym_file_descriptor] = ACTIONS(343), + [ts_builtin_sym_end] = ACTIONS(1338), + [anon_sym_SEMI] = ACTIONS(1340), + [anon_sym_PIPE] = ACTIONS(1340), + [anon_sym_SEMI_SEMI] = ACTIONS(1338), + [anon_sym_PIPE_AMP] = ACTIONS(1338), + [anon_sym_AMP_AMP] = ACTIONS(1338), + [anon_sym_PIPE_PIPE] = ACTIONS(1338), + [anon_sym_LT] = ACTIONS(351), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_GT_GT] = ACTIONS(353), + [anon_sym_AMP_GT] = ACTIONS(351), + [anon_sym_AMP_GT_GT] = ACTIONS(353), + [anon_sym_LT_AMP] = ACTIONS(353), + [anon_sym_GT_AMP] = ACTIONS(353), + [anon_sym_LT_LT] = ACTIONS(355), + [anon_sym_LT_LT_DASH] = ACTIONS(357), + [anon_sym_LT_LT_LT] = ACTIONS(359), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1338), + [anon_sym_AMP] = ACTIONS(1340), + }, + [286] = { + [anon_sym_do] = ACTIONS(943), + [anon_sym_then] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + }, + [287] = { + [sym_for_statement] = STATE(521), + [sym_c_style_for_statement] = STATE(521), + [sym_while_statement] = STATE(521), + [sym_if_statement] = STATE(521), + [sym_case_statement] = STATE(521), + [sym_function_definition] = STATE(521), + [sym_subshell] = STATE(521), + [sym_pipeline] = STATE(521), + [sym_list] = STATE(521), + [sym_negated_command] = STATE(521), + [sym_test_command] = STATE(521), + [sym_declaration_command] = STATE(521), + [sym_unset_command] = STATE(521), + [sym_command] = STATE(521), + [sym_command_name] = STATE(64), + [sym_variable_assignment] = STATE(522), + [sym_subscript] = STATE(66), + [sym_file_redirect] = STATE(67), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(60), + [sym_simple_expansion] = STATE(60), + [sym_string_expansion] = STATE(60), + [sym_expansion] = STATE(60), + [sym_command_substitution] = STATE(60), + [sym_process_substitution] = STATE(60), + [aux_sym_command_repeat1] = STATE(67), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(95), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(97), + [anon_sym_while] = ACTIONS(99), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(101), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_LBRACK] = ACTIONS(107), + [anon_sym_declare] = ACTIONS(109), + [anon_sym_typeset] = ACTIONS(109), + [anon_sym_export] = ACTIONS(109), + [anon_sym_readonly] = ACTIONS(109), + [anon_sym_local] = ACTIONS(109), + [anon_sym_unset] = ACTIONS(111), + [anon_sym_unsetenv] = ACTIONS(111), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(115), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(117), + }, + [288] = { + [sym_for_statement] = STATE(701), + [sym_c_style_for_statement] = STATE(701), + [sym_while_statement] = STATE(701), + [sym_if_statement] = STATE(701), + [sym_case_statement] = STATE(701), + [sym_function_definition] = STATE(701), + [sym_subshell] = STATE(701), + [sym_pipeline] = STATE(701), + [sym_list] = STATE(701), + [sym_negated_command] = STATE(701), + [sym_test_command] = STATE(701), + [sym_declaration_command] = STATE(701), + [sym_unset_command] = STATE(701), + [sym_command] = STATE(701), + [sym_command_name] = STATE(64), + [sym_variable_assignment] = STATE(702), + [sym_subscript] = STATE(66), + [sym_file_redirect] = STATE(67), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(60), + [sym_simple_expansion] = STATE(60), + [sym_string_expansion] = STATE(60), + [sym_expansion] = STATE(60), + [sym_command_substitution] = STATE(60), + [sym_process_substitution] = STATE(60), + [aux_sym_command_repeat1] = STATE(67), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(95), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(97), + [anon_sym_while] = ACTIONS(99), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(101), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_LBRACK] = ACTIONS(107), + [anon_sym_declare] = ACTIONS(109), + [anon_sym_typeset] = ACTIONS(109), + [anon_sym_export] = ACTIONS(109), + [anon_sym_readonly] = ACTIONS(109), + [anon_sym_local] = ACTIONS(109), + [anon_sym_unset] = ACTIONS(111), + [anon_sym_unsetenv] = ACTIONS(111), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(115), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(117), + }, + [289] = { + [anon_sym_LT] = ACTIONS(1342), + [anon_sym_GT] = ACTIONS(1342), + [anon_sym_GT_GT] = ACTIONS(1344), + [anon_sym_AMP_GT] = ACTIONS(1342), + [anon_sym_AMP_GT_GT] = ACTIONS(1344), + [anon_sym_LT_AMP] = ACTIONS(1344), + [anon_sym_GT_AMP] = ACTIONS(1344), + [sym_comment] = ACTIONS(55), + }, + [290] = { + [sym_concatenation] = STATE(530), + [sym_string] = STATE(705), + [sym_simple_expansion] = STATE(705), + [sym_string_expansion] = STATE(705), + [sym_expansion] = STATE(705), + [sym_command_substitution] = STATE(705), + [sym_process_substitution] = STATE(705), + [sym_regex] = ACTIONS(965), + [sym__special_characters] = ACTIONS(1346), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(1348), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1348), + }, + [291] = { + [sym_concatenation] = STATE(535), + [sym_string] = STATE(707), + [sym_simple_expansion] = STATE(707), + [sym_string_expansion] = STATE(707), + [sym_expansion] = STATE(707), + [sym_command_substitution] = STATE(707), + [sym_process_substitution] = STATE(707), + [sym__special_characters] = ACTIONS(1350), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(1352), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1352), + }, + [292] = { + [sym_concatenation] = STATE(539), + [sym_string] = STATE(709), + [sym_simple_expansion] = STATE(709), + [sym_string_expansion] = STATE(709), + [sym_expansion] = STATE(709), + [sym_command_substitution] = STATE(709), + [sym_process_substitution] = STATE(709), + [sym__special_characters] = ACTIONS(1354), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(1356), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1356), + }, + [293] = { + [aux_sym_concatenation_repeat1] = STATE(282), + [sym__simple_heredoc_body] = ACTIONS(981), + [sym__heredoc_body_beginning] = ACTIONS(981), + [sym_file_descriptor] = ACTIONS(981), + [sym__concat] = ACTIONS(265), + [anon_sym_SEMI] = ACTIONS(983), + [anon_sym_PIPE] = ACTIONS(983), + [anon_sym_SEMI_SEMI] = ACTIONS(981), + [anon_sym_PIPE_AMP] = ACTIONS(981), + [anon_sym_AMP_AMP] = ACTIONS(981), + [anon_sym_PIPE_PIPE] = ACTIONS(981), + [anon_sym_EQ_TILDE] = ACTIONS(983), + [anon_sym_EQ_EQ] = ACTIONS(983), + [anon_sym_LT] = ACTIONS(983), + [anon_sym_GT] = ACTIONS(983), + [anon_sym_GT_GT] = ACTIONS(981), + [anon_sym_AMP_GT] = ACTIONS(983), + [anon_sym_AMP_GT_GT] = ACTIONS(981), + [anon_sym_LT_AMP] = ACTIONS(981), + [anon_sym_GT_AMP] = ACTIONS(981), + [anon_sym_LT_LT] = ACTIONS(983), + [anon_sym_LT_LT_DASH] = ACTIONS(981), + [anon_sym_LT_LT_LT] = ACTIONS(981), + [sym__special_characters] = ACTIONS(981), + [anon_sym_DQUOTE] = ACTIONS(981), + [anon_sym_DOLLAR] = ACTIONS(983), + [sym_raw_string] = ACTIONS(981), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(981), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(981), + [anon_sym_BQUOTE] = ACTIONS(981), + [anon_sym_LT_LPAREN] = ACTIONS(981), + [anon_sym_GT_LPAREN] = ACTIONS(981), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(983), + [anon_sym_LF] = ACTIONS(981), + [anon_sym_AMP] = ACTIONS(983), + }, + [294] = { + [aux_sym_concatenation_repeat1] = STATE(282), + [sym__simple_heredoc_body] = ACTIONS(985), + [sym__heredoc_body_beginning] = ACTIONS(985), + [sym_file_descriptor] = ACTIONS(985), + [sym__concat] = ACTIONS(265), + [anon_sym_SEMI] = ACTIONS(987), + [anon_sym_PIPE] = ACTIONS(987), + [anon_sym_SEMI_SEMI] = ACTIONS(985), + [anon_sym_PIPE_AMP] = ACTIONS(985), + [anon_sym_AMP_AMP] = ACTIONS(985), + [anon_sym_PIPE_PIPE] = ACTIONS(985), + [anon_sym_EQ_TILDE] = ACTIONS(987), + [anon_sym_EQ_EQ] = ACTIONS(987), + [anon_sym_LT] = ACTIONS(987), + [anon_sym_GT] = ACTIONS(987), + [anon_sym_GT_GT] = ACTIONS(985), + [anon_sym_AMP_GT] = ACTIONS(987), + [anon_sym_AMP_GT_GT] = ACTIONS(985), + [anon_sym_LT_AMP] = ACTIONS(985), + [anon_sym_GT_AMP] = ACTIONS(985), + [anon_sym_LT_LT] = ACTIONS(987), + [anon_sym_LT_LT_DASH] = ACTIONS(985), + [anon_sym_LT_LT_LT] = ACTIONS(985), + [sym__special_characters] = ACTIONS(985), + [anon_sym_DQUOTE] = ACTIONS(985), + [anon_sym_DOLLAR] = ACTIONS(987), + [sym_raw_string] = ACTIONS(985), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(985), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(985), + [anon_sym_BQUOTE] = ACTIONS(985), + [anon_sym_LT_LPAREN] = ACTIONS(985), + [anon_sym_GT_LPAREN] = ACTIONS(985), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(987), + [anon_sym_LF] = ACTIONS(985), + [anon_sym_AMP] = ACTIONS(987), + }, + [295] = { + [sym_file_redirect] = STATE(710), + [sym_heredoc_redirect] = STATE(710), + [sym_heredoc_body] = STATE(540), + [sym_herestring_redirect] = STATE(710), + [aux_sym_while_statement_repeat1] = STATE(710), + [sym__simple_heredoc_body] = ACTIONS(339), + [sym__heredoc_body_beginning] = ACTIONS(341), + [sym_file_descriptor] = ACTIONS(537), + [anon_sym_SEMI] = ACTIONS(991), + [anon_sym_PIPE] = ACTIONS(991), + [anon_sym_SEMI_SEMI] = ACTIONS(989), + [anon_sym_PIPE_AMP] = ACTIONS(989), + [anon_sym_AMP_AMP] = ACTIONS(989), + [anon_sym_PIPE_PIPE] = ACTIONS(989), + [anon_sym_LT] = ACTIONS(541), + [anon_sym_GT] = ACTIONS(541), + [anon_sym_GT_GT] = ACTIONS(543), + [anon_sym_AMP_GT] = ACTIONS(541), + [anon_sym_AMP_GT_GT] = ACTIONS(543), + [anon_sym_LT_AMP] = ACTIONS(543), + [anon_sym_GT_AMP] = ACTIONS(543), + [anon_sym_LT_LT] = ACTIONS(355), + [anon_sym_LT_LT_DASH] = ACTIONS(357), + [anon_sym_LT_LT_LT] = ACTIONS(545), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(991), + }, + [296] = { + [sym_file_redirect] = STATE(711), + [sym_heredoc_redirect] = STATE(711), + [sym_heredoc_body] = STATE(540), + [sym_herestring_redirect] = STATE(711), + [sym_concatenation] = STATE(712), + [sym_string] = STATE(294), + [sym_simple_expansion] = STATE(294), + [sym_string_expansion] = STATE(294), + [sym_expansion] = STATE(294), + [sym_command_substitution] = STATE(294), + [sym_process_substitution] = STATE(294), + [aux_sym_while_statement_repeat1] = STATE(711), + [aux_sym_command_repeat2] = STATE(712), + [sym__simple_heredoc_body] = ACTIONS(339), + [sym__heredoc_body_beginning] = ACTIONS(341), + [sym_file_descriptor] = ACTIONS(537), + [anon_sym_SEMI] = ACTIONS(991), + [anon_sym_PIPE] = ACTIONS(991), + [anon_sym_SEMI_SEMI] = ACTIONS(989), + [anon_sym_PIPE_AMP] = ACTIONS(989), + [anon_sym_AMP_AMP] = ACTIONS(989), + [anon_sym_PIPE_PIPE] = ACTIONS(989), + [anon_sym_EQ_TILDE] = ACTIONS(539), + [anon_sym_EQ_EQ] = ACTIONS(539), + [anon_sym_LT] = ACTIONS(541), + [anon_sym_GT] = ACTIONS(541), + [anon_sym_GT_GT] = ACTIONS(543), + [anon_sym_AMP_GT] = ACTIONS(541), + [anon_sym_AMP_GT_GT] = ACTIONS(543), + [anon_sym_LT_AMP] = ACTIONS(543), + [anon_sym_GT_AMP] = ACTIONS(543), + [anon_sym_LT_LT] = ACTIONS(355), + [anon_sym_LT_LT_DASH] = ACTIONS(357), + [anon_sym_LT_LT_LT] = ACTIONS(545), + [sym__special_characters] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(549), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(551), + [anon_sym_LF] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(991), + }, + [297] = { + [sym_file_redirect] = STATE(711), + [sym_heredoc_redirect] = STATE(711), + [sym_heredoc_body] = STATE(540), + [sym_herestring_redirect] = STATE(711), + [sym_concatenation] = STATE(713), + [sym_string] = STATE(294), + [sym_simple_expansion] = STATE(294), + [sym_string_expansion] = STATE(294), + [sym_expansion] = STATE(294), + [sym_command_substitution] = STATE(294), + [sym_process_substitution] = STATE(294), + [aux_sym_while_statement_repeat1] = STATE(711), + [aux_sym_command_repeat2] = STATE(713), + [sym__simple_heredoc_body] = ACTIONS(339), + [sym__heredoc_body_beginning] = ACTIONS(341), + [sym_file_descriptor] = ACTIONS(537), + [anon_sym_SEMI] = ACTIONS(991), + [anon_sym_PIPE] = ACTIONS(991), + [anon_sym_SEMI_SEMI] = ACTIONS(989), + [anon_sym_PIPE_AMP] = ACTIONS(989), + [anon_sym_AMP_AMP] = ACTIONS(989), + [anon_sym_PIPE_PIPE] = ACTIONS(989), + [anon_sym_EQ_TILDE] = ACTIONS(539), + [anon_sym_EQ_EQ] = ACTIONS(539), + [anon_sym_LT] = ACTIONS(541), + [anon_sym_GT] = ACTIONS(541), + [anon_sym_GT_GT] = ACTIONS(543), + [anon_sym_AMP_GT] = ACTIONS(541), + [anon_sym_AMP_GT_GT] = ACTIONS(543), + [anon_sym_LT_AMP] = ACTIONS(543), + [anon_sym_GT_AMP] = ACTIONS(543), + [anon_sym_LT_LT] = ACTIONS(355), + [anon_sym_LT_LT_DASH] = ACTIONS(357), + [anon_sym_LT_LT_LT] = ACTIONS(545), + [sym__special_characters] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(549), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(551), + [anon_sym_LF] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(991), + }, + [298] = { + [sym__terminated_statement] = STATE(718), + [sym_for_statement] = STATE(545), + [sym_c_style_for_statement] = STATE(545), + [sym_while_statement] = STATE(545), + [sym_if_statement] = STATE(545), + [sym_elif_clause] = STATE(719), + [sym_else_clause] = STATE(717), + [sym_case_statement] = STATE(545), + [sym_function_definition] = STATE(545), + [sym_subshell] = STATE(545), + [sym_pipeline] = STATE(545), + [sym_list] = STATE(545), + [sym_negated_command] = STATE(545), + [sym_test_command] = STATE(545), + [sym_declaration_command] = STATE(545), + [sym_unset_command] = STATE(545), + [sym_command] = STATE(545), + [sym_command_name] = STATE(64), + [sym_variable_assignment] = STATE(546), + [sym_subscript] = STATE(66), + [sym_file_redirect] = STATE(67), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(60), + [sym_simple_expansion] = STATE(60), + [sym_string_expansion] = STATE(60), + [sym_expansion] = STATE(60), + [sym_command_substitution] = STATE(60), + [sym_process_substitution] = STATE(60), + [aux_sym__statements_repeat1] = STATE(718), + [aux_sym_if_statement_repeat1] = STATE(719), + [aux_sym_command_repeat1] = STATE(67), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(95), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(97), + [anon_sym_while] = ACTIONS(99), + [anon_sym_if] = ACTIONS(17), + [anon_sym_fi] = ACTIONS(1358), + [anon_sym_elif] = ACTIONS(1360), + [anon_sym_else] = ACTIONS(1362), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(101), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_LBRACK] = ACTIONS(107), + [anon_sym_declare] = ACTIONS(109), + [anon_sym_typeset] = ACTIONS(109), + [anon_sym_export] = ACTIONS(109), + [anon_sym_readonly] = ACTIONS(109), + [anon_sym_local] = ACTIONS(109), + [anon_sym_unset] = ACTIONS(111), + [anon_sym_unsetenv] = ACTIONS(111), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(115), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(117), + }, + [299] = { + [sym_string] = STATE(720), + [sym_simple_expansion] = STATE(720), + [sym_string_expansion] = STATE(720), + [sym_expansion] = STATE(720), + [sym_command_substitution] = STATE(720), + [sym_process_substitution] = STATE(720), + [sym__special_characters] = ACTIONS(1364), + [anon_sym_DQUOTE] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(123), + [sym_raw_string] = ACTIONS(1364), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(127), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(129), + [anon_sym_BQUOTE] = ACTIONS(131), + [anon_sym_LT_LPAREN] = ACTIONS(133), + [anon_sym_GT_LPAREN] = ACTIONS(133), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1364), + }, + [300] = { + [anon_sym_SEMI] = ACTIONS(1366), + [anon_sym_SEMI_SEMI] = ACTIONS(1368), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + }, + [301] = { + [anon_sym_in] = ACTIONS(1370), + [sym_comment] = ACTIONS(55), + }, + [302] = { + [aux_sym_concatenation_repeat1] = STATE(723), + [sym__concat] = ACTIONS(557), + [anon_sym_in] = ACTIONS(807), + [anon_sym_SEMI] = ACTIONS(809), + [anon_sym_SEMI_SEMI] = ACTIONS(807), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(807), + [anon_sym_AMP] = ACTIONS(807), + }, + [303] = { + [sym__concat] = ACTIONS(811), + [anon_sym_in] = ACTIONS(811), + [anon_sym_SEMI] = ACTIONS(813), + [anon_sym_SEMI_SEMI] = ACTIONS(811), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(811), + [anon_sym_AMP] = ACTIONS(811), + }, + [304] = { + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_DQUOTE] = ACTIONS(1372), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym__string_content] = ACTIONS(821), + [anon_sym_POUND] = ACTIONS(815), + [sym_comment] = ACTIONS(281), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(823), + [anon_sym_STAR] = ACTIONS(825), + [anon_sym_AT] = ACTIONS(825), + [anon_sym_QMARK] = ACTIONS(825), + [anon_sym_0] = ACTIONS(823), + [anon_sym__] = ACTIONS(823), + }, + [305] = { + [sym_simple_expansion] = STATE(148), + [sym_expansion] = STATE(148), + [sym_command_substitution] = STATE(148), + [aux_sym_string_repeat1] = STATE(473), + [anon_sym_DQUOTE] = ACTIONS(1372), + [anon_sym_DOLLAR] = ACTIONS(1374), + [sym__string_content] = ACTIONS(273), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(277), + [anon_sym_BQUOTE] = ACTIONS(279), + [sym_comment] = ACTIONS(281), + }, + [306] = { + [sym__concat] = ACTIONS(845), + [anon_sym_in] = ACTIONS(845), + [anon_sym_SEMI] = ACTIONS(847), + [anon_sym_SEMI_SEMI] = ACTIONS(845), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(845), + [anon_sym_AMP] = ACTIONS(845), + }, + [307] = { + [sym__concat] = ACTIONS(849), + [anon_sym_in] = ACTIONS(849), + [anon_sym_SEMI] = ACTIONS(851), + [anon_sym_SEMI_SEMI] = ACTIONS(849), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(849), + [anon_sym_AMP] = ACTIONS(849), + }, + [308] = { + [sym__concat] = ACTIONS(853), + [anon_sym_in] = ACTIONS(853), + [anon_sym_SEMI] = ACTIONS(855), + [anon_sym_SEMI_SEMI] = ACTIONS(853), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(853), + [anon_sym_AMP] = ACTIONS(853), + }, + [309] = { + [anon_sym_SEMI] = ACTIONS(1376), + [anon_sym_SEMI_SEMI] = ACTIONS(1378), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1378), + [anon_sym_AMP] = ACTIONS(1378), }, [310] = { - [sym_file_redirect] = STATE(697), - [sym_heredoc_redirect] = STATE(697), - [sym_heredoc_body] = STATE(516), - [sym_herestring_redirect] = STATE(697), - [sym_concatenation] = STATE(700), - [sym_string] = STATE(305), - [sym_simple_expansion] = STATE(305), - [sym_string_expansion] = STATE(305), - [sym_expansion] = STATE(305), - [sym_command_substitution] = STATE(305), - [sym_process_substitution] = STATE(305), - [aux_sym_while_statement_repeat1] = STATE(697), - [aux_sym_command_repeat2] = STATE(700), - [sym__simple_heredoc_body] = ACTIONS(321), - [sym__heredoc_body_beginning] = ACTIONS(323), - [sym_file_descriptor] = ACTIONS(549), - [anon_sym_SEMI] = ACTIONS(959), - [anon_sym_PIPE] = ACTIONS(959), - [anon_sym_RPAREN] = ACTIONS(957), - [anon_sym_SEMI_SEMI] = ACTIONS(957), - [anon_sym_PIPE_AMP] = ACTIONS(957), - [anon_sym_AMP_AMP] = ACTIONS(957), - [anon_sym_PIPE_PIPE] = ACTIONS(957), - [anon_sym_EQ_TILDE] = ACTIONS(551), - [anon_sym_EQ_EQ] = ACTIONS(551), - [anon_sym_LT] = ACTIONS(553), - [anon_sym_GT] = ACTIONS(553), - [anon_sym_GT_GT] = ACTIONS(555), - [anon_sym_AMP_GT] = ACTIONS(553), - [anon_sym_AMP_GT_GT] = ACTIONS(555), - [anon_sym_LT_AMP] = ACTIONS(555), - [anon_sym_GT_AMP] = ACTIONS(555), - [anon_sym_LT_LT] = ACTIONS(337), - [anon_sym_LT_LT_DASH] = ACTIONS(339), - [anon_sym_LT_LT_LT] = ACTIONS(557), - [sym__special_characters] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(561), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(563), - [anon_sym_LF] = ACTIONS(957), - [anon_sym_AMP] = ACTIONS(959), + [anon_sym_in] = ACTIONS(1380), + [sym_comment] = ACTIONS(55), }, [311] = { - [sym_concatenation] = STATE(701), - [sym_string] = STATE(704), - [sym_array] = STATE(701), - [sym_simple_expansion] = STATE(704), - [sym_string_expansion] = STATE(704), - [sym_expansion] = STATE(704), - [sym_command_substitution] = STATE(704), - [sym_process_substitution] = STATE(704), - [sym__empty_value] = ACTIONS(1337), - [anon_sym_LPAREN] = ACTIONS(1339), - [sym__special_characters] = ACTIONS(1341), - [anon_sym_DQUOTE] = ACTIONS(233), - [anon_sym_DOLLAR] = ACTIONS(235), - [sym_raw_string] = ACTIONS(1343), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(239), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(241), - [anon_sym_BQUOTE] = ACTIONS(243), - [anon_sym_LT_LPAREN] = ACTIONS(245), - [anon_sym_GT_LPAREN] = ACTIONS(245), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1343), + [anon_sym_LBRACK] = ACTIONS(857), + [anon_sym_EQ] = ACTIONS(1382), + [sym_comment] = ACTIONS(55), }, [312] = { - [sym__expression] = STATE(705), - [sym_binary_expression] = STATE(705), - [sym_unary_expression] = STATE(705), - [sym_parenthesized_expression] = STATE(705), - [sym_concatenation] = STATE(705), - [sym_string] = STATE(314), - [sym_simple_expansion] = STATE(314), - [sym_string_expansion] = STATE(314), - [sym_expansion] = STATE(314), - [sym_command_substitution] = STATE(314), - [sym_process_substitution] = STATE(314), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_BANG] = ACTIONS(573), - [sym__special_characters] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(163), - [anon_sym_DOLLAR] = ACTIONS(165), - [sym_raw_string] = ACTIONS(577), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(169), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(171), - [anon_sym_BQUOTE] = ACTIONS(173), - [anon_sym_LT_LPAREN] = ACTIONS(175), - [anon_sym_GT_LPAREN] = ACTIONS(175), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(579), - [sym_test_operator] = ACTIONS(581), + [sym_subscript] = STATE(731), + [sym_variable_name] = ACTIONS(1384), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_DOLLAR] = ACTIONS(1386), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1388), + [anon_sym_STAR] = ACTIONS(1390), + [anon_sym_AT] = ACTIONS(1390), + [anon_sym_QMARK] = ACTIONS(1390), + [anon_sym_0] = ACTIONS(1388), + [anon_sym__] = ACTIONS(1388), }, [313] = { - [aux_sym_concatenation_repeat1] = STATE(706), - [sym__concat] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(585), - [anon_sym_AMP_AMP] = ACTIONS(585), - [anon_sym_PIPE_PIPE] = ACTIONS(585), - [anon_sym_EQ_TILDE] = ACTIONS(585), - [anon_sym_EQ_EQ] = ACTIONS(585), - [anon_sym_EQ] = ACTIONS(587), - [anon_sym_LT] = ACTIONS(585), - [anon_sym_GT] = ACTIONS(585), - [anon_sym_BANG_EQ] = ACTIONS(585), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(585), + [sym_concatenation] = STATE(734), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(734), + [anon_sym_RBRACE] = ACTIONS(1392), + [anon_sym_EQ] = ACTIONS(1394), + [anon_sym_DASH] = ACTIONS(1394), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1396), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(1398), + [anon_sym_COLON] = ACTIONS(1394), + [anon_sym_COLON_QMARK] = ACTIONS(1394), + [anon_sym_COLON_DASH] = ACTIONS(1394), + [anon_sym_PERCENT] = ACTIONS(1394), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [314] = { - [aux_sym_concatenation_repeat1] = STATE(706), - [sym__concat] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(601), - [anon_sym_AMP_AMP] = ACTIONS(601), - [anon_sym_PIPE_PIPE] = ACTIONS(601), - [anon_sym_EQ_TILDE] = ACTIONS(601), - [anon_sym_EQ_EQ] = ACTIONS(601), - [anon_sym_EQ] = ACTIONS(603), - [anon_sym_LT] = ACTIONS(601), - [anon_sym_GT] = ACTIONS(601), - [anon_sym_BANG_EQ] = ACTIONS(601), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(601), + [sym_concatenation] = STATE(737), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(737), + [anon_sym_RBRACE] = ACTIONS(1400), + [anon_sym_EQ] = ACTIONS(1402), + [anon_sym_DASH] = ACTIONS(1402), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1404), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(1406), + [anon_sym_COLON] = ACTIONS(1402), + [anon_sym_COLON_QMARK] = ACTIONS(1402), + [anon_sym_COLON_DASH] = ACTIONS(1402), + [anon_sym_PERCENT] = ACTIONS(1402), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [315] = { - [anon_sym_RPAREN] = ACTIONS(1345), - [anon_sym_AMP_AMP] = ACTIONS(1347), - [anon_sym_PIPE_PIPE] = ACTIONS(1347), - [anon_sym_EQ_TILDE] = ACTIONS(1349), - [anon_sym_EQ_EQ] = ACTIONS(1349), - [anon_sym_EQ] = ACTIONS(1351), - [anon_sym_LT] = ACTIONS(1347), - [anon_sym_GT] = ACTIONS(1347), - [anon_sym_BANG_EQ] = ACTIONS(1347), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1347), + [anon_sym_SEMI] = ACTIONS(1408), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(1410), + [anon_sym_SEMI_SEMI] = ACTIONS(1412), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1412), + [anon_sym_AMP] = ACTIONS(1408), }, [316] = { - [anon_sym_AMP_AMP] = ACTIONS(615), - [anon_sym_PIPE_PIPE] = ACTIONS(615), - [anon_sym_RBRACK] = ACTIONS(1353), - [anon_sym_EQ_TILDE] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(619), - [anon_sym_EQ] = ACTIONS(621), - [anon_sym_LT] = ACTIONS(615), - [anon_sym_GT] = ACTIONS(615), - [anon_sym_BANG_EQ] = ACTIONS(615), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(615), + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(1408), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(1410), + [anon_sym_SEMI_SEMI] = ACTIONS(1412), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(1412), + [anon_sym_AMP] = ACTIONS(1408), }, [317] = { - [sym_string] = STATE(710), - [sym_simple_expansion] = STATE(710), - [sym_string_expansion] = STATE(710), - [sym_expansion] = STATE(710), - [sym_command_substitution] = STATE(710), - [sym_process_substitution] = STATE(710), - [sym__special_characters] = ACTIONS(1355), - [anon_sym_DQUOTE] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(141), - [sym_raw_string] = ACTIONS(1355), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(145), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(147), - [anon_sym_BQUOTE] = ACTIONS(149), - [anon_sym_LT_LPAREN] = ACTIONS(151), - [anon_sym_GT_LPAREN] = ACTIONS(151), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1355), + [sym__terminated_statement] = STATE(198), + [sym_for_statement] = STATE(740), + [sym_c_style_for_statement] = STATE(740), + [sym_while_statement] = STATE(740), + [sym_if_statement] = STATE(740), + [sym_case_statement] = STATE(740), + [sym_function_definition] = STATE(740), + [sym_subshell] = STATE(740), + [sym_pipeline] = STATE(740), + [sym_list] = STATE(740), + [sym_negated_command] = STATE(740), + [sym_test_command] = STATE(740), + [sym_declaration_command] = STATE(740), + [sym_unset_command] = STATE(740), + [sym_command] = STATE(740), + [sym_command_name] = STATE(92), + [sym_variable_assignment] = STATE(741), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(96), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), + [aux_sym__statements_repeat1] = STATE(198), + [aux_sym_command_repeat1] = STATE(96), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(137), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(149), + [anon_sym_declare] = ACTIONS(151), + [anon_sym_typeset] = ACTIONS(151), + [anon_sym_export] = ACTIONS(151), + [anon_sym_readonly] = ACTIONS(151), + [anon_sym_local] = ACTIONS(151), + [anon_sym_unset] = ACTIONS(153), + [anon_sym_unsetenv] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(159), }, [318] = { - [aux_sym_concatenation_repeat1] = STATE(711), - [sym__concat] = ACTIONS(583), - [anon_sym_AMP_AMP] = ACTIONS(765), - [anon_sym_PIPE_PIPE] = ACTIONS(765), - [anon_sym_RBRACK] = ACTIONS(765), - [anon_sym_EQ_TILDE] = ACTIONS(765), - [anon_sym_EQ_EQ] = ACTIONS(765), - [anon_sym_EQ] = ACTIONS(767), - [anon_sym_LT] = ACTIONS(765), - [anon_sym_GT] = ACTIONS(765), - [anon_sym_BANG_EQ] = ACTIONS(765), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(765), + [anon_sym_SEMI] = ACTIONS(1414), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_SEMI_SEMI] = ACTIONS(1416), + [anon_sym_PIPE_AMP] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_BQUOTE] = ACTIONS(1410), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1416), + [anon_sym_AMP] = ACTIONS(1414), }, [319] = { - [sym__concat] = ACTIONS(769), - [anon_sym_AMP_AMP] = ACTIONS(769), - [anon_sym_PIPE_PIPE] = ACTIONS(769), - [anon_sym_RBRACK] = ACTIONS(769), - [anon_sym_EQ_TILDE] = ACTIONS(769), - [anon_sym_EQ_EQ] = ACTIONS(769), - [anon_sym_EQ] = ACTIONS(771), - [anon_sym_LT] = ACTIONS(769), - [anon_sym_GT] = ACTIONS(769), - [anon_sym_BANG_EQ] = ACTIONS(769), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(769), + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(1414), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_SEMI_SEMI] = ACTIONS(1416), + [anon_sym_PIPE_AMP] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(1410), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(1416), + [anon_sym_AMP] = ACTIONS(1414), }, [320] = { - [anon_sym_DQUOTE] = ACTIONS(1357), - [anon_sym_DOLLAR] = ACTIONS(775), - [sym__string_content] = ACTIONS(777), - [anon_sym_POUND] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(781), - [anon_sym_STAR] = ACTIONS(783), - [anon_sym_AT] = ACTIONS(783), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_0] = ACTIONS(781), - [anon_sym__] = ACTIONS(781), + [sym__terminated_statement] = STATE(198), + [sym_for_statement] = STATE(743), + [sym_c_style_for_statement] = STATE(743), + [sym_while_statement] = STATE(743), + [sym_if_statement] = STATE(743), + [sym_case_statement] = STATE(743), + [sym_function_definition] = STATE(743), + [sym_subshell] = STATE(743), + [sym_pipeline] = STATE(743), + [sym_list] = STATE(743), + [sym_negated_command] = STATE(743), + [sym_test_command] = STATE(743), + [sym_declaration_command] = STATE(743), + [sym_unset_command] = STATE(743), + [sym_command] = STATE(743), + [sym_command_name] = STATE(173), + [sym_variable_assignment] = STATE(744), + [sym_subscript] = STATE(66), + [sym_file_redirect] = STATE(176), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(60), + [sym_simple_expansion] = STATE(60), + [sym_string_expansion] = STATE(60), + [sym_expansion] = STATE(60), + [sym_command_substitution] = STATE(60), + [sym_process_substitution] = STATE(60), + [aux_sym__statements_repeat1] = STATE(198), + [aux_sym_command_repeat1] = STATE(176), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(95), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(305), + [anon_sym_while] = ACTIONS(307), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(311), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(315), + [anon_sym_declare] = ACTIONS(317), + [anon_sym_typeset] = ACTIONS(317), + [anon_sym_export] = ACTIONS(317), + [anon_sym_readonly] = ACTIONS(317), + [anon_sym_local] = ACTIONS(317), + [anon_sym_unset] = ACTIONS(319), + [anon_sym_unsetenv] = ACTIONS(319), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(115), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(321), }, [321] = { - [sym_simple_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [sym_command_substitution] = STATE(141), - [aux_sym_string_repeat1] = STATE(450), - [anon_sym_DQUOTE] = ACTIONS(1357), - [anon_sym_DOLLAR] = ACTIONS(1359), - [sym__string_content] = ACTIONS(257), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(261), - [anon_sym_BQUOTE] = ACTIONS(263), - [sym_comment] = ACTIONS(265), + [anon_sym_SEMI] = ACTIONS(1418), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(1420), + [anon_sym_SEMI_SEMI] = ACTIONS(1422), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1422), + [anon_sym_AMP] = ACTIONS(1418), }, [322] = { - [sym__concat] = ACTIONS(803), - [anon_sym_AMP_AMP] = ACTIONS(803), - [anon_sym_PIPE_PIPE] = ACTIONS(803), - [anon_sym_RBRACK] = ACTIONS(803), - [anon_sym_EQ_TILDE] = ACTIONS(803), - [anon_sym_EQ_EQ] = ACTIONS(803), - [anon_sym_EQ] = ACTIONS(805), - [anon_sym_LT] = ACTIONS(803), - [anon_sym_GT] = ACTIONS(803), - [anon_sym_BANG_EQ] = ACTIONS(803), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(803), + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(1418), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(1420), + [anon_sym_SEMI_SEMI] = ACTIONS(1422), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(1422), + [anon_sym_AMP] = ACTIONS(1418), }, [323] = { - [sym__concat] = ACTIONS(807), + [sym__terminated_statement] = STATE(198), + [sym_for_statement] = STATE(747), + [sym_c_style_for_statement] = STATE(747), + [sym_while_statement] = STATE(747), + [sym_if_statement] = STATE(747), + [sym_case_statement] = STATE(747), + [sym_function_definition] = STATE(747), + [sym_subshell] = STATE(747), + [sym_pipeline] = STATE(747), + [sym_list] = STATE(747), + [sym_negated_command] = STATE(747), + [sym_test_command] = STATE(747), + [sym_declaration_command] = STATE(747), + [sym_unset_command] = STATE(747), + [sym_command] = STATE(747), + [sym_command_name] = STATE(92), + [sym_variable_assignment] = STATE(748), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(96), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), + [aux_sym__statements_repeat1] = STATE(198), + [aux_sym_command_repeat1] = STATE(96), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(137), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(149), + [anon_sym_declare] = ACTIONS(151), + [anon_sym_typeset] = ACTIONS(151), + [anon_sym_export] = ACTIONS(151), + [anon_sym_readonly] = ACTIONS(151), + [anon_sym_local] = ACTIONS(151), + [anon_sym_unset] = ACTIONS(153), + [anon_sym_unsetenv] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(159), + }, + [324] = { + [anon_sym_RPAREN] = ACTIONS(1424), + [sym_comment] = ACTIONS(55), + }, + [325] = { + [sym__terminated_statement] = STATE(753), + [sym_for_statement] = STATE(751), + [sym_c_style_for_statement] = STATE(751), + [sym_while_statement] = STATE(751), + [sym_if_statement] = STATE(751), + [sym_case_statement] = STATE(751), + [sym_function_definition] = STATE(751), + [sym_subshell] = STATE(751), + [sym_pipeline] = STATE(751), + [sym_list] = STATE(751), + [sym_negated_command] = STATE(751), + [sym_test_command] = STATE(751), + [sym_declaration_command] = STATE(751), + [sym_unset_command] = STATE(751), + [sym_command] = STATE(751), + [sym_command_name] = STATE(64), + [sym_variable_assignment] = STATE(752), + [sym_subscript] = STATE(66), + [sym_file_redirect] = STATE(67), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(60), + [sym_simple_expansion] = STATE(60), + [sym_string_expansion] = STATE(60), + [sym_expansion] = STATE(60), + [sym_command_substitution] = STATE(60), + [sym_process_substitution] = STATE(60), + [aux_sym__statements_repeat1] = STATE(753), + [aux_sym_command_repeat1] = STATE(67), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(95), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(97), + [anon_sym_while] = ACTIONS(99), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(101), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(1426), + [anon_sym_BANG] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_LBRACK] = ACTIONS(107), + [anon_sym_declare] = ACTIONS(109), + [anon_sym_typeset] = ACTIONS(109), + [anon_sym_export] = ACTIONS(109), + [anon_sym_readonly] = ACTIONS(109), + [anon_sym_local] = ACTIONS(109), + [anon_sym_unset] = ACTIONS(111), + [anon_sym_unsetenv] = ACTIONS(111), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(115), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(117), + }, + [326] = { + [sym_file_redirect] = STATE(756), + [sym_file_descriptor] = ACTIONS(1428), + [ts_builtin_sym_end] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(1432), + [anon_sym_PIPE] = ACTIONS(1432), + [anon_sym_SEMI_SEMI] = ACTIONS(1430), + [anon_sym_PIPE_AMP] = ACTIONS(1430), + [anon_sym_AMP_AMP] = ACTIONS(1430), + [anon_sym_PIPE_PIPE] = ACTIONS(1430), + [anon_sym_LT] = ACTIONS(1434), + [anon_sym_GT] = ACTIONS(1434), + [anon_sym_GT_GT] = ACTIONS(1436), + [anon_sym_AMP_GT] = ACTIONS(1434), + [anon_sym_AMP_GT_GT] = ACTIONS(1436), + [anon_sym_LT_AMP] = ACTIONS(1436), + [anon_sym_GT_AMP] = ACTIONS(1436), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1430), + [anon_sym_AMP] = ACTIONS(1432), + }, + [327] = { + [sym_concatenation] = STATE(207), + [sym_string] = STATE(758), + [sym_array] = STATE(207), + [sym_simple_expansion] = STATE(758), + [sym_string_expansion] = STATE(758), + [sym_expansion] = STATE(758), + [sym_command_substitution] = STATE(758), + [sym_process_substitution] = STATE(758), + [sym__empty_value] = ACTIONS(381), + [anon_sym_LPAREN] = ACTIONS(383), + [sym__special_characters] = ACTIONS(1438), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(389), + [sym_raw_string] = ACTIONS(1440), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(393), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(395), + [anon_sym_BQUOTE] = ACTIONS(397), + [anon_sym_LT_LPAREN] = ACTIONS(399), + [anon_sym_GT_LPAREN] = ACTIONS(399), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1440), + }, + [328] = { + [anon_sym_RPAREN_RPAREN] = ACTIONS(1442), + [anon_sym_AMP_AMP] = ACTIONS(493), + [anon_sym_PIPE_PIPE] = ACTIONS(493), + [anon_sym_EQ_TILDE] = ACTIONS(495), + [anon_sym_EQ_EQ] = ACTIONS(495), + [anon_sym_EQ] = ACTIONS(497), + [anon_sym_PLUS_EQ] = ACTIONS(493), + [anon_sym_LT] = ACTIONS(497), + [anon_sym_GT] = ACTIONS(497), + [anon_sym_BANG_EQ] = ACTIONS(493), + [anon_sym_PLUS] = ACTIONS(497), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_DASH_EQ] = ACTIONS(493), + [anon_sym_LT_EQ] = ACTIONS(493), + [anon_sym_GT_EQ] = ACTIONS(493), + [anon_sym_PLUS_PLUS] = ACTIONS(499), + [anon_sym_DASH_DASH] = ACTIONS(499), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(493), + }, + [329] = { + [sym_do_group] = STATE(760), + [anon_sym_do] = ACTIONS(525), + [sym_comment] = ACTIONS(55), + }, + [330] = { + [sym_compound_statement] = STATE(762), + [anon_sym_LPAREN] = ACTIONS(1444), + [anon_sym_LBRACE] = ACTIONS(595), + [sym_comment] = ACTIONS(55), + }, + [331] = { + [anon_sym_AMP_AMP] = ACTIONS(681), + [anon_sym_PIPE_PIPE] = ACTIONS(681), + [anon_sym_RBRACK] = ACTIONS(1442), + [anon_sym_EQ_TILDE] = ACTIONS(683), + [anon_sym_EQ_EQ] = ACTIONS(683), + [anon_sym_EQ] = ACTIONS(685), + [anon_sym_PLUS_EQ] = ACTIONS(681), + [anon_sym_LT] = ACTIONS(685), + [anon_sym_GT] = ACTIONS(685), + [anon_sym_BANG_EQ] = ACTIONS(681), + [anon_sym_PLUS] = ACTIONS(685), + [anon_sym_DASH] = ACTIONS(685), + [anon_sym_DASH_EQ] = ACTIONS(681), + [anon_sym_LT_EQ] = ACTIONS(681), + [anon_sym_GT_EQ] = ACTIONS(681), + [anon_sym_PLUS_PLUS] = ACTIONS(687), + [anon_sym_DASH_DASH] = ACTIONS(687), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(681), + }, + [332] = { + [anon_sym_AMP_AMP] = ACTIONS(689), + [anon_sym_PIPE_PIPE] = ACTIONS(689), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1442), + [anon_sym_EQ_TILDE] = ACTIONS(691), + [anon_sym_EQ_EQ] = ACTIONS(691), + [anon_sym_EQ] = ACTIONS(693), + [anon_sym_PLUS_EQ] = ACTIONS(689), + [anon_sym_LT] = ACTIONS(693), + [anon_sym_GT] = ACTIONS(693), + [anon_sym_BANG_EQ] = ACTIONS(689), + [anon_sym_PLUS] = ACTIONS(693), + [anon_sym_DASH] = ACTIONS(693), + [anon_sym_DASH_EQ] = ACTIONS(689), + [anon_sym_LT_EQ] = ACTIONS(689), + [anon_sym_GT_EQ] = ACTIONS(689), + [anon_sym_PLUS_PLUS] = ACTIONS(499), + [anon_sym_DASH_DASH] = ACTIONS(499), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(689), + }, + [333] = { + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_EQ] = ACTIONS(1446), + [anon_sym_PLUS_EQ] = ACTIONS(1446), + [sym_comment] = ACTIONS(55), + }, + [334] = { + [aux_sym_concatenation_repeat1] = STATE(764), + [sym__concat] = ACTIONS(697), + [sym_variable_name] = ACTIONS(699), + [anon_sym_SEMI] = ACTIONS(701), + [anon_sym_PIPE] = ACTIONS(701), + [anon_sym_RPAREN] = ACTIONS(699), + [anon_sym_SEMI_SEMI] = ACTIONS(699), + [anon_sym_PIPE_AMP] = ACTIONS(699), + [anon_sym_AMP_AMP] = ACTIONS(699), + [anon_sym_PIPE_PIPE] = ACTIONS(699), + [sym__special_characters] = ACTIONS(699), + [anon_sym_DQUOTE] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(701), + [sym_raw_string] = ACTIONS(699), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(699), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(699), + [anon_sym_BQUOTE] = ACTIONS(699), + [anon_sym_LT_LPAREN] = ACTIONS(699), + [anon_sym_GT_LPAREN] = ACTIONS(699), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(701), + [sym_word] = ACTIONS(701), + [anon_sym_LF] = ACTIONS(699), + [anon_sym_AMP] = ACTIONS(701), + }, + [335] = { + [aux_sym_concatenation_repeat1] = STATE(764), + [sym__concat] = ACTIONS(697), + [sym_variable_name] = ACTIONS(715), + [anon_sym_SEMI] = ACTIONS(717), + [anon_sym_PIPE] = ACTIONS(717), + [anon_sym_RPAREN] = ACTIONS(715), + [anon_sym_SEMI_SEMI] = ACTIONS(715), + [anon_sym_PIPE_AMP] = ACTIONS(715), + [anon_sym_AMP_AMP] = ACTIONS(715), + [anon_sym_PIPE_PIPE] = ACTIONS(715), + [sym__special_characters] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(715), + [anon_sym_DOLLAR] = ACTIONS(717), + [sym_raw_string] = ACTIONS(715), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(715), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(715), + [anon_sym_BQUOTE] = ACTIONS(715), + [anon_sym_LT_LPAREN] = ACTIONS(715), + [anon_sym_GT_LPAREN] = ACTIONS(715), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(717), + [sym_word] = ACTIONS(717), + [anon_sym_LF] = ACTIONS(715), + [anon_sym_AMP] = ACTIONS(717), + }, + [336] = { + [anon_sym_EQ] = ACTIONS(1446), + [anon_sym_PLUS_EQ] = ACTIONS(1446), + [sym_comment] = ACTIONS(55), + }, + [337] = { + [sym_variable_assignment] = STATE(765), + [sym_subscript] = STATE(336), + [sym_concatenation] = STATE(765), + [sym_string] = STATE(335), + [sym_simple_expansion] = STATE(335), + [sym_string_expansion] = STATE(335), + [sym_expansion] = STATE(335), + [sym_command_substitution] = STATE(335), + [sym_process_substitution] = STATE(335), + [aux_sym_declaration_command_repeat1] = STATE(765), + [sym_variable_name] = ACTIONS(601), + [anon_sym_SEMI] = ACTIONS(731), + [anon_sym_PIPE] = ACTIONS(731), + [anon_sym_RPAREN] = ACTIONS(729), + [anon_sym_SEMI_SEMI] = ACTIONS(729), + [anon_sym_PIPE_AMP] = ACTIONS(729), + [anon_sym_AMP_AMP] = ACTIONS(729), + [anon_sym_PIPE_PIPE] = ACTIONS(729), + [sym__special_characters] = ACTIONS(603), + [anon_sym_DQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR] = ACTIONS(207), + [sym_raw_string] = ACTIONS(605), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_LT_LPAREN] = ACTIONS(217), + [anon_sym_GT_LPAREN] = ACTIONS(217), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1448), + [sym_word] = ACTIONS(609), + [anon_sym_LF] = ACTIONS(729), + [anon_sym_AMP] = ACTIONS(731), + }, + [338] = { + [aux_sym_concatenation_repeat1] = STATE(766), + [sym__concat] = ACTIONS(735), + [anon_sym_SEMI] = ACTIONS(739), + [anon_sym_PIPE] = ACTIONS(739), + [anon_sym_RPAREN] = ACTIONS(737), + [anon_sym_SEMI_SEMI] = ACTIONS(737), + [anon_sym_PIPE_AMP] = ACTIONS(737), + [anon_sym_AMP_AMP] = ACTIONS(737), + [anon_sym_PIPE_PIPE] = ACTIONS(737), + [sym__special_characters] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(737), + [anon_sym_DOLLAR] = ACTIONS(739), + [sym_raw_string] = ACTIONS(737), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(737), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(737), + [anon_sym_BQUOTE] = ACTIONS(737), + [anon_sym_LT_LPAREN] = ACTIONS(737), + [anon_sym_GT_LPAREN] = ACTIONS(737), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(739), + [sym_word] = ACTIONS(739), + [anon_sym_LF] = ACTIONS(737), + [anon_sym_AMP] = ACTIONS(739), + }, + [339] = { + [aux_sym_concatenation_repeat1] = STATE(766), + [sym__concat] = ACTIONS(735), + [anon_sym_SEMI] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_RPAREN] = ACTIONS(753), + [anon_sym_SEMI_SEMI] = ACTIONS(753), + [anon_sym_PIPE_AMP] = ACTIONS(753), + [anon_sym_AMP_AMP] = ACTIONS(753), + [anon_sym_PIPE_PIPE] = ACTIONS(753), + [sym__special_characters] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(753), + [anon_sym_DOLLAR] = ACTIONS(755), + [sym_raw_string] = ACTIONS(753), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(753), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(753), + [anon_sym_LT_LPAREN] = ACTIONS(753), + [anon_sym_GT_LPAREN] = ACTIONS(753), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(755), + [sym_word] = ACTIONS(755), + [anon_sym_LF] = ACTIONS(753), + [anon_sym_AMP] = ACTIONS(755), + }, + [340] = { + [sym_concatenation] = STATE(767), + [sym_string] = STATE(339), + [sym_simple_expansion] = STATE(339), + [sym_string_expansion] = STATE(339), + [sym_expansion] = STATE(339), + [sym_command_substitution] = STATE(339), + [sym_process_substitution] = STATE(339), + [aux_sym_unset_command_repeat1] = STATE(767), + [anon_sym_SEMI] = ACTIONS(769), + [anon_sym_PIPE] = ACTIONS(769), + [anon_sym_RPAREN] = ACTIONS(767), + [anon_sym_SEMI_SEMI] = ACTIONS(767), + [anon_sym_PIPE_AMP] = ACTIONS(767), + [anon_sym_AMP_AMP] = ACTIONS(767), + [anon_sym_PIPE_PIPE] = ACTIONS(767), + [sym__special_characters] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(229), + [anon_sym_DOLLAR] = ACTIONS(231), + [sym_raw_string] = ACTIONS(613), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), + [anon_sym_BQUOTE] = ACTIONS(239), + [anon_sym_LT_LPAREN] = ACTIONS(241), + [anon_sym_GT_LPAREN] = ACTIONS(241), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1450), + [sym_word] = ACTIONS(617), + [anon_sym_LF] = ACTIONS(767), + [anon_sym_AMP] = ACTIONS(769), + }, + [341] = { + [aux_sym_concatenation_repeat1] = STATE(768), + [sym__simple_heredoc_body] = ACTIONS(807), + [sym__heredoc_body_beginning] = ACTIONS(807), + [sym_file_descriptor] = ACTIONS(807), + [sym__concat] = ACTIONS(265), + [anon_sym_SEMI] = ACTIONS(809), + [anon_sym_PIPE] = ACTIONS(809), + [anon_sym_RPAREN] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(807), + [anon_sym_PIPE_AMP] = ACTIONS(807), + [anon_sym_AMP_AMP] = ACTIONS(807), + [anon_sym_PIPE_PIPE] = ACTIONS(807), + [anon_sym_EQ_TILDE] = ACTIONS(809), + [anon_sym_EQ_EQ] = ACTIONS(809), + [anon_sym_LT] = ACTIONS(809), + [anon_sym_GT] = ACTIONS(809), + [anon_sym_GT_GT] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(809), + [anon_sym_AMP_GT_GT] = ACTIONS(807), + [anon_sym_LT_AMP] = ACTIONS(807), + [anon_sym_GT_AMP] = ACTIONS(807), + [anon_sym_LT_LT] = ACTIONS(809), + [anon_sym_LT_LT_DASH] = ACTIONS(807), + [anon_sym_LT_LT_LT] = ACTIONS(807), + [sym__special_characters] = ACTIONS(807), + [anon_sym_DQUOTE] = ACTIONS(807), + [anon_sym_DOLLAR] = ACTIONS(809), + [sym_raw_string] = ACTIONS(807), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(807), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(807), + [anon_sym_BQUOTE] = ACTIONS(807), + [anon_sym_LT_LPAREN] = ACTIONS(807), + [anon_sym_GT_LPAREN] = ACTIONS(807), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(809), + [anon_sym_LF] = ACTIONS(807), + [anon_sym_AMP] = ACTIONS(809), + }, + [342] = { + [anon_sym_RPAREN] = ACTIONS(1452), + [sym_comment] = ACTIONS(55), + }, + [343] = { + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(1454), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), + }, + [344] = { + [sym_for_statement] = STATE(521), + [sym_c_style_for_statement] = STATE(521), + [sym_while_statement] = STATE(521), + [sym_if_statement] = STATE(521), + [sym_case_statement] = STATE(521), + [sym_function_definition] = STATE(521), + [sym_subshell] = STATE(521), + [sym_pipeline] = STATE(521), + [sym_list] = STATE(521), + [sym_negated_command] = STATE(521), + [sym_test_command] = STATE(521), + [sym_declaration_command] = STATE(521), + [sym_unset_command] = STATE(521), + [sym_command] = STATE(521), + [sym_command_name] = STATE(92), + [sym_variable_assignment] = STATE(522), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(96), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), + [aux_sym_command_repeat1] = STATE(96), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(137), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(149), + [anon_sym_declare] = ACTIONS(151), + [anon_sym_typeset] = ACTIONS(151), + [anon_sym_export] = ACTIONS(151), + [anon_sym_readonly] = ACTIONS(151), + [anon_sym_local] = ACTIONS(151), + [anon_sym_unset] = ACTIONS(153), + [anon_sym_unsetenv] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(159), + }, + [345] = { + [ts_builtin_sym_end] = ACTIONS(1456), + [anon_sym_SEMI] = ACTIONS(1458), + [anon_sym_esac] = ACTIONS(1456), + [anon_sym_PIPE] = ACTIONS(1458), + [anon_sym_RPAREN] = ACTIONS(1456), + [anon_sym_SEMI_SEMI] = ACTIONS(1456), + [anon_sym_PIPE_AMP] = ACTIONS(1456), + [anon_sym_AMP_AMP] = ACTIONS(1456), + [anon_sym_PIPE_PIPE] = ACTIONS(1456), + [anon_sym_BQUOTE] = ACTIONS(1456), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1456), + [anon_sym_AMP] = ACTIONS(1458), + }, + [346] = { + [sym_for_statement] = STATE(771), + [sym_c_style_for_statement] = STATE(771), + [sym_while_statement] = STATE(771), + [sym_if_statement] = STATE(771), + [sym_case_statement] = STATE(771), + [sym_function_definition] = STATE(771), + [sym_subshell] = STATE(771), + [sym_pipeline] = STATE(771), + [sym_list] = STATE(771), + [sym_negated_command] = STATE(771), + [sym_test_command] = STATE(771), + [sym_declaration_command] = STATE(771), + [sym_unset_command] = STATE(771), + [sym_command] = STATE(771), + [sym_command_name] = STATE(92), + [sym_variable_assignment] = STATE(772), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(96), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), + [aux_sym_command_repeat1] = STATE(96), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(137), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(149), + [anon_sym_declare] = ACTIONS(151), + [anon_sym_typeset] = ACTIONS(151), + [anon_sym_export] = ACTIONS(151), + [anon_sym_readonly] = ACTIONS(151), + [anon_sym_local] = ACTIONS(151), + [anon_sym_unset] = ACTIONS(153), + [anon_sym_unsetenv] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(159), + }, + [347] = { + [anon_sym_LT] = ACTIONS(1460), + [anon_sym_GT] = ACTIONS(1460), + [anon_sym_GT_GT] = ACTIONS(1462), + [anon_sym_AMP_GT] = ACTIONS(1460), + [anon_sym_AMP_GT_GT] = ACTIONS(1462), + [anon_sym_LT_AMP] = ACTIONS(1462), + [anon_sym_GT_AMP] = ACTIONS(1462), + [sym_comment] = ACTIONS(55), + }, + [348] = { + [sym_concatenation] = STATE(530), + [sym_string] = STATE(775), + [sym_simple_expansion] = STATE(775), + [sym_string_expansion] = STATE(775), + [sym_expansion] = STATE(775), + [sym_command_substitution] = STATE(775), + [sym_process_substitution] = STATE(775), + [sym_regex] = ACTIONS(965), + [sym__special_characters] = ACTIONS(1464), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(1466), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1466), + }, + [349] = { + [sym_concatenation] = STATE(535), + [sym_string] = STATE(777), + [sym_simple_expansion] = STATE(777), + [sym_string_expansion] = STATE(777), + [sym_expansion] = STATE(777), + [sym_command_substitution] = STATE(777), + [sym_process_substitution] = STATE(777), + [sym__special_characters] = ACTIONS(1468), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(1470), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1470), + }, + [350] = { + [sym_concatenation] = STATE(539), + [sym_string] = STATE(779), + [sym_simple_expansion] = STATE(779), + [sym_string_expansion] = STATE(779), + [sym_expansion] = STATE(779), + [sym_command_substitution] = STATE(779), + [sym_process_substitution] = STATE(779), + [sym__special_characters] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(1474), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1474), + }, + [351] = { + [aux_sym_concatenation_repeat1] = STATE(341), + [sym__simple_heredoc_body] = ACTIONS(981), + [sym__heredoc_body_beginning] = ACTIONS(981), + [sym_file_descriptor] = ACTIONS(981), + [sym__concat] = ACTIONS(265), + [anon_sym_SEMI] = ACTIONS(983), + [anon_sym_PIPE] = ACTIONS(983), + [anon_sym_RPAREN] = ACTIONS(981), + [anon_sym_SEMI_SEMI] = ACTIONS(981), + [anon_sym_PIPE_AMP] = ACTIONS(981), + [anon_sym_AMP_AMP] = ACTIONS(981), + [anon_sym_PIPE_PIPE] = ACTIONS(981), + [anon_sym_EQ_TILDE] = ACTIONS(983), + [anon_sym_EQ_EQ] = ACTIONS(983), + [anon_sym_LT] = ACTIONS(983), + [anon_sym_GT] = ACTIONS(983), + [anon_sym_GT_GT] = ACTIONS(981), + [anon_sym_AMP_GT] = ACTIONS(983), + [anon_sym_AMP_GT_GT] = ACTIONS(981), + [anon_sym_LT_AMP] = ACTIONS(981), + [anon_sym_GT_AMP] = ACTIONS(981), + [anon_sym_LT_LT] = ACTIONS(983), + [anon_sym_LT_LT_DASH] = ACTIONS(981), + [anon_sym_LT_LT_LT] = ACTIONS(981), + [sym__special_characters] = ACTIONS(981), + [anon_sym_DQUOTE] = ACTIONS(981), + [anon_sym_DOLLAR] = ACTIONS(983), + [sym_raw_string] = ACTIONS(981), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(981), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(981), + [anon_sym_BQUOTE] = ACTIONS(981), + [anon_sym_LT_LPAREN] = ACTIONS(981), + [anon_sym_GT_LPAREN] = ACTIONS(981), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(983), + [anon_sym_LF] = ACTIONS(981), + [anon_sym_AMP] = ACTIONS(983), + }, + [352] = { + [aux_sym_concatenation_repeat1] = STATE(341), + [sym__simple_heredoc_body] = ACTIONS(985), + [sym__heredoc_body_beginning] = ACTIONS(985), + [sym_file_descriptor] = ACTIONS(985), + [sym__concat] = ACTIONS(265), + [anon_sym_SEMI] = ACTIONS(987), + [anon_sym_PIPE] = ACTIONS(987), + [anon_sym_RPAREN] = ACTIONS(985), + [anon_sym_SEMI_SEMI] = ACTIONS(985), + [anon_sym_PIPE_AMP] = ACTIONS(985), + [anon_sym_AMP_AMP] = ACTIONS(985), + [anon_sym_PIPE_PIPE] = ACTIONS(985), + [anon_sym_EQ_TILDE] = ACTIONS(987), + [anon_sym_EQ_EQ] = ACTIONS(987), + [anon_sym_LT] = ACTIONS(987), + [anon_sym_GT] = ACTIONS(987), + [anon_sym_GT_GT] = ACTIONS(985), + [anon_sym_AMP_GT] = ACTIONS(987), + [anon_sym_AMP_GT_GT] = ACTIONS(985), + [anon_sym_LT_AMP] = ACTIONS(985), + [anon_sym_GT_AMP] = ACTIONS(985), + [anon_sym_LT_LT] = ACTIONS(987), + [anon_sym_LT_LT_DASH] = ACTIONS(985), + [anon_sym_LT_LT_LT] = ACTIONS(985), + [sym__special_characters] = ACTIONS(985), + [anon_sym_DQUOTE] = ACTIONS(985), + [anon_sym_DOLLAR] = ACTIONS(987), + [sym_raw_string] = ACTIONS(985), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(985), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(985), + [anon_sym_BQUOTE] = ACTIONS(985), + [anon_sym_LT_LPAREN] = ACTIONS(985), + [anon_sym_GT_LPAREN] = ACTIONS(985), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(987), + [anon_sym_LF] = ACTIONS(985), + [anon_sym_AMP] = ACTIONS(987), + }, + [353] = { + [sym_file_redirect] = STATE(780), + [sym_heredoc_redirect] = STATE(780), + [sym_heredoc_body] = STATE(540), + [sym_herestring_redirect] = STATE(780), + [aux_sym_while_statement_repeat1] = STATE(780), + [sym__simple_heredoc_body] = ACTIONS(339), + [sym__heredoc_body_beginning] = ACTIONS(341), + [sym_file_descriptor] = ACTIONS(633), + [anon_sym_SEMI] = ACTIONS(991), + [anon_sym_PIPE] = ACTIONS(991), + [anon_sym_RPAREN] = ACTIONS(989), + [anon_sym_SEMI_SEMI] = ACTIONS(989), + [anon_sym_PIPE_AMP] = ACTIONS(989), + [anon_sym_AMP_AMP] = ACTIONS(989), + [anon_sym_PIPE_PIPE] = ACTIONS(989), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_GT] = ACTIONS(637), + [anon_sym_GT_GT] = ACTIONS(639), + [anon_sym_AMP_GT] = ACTIONS(637), + [anon_sym_AMP_GT_GT] = ACTIONS(639), + [anon_sym_LT_AMP] = ACTIONS(639), + [anon_sym_GT_AMP] = ACTIONS(639), + [anon_sym_LT_LT] = ACTIONS(355), + [anon_sym_LT_LT_DASH] = ACTIONS(357), + [anon_sym_LT_LT_LT] = ACTIONS(641), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(991), + }, + [354] = { + [sym_file_redirect] = STATE(781), + [sym_heredoc_redirect] = STATE(781), + [sym_heredoc_body] = STATE(540), + [sym_herestring_redirect] = STATE(781), + [sym_concatenation] = STATE(782), + [sym_string] = STATE(352), + [sym_simple_expansion] = STATE(352), + [sym_string_expansion] = STATE(352), + [sym_expansion] = STATE(352), + [sym_command_substitution] = STATE(352), + [sym_process_substitution] = STATE(352), + [aux_sym_while_statement_repeat1] = STATE(781), + [aux_sym_command_repeat2] = STATE(782), + [sym__simple_heredoc_body] = ACTIONS(339), + [sym__heredoc_body_beginning] = ACTIONS(341), + [sym_file_descriptor] = ACTIONS(633), + [anon_sym_SEMI] = ACTIONS(991), + [anon_sym_PIPE] = ACTIONS(991), + [anon_sym_RPAREN] = ACTIONS(989), + [anon_sym_SEMI_SEMI] = ACTIONS(989), + [anon_sym_PIPE_AMP] = ACTIONS(989), + [anon_sym_AMP_AMP] = ACTIONS(989), + [anon_sym_PIPE_PIPE] = ACTIONS(989), + [anon_sym_EQ_TILDE] = ACTIONS(635), + [anon_sym_EQ_EQ] = ACTIONS(635), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_GT] = ACTIONS(637), + [anon_sym_GT_GT] = ACTIONS(639), + [anon_sym_AMP_GT] = ACTIONS(637), + [anon_sym_AMP_GT_GT] = ACTIONS(639), + [anon_sym_LT_AMP] = ACTIONS(639), + [anon_sym_GT_AMP] = ACTIONS(639), + [anon_sym_LT_LT] = ACTIONS(355), + [anon_sym_LT_LT_DASH] = ACTIONS(357), + [anon_sym_LT_LT_LT] = ACTIONS(641), + [sym__special_characters] = ACTIONS(643), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(645), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(647), + [anon_sym_LF] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(991), + }, + [355] = { + [anon_sym_SEMI] = ACTIONS(1476), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(1454), + [anon_sym_SEMI_SEMI] = ACTIONS(1478), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1478), + [anon_sym_AMP] = ACTIONS(1476), + }, + [356] = { + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(1476), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(1454), + [anon_sym_SEMI_SEMI] = ACTIONS(1478), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(1478), + [anon_sym_AMP] = ACTIONS(1476), + }, + [357] = { + [sym_file_redirect] = STATE(781), + [sym_heredoc_redirect] = STATE(781), + [sym_heredoc_body] = STATE(540), + [sym_herestring_redirect] = STATE(781), + [sym_concatenation] = STATE(784), + [sym_string] = STATE(352), + [sym_simple_expansion] = STATE(352), + [sym_string_expansion] = STATE(352), + [sym_expansion] = STATE(352), + [sym_command_substitution] = STATE(352), + [sym_process_substitution] = STATE(352), + [aux_sym_while_statement_repeat1] = STATE(781), + [aux_sym_command_repeat2] = STATE(784), + [sym__simple_heredoc_body] = ACTIONS(339), + [sym__heredoc_body_beginning] = ACTIONS(341), + [sym_file_descriptor] = ACTIONS(633), + [anon_sym_SEMI] = ACTIONS(991), + [anon_sym_PIPE] = ACTIONS(991), + [anon_sym_RPAREN] = ACTIONS(989), + [anon_sym_SEMI_SEMI] = ACTIONS(989), + [anon_sym_PIPE_AMP] = ACTIONS(989), + [anon_sym_AMP_AMP] = ACTIONS(989), + [anon_sym_PIPE_PIPE] = ACTIONS(989), + [anon_sym_EQ_TILDE] = ACTIONS(635), + [anon_sym_EQ_EQ] = ACTIONS(635), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_GT] = ACTIONS(637), + [anon_sym_GT_GT] = ACTIONS(639), + [anon_sym_AMP_GT] = ACTIONS(637), + [anon_sym_AMP_GT_GT] = ACTIONS(639), + [anon_sym_LT_AMP] = ACTIONS(639), + [anon_sym_GT_AMP] = ACTIONS(639), + [anon_sym_LT_LT] = ACTIONS(355), + [anon_sym_LT_LT_DASH] = ACTIONS(357), + [anon_sym_LT_LT_LT] = ACTIONS(641), + [sym__special_characters] = ACTIONS(643), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(645), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(647), + [anon_sym_LF] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(991), + }, + [358] = { + [sym_concatenation] = STATE(785), + [sym_string] = STATE(788), + [sym_array] = STATE(785), + [sym_simple_expansion] = STATE(788), + [sym_string_expansion] = STATE(788), + [sym_expansion] = STATE(788), + [sym_command_substitution] = STATE(788), + [sym_process_substitution] = STATE(788), + [sym__empty_value] = ACTIONS(1480), + [anon_sym_LPAREN] = ACTIONS(1482), + [sym__special_characters] = ACTIONS(1484), + [anon_sym_DQUOTE] = ACTIONS(249), + [anon_sym_DOLLAR] = ACTIONS(251), + [sym_raw_string] = ACTIONS(1486), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(255), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(257), + [anon_sym_BQUOTE] = ACTIONS(259), + [anon_sym_LT_LPAREN] = ACTIONS(261), + [anon_sym_GT_LPAREN] = ACTIONS(261), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1486), + }, + [359] = { + [anon_sym_RPAREN] = ACTIONS(1488), + [anon_sym_AMP_AMP] = ACTIONS(1240), + [anon_sym_PIPE_PIPE] = ACTIONS(1240), + [anon_sym_EQ_TILDE] = ACTIONS(1242), + [anon_sym_EQ_EQ] = ACTIONS(1242), + [anon_sym_EQ] = ACTIONS(1244), + [anon_sym_PLUS_EQ] = ACTIONS(1240), + [anon_sym_LT] = ACTIONS(1244), + [anon_sym_GT] = ACTIONS(1244), + [anon_sym_BANG_EQ] = ACTIONS(1240), + [anon_sym_PLUS] = ACTIONS(1244), + [anon_sym_DASH] = ACTIONS(1244), + [anon_sym_DASH_EQ] = ACTIONS(1240), + [anon_sym_LT_EQ] = ACTIONS(1240), + [anon_sym_GT_EQ] = ACTIONS(1240), + [anon_sym_PLUS_PLUS] = ACTIONS(1246), + [anon_sym_DASH_DASH] = ACTIONS(1246), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(1240), + }, + [360] = { + [anon_sym_AMP_AMP] = ACTIONS(681), + [anon_sym_PIPE_PIPE] = ACTIONS(681), + [anon_sym_RBRACK] = ACTIONS(1248), + [anon_sym_EQ_TILDE] = ACTIONS(683), + [anon_sym_EQ_EQ] = ACTIONS(683), + [anon_sym_EQ] = ACTIONS(685), + [anon_sym_PLUS_EQ] = ACTIONS(681), + [anon_sym_LT] = ACTIONS(685), + [anon_sym_GT] = ACTIONS(685), + [anon_sym_BANG_EQ] = ACTIONS(681), + [anon_sym_PLUS] = ACTIONS(685), + [anon_sym_DASH] = ACTIONS(685), + [anon_sym_DASH_EQ] = ACTIONS(681), + [anon_sym_LT_EQ] = ACTIONS(681), + [anon_sym_GT_EQ] = ACTIONS(681), + [anon_sym_PLUS_PLUS] = ACTIONS(687), + [anon_sym_DASH_DASH] = ACTIONS(687), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(681), + }, + [361] = { + [sym_string] = STATE(790), + [sym_simple_expansion] = STATE(790), + [sym_string_expansion] = STATE(790), + [sym_expansion] = STATE(790), + [sym_command_substitution] = STATE(790), + [sym_process_substitution] = STATE(790), + [sym__special_characters] = ACTIONS(1490), + [anon_sym_DQUOTE] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(171), + [sym_raw_string] = ACTIONS(1490), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(175), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(177), + [anon_sym_BQUOTE] = ACTIONS(179), + [anon_sym_LT_LPAREN] = ACTIONS(181), + [anon_sym_GT_LPAREN] = ACTIONS(181), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1490), + }, + [362] = { + [aux_sym_concatenation_repeat1] = STATE(791), + [sym__concat] = ACTIONS(657), [anon_sym_AMP_AMP] = ACTIONS(807), [anon_sym_PIPE_PIPE] = ACTIONS(807), [anon_sym_RBRACK] = ACTIONS(807), [anon_sym_EQ_TILDE] = ACTIONS(807), [anon_sym_EQ_EQ] = ACTIONS(807), [anon_sym_EQ] = ACTIONS(809), - [anon_sym_LT] = ACTIONS(807), - [anon_sym_GT] = ACTIONS(807), + [anon_sym_PLUS_EQ] = ACTIONS(807), + [anon_sym_LT] = ACTIONS(809), + [anon_sym_GT] = ACTIONS(809), [anon_sym_BANG_EQ] = ACTIONS(807), - [sym_comment] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(809), + [anon_sym_DASH_EQ] = ACTIONS(807), + [anon_sym_LT_EQ] = ACTIONS(807), + [anon_sym_GT_EQ] = ACTIONS(807), + [anon_sym_PLUS_PLUS] = ACTIONS(807), + [anon_sym_DASH_DASH] = ACTIONS(807), + [sym_comment] = ACTIONS(55), [sym_test_operator] = ACTIONS(807), }, - [324] = { + [363] = { [sym__concat] = ACTIONS(811), [anon_sym_AMP_AMP] = ACTIONS(811), [anon_sym_PIPE_PIPE] = ACTIONS(811), @@ -17936,1262 +19099,748 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE] = ACTIONS(811), [anon_sym_EQ_EQ] = ACTIONS(811), [anon_sym_EQ] = ACTIONS(813), - [anon_sym_LT] = ACTIONS(811), - [anon_sym_GT] = ACTIONS(811), + [anon_sym_PLUS_EQ] = ACTIONS(811), + [anon_sym_LT] = ACTIONS(813), + [anon_sym_GT] = ACTIONS(813), [anon_sym_BANG_EQ] = ACTIONS(811), - [sym_comment] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_DASH_EQ] = ACTIONS(811), + [anon_sym_LT_EQ] = ACTIONS(811), + [anon_sym_GT_EQ] = ACTIONS(811), + [anon_sym_PLUS_PLUS] = ACTIONS(811), + [anon_sym_DASH_DASH] = ACTIONS(811), + [sym_comment] = ACTIONS(55), [sym_test_operator] = ACTIONS(811), }, - [325] = { - [anon_sym_LBRACK] = ACTIONS(815), - [anon_sym_EQ] = ACTIONS(1361), - [sym_comment] = ACTIONS(53), + [364] = { + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_DQUOTE] = ACTIONS(1492), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym__string_content] = ACTIONS(821), + [anon_sym_POUND] = ACTIONS(815), + [sym_comment] = ACTIONS(281), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(823), + [anon_sym_STAR] = ACTIONS(825), + [anon_sym_AT] = ACTIONS(825), + [anon_sym_QMARK] = ACTIONS(825), + [anon_sym_0] = ACTIONS(823), + [anon_sym__] = ACTIONS(823), }, - [326] = { - [sym_subscript] = STATE(717), - [sym_variable_name] = ACTIONS(1363), - [anon_sym_DOLLAR] = ACTIONS(1365), - [anon_sym_DASH] = ACTIONS(1365), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1367), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_AT] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1369), - [anon_sym_0] = ACTIONS(1367), - [anon_sym__] = ACTIONS(1367), + [365] = { + [sym_simple_expansion] = STATE(148), + [sym_expansion] = STATE(148), + [sym_command_substitution] = STATE(148), + [aux_sym_string_repeat1] = STATE(473), + [anon_sym_DQUOTE] = ACTIONS(1492), + [anon_sym_DOLLAR] = ACTIONS(1494), + [sym__string_content] = ACTIONS(273), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(277), + [anon_sym_BQUOTE] = ACTIONS(279), + [sym_comment] = ACTIONS(281), }, - [327] = { - [sym_concatenation] = STATE(720), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(720), - [anon_sym_RBRACE] = ACTIONS(1371), - [anon_sym_EQ] = ACTIONS(1373), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1375), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_COLON] = ACTIONS(1373), - [anon_sym_COLON_QMARK] = ACTIONS(1373), - [anon_sym_COLON_DASH] = ACTIONS(1373), - [anon_sym_PERCENT] = ACTIONS(1373), - [anon_sym_DASH] = ACTIONS(1373), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [366] = { + [sym__concat] = ACTIONS(845), + [anon_sym_AMP_AMP] = ACTIONS(845), + [anon_sym_PIPE_PIPE] = ACTIONS(845), + [anon_sym_RBRACK] = ACTIONS(845), + [anon_sym_EQ_TILDE] = ACTIONS(845), + [anon_sym_EQ_EQ] = ACTIONS(845), + [anon_sym_EQ] = ACTIONS(847), + [anon_sym_PLUS_EQ] = ACTIONS(845), + [anon_sym_LT] = ACTIONS(847), + [anon_sym_GT] = ACTIONS(847), + [anon_sym_BANG_EQ] = ACTIONS(845), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_DASH_EQ] = ACTIONS(845), + [anon_sym_LT_EQ] = ACTIONS(845), + [anon_sym_GT_EQ] = ACTIONS(845), + [anon_sym_PLUS_PLUS] = ACTIONS(845), + [anon_sym_DASH_DASH] = ACTIONS(845), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(845), }, - [328] = { - [sym_concatenation] = STATE(723), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(723), - [anon_sym_RBRACE] = ACTIONS(1379), - [anon_sym_EQ] = ACTIONS(1381), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1383), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(1385), - [anon_sym_COLON] = ACTIONS(1381), - [anon_sym_COLON_QMARK] = ACTIONS(1381), - [anon_sym_COLON_DASH] = ACTIONS(1381), - [anon_sym_PERCENT] = ACTIONS(1381), - [anon_sym_DASH] = ACTIONS(1381), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [367] = { + [sym__concat] = ACTIONS(849), + [anon_sym_AMP_AMP] = ACTIONS(849), + [anon_sym_PIPE_PIPE] = ACTIONS(849), + [anon_sym_RBRACK] = ACTIONS(849), + [anon_sym_EQ_TILDE] = ACTIONS(849), + [anon_sym_EQ_EQ] = ACTIONS(849), + [anon_sym_EQ] = ACTIONS(851), + [anon_sym_PLUS_EQ] = ACTIONS(849), + [anon_sym_LT] = ACTIONS(851), + [anon_sym_GT] = ACTIONS(851), + [anon_sym_BANG_EQ] = ACTIONS(849), + [anon_sym_PLUS] = ACTIONS(851), + [anon_sym_DASH] = ACTIONS(851), + [anon_sym_DASH_EQ] = ACTIONS(849), + [anon_sym_LT_EQ] = ACTIONS(849), + [anon_sym_GT_EQ] = ACTIONS(849), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(849), }, - [329] = { - [anon_sym_SEMI] = ACTIONS(1387), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(1389), - [anon_sym_SEMI_SEMI] = ACTIONS(1391), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1387), + [368] = { + [sym__concat] = ACTIONS(853), + [anon_sym_AMP_AMP] = ACTIONS(853), + [anon_sym_PIPE_PIPE] = ACTIONS(853), + [anon_sym_RBRACK] = ACTIONS(853), + [anon_sym_EQ_TILDE] = ACTIONS(853), + [anon_sym_EQ_EQ] = ACTIONS(853), + [anon_sym_EQ] = ACTIONS(855), + [anon_sym_PLUS_EQ] = ACTIONS(853), + [anon_sym_LT] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_BANG_EQ] = ACTIONS(853), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_DASH_EQ] = ACTIONS(853), + [anon_sym_LT_EQ] = ACTIONS(853), + [anon_sym_GT_EQ] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(853), + [anon_sym_DASH_DASH] = ACTIONS(853), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(853), }, - [330] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(1387), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(1389), - [anon_sym_SEMI_SEMI] = ACTIONS(1391), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1387), + [369] = { + [anon_sym_LBRACK] = ACTIONS(857), + [anon_sym_EQ] = ACTIONS(1496), + [sym_comment] = ACTIONS(55), }, - [331] = { - [sym__terminated_statement] = STATE(190), - [sym_for_statement] = STATE(726), - [sym_c_style_for_statement] = STATE(726), - [sym_while_statement] = STATE(726), - [sym_if_statement] = STATE(726), - [sym_case_statement] = STATE(726), - [sym_function_definition] = STATE(726), - [sym_subshell] = STATE(726), - [sym_pipeline] = STATE(726), - [sym_list] = STATE(726), - [sym_negated_command] = STATE(726), - [sym_test_command] = STATE(726), - [sym_declaration_command] = STATE(726), - [sym_unset_command] = STATE(726), - [sym_command] = STATE(726), - [sym_command_name] = STATE(78), - [sym_variable_assignment] = STATE(727), - [sym_subscript] = STATE(80), - [sym_file_redirect] = STATE(82), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(75), - [sym_simple_expansion] = STATE(75), - [sym_string_expansion] = STATE(75), - [sym_expansion] = STATE(75), - [sym_command_substitution] = STATE(75), - [sym_process_substitution] = STATE(75), - [aux_sym__statements_repeat1] = STATE(190), - [aux_sym_command_repeat1] = STATE(82), + [370] = { + [sym_subscript] = STATE(797), + [sym_variable_name] = ACTIONS(1498), + [anon_sym_DASH] = ACTIONS(1500), + [anon_sym_DOLLAR] = ACTIONS(1500), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1502), + [anon_sym_STAR] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(1504), + [anon_sym_QMARK] = ACTIONS(1504), + [anon_sym_0] = ACTIONS(1502), + [anon_sym__] = ACTIONS(1502), + }, + [371] = { + [sym_concatenation] = STATE(800), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(800), + [anon_sym_RBRACE] = ACTIONS(1506), + [anon_sym_EQ] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1508), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1510), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(1512), + [anon_sym_COLON] = ACTIONS(1508), + [anon_sym_COLON_QMARK] = ACTIONS(1508), + [anon_sym_COLON_DASH] = ACTIONS(1508), + [anon_sym_PERCENT] = ACTIONS(1508), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [372] = { + [sym_concatenation] = STATE(803), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(803), + [anon_sym_RBRACE] = ACTIONS(1514), + [anon_sym_EQ] = ACTIONS(1516), + [anon_sym_DASH] = ACTIONS(1516), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1518), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(1520), + [anon_sym_COLON] = ACTIONS(1516), + [anon_sym_COLON_QMARK] = ACTIONS(1516), + [anon_sym_COLON_DASH] = ACTIONS(1516), + [anon_sym_PERCENT] = ACTIONS(1516), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [373] = { + [anon_sym_SEMI] = ACTIONS(1522), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(1524), + [anon_sym_SEMI_SEMI] = ACTIONS(1526), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1526), + [anon_sym_AMP] = ACTIONS(1522), + }, + [374] = { + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(1522), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(1524), + [anon_sym_SEMI_SEMI] = ACTIONS(1526), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(1526), + [anon_sym_AMP] = ACTIONS(1522), + }, + [375] = { + [sym__terminated_statement] = STATE(198), + [sym_for_statement] = STATE(806), + [sym_c_style_for_statement] = STATE(806), + [sym_while_statement] = STATE(806), + [sym_if_statement] = STATE(806), + [sym_case_statement] = STATE(806), + [sym_function_definition] = STATE(806), + [sym_subshell] = STATE(806), + [sym_pipeline] = STATE(806), + [sym_list] = STATE(806), + [sym_negated_command] = STATE(806), + [sym_test_command] = STATE(806), + [sym_declaration_command] = STATE(806), + [sym_unset_command] = STATE(806), + [sym_command] = STATE(806), + [sym_command_name] = STATE(92), + [sym_variable_assignment] = STATE(807), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(96), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), + [aux_sym__statements_repeat1] = STATE(198), + [aux_sym_command_repeat1] = STATE(96), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), + [sym_variable_name] = ACTIONS(137), [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(111), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(119), - [anon_sym_declare] = ACTIONS(121), - [anon_sym_typeset] = ACTIONS(121), - [anon_sym_export] = ACTIONS(121), - [anon_sym_readonly] = ACTIONS(121), - [anon_sym_local] = ACTIONS(121), - [anon_sym_unset] = ACTIONS(123), - [anon_sym_unsetenv] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), + [anon_sym_LPAREN_LPAREN] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(149), + [anon_sym_declare] = ACTIONS(151), + [anon_sym_typeset] = ACTIONS(151), + [anon_sym_export] = ACTIONS(151), + [anon_sym_readonly] = ACTIONS(151), + [anon_sym_local] = ACTIONS(151), + [anon_sym_unset] = ACTIONS(153), + [anon_sym_unsetenv] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(159), }, - [332] = { - [anon_sym_SEMI] = ACTIONS(1393), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_SEMI_SEMI] = ACTIONS(1395), - [anon_sym_PIPE_AMP] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(883), - [anon_sym_PIPE_PIPE] = ACTIONS(883), - [anon_sym_BQUOTE] = ACTIONS(1389), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1395), - [anon_sym_AMP] = ACTIONS(1393), + [376] = { + [anon_sym_SEMI] = ACTIONS(1528), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_SEMI_SEMI] = ACTIONS(1530), + [anon_sym_PIPE_AMP] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_BQUOTE] = ACTIONS(1524), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1530), + [anon_sym_AMP] = ACTIONS(1528), }, - [333] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(1393), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_SEMI_SEMI] = ACTIONS(1395), - [anon_sym_PIPE_AMP] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(883), - [anon_sym_PIPE_PIPE] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(1389), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(1395), - [anon_sym_AMP] = ACTIONS(1393), + [377] = { + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(1528), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_SEMI_SEMI] = ACTIONS(1530), + [anon_sym_PIPE_AMP] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(1524), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(1530), + [anon_sym_AMP] = ACTIONS(1528), }, - [334] = { - [sym__terminated_statement] = STATE(190), - [sym_for_statement] = STATE(729), - [sym_c_style_for_statement] = STATE(729), - [sym_while_statement] = STATE(729), - [sym_if_statement] = STATE(729), - [sym_case_statement] = STATE(729), - [sym_function_definition] = STATE(729), - [sym_subshell] = STATE(729), - [sym_pipeline] = STATE(729), - [sym_list] = STATE(729), - [sym_negated_command] = STATE(729), - [sym_test_command] = STATE(729), - [sym_declaration_command] = STATE(729), - [sym_unset_command] = STATE(729), - [sym_command] = STATE(729), - [sym_command_name] = STATE(165), - [sym_variable_assignment] = STATE(730), - [sym_subscript] = STATE(53), - [sym_file_redirect] = STATE(168), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(47), - [sym_simple_expansion] = STATE(47), - [sym_string_expansion] = STATE(47), - [sym_expansion] = STATE(47), - [sym_command_substitution] = STATE(47), - [sym_process_substitution] = STATE(47), - [aux_sym__statements_repeat1] = STATE(190), - [aux_sym_command_repeat1] = STATE(168), + [378] = { + [sym__terminated_statement] = STATE(198), + [sym_for_statement] = STATE(809), + [sym_c_style_for_statement] = STATE(809), + [sym_while_statement] = STATE(809), + [sym_if_statement] = STATE(809), + [sym_case_statement] = STATE(809), + [sym_function_definition] = STATE(809), + [sym_subshell] = STATE(809), + [sym_pipeline] = STATE(809), + [sym_list] = STATE(809), + [sym_negated_command] = STATE(809), + [sym_test_command] = STATE(809), + [sym_declaration_command] = STATE(809), + [sym_unset_command] = STATE(809), + [sym_command] = STATE(809), + [sym_command_name] = STATE(173), + [sym_variable_assignment] = STATE(810), + [sym_subscript] = STATE(66), + [sym_file_redirect] = STATE(176), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(60), + [sym_simple_expansion] = STATE(60), + [sym_string_expansion] = STATE(60), + [sym_expansion] = STATE(60), + [sym_command_substitution] = STATE(60), + [sym_process_substitution] = STATE(60), + [aux_sym__statements_repeat1] = STATE(198), + [aux_sym_command_repeat1] = STATE(176), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(69), + [sym_variable_name] = ACTIONS(95), [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(289), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(291), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(293), - [anon_sym_LBRACK] = ACTIONS(295), - [anon_sym_LBRACK_LBRACK] = ACTIONS(297), - [anon_sym_declare] = ACTIONS(299), - [anon_sym_typeset] = ACTIONS(299), - [anon_sym_export] = ACTIONS(299), - [anon_sym_readonly] = ACTIONS(299), - [anon_sym_local] = ACTIONS(299), - [anon_sym_unset] = ACTIONS(301), - [anon_sym_unsetenv] = ACTIONS(301), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(87), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(303), + [anon_sym_LPAREN_LPAREN] = ACTIONS(305), + [anon_sym_while] = ACTIONS(307), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(311), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(315), + [anon_sym_declare] = ACTIONS(317), + [anon_sym_typeset] = ACTIONS(317), + [anon_sym_export] = ACTIONS(317), + [anon_sym_readonly] = ACTIONS(317), + [anon_sym_local] = ACTIONS(317), + [anon_sym_unset] = ACTIONS(319), + [anon_sym_unsetenv] = ACTIONS(319), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(115), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(321), }, - [335] = { - [anon_sym_SEMI] = ACTIONS(1397), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(1399), - [anon_sym_SEMI_SEMI] = ACTIONS(1401), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1401), - [anon_sym_AMP] = ACTIONS(1397), + [379] = { + [anon_sym_SEMI] = ACTIONS(1532), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(1534), + [anon_sym_SEMI_SEMI] = ACTIONS(1536), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1536), + [anon_sym_AMP] = ACTIONS(1532), }, - [336] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(1397), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(1399), - [anon_sym_SEMI_SEMI] = ACTIONS(1401), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(1401), - [anon_sym_AMP] = ACTIONS(1397), + [380] = { + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(1532), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(1534), + [anon_sym_SEMI_SEMI] = ACTIONS(1536), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(1536), + [anon_sym_AMP] = ACTIONS(1532), }, - [337] = { - [sym__terminated_statement] = STATE(190), - [sym_for_statement] = STATE(733), - [sym_c_style_for_statement] = STATE(733), - [sym_while_statement] = STATE(733), - [sym_if_statement] = STATE(733), - [sym_case_statement] = STATE(733), - [sym_function_definition] = STATE(733), - [sym_subshell] = STATE(733), - [sym_pipeline] = STATE(733), - [sym_list] = STATE(733), - [sym_negated_command] = STATE(733), - [sym_test_command] = STATE(733), - [sym_declaration_command] = STATE(733), - [sym_unset_command] = STATE(733), - [sym_command] = STATE(733), - [sym_command_name] = STATE(78), - [sym_variable_assignment] = STATE(734), - [sym_subscript] = STATE(80), - [sym_file_redirect] = STATE(82), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(75), - [sym_simple_expansion] = STATE(75), - [sym_string_expansion] = STATE(75), - [sym_expansion] = STATE(75), - [sym_command_substitution] = STATE(75), - [sym_process_substitution] = STATE(75), - [aux_sym__statements_repeat1] = STATE(190), - [aux_sym_command_repeat1] = STATE(82), + [381] = { + [sym__terminated_statement] = STATE(198), + [sym_for_statement] = STATE(813), + [sym_c_style_for_statement] = STATE(813), + [sym_while_statement] = STATE(813), + [sym_if_statement] = STATE(813), + [sym_case_statement] = STATE(813), + [sym_function_definition] = STATE(813), + [sym_subshell] = STATE(813), + [sym_pipeline] = STATE(813), + [sym_list] = STATE(813), + [sym_negated_command] = STATE(813), + [sym_test_command] = STATE(813), + [sym_declaration_command] = STATE(813), + [sym_unset_command] = STATE(813), + [sym_command] = STATE(813), + [sym_command_name] = STATE(92), + [sym_variable_assignment] = STATE(814), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(96), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), + [aux_sym__statements_repeat1] = STATE(198), + [aux_sym_command_repeat1] = STATE(96), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), + [sym_variable_name] = ACTIONS(137), [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(111), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(119), - [anon_sym_declare] = ACTIONS(121), - [anon_sym_typeset] = ACTIONS(121), - [anon_sym_export] = ACTIONS(121), - [anon_sym_readonly] = ACTIONS(121), - [anon_sym_local] = ACTIONS(121), - [anon_sym_unset] = ACTIONS(123), - [anon_sym_unsetenv] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), + [anon_sym_LPAREN_LPAREN] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(149), + [anon_sym_declare] = ACTIONS(151), + [anon_sym_typeset] = ACTIONS(151), + [anon_sym_export] = ACTIONS(151), + [anon_sym_readonly] = ACTIONS(151), + [anon_sym_local] = ACTIONS(151), + [anon_sym_unset] = ACTIONS(153), + [anon_sym_unsetenv] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(159), }, - [338] = { - [sym__expression] = STATE(735), - [sym_binary_expression] = STATE(735), - [sym_unary_expression] = STATE(735), - [sym_parenthesized_expression] = STATE(735), - [sym_concatenation] = STATE(735), - [sym_string] = STATE(91), - [sym_simple_expansion] = STATE(91), - [sym_string_expansion] = STATE(91), - [sym_expansion] = STATE(91), - [sym_command_substitution] = STATE(91), - [sym_process_substitution] = STATE(91), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(135), - [sym__special_characters] = ACTIONS(137), - [anon_sym_DQUOTE] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(141), - [sym_raw_string] = ACTIONS(143), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(145), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(147), - [anon_sym_BQUOTE] = ACTIONS(149), - [anon_sym_LT_LPAREN] = ACTIONS(151), - [anon_sym_GT_LPAREN] = ACTIONS(151), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(153), - [sym_test_operator] = ACTIONS(155), + [382] = { + [sym__expression] = STATE(815), + [sym_binary_expression] = STATE(815), + [sym_unary_expression] = STATE(815), + [sym_postfix_expression] = STATE(815), + [sym_parenthesized_expression] = STATE(815), + [sym_concatenation] = STATE(815), + [sym_string] = STATE(105), + [sym_simple_expansion] = STATE(105), + [sym_string_expansion] = STATE(105), + [sym_expansion] = STATE(105), + [sym_command_substitution] = STATE(105), + [sym_process_substitution] = STATE(105), + [anon_sym_LPAREN] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(165), + [sym__special_characters] = ACTIONS(167), + [anon_sym_DQUOTE] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(171), + [sym_raw_string] = ACTIONS(173), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(175), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(177), + [anon_sym_BQUOTE] = ACTIONS(179), + [anon_sym_LT_LPAREN] = ACTIONS(181), + [anon_sym_GT_LPAREN] = ACTIONS(181), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(183), + [sym_test_operator] = ACTIONS(185), }, - [339] = { - [sym_file_redirect] = STATE(740), - [sym_heredoc_redirect] = STATE(740), - [sym_herestring_redirect] = STATE(740), - [aux_sym_while_statement_repeat1] = STATE(740), - [sym_file_descriptor] = ACTIONS(1403), - [ts_builtin_sym_end] = ACTIONS(1405), - [anon_sym_SEMI] = ACTIONS(1407), - [anon_sym_PIPE] = ACTIONS(1407), - [anon_sym_SEMI_SEMI] = ACTIONS(1405), - [anon_sym_PIPE_AMP] = ACTIONS(1405), - [anon_sym_AMP_AMP] = ACTIONS(1405), - [anon_sym_PIPE_PIPE] = ACTIONS(1405), - [anon_sym_LT] = ACTIONS(1409), - [anon_sym_GT] = ACTIONS(1409), - [anon_sym_GT_GT] = ACTIONS(1411), - [anon_sym_AMP_GT] = ACTIONS(1409), - [anon_sym_AMP_GT_GT] = ACTIONS(1411), - [anon_sym_LT_AMP] = ACTIONS(1411), - [anon_sym_GT_AMP] = ACTIONS(1411), - [anon_sym_LT_LT] = ACTIONS(1413), - [anon_sym_LT_LT_DASH] = ACTIONS(1415), - [anon_sym_LT_LT_LT] = ACTIONS(1417), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1405), - [anon_sym_AMP] = ACTIONS(1407), + [383] = { + [sym__expression] = STATE(815), + [sym_binary_expression] = STATE(815), + [sym_unary_expression] = STATE(815), + [sym_postfix_expression] = STATE(815), + [sym_parenthesized_expression] = STATE(815), + [sym_concatenation] = STATE(815), + [sym_string] = STATE(105), + [sym_simple_expansion] = STATE(105), + [sym_string_expansion] = STATE(105), + [sym_expansion] = STATE(105), + [sym_command_substitution] = STATE(105), + [sym_process_substitution] = STATE(105), + [sym_regex] = ACTIONS(1538), + [anon_sym_LPAREN] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(165), + [sym__special_characters] = ACTIONS(167), + [anon_sym_DQUOTE] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(171), + [sym_raw_string] = ACTIONS(173), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(175), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(177), + [anon_sym_BQUOTE] = ACTIONS(179), + [anon_sym_LT_LPAREN] = ACTIONS(181), + [anon_sym_GT_LPAREN] = ACTIONS(181), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(183), + [sym_test_operator] = ACTIONS(185), }, - [340] = { - [sym__expression] = STATE(735), - [sym_binary_expression] = STATE(735), - [sym_unary_expression] = STATE(735), - [sym_parenthesized_expression] = STATE(735), - [sym_concatenation] = STATE(735), - [sym_string] = STATE(91), - [sym_simple_expansion] = STATE(91), - [sym_string_expansion] = STATE(91), - [sym_expansion] = STATE(91), - [sym_command_substitution] = STATE(91), - [sym_process_substitution] = STATE(91), - [anon_sym_LPAREN] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(135), - [sym__special_characters] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1423), - [anon_sym_DOLLAR] = ACTIONS(141), - [sym_raw_string] = ACTIONS(153), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1425), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1427), - [anon_sym_BQUOTE] = ACTIONS(1429), - [anon_sym_LT_LPAREN] = ACTIONS(1431), - [anon_sym_GT_LPAREN] = ACTIONS(1431), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(153), - [sym_test_operator] = ACTIONS(135), - [sym_regex] = ACTIONS(1433), + [384] = { + [anon_sym_AMP_AMP] = ACTIONS(1316), + [anon_sym_PIPE_PIPE] = ACTIONS(1316), + [anon_sym_RBRACK] = ACTIONS(1316), + [anon_sym_EQ_TILDE] = ACTIONS(1316), + [anon_sym_EQ_EQ] = ACTIONS(1316), + [anon_sym_EQ] = ACTIONS(1318), + [anon_sym_PLUS_EQ] = ACTIONS(1316), + [anon_sym_LT] = ACTIONS(1318), + [anon_sym_GT] = ACTIONS(1318), + [anon_sym_BANG_EQ] = ACTIONS(1316), + [anon_sym_PLUS] = ACTIONS(1318), + [anon_sym_DASH] = ACTIONS(1318), + [anon_sym_DASH_EQ] = ACTIONS(1316), + [anon_sym_LT_EQ] = ACTIONS(1316), + [anon_sym_GT_EQ] = ACTIONS(1316), + [anon_sym_PLUS_PLUS] = ACTIONS(1316), + [anon_sym_DASH_DASH] = ACTIONS(1316), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(1316), }, - [341] = { - [anon_sym_RPAREN] = ACTIONS(1435), - [anon_sym_AMP_AMP] = ACTIONS(1347), - [anon_sym_PIPE_PIPE] = ACTIONS(1347), - [anon_sym_EQ_TILDE] = ACTIONS(1349), - [anon_sym_EQ_EQ] = ACTIONS(1349), - [anon_sym_EQ] = ACTIONS(1351), - [anon_sym_LT] = ACTIONS(1347), - [anon_sym_GT] = ACTIONS(1347), - [anon_sym_BANG_EQ] = ACTIONS(1347), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1347), + [385] = { + [anon_sym_AMP_AMP] = ACTIONS(689), + [anon_sym_PIPE_PIPE] = ACTIONS(689), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1248), + [anon_sym_EQ_TILDE] = ACTIONS(691), + [anon_sym_EQ_EQ] = ACTIONS(691), + [anon_sym_EQ] = ACTIONS(693), + [anon_sym_PLUS_EQ] = ACTIONS(689), + [anon_sym_LT] = ACTIONS(693), + [anon_sym_GT] = ACTIONS(693), + [anon_sym_BANG_EQ] = ACTIONS(689), + [anon_sym_PLUS] = ACTIONS(693), + [anon_sym_DASH] = ACTIONS(693), + [anon_sym_DASH_EQ] = ACTIONS(689), + [anon_sym_LT_EQ] = ACTIONS(689), + [anon_sym_GT_EQ] = ACTIONS(689), + [anon_sym_PLUS_PLUS] = ACTIONS(499), + [anon_sym_DASH_DASH] = ACTIONS(499), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(689), }, - [342] = { - [anon_sym_AMP_AMP] = ACTIONS(647), - [anon_sym_PIPE_PIPE] = ACTIONS(647), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1353), - [anon_sym_EQ_TILDE] = ACTIONS(649), - [anon_sym_EQ_EQ] = ACTIONS(649), - [anon_sym_EQ] = ACTIONS(651), - [anon_sym_LT] = ACTIONS(647), - [anon_sym_GT] = ACTIONS(647), - [anon_sym_BANG_EQ] = ACTIONS(647), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(647), - }, - [343] = { - [sym_string] = STATE(743), - [sym_simple_expansion] = STATE(743), - [sym_string_expansion] = STATE(743), - [sym_expansion] = STATE(743), - [sym_command_substitution] = STATE(743), - [sym_process_substitution] = STATE(743), - [sym__special_characters] = ACTIONS(1437), - [anon_sym_DQUOTE] = ACTIONS(163), - [anon_sym_DOLLAR] = ACTIONS(165), - [sym_raw_string] = ACTIONS(1437), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(169), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(171), - [anon_sym_BQUOTE] = ACTIONS(173), - [anon_sym_LT_LPAREN] = ACTIONS(175), - [anon_sym_GT_LPAREN] = ACTIONS(175), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1437), - }, - [344] = { - [aux_sym_concatenation_repeat1] = STATE(744), - [sym__concat] = ACTIONS(623), - [anon_sym_AMP_AMP] = ACTIONS(765), - [anon_sym_PIPE_PIPE] = ACTIONS(765), - [anon_sym_RBRACK_RBRACK] = ACTIONS(765), - [anon_sym_EQ_TILDE] = ACTIONS(765), - [anon_sym_EQ_EQ] = ACTIONS(765), - [anon_sym_EQ] = ACTIONS(767), - [anon_sym_LT] = ACTIONS(765), - [anon_sym_GT] = ACTIONS(765), - [anon_sym_BANG_EQ] = ACTIONS(765), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(765), - }, - [345] = { - [sym__concat] = ACTIONS(769), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_RPAREN] = ACTIONS(769), - [anon_sym_AMP_AMP] = ACTIONS(769), - [anon_sym_PIPE_PIPE] = ACTIONS(769), - [anon_sym_RBRACK_RBRACK] = ACTIONS(769), - [anon_sym_EQ_TILDE] = ACTIONS(769), - [anon_sym_EQ_EQ] = ACTIONS(769), - [anon_sym_EQ] = ACTIONS(771), - [anon_sym_LT] = ACTIONS(769), - [anon_sym_GT] = ACTIONS(769), - [anon_sym_BANG_EQ] = ACTIONS(769), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(769), - }, - [346] = { - [anon_sym_DQUOTE] = ACTIONS(1439), - [anon_sym_DOLLAR] = ACTIONS(775), - [sym__string_content] = ACTIONS(777), - [anon_sym_POUND] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(781), - [anon_sym_STAR] = ACTIONS(783), - [anon_sym_AT] = ACTIONS(783), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_0] = ACTIONS(781), - [anon_sym__] = ACTIONS(781), - }, - [347] = { - [sym_simple_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [sym_command_substitution] = STATE(141), - [aux_sym_string_repeat1] = STATE(450), - [anon_sym_DQUOTE] = ACTIONS(1439), - [anon_sym_DOLLAR] = ACTIONS(1441), - [sym__string_content] = ACTIONS(257), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(261), - [anon_sym_BQUOTE] = ACTIONS(263), - [sym_comment] = ACTIONS(265), - }, - [348] = { - [sym__concat] = ACTIONS(803), - [anon_sym_PIPE] = ACTIONS(805), - [anon_sym_RPAREN] = ACTIONS(803), - [anon_sym_AMP_AMP] = ACTIONS(803), - [anon_sym_PIPE_PIPE] = ACTIONS(803), - [anon_sym_RBRACK_RBRACK] = ACTIONS(803), - [anon_sym_EQ_TILDE] = ACTIONS(803), - [anon_sym_EQ_EQ] = ACTIONS(803), - [anon_sym_EQ] = ACTIONS(805), - [anon_sym_LT] = ACTIONS(803), - [anon_sym_GT] = ACTIONS(803), - [anon_sym_BANG_EQ] = ACTIONS(803), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(803), - }, - [349] = { - [sym__concat] = ACTIONS(807), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_RPAREN] = ACTIONS(807), + [386] = { + [aux_sym_concatenation_repeat1] = STATE(817), + [sym__concat] = ACTIONS(459), [anon_sym_AMP_AMP] = ACTIONS(807), [anon_sym_PIPE_PIPE] = ACTIONS(807), [anon_sym_RBRACK_RBRACK] = ACTIONS(807), [anon_sym_EQ_TILDE] = ACTIONS(807), [anon_sym_EQ_EQ] = ACTIONS(807), [anon_sym_EQ] = ACTIONS(809), - [anon_sym_LT] = ACTIONS(807), - [anon_sym_GT] = ACTIONS(807), + [anon_sym_PLUS_EQ] = ACTIONS(807), + [anon_sym_LT] = ACTIONS(809), + [anon_sym_GT] = ACTIONS(809), [anon_sym_BANG_EQ] = ACTIONS(807), - [sym_comment] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(809), + [anon_sym_DASH_EQ] = ACTIONS(807), + [anon_sym_LT_EQ] = ACTIONS(807), + [anon_sym_GT_EQ] = ACTIONS(807), + [anon_sym_PLUS_PLUS] = ACTIONS(807), + [anon_sym_DASH_DASH] = ACTIONS(807), + [sym_comment] = ACTIONS(55), [sym_test_operator] = ACTIONS(807), }, - [350] = { - [sym__concat] = ACTIONS(811), - [anon_sym_PIPE] = ACTIONS(813), - [anon_sym_RPAREN] = ACTIONS(811), - [anon_sym_AMP_AMP] = ACTIONS(811), - [anon_sym_PIPE_PIPE] = ACTIONS(811), - [anon_sym_RBRACK_RBRACK] = ACTIONS(811), - [anon_sym_EQ_TILDE] = ACTIONS(811), - [anon_sym_EQ_EQ] = ACTIONS(811), - [anon_sym_EQ] = ACTIONS(813), - [anon_sym_LT] = ACTIONS(811), - [anon_sym_GT] = ACTIONS(811), - [anon_sym_BANG_EQ] = ACTIONS(811), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(811), + [387] = { + [sym__expression] = STATE(682), + [sym_binary_expression] = STATE(682), + [sym_unary_expression] = STATE(682), + [sym_postfix_expression] = STATE(682), + [sym_parenthesized_expression] = STATE(682), + [sym_concatenation] = STATE(682), + [sym_string] = STATE(113), + [sym_simple_expansion] = STATE(113), + [sym_string_expansion] = STATE(113), + [sym_expansion] = STATE(113), + [sym_command_substitution] = STATE(113), + [sym_process_substitution] = STATE(113), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(187), + [sym__special_characters] = ACTIONS(189), + [anon_sym_DQUOTE] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(79), + [sym_raw_string] = ACTIONS(191), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(83), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(85), + [anon_sym_BQUOTE] = ACTIONS(87), + [anon_sym_LT_LPAREN] = ACTIONS(89), + [anon_sym_GT_LPAREN] = ACTIONS(89), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(193), + [sym_test_operator] = ACTIONS(195), }, - [351] = { - [anon_sym_LBRACK] = ACTIONS(815), - [anon_sym_EQ] = ACTIONS(1443), - [sym_comment] = ACTIONS(53), + [388] = { + [sym__expression] = STATE(682), + [sym_binary_expression] = STATE(682), + [sym_unary_expression] = STATE(682), + [sym_postfix_expression] = STATE(682), + [sym_parenthesized_expression] = STATE(682), + [sym_concatenation] = STATE(682), + [sym_string] = STATE(113), + [sym_simple_expansion] = STATE(113), + [sym_string_expansion] = STATE(113), + [sym_expansion] = STATE(113), + [sym_command_substitution] = STATE(113), + [sym_process_substitution] = STATE(113), + [sym_regex] = ACTIONS(1314), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(187), + [sym__special_characters] = ACTIONS(189), + [anon_sym_DQUOTE] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(79), + [sym_raw_string] = ACTIONS(191), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(83), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(85), + [anon_sym_BQUOTE] = ACTIONS(87), + [anon_sym_LT_LPAREN] = ACTIONS(89), + [anon_sym_GT_LPAREN] = ACTIONS(89), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(193), + [sym_test_operator] = ACTIONS(195), }, - [352] = { - [sym_subscript] = STATE(750), - [sym_variable_name] = ACTIONS(1445), - [anon_sym_DOLLAR] = ACTIONS(1447), - [anon_sym_DASH] = ACTIONS(1447), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1449), - [anon_sym_STAR] = ACTIONS(1451), - [anon_sym_AT] = ACTIONS(1451), - [anon_sym_QMARK] = ACTIONS(1451), - [anon_sym_0] = ACTIONS(1449), - [anon_sym__] = ACTIONS(1449), + [389] = { + [sym_concatenation] = STATE(818), + [sym_string] = STATE(821), + [sym_array] = STATE(818), + [sym_simple_expansion] = STATE(821), + [sym_string_expansion] = STATE(821), + [sym_expansion] = STATE(821), + [sym_command_substitution] = STATE(821), + [sym_process_substitution] = STATE(821), + [sym__empty_value] = ACTIONS(1540), + [anon_sym_LPAREN] = ACTIONS(1542), + [sym__special_characters] = ACTIONS(1544), + [anon_sym_DQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR] = ACTIONS(207), + [sym_raw_string] = ACTIONS(1546), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_LT_LPAREN] = ACTIONS(217), + [anon_sym_GT_LPAREN] = ACTIONS(217), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1546), }, - [353] = { - [sym_concatenation] = STATE(753), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(753), - [anon_sym_RBRACE] = ACTIONS(1453), - [anon_sym_EQ] = ACTIONS(1455), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1457), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(1459), - [anon_sym_COLON] = ACTIONS(1455), - [anon_sym_COLON_QMARK] = ACTIONS(1455), - [anon_sym_COLON_DASH] = ACTIONS(1455), - [anon_sym_PERCENT] = ACTIONS(1455), - [anon_sym_DASH] = ACTIONS(1455), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [390] = { + [sym_string] = STATE(822), + [sym_simple_expansion] = STATE(822), + [sym_string_expansion] = STATE(822), + [sym_expansion] = STATE(822), + [sym_command_substitution] = STATE(822), + [sym_process_substitution] = STATE(822), + [sym__special_characters] = ACTIONS(1548), + [anon_sym_DQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR] = ACTIONS(207), + [sym_raw_string] = ACTIONS(1548), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_LT_LPAREN] = ACTIONS(217), + [anon_sym_GT_LPAREN] = ACTIONS(217), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1548), }, - [354] = { - [sym_concatenation] = STATE(756), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(756), - [anon_sym_RBRACE] = ACTIONS(1461), - [anon_sym_EQ] = ACTIONS(1463), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1465), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(1467), - [anon_sym_COLON] = ACTIONS(1463), - [anon_sym_COLON_QMARK] = ACTIONS(1463), - [anon_sym_COLON_DASH] = ACTIONS(1463), - [anon_sym_PERCENT] = ACTIONS(1463), - [anon_sym_DASH] = ACTIONS(1463), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [355] = { - [anon_sym_SEMI] = ACTIONS(1469), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(1471), - [anon_sym_SEMI_SEMI] = ACTIONS(1473), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1473), - [anon_sym_AMP] = ACTIONS(1469), - }, - [356] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(1469), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(1471), - [anon_sym_SEMI_SEMI] = ACTIONS(1473), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(1473), - [anon_sym_AMP] = ACTIONS(1469), - }, - [357] = { - [sym__terminated_statement] = STATE(190), - [sym_for_statement] = STATE(759), - [sym_c_style_for_statement] = STATE(759), - [sym_while_statement] = STATE(759), - [sym_if_statement] = STATE(759), - [sym_case_statement] = STATE(759), - [sym_function_definition] = STATE(759), - [sym_subshell] = STATE(759), - [sym_pipeline] = STATE(759), - [sym_list] = STATE(759), - [sym_negated_command] = STATE(759), - [sym_test_command] = STATE(759), - [sym_declaration_command] = STATE(759), - [sym_unset_command] = STATE(759), - [sym_command] = STATE(759), - [sym_command_name] = STATE(78), - [sym_variable_assignment] = STATE(760), - [sym_subscript] = STATE(80), - [sym_file_redirect] = STATE(82), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(75), - [sym_simple_expansion] = STATE(75), - [sym_string_expansion] = STATE(75), - [sym_expansion] = STATE(75), - [sym_command_substitution] = STATE(75), - [sym_process_substitution] = STATE(75), - [aux_sym__statements_repeat1] = STATE(190), - [aux_sym_command_repeat1] = STATE(82), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(111), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(119), - [anon_sym_declare] = ACTIONS(121), - [anon_sym_typeset] = ACTIONS(121), - [anon_sym_export] = ACTIONS(121), - [anon_sym_readonly] = ACTIONS(121), - [anon_sym_local] = ACTIONS(121), - [anon_sym_unset] = ACTIONS(123), - [anon_sym_unsetenv] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), - }, - [358] = { - [anon_sym_SEMI] = ACTIONS(1475), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_SEMI_SEMI] = ACTIONS(1477), - [anon_sym_PIPE_AMP] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(883), - [anon_sym_PIPE_PIPE] = ACTIONS(883), - [anon_sym_BQUOTE] = ACTIONS(1471), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1477), - [anon_sym_AMP] = ACTIONS(1475), - }, - [359] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(1475), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_SEMI_SEMI] = ACTIONS(1477), - [anon_sym_PIPE_AMP] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(883), - [anon_sym_PIPE_PIPE] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(1471), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(1477), - [anon_sym_AMP] = ACTIONS(1475), - }, - [360] = { - [sym__terminated_statement] = STATE(190), - [sym_for_statement] = STATE(762), - [sym_c_style_for_statement] = STATE(762), - [sym_while_statement] = STATE(762), - [sym_if_statement] = STATE(762), - [sym_case_statement] = STATE(762), - [sym_function_definition] = STATE(762), - [sym_subshell] = STATE(762), - [sym_pipeline] = STATE(762), - [sym_list] = STATE(762), - [sym_negated_command] = STATE(762), - [sym_test_command] = STATE(762), - [sym_declaration_command] = STATE(762), - [sym_unset_command] = STATE(762), - [sym_command] = STATE(762), - [sym_command_name] = STATE(165), - [sym_variable_assignment] = STATE(763), - [sym_subscript] = STATE(53), - [sym_file_redirect] = STATE(168), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(47), - [sym_simple_expansion] = STATE(47), - [sym_string_expansion] = STATE(47), - [sym_expansion] = STATE(47), - [sym_command_substitution] = STATE(47), - [sym_process_substitution] = STATE(47), - [aux_sym__statements_repeat1] = STATE(190), - [aux_sym_command_repeat1] = STATE(168), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(69), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(289), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(291), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(293), - [anon_sym_LBRACK] = ACTIONS(295), - [anon_sym_LBRACK_LBRACK] = ACTIONS(297), - [anon_sym_declare] = ACTIONS(299), - [anon_sym_typeset] = ACTIONS(299), - [anon_sym_export] = ACTIONS(299), - [anon_sym_readonly] = ACTIONS(299), - [anon_sym_local] = ACTIONS(299), - [anon_sym_unset] = ACTIONS(301), - [anon_sym_unsetenv] = ACTIONS(301), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(87), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(303), - }, - [361] = { - [anon_sym_SEMI] = ACTIONS(1479), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(1481), - [anon_sym_SEMI_SEMI] = ACTIONS(1483), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1479), - }, - [362] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(1479), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(1481), - [anon_sym_SEMI_SEMI] = ACTIONS(1483), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1479), - }, - [363] = { - [sym__terminated_statement] = STATE(190), - [sym_for_statement] = STATE(766), - [sym_c_style_for_statement] = STATE(766), - [sym_while_statement] = STATE(766), - [sym_if_statement] = STATE(766), - [sym_case_statement] = STATE(766), - [sym_function_definition] = STATE(766), - [sym_subshell] = STATE(766), - [sym_pipeline] = STATE(766), - [sym_list] = STATE(766), - [sym_negated_command] = STATE(766), - [sym_test_command] = STATE(766), - [sym_declaration_command] = STATE(766), - [sym_unset_command] = STATE(766), - [sym_command] = STATE(766), - [sym_command_name] = STATE(78), - [sym_variable_assignment] = STATE(767), - [sym_subscript] = STATE(80), - [sym_file_redirect] = STATE(82), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(75), - [sym_simple_expansion] = STATE(75), - [sym_string_expansion] = STATE(75), - [sym_expansion] = STATE(75), - [sym_command_substitution] = STATE(75), - [sym_process_substitution] = STATE(75), - [aux_sym__statements_repeat1] = STATE(190), - [aux_sym_command_repeat1] = STATE(82), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(111), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(119), - [anon_sym_declare] = ACTIONS(121), - [anon_sym_typeset] = ACTIONS(121), - [anon_sym_export] = ACTIONS(121), - [anon_sym_readonly] = ACTIONS(121), - [anon_sym_local] = ACTIONS(121), - [anon_sym_unset] = ACTIONS(123), - [anon_sym_unsetenv] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), - }, - [364] = { - [sym__expression] = STATE(768), - [sym_binary_expression] = STATE(768), - [sym_unary_expression] = STATE(768), - [sym_parenthesized_expression] = STATE(768), - [sym_concatenation] = STATE(768), - [sym_string] = STATE(102), - [sym_simple_expansion] = STATE(102), - [sym_string_expansion] = STATE(102), - [sym_expansion] = STATE(102), - [sym_command_substitution] = STATE(102), - [sym_process_substitution] = STATE(102), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_BANG] = ACTIONS(159), - [sym__special_characters] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(163), - [anon_sym_DOLLAR] = ACTIONS(165), - [sym_raw_string] = ACTIONS(167), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(169), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(171), - [anon_sym_BQUOTE] = ACTIONS(173), - [anon_sym_LT_LPAREN] = ACTIONS(175), - [anon_sym_GT_LPAREN] = ACTIONS(175), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(177), - [sym_test_operator] = ACTIONS(179), - }, - [365] = { - [sym__expression] = STATE(768), - [sym_binary_expression] = STATE(768), - [sym_unary_expression] = STATE(768), - [sym_parenthesized_expression] = STATE(768), - [sym_concatenation] = STATE(768), - [sym_string] = STATE(102), - [sym_simple_expansion] = STATE(102), - [sym_string_expansion] = STATE(102), - [sym_expansion] = STATE(102), - [sym_command_substitution] = STATE(102), - [sym_process_substitution] = STATE(102), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_BANG] = ACTIONS(159), - [sym__special_characters] = ACTIONS(1487), - [anon_sym_DQUOTE] = ACTIONS(1489), - [anon_sym_DOLLAR] = ACTIONS(165), - [sym_raw_string] = ACTIONS(177), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1491), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1493), - [anon_sym_BQUOTE] = ACTIONS(1495), - [anon_sym_LT_LPAREN] = ACTIONS(1497), - [anon_sym_GT_LPAREN] = ACTIONS(1497), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(177), - [sym_test_operator] = ACTIONS(159), - [sym_regex] = ACTIONS(1499), - }, - [366] = { - [sym_concatenation] = STATE(770), - [sym_string] = STATE(773), - [sym_array] = STATE(770), - [sym_simple_expansion] = STATE(773), - [sym_string_expansion] = STATE(773), - [sym_expansion] = STATE(773), - [sym_command_substitution] = STATE(773), - [sym_process_substitution] = STATE(773), - [sym__empty_value] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1503), - [sym__special_characters] = ACTIONS(1505), - [anon_sym_DQUOTE] = ACTIONS(189), - [anon_sym_DOLLAR] = ACTIONS(191), - [sym_raw_string] = ACTIONS(1507), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(195), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(197), - [anon_sym_BQUOTE] = ACTIONS(199), - [anon_sym_LT_LPAREN] = ACTIONS(201), - [anon_sym_GT_LPAREN] = ACTIONS(201), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1507), - }, - [367] = { - [sym_string] = STATE(774), - [sym_simple_expansion] = STATE(774), - [sym_string_expansion] = STATE(774), - [sym_expansion] = STATE(774), - [sym_command_substitution] = STATE(774), - [sym_process_substitution] = STATE(774), - [sym__special_characters] = ACTIONS(1509), - [anon_sym_DQUOTE] = ACTIONS(189), - [anon_sym_DOLLAR] = ACTIONS(191), - [sym_raw_string] = ACTIONS(1509), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(195), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(197), - [anon_sym_BQUOTE] = ACTIONS(199), - [anon_sym_LT_LPAREN] = ACTIONS(201), - [anon_sym_GT_LPAREN] = ACTIONS(201), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1509), - }, - [368] = { - [aux_sym_concatenation_repeat1] = STATE(775), - [sym__concat] = ACTIONS(655), - [sym_variable_name] = ACTIONS(765), - [ts_builtin_sym_end] = ACTIONS(765), - [anon_sym_SEMI] = ACTIONS(767), - [anon_sym_PIPE] = ACTIONS(767), - [anon_sym_SEMI_SEMI] = ACTIONS(765), - [anon_sym_PIPE_AMP] = ACTIONS(765), - [anon_sym_AMP_AMP] = ACTIONS(765), - [anon_sym_PIPE_PIPE] = ACTIONS(765), - [sym__special_characters] = ACTIONS(765), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_DOLLAR] = ACTIONS(767), - [sym_raw_string] = ACTIONS(765), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(765), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(765), - [anon_sym_BQUOTE] = ACTIONS(765), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(767), - [sym_word] = ACTIONS(767), - [anon_sym_LF] = ACTIONS(765), - [anon_sym_AMP] = ACTIONS(767), - }, - [369] = { - [sym__concat] = ACTIONS(769), - [sym_variable_name] = ACTIONS(769), - [ts_builtin_sym_end] = ACTIONS(769), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_RPAREN] = ACTIONS(769), - [anon_sym_SEMI_SEMI] = ACTIONS(769), - [anon_sym_PIPE_AMP] = ACTIONS(769), - [anon_sym_AMP_AMP] = ACTIONS(769), - [anon_sym_PIPE_PIPE] = ACTIONS(769), - [sym__special_characters] = ACTIONS(769), - [anon_sym_DQUOTE] = ACTIONS(769), - [anon_sym_DOLLAR] = ACTIONS(771), - [sym_raw_string] = ACTIONS(769), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(769), - [anon_sym_BQUOTE] = ACTIONS(769), - [anon_sym_LT_LPAREN] = ACTIONS(769), - [anon_sym_GT_LPAREN] = ACTIONS(769), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(771), - [sym_word] = ACTIONS(771), - [anon_sym_LF] = ACTIONS(769), - [anon_sym_AMP] = ACTIONS(771), - }, - [370] = { - [anon_sym_DQUOTE] = ACTIONS(1511), - [anon_sym_DOLLAR] = ACTIONS(775), - [sym__string_content] = ACTIONS(777), - [anon_sym_POUND] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(781), - [anon_sym_STAR] = ACTIONS(783), - [anon_sym_AT] = ACTIONS(783), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_0] = ACTIONS(781), - [anon_sym__] = ACTIONS(781), - }, - [371] = { - [sym_simple_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [sym_command_substitution] = STATE(141), - [aux_sym_string_repeat1] = STATE(450), - [anon_sym_DQUOTE] = ACTIONS(1511), - [anon_sym_DOLLAR] = ACTIONS(1513), - [sym__string_content] = ACTIONS(257), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(261), - [anon_sym_BQUOTE] = ACTIONS(263), - [sym_comment] = ACTIONS(265), - }, - [372] = { - [sym__concat] = ACTIONS(803), - [sym_variable_name] = ACTIONS(803), - [ts_builtin_sym_end] = ACTIONS(803), - [anon_sym_SEMI] = ACTIONS(805), - [anon_sym_PIPE] = ACTIONS(805), - [anon_sym_RPAREN] = ACTIONS(803), - [anon_sym_SEMI_SEMI] = ACTIONS(803), - [anon_sym_PIPE_AMP] = ACTIONS(803), - [anon_sym_AMP_AMP] = ACTIONS(803), - [anon_sym_PIPE_PIPE] = ACTIONS(803), - [sym__special_characters] = ACTIONS(803), - [anon_sym_DQUOTE] = ACTIONS(803), - [anon_sym_DOLLAR] = ACTIONS(805), - [sym_raw_string] = ACTIONS(803), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(803), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(803), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(803), - [anon_sym_GT_LPAREN] = ACTIONS(803), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(805), - [sym_word] = ACTIONS(805), - [anon_sym_LF] = ACTIONS(803), - [anon_sym_AMP] = ACTIONS(805), - }, - [373] = { - [sym__concat] = ACTIONS(807), + [391] = { + [aux_sym_concatenation_repeat1] = STATE(823), + [sym__concat] = ACTIONS(697), [sym_variable_name] = ACTIONS(807), [ts_builtin_sym_end] = ACTIONS(807), [anon_sym_SEMI] = ACTIONS(809), [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_RPAREN] = ACTIONS(807), [anon_sym_SEMI_SEMI] = ACTIONS(807), [anon_sym_PIPE_AMP] = ACTIONS(807), [anon_sym_AMP_AMP] = ACTIONS(807), @@ -19205,13 +19854,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(807), [anon_sym_LT_LPAREN] = ACTIONS(807), [anon_sym_GT_LPAREN] = ACTIONS(807), - [sym_comment] = ACTIONS(53), + [sym_comment] = ACTIONS(55), [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(809), [sym_word] = ACTIONS(809), [anon_sym_LF] = ACTIONS(807), [anon_sym_AMP] = ACTIONS(809), }, - [374] = { + [392] = { [sym__concat] = ACTIONS(811), [sym_variable_name] = ACTIONS(811), [ts_builtin_sym_end] = ACTIONS(811), @@ -19231,577 +19880,583 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(811), [anon_sym_LT_LPAREN] = ACTIONS(811), [anon_sym_GT_LPAREN] = ACTIONS(811), - [sym_comment] = ACTIONS(53), + [sym_comment] = ACTIONS(55), [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(813), [sym_word] = ACTIONS(813), [anon_sym_LF] = ACTIONS(811), [anon_sym_AMP] = ACTIONS(813), }, - [375] = { - [anon_sym_LBRACK] = ACTIONS(815), - [anon_sym_EQ] = ACTIONS(1515), - [sym_comment] = ACTIONS(53), - }, - [376] = { - [sym_subscript] = STATE(781), - [sym_variable_name] = ACTIONS(1517), - [anon_sym_DOLLAR] = ACTIONS(1519), - [anon_sym_DASH] = ACTIONS(1519), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1521), - [anon_sym_STAR] = ACTIONS(1523), - [anon_sym_AT] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(1523), - [anon_sym_0] = ACTIONS(1521), - [anon_sym__] = ACTIONS(1521), - }, - [377] = { - [sym_concatenation] = STATE(784), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(784), - [anon_sym_RBRACE] = ACTIONS(1525), - [anon_sym_EQ] = ACTIONS(1527), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1529), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(1531), - [anon_sym_COLON] = ACTIONS(1527), - [anon_sym_COLON_QMARK] = ACTIONS(1527), - [anon_sym_COLON_DASH] = ACTIONS(1527), - [anon_sym_PERCENT] = ACTIONS(1527), - [anon_sym_DASH] = ACTIONS(1527), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [378] = { - [sym_concatenation] = STATE(787), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(787), - [anon_sym_RBRACE] = ACTIONS(1533), - [anon_sym_EQ] = ACTIONS(1535), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1537), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(1539), - [anon_sym_COLON] = ACTIONS(1535), - [anon_sym_COLON_QMARK] = ACTIONS(1535), - [anon_sym_COLON_DASH] = ACTIONS(1535), - [anon_sym_PERCENT] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1535), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [379] = { - [anon_sym_SEMI] = ACTIONS(1541), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(1543), - [anon_sym_SEMI_SEMI] = ACTIONS(1545), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1545), - [anon_sym_AMP] = ACTIONS(1541), - }, - [380] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(1541), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(1543), - [anon_sym_SEMI_SEMI] = ACTIONS(1545), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(1545), - [anon_sym_AMP] = ACTIONS(1541), - }, - [381] = { - [sym__terminated_statement] = STATE(190), - [sym_for_statement] = STATE(790), - [sym_c_style_for_statement] = STATE(790), - [sym_while_statement] = STATE(790), - [sym_if_statement] = STATE(790), - [sym_case_statement] = STATE(790), - [sym_function_definition] = STATE(790), - [sym_subshell] = STATE(790), - [sym_pipeline] = STATE(790), - [sym_list] = STATE(790), - [sym_negated_command] = STATE(790), - [sym_test_command] = STATE(790), - [sym_declaration_command] = STATE(790), - [sym_unset_command] = STATE(790), - [sym_command] = STATE(790), - [sym_command_name] = STATE(78), - [sym_variable_assignment] = STATE(791), - [sym_subscript] = STATE(80), - [sym_file_redirect] = STATE(82), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(75), - [sym_simple_expansion] = STATE(75), - [sym_string_expansion] = STATE(75), - [sym_expansion] = STATE(75), - [sym_command_substitution] = STATE(75), - [sym_process_substitution] = STATE(75), - [aux_sym__statements_repeat1] = STATE(190), - [aux_sym_command_repeat1] = STATE(82), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(111), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(119), - [anon_sym_declare] = ACTIONS(121), - [anon_sym_typeset] = ACTIONS(121), - [anon_sym_export] = ACTIONS(121), - [anon_sym_readonly] = ACTIONS(121), - [anon_sym_local] = ACTIONS(121), - [anon_sym_unset] = ACTIONS(123), - [anon_sym_unsetenv] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), - }, - [382] = { - [anon_sym_SEMI] = ACTIONS(1547), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_SEMI_SEMI] = ACTIONS(1549), - [anon_sym_PIPE_AMP] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(883), - [anon_sym_PIPE_PIPE] = ACTIONS(883), - [anon_sym_BQUOTE] = ACTIONS(1543), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1549), - [anon_sym_AMP] = ACTIONS(1547), - }, - [383] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(1547), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_SEMI_SEMI] = ACTIONS(1549), - [anon_sym_PIPE_AMP] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(883), - [anon_sym_PIPE_PIPE] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(1543), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(1549), - [anon_sym_AMP] = ACTIONS(1547), - }, - [384] = { - [sym__terminated_statement] = STATE(190), - [sym_for_statement] = STATE(793), - [sym_c_style_for_statement] = STATE(793), - [sym_while_statement] = STATE(793), - [sym_if_statement] = STATE(793), - [sym_case_statement] = STATE(793), - [sym_function_definition] = STATE(793), - [sym_subshell] = STATE(793), - [sym_pipeline] = STATE(793), - [sym_list] = STATE(793), - [sym_negated_command] = STATE(793), - [sym_test_command] = STATE(793), - [sym_declaration_command] = STATE(793), - [sym_unset_command] = STATE(793), - [sym_command] = STATE(793), - [sym_command_name] = STATE(165), - [sym_variable_assignment] = STATE(794), - [sym_subscript] = STATE(53), - [sym_file_redirect] = STATE(168), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(47), - [sym_simple_expansion] = STATE(47), - [sym_string_expansion] = STATE(47), - [sym_expansion] = STATE(47), - [sym_command_substitution] = STATE(47), - [sym_process_substitution] = STATE(47), - [aux_sym__statements_repeat1] = STATE(190), - [aux_sym_command_repeat1] = STATE(168), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(69), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(289), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(291), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(293), - [anon_sym_LBRACK] = ACTIONS(295), - [anon_sym_LBRACK_LBRACK] = ACTIONS(297), - [anon_sym_declare] = ACTIONS(299), - [anon_sym_typeset] = ACTIONS(299), - [anon_sym_export] = ACTIONS(299), - [anon_sym_readonly] = ACTIONS(299), - [anon_sym_local] = ACTIONS(299), - [anon_sym_unset] = ACTIONS(301), - [anon_sym_unsetenv] = ACTIONS(301), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(87), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(303), - }, - [385] = { - [anon_sym_SEMI] = ACTIONS(1551), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(1553), - [anon_sym_SEMI_SEMI] = ACTIONS(1555), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(1551), - }, - [386] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(1551), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(1553), - [anon_sym_SEMI_SEMI] = ACTIONS(1555), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(1551), - }, - [387] = { - [sym__terminated_statement] = STATE(190), - [sym_for_statement] = STATE(797), - [sym_c_style_for_statement] = STATE(797), - [sym_while_statement] = STATE(797), - [sym_if_statement] = STATE(797), - [sym_case_statement] = STATE(797), - [sym_function_definition] = STATE(797), - [sym_subshell] = STATE(797), - [sym_pipeline] = STATE(797), - [sym_list] = STATE(797), - [sym_negated_command] = STATE(797), - [sym_test_command] = STATE(797), - [sym_declaration_command] = STATE(797), - [sym_unset_command] = STATE(797), - [sym_command] = STATE(797), - [sym_command_name] = STATE(78), - [sym_variable_assignment] = STATE(798), - [sym_subscript] = STATE(80), - [sym_file_redirect] = STATE(82), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(75), - [sym_simple_expansion] = STATE(75), - [sym_string_expansion] = STATE(75), - [sym_expansion] = STATE(75), - [sym_command_substitution] = STATE(75), - [sym_process_substitution] = STATE(75), - [aux_sym__statements_repeat1] = STATE(190), - [aux_sym_command_repeat1] = STATE(82), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(111), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(119), - [anon_sym_declare] = ACTIONS(121), - [anon_sym_typeset] = ACTIONS(121), - [anon_sym_export] = ACTIONS(121), - [anon_sym_readonly] = ACTIONS(121), - [anon_sym_local] = ACTIONS(121), - [anon_sym_unset] = ACTIONS(123), - [anon_sym_unsetenv] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), - }, - [388] = { - [sym_variable_assignment] = STATE(388), - [sym_subscript] = STATE(117), - [sym_concatenation] = STATE(388), - [sym_string] = STATE(112), - [sym_simple_expansion] = STATE(112), - [sym_string_expansion] = STATE(112), - [sym_expansion] = STATE(112), - [sym_command_substitution] = STATE(112), - [sym_process_substitution] = STATE(112), - [aux_sym_declaration_command_repeat1] = STATE(388), - [sym_variable_name] = ACTIONS(1557), - [ts_builtin_sym_end] = ACTIONS(1560), - [anon_sym_SEMI] = ACTIONS(1562), - [anon_sym_PIPE] = ACTIONS(1562), - [anon_sym_SEMI_SEMI] = ACTIONS(1560), - [anon_sym_PIPE_AMP] = ACTIONS(1560), - [anon_sym_AMP_AMP] = ACTIONS(1560), - [anon_sym_PIPE_PIPE] = ACTIONS(1560), - [sym__special_characters] = ACTIONS(1564), - [anon_sym_DQUOTE] = ACTIONS(1567), - [anon_sym_DOLLAR] = ACTIONS(1570), - [sym_raw_string] = ACTIONS(1573), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1576), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1579), - [anon_sym_BQUOTE] = ACTIONS(1582), - [anon_sym_LT_LPAREN] = ACTIONS(1585), - [anon_sym_GT_LPAREN] = ACTIONS(1585), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1588), - [sym_word] = ACTIONS(1591), - [anon_sym_LF] = ACTIONS(1560), - [anon_sym_AMP] = ACTIONS(1562), - }, - [389] = { - [sym_string] = STATE(799), - [sym_simple_expansion] = STATE(799), - [sym_string_expansion] = STATE(799), - [sym_expansion] = STATE(799), - [sym_command_substitution] = STATE(799), - [sym_process_substitution] = STATE(799), - [sym__special_characters] = ACTIONS(1594), - [anon_sym_DQUOTE] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(215), - [sym_raw_string] = ACTIONS(1594), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(219), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(221), - [anon_sym_BQUOTE] = ACTIONS(223), - [anon_sym_LT_LPAREN] = ACTIONS(225), - [anon_sym_GT_LPAREN] = ACTIONS(225), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1594), - }, - [390] = { - [aux_sym_concatenation_repeat1] = STATE(800), - [sym__concat] = ACTIONS(693), - [ts_builtin_sym_end] = ACTIONS(765), - [anon_sym_SEMI] = ACTIONS(767), - [anon_sym_PIPE] = ACTIONS(767), - [anon_sym_SEMI_SEMI] = ACTIONS(765), - [anon_sym_PIPE_AMP] = ACTIONS(765), - [anon_sym_AMP_AMP] = ACTIONS(765), - [anon_sym_PIPE_PIPE] = ACTIONS(765), - [sym__special_characters] = ACTIONS(765), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_DOLLAR] = ACTIONS(767), - [sym_raw_string] = ACTIONS(765), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(765), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(765), - [anon_sym_BQUOTE] = ACTIONS(765), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(767), - [sym_word] = ACTIONS(767), - [anon_sym_LF] = ACTIONS(765), - [anon_sym_AMP] = ACTIONS(767), - }, - [391] = { - [sym__concat] = ACTIONS(769), - [ts_builtin_sym_end] = ACTIONS(769), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_RPAREN] = ACTIONS(769), - [anon_sym_SEMI_SEMI] = ACTIONS(769), - [anon_sym_PIPE_AMP] = ACTIONS(769), - [anon_sym_AMP_AMP] = ACTIONS(769), - [anon_sym_PIPE_PIPE] = ACTIONS(769), - [sym__special_characters] = ACTIONS(769), - [anon_sym_DQUOTE] = ACTIONS(769), - [anon_sym_DOLLAR] = ACTIONS(771), - [sym_raw_string] = ACTIONS(769), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(769), - [anon_sym_BQUOTE] = ACTIONS(769), - [anon_sym_LT_LPAREN] = ACTIONS(769), - [anon_sym_GT_LPAREN] = ACTIONS(769), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(771), - [sym_word] = ACTIONS(771), - [anon_sym_LF] = ACTIONS(769), - [anon_sym_AMP] = ACTIONS(771), - }, - [392] = { - [anon_sym_DQUOTE] = ACTIONS(1596), - [anon_sym_DOLLAR] = ACTIONS(775), - [sym__string_content] = ACTIONS(777), - [anon_sym_POUND] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(781), - [anon_sym_STAR] = ACTIONS(783), - [anon_sym_AT] = ACTIONS(783), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_0] = ACTIONS(781), - [anon_sym__] = ACTIONS(781), - }, [393] = { - [sym_simple_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [sym_command_substitution] = STATE(141), - [aux_sym_string_repeat1] = STATE(450), - [anon_sym_DQUOTE] = ACTIONS(1596), - [anon_sym_DOLLAR] = ACTIONS(1598), - [sym__string_content] = ACTIONS(257), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(261), - [anon_sym_BQUOTE] = ACTIONS(263), - [sym_comment] = ACTIONS(265), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym__string_content] = ACTIONS(821), + [anon_sym_POUND] = ACTIONS(815), + [sym_comment] = ACTIONS(281), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(823), + [anon_sym_STAR] = ACTIONS(825), + [anon_sym_AT] = ACTIONS(825), + [anon_sym_QMARK] = ACTIONS(825), + [anon_sym_0] = ACTIONS(823), + [anon_sym__] = ACTIONS(823), }, [394] = { - [sym__concat] = ACTIONS(803), - [ts_builtin_sym_end] = ACTIONS(803), - [anon_sym_SEMI] = ACTIONS(805), - [anon_sym_PIPE] = ACTIONS(805), - [anon_sym_RPAREN] = ACTIONS(803), - [anon_sym_SEMI_SEMI] = ACTIONS(803), - [anon_sym_PIPE_AMP] = ACTIONS(803), - [anon_sym_AMP_AMP] = ACTIONS(803), - [anon_sym_PIPE_PIPE] = ACTIONS(803), - [sym__special_characters] = ACTIONS(803), - [anon_sym_DQUOTE] = ACTIONS(803), - [anon_sym_DOLLAR] = ACTIONS(805), - [sym_raw_string] = ACTIONS(803), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(803), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(803), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(803), - [anon_sym_GT_LPAREN] = ACTIONS(803), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(805), - [sym_word] = ACTIONS(805), - [anon_sym_LF] = ACTIONS(803), - [anon_sym_AMP] = ACTIONS(805), + [sym_simple_expansion] = STATE(148), + [sym_expansion] = STATE(148), + [sym_command_substitution] = STATE(148), + [aux_sym_string_repeat1] = STATE(473), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_DOLLAR] = ACTIONS(1552), + [sym__string_content] = ACTIONS(273), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(277), + [anon_sym_BQUOTE] = ACTIONS(279), + [sym_comment] = ACTIONS(281), }, [395] = { - [sym__concat] = ACTIONS(807), + [sym__concat] = ACTIONS(845), + [sym_variable_name] = ACTIONS(845), + [ts_builtin_sym_end] = ACTIONS(845), + [anon_sym_SEMI] = ACTIONS(847), + [anon_sym_PIPE] = ACTIONS(847), + [anon_sym_RPAREN] = ACTIONS(845), + [anon_sym_SEMI_SEMI] = ACTIONS(845), + [anon_sym_PIPE_AMP] = ACTIONS(845), + [anon_sym_AMP_AMP] = ACTIONS(845), + [anon_sym_PIPE_PIPE] = ACTIONS(845), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(845), + [anon_sym_DOLLAR] = ACTIONS(847), + [sym_raw_string] = ACTIONS(845), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(845), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), + [anon_sym_BQUOTE] = ACTIONS(845), + [anon_sym_LT_LPAREN] = ACTIONS(845), + [anon_sym_GT_LPAREN] = ACTIONS(845), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(847), + [sym_word] = ACTIONS(847), + [anon_sym_LF] = ACTIONS(845), + [anon_sym_AMP] = ACTIONS(847), + }, + [396] = { + [sym__concat] = ACTIONS(849), + [sym_variable_name] = ACTIONS(849), + [ts_builtin_sym_end] = ACTIONS(849), + [anon_sym_SEMI] = ACTIONS(851), + [anon_sym_PIPE] = ACTIONS(851), + [anon_sym_RPAREN] = ACTIONS(849), + [anon_sym_SEMI_SEMI] = ACTIONS(849), + [anon_sym_PIPE_AMP] = ACTIONS(849), + [anon_sym_AMP_AMP] = ACTIONS(849), + [anon_sym_PIPE_PIPE] = ACTIONS(849), + [sym__special_characters] = ACTIONS(849), + [anon_sym_DQUOTE] = ACTIONS(849), + [anon_sym_DOLLAR] = ACTIONS(851), + [sym_raw_string] = ACTIONS(849), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(849), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(849), + [anon_sym_BQUOTE] = ACTIONS(849), + [anon_sym_LT_LPAREN] = ACTIONS(849), + [anon_sym_GT_LPAREN] = ACTIONS(849), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(851), + [sym_word] = ACTIONS(851), + [anon_sym_LF] = ACTIONS(849), + [anon_sym_AMP] = ACTIONS(851), + }, + [397] = { + [sym__concat] = ACTIONS(853), + [sym_variable_name] = ACTIONS(853), + [ts_builtin_sym_end] = ACTIONS(853), + [anon_sym_SEMI] = ACTIONS(855), + [anon_sym_PIPE] = ACTIONS(855), + [anon_sym_RPAREN] = ACTIONS(853), + [anon_sym_SEMI_SEMI] = ACTIONS(853), + [anon_sym_PIPE_AMP] = ACTIONS(853), + [anon_sym_AMP_AMP] = ACTIONS(853), + [anon_sym_PIPE_PIPE] = ACTIONS(853), + [sym__special_characters] = ACTIONS(853), + [anon_sym_DQUOTE] = ACTIONS(853), + [anon_sym_DOLLAR] = ACTIONS(855), + [sym_raw_string] = ACTIONS(853), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(853), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(853), + [anon_sym_BQUOTE] = ACTIONS(853), + [anon_sym_LT_LPAREN] = ACTIONS(853), + [anon_sym_GT_LPAREN] = ACTIONS(853), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(855), + [sym_word] = ACTIONS(855), + [anon_sym_LF] = ACTIONS(853), + [anon_sym_AMP] = ACTIONS(855), + }, + [398] = { + [anon_sym_LBRACK] = ACTIONS(857), + [anon_sym_EQ] = ACTIONS(1554), + [sym_comment] = ACTIONS(55), + }, + [399] = { + [sym_subscript] = STATE(829), + [sym_variable_name] = ACTIONS(1556), + [anon_sym_DASH] = ACTIONS(1558), + [anon_sym_DOLLAR] = ACTIONS(1558), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1560), + [anon_sym_STAR] = ACTIONS(1562), + [anon_sym_AT] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(1562), + [anon_sym_0] = ACTIONS(1560), + [anon_sym__] = ACTIONS(1560), + }, + [400] = { + [sym_concatenation] = STATE(832), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(832), + [anon_sym_RBRACE] = ACTIONS(1564), + [anon_sym_EQ] = ACTIONS(1566), + [anon_sym_DASH] = ACTIONS(1566), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1568), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(1570), + [anon_sym_COLON] = ACTIONS(1566), + [anon_sym_COLON_QMARK] = ACTIONS(1566), + [anon_sym_COLON_DASH] = ACTIONS(1566), + [anon_sym_PERCENT] = ACTIONS(1566), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [401] = { + [sym_concatenation] = STATE(835), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(835), + [anon_sym_RBRACE] = ACTIONS(1572), + [anon_sym_EQ] = ACTIONS(1574), + [anon_sym_DASH] = ACTIONS(1574), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1576), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(1578), + [anon_sym_COLON] = ACTIONS(1574), + [anon_sym_COLON_QMARK] = ACTIONS(1574), + [anon_sym_COLON_DASH] = ACTIONS(1574), + [anon_sym_PERCENT] = ACTIONS(1574), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [402] = { + [anon_sym_SEMI] = ACTIONS(1580), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(1582), + [anon_sym_SEMI_SEMI] = ACTIONS(1584), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1584), + [anon_sym_AMP] = ACTIONS(1580), + }, + [403] = { + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(1580), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(1582), + [anon_sym_SEMI_SEMI] = ACTIONS(1584), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(1584), + [anon_sym_AMP] = ACTIONS(1580), + }, + [404] = { + [sym__terminated_statement] = STATE(198), + [sym_for_statement] = STATE(838), + [sym_c_style_for_statement] = STATE(838), + [sym_while_statement] = STATE(838), + [sym_if_statement] = STATE(838), + [sym_case_statement] = STATE(838), + [sym_function_definition] = STATE(838), + [sym_subshell] = STATE(838), + [sym_pipeline] = STATE(838), + [sym_list] = STATE(838), + [sym_negated_command] = STATE(838), + [sym_test_command] = STATE(838), + [sym_declaration_command] = STATE(838), + [sym_unset_command] = STATE(838), + [sym_command] = STATE(838), + [sym_command_name] = STATE(92), + [sym_variable_assignment] = STATE(839), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(96), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), + [aux_sym__statements_repeat1] = STATE(198), + [aux_sym_command_repeat1] = STATE(96), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(137), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(149), + [anon_sym_declare] = ACTIONS(151), + [anon_sym_typeset] = ACTIONS(151), + [anon_sym_export] = ACTIONS(151), + [anon_sym_readonly] = ACTIONS(151), + [anon_sym_local] = ACTIONS(151), + [anon_sym_unset] = ACTIONS(153), + [anon_sym_unsetenv] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(159), + }, + [405] = { + [anon_sym_SEMI] = ACTIONS(1586), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_SEMI_SEMI] = ACTIONS(1588), + [anon_sym_PIPE_AMP] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_BQUOTE] = ACTIONS(1582), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(1586), + }, + [406] = { + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(1586), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_SEMI_SEMI] = ACTIONS(1588), + [anon_sym_PIPE_AMP] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(1582), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(1586), + }, + [407] = { + [sym__terminated_statement] = STATE(198), + [sym_for_statement] = STATE(841), + [sym_c_style_for_statement] = STATE(841), + [sym_while_statement] = STATE(841), + [sym_if_statement] = STATE(841), + [sym_case_statement] = STATE(841), + [sym_function_definition] = STATE(841), + [sym_subshell] = STATE(841), + [sym_pipeline] = STATE(841), + [sym_list] = STATE(841), + [sym_negated_command] = STATE(841), + [sym_test_command] = STATE(841), + [sym_declaration_command] = STATE(841), + [sym_unset_command] = STATE(841), + [sym_command] = STATE(841), + [sym_command_name] = STATE(173), + [sym_variable_assignment] = STATE(842), + [sym_subscript] = STATE(66), + [sym_file_redirect] = STATE(176), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(60), + [sym_simple_expansion] = STATE(60), + [sym_string_expansion] = STATE(60), + [sym_expansion] = STATE(60), + [sym_command_substitution] = STATE(60), + [sym_process_substitution] = STATE(60), + [aux_sym__statements_repeat1] = STATE(198), + [aux_sym_command_repeat1] = STATE(176), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(95), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(305), + [anon_sym_while] = ACTIONS(307), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(311), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(315), + [anon_sym_declare] = ACTIONS(317), + [anon_sym_typeset] = ACTIONS(317), + [anon_sym_export] = ACTIONS(317), + [anon_sym_readonly] = ACTIONS(317), + [anon_sym_local] = ACTIONS(317), + [anon_sym_unset] = ACTIONS(319), + [anon_sym_unsetenv] = ACTIONS(319), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(115), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(321), + }, + [408] = { + [anon_sym_SEMI] = ACTIONS(1590), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(1592), + [anon_sym_SEMI_SEMI] = ACTIONS(1594), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1594), + [anon_sym_AMP] = ACTIONS(1590), + }, + [409] = { + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(1590), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(1592), + [anon_sym_SEMI_SEMI] = ACTIONS(1594), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(1594), + [anon_sym_AMP] = ACTIONS(1590), + }, + [410] = { + [sym__terminated_statement] = STATE(198), + [sym_for_statement] = STATE(845), + [sym_c_style_for_statement] = STATE(845), + [sym_while_statement] = STATE(845), + [sym_if_statement] = STATE(845), + [sym_case_statement] = STATE(845), + [sym_function_definition] = STATE(845), + [sym_subshell] = STATE(845), + [sym_pipeline] = STATE(845), + [sym_list] = STATE(845), + [sym_negated_command] = STATE(845), + [sym_test_command] = STATE(845), + [sym_declaration_command] = STATE(845), + [sym_unset_command] = STATE(845), + [sym_command] = STATE(845), + [sym_command_name] = STATE(92), + [sym_variable_assignment] = STATE(846), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(96), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), + [aux_sym__statements_repeat1] = STATE(198), + [aux_sym_command_repeat1] = STATE(96), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(137), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(149), + [anon_sym_declare] = ACTIONS(151), + [anon_sym_typeset] = ACTIONS(151), + [anon_sym_export] = ACTIONS(151), + [anon_sym_readonly] = ACTIONS(151), + [anon_sym_local] = ACTIONS(151), + [anon_sym_unset] = ACTIONS(153), + [anon_sym_unsetenv] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(159), + }, + [411] = { + [sym_variable_assignment] = STATE(411), + [sym_subscript] = STATE(124), + [sym_concatenation] = STATE(411), + [sym_string] = STATE(119), + [sym_simple_expansion] = STATE(119), + [sym_string_expansion] = STATE(119), + [sym_expansion] = STATE(119), + [sym_command_substitution] = STATE(119), + [sym_process_substitution] = STATE(119), + [aux_sym_declaration_command_repeat1] = STATE(411), + [sym_variable_name] = ACTIONS(1596), + [ts_builtin_sym_end] = ACTIONS(1599), + [anon_sym_SEMI] = ACTIONS(1601), + [anon_sym_PIPE] = ACTIONS(1601), + [anon_sym_SEMI_SEMI] = ACTIONS(1599), + [anon_sym_PIPE_AMP] = ACTIONS(1599), + [anon_sym_AMP_AMP] = ACTIONS(1599), + [anon_sym_PIPE_PIPE] = ACTIONS(1599), + [sym__special_characters] = ACTIONS(1603), + [anon_sym_DQUOTE] = ACTIONS(1606), + [anon_sym_DOLLAR] = ACTIONS(1609), + [sym_raw_string] = ACTIONS(1612), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1615), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1618), + [anon_sym_BQUOTE] = ACTIONS(1621), + [anon_sym_LT_LPAREN] = ACTIONS(1624), + [anon_sym_GT_LPAREN] = ACTIONS(1624), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1627), + [sym_word] = ACTIONS(1630), + [anon_sym_LF] = ACTIONS(1599), + [anon_sym_AMP] = ACTIONS(1601), + }, + [412] = { + [sym_string] = STATE(847), + [sym_simple_expansion] = STATE(847), + [sym_string_expansion] = STATE(847), + [sym_expansion] = STATE(847), + [sym_command_substitution] = STATE(847), + [sym_process_substitution] = STATE(847), + [sym__special_characters] = ACTIONS(1633), + [anon_sym_DQUOTE] = ACTIONS(229), + [anon_sym_DOLLAR] = ACTIONS(231), + [sym_raw_string] = ACTIONS(1633), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), + [anon_sym_BQUOTE] = ACTIONS(239), + [anon_sym_LT_LPAREN] = ACTIONS(241), + [anon_sym_GT_LPAREN] = ACTIONS(241), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1633), + }, + [413] = { + [aux_sym_concatenation_repeat1] = STATE(848), + [sym__concat] = ACTIONS(735), [ts_builtin_sym_end] = ACTIONS(807), [anon_sym_SEMI] = ACTIONS(809), [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_RPAREN] = ACTIONS(807), [anon_sym_SEMI_SEMI] = ACTIONS(807), [anon_sym_PIPE_AMP] = ACTIONS(807), [anon_sym_AMP_AMP] = ACTIONS(807), @@ -19815,13 +20470,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(807), [anon_sym_LT_LPAREN] = ACTIONS(807), [anon_sym_GT_LPAREN] = ACTIONS(807), - [sym_comment] = ACTIONS(53), + [sym_comment] = ACTIONS(55), [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(809), [sym_word] = ACTIONS(809), [anon_sym_LF] = ACTIONS(807), [anon_sym_AMP] = ACTIONS(809), }, - [396] = { + [414] = { [sym__concat] = ACTIONS(811), [ts_builtin_sym_end] = ACTIONS(811), [anon_sym_SEMI] = ACTIONS(813), @@ -19840,566 +20495,575 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(811), [anon_sym_LT_LPAREN] = ACTIONS(811), [anon_sym_GT_LPAREN] = ACTIONS(811), - [sym_comment] = ACTIONS(53), + [sym_comment] = ACTIONS(55), [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(813), [sym_word] = ACTIONS(813), [anon_sym_LF] = ACTIONS(811), [anon_sym_AMP] = ACTIONS(813), }, - [397] = { - [anon_sym_LBRACK] = ACTIONS(815), - [anon_sym_EQ] = ACTIONS(1600), - [sym_comment] = ACTIONS(53), - }, - [398] = { - [sym_subscript] = STATE(806), - [sym_variable_name] = ACTIONS(1602), - [anon_sym_DOLLAR] = ACTIONS(1604), - [anon_sym_DASH] = ACTIONS(1604), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1606), - [anon_sym_STAR] = ACTIONS(1608), - [anon_sym_AT] = ACTIONS(1608), - [anon_sym_QMARK] = ACTIONS(1608), - [anon_sym_0] = ACTIONS(1606), - [anon_sym__] = ACTIONS(1606), - }, - [399] = { - [sym_concatenation] = STATE(809), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(809), - [anon_sym_RBRACE] = ACTIONS(1610), - [anon_sym_EQ] = ACTIONS(1612), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1614), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(1616), - [anon_sym_COLON] = ACTIONS(1612), - [anon_sym_COLON_QMARK] = ACTIONS(1612), - [anon_sym_COLON_DASH] = ACTIONS(1612), - [anon_sym_PERCENT] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(1612), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [400] = { - [sym_concatenation] = STATE(812), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(812), - [anon_sym_RBRACE] = ACTIONS(1618), - [anon_sym_EQ] = ACTIONS(1620), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1622), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(1624), - [anon_sym_COLON] = ACTIONS(1620), - [anon_sym_COLON_QMARK] = ACTIONS(1620), - [anon_sym_COLON_DASH] = ACTIONS(1620), - [anon_sym_PERCENT] = ACTIONS(1620), - [anon_sym_DASH] = ACTIONS(1620), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [401] = { - [anon_sym_SEMI] = ACTIONS(1626), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(1628), - [anon_sym_SEMI_SEMI] = ACTIONS(1630), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1630), - [anon_sym_AMP] = ACTIONS(1626), - }, - [402] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(1626), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(1628), - [anon_sym_SEMI_SEMI] = ACTIONS(1630), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(1630), - [anon_sym_AMP] = ACTIONS(1626), - }, - [403] = { - [sym__terminated_statement] = STATE(190), - [sym_for_statement] = STATE(815), - [sym_c_style_for_statement] = STATE(815), - [sym_while_statement] = STATE(815), - [sym_if_statement] = STATE(815), - [sym_case_statement] = STATE(815), - [sym_function_definition] = STATE(815), - [sym_subshell] = STATE(815), - [sym_pipeline] = STATE(815), - [sym_list] = STATE(815), - [sym_negated_command] = STATE(815), - [sym_test_command] = STATE(815), - [sym_declaration_command] = STATE(815), - [sym_unset_command] = STATE(815), - [sym_command] = STATE(815), - [sym_command_name] = STATE(78), - [sym_variable_assignment] = STATE(816), - [sym_subscript] = STATE(80), - [sym_file_redirect] = STATE(82), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(75), - [sym_simple_expansion] = STATE(75), - [sym_string_expansion] = STATE(75), - [sym_expansion] = STATE(75), - [sym_command_substitution] = STATE(75), - [sym_process_substitution] = STATE(75), - [aux_sym__statements_repeat1] = STATE(190), - [aux_sym_command_repeat1] = STATE(82), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(111), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(119), - [anon_sym_declare] = ACTIONS(121), - [anon_sym_typeset] = ACTIONS(121), - [anon_sym_export] = ACTIONS(121), - [anon_sym_readonly] = ACTIONS(121), - [anon_sym_local] = ACTIONS(121), - [anon_sym_unset] = ACTIONS(123), - [anon_sym_unsetenv] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), - }, - [404] = { - [anon_sym_SEMI] = ACTIONS(1632), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_SEMI_SEMI] = ACTIONS(1634), - [anon_sym_PIPE_AMP] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(883), - [anon_sym_PIPE_PIPE] = ACTIONS(883), - [anon_sym_BQUOTE] = ACTIONS(1628), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1634), - [anon_sym_AMP] = ACTIONS(1632), - }, - [405] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(1632), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_SEMI_SEMI] = ACTIONS(1634), - [anon_sym_PIPE_AMP] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(883), - [anon_sym_PIPE_PIPE] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(1628), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(1634), - [anon_sym_AMP] = ACTIONS(1632), - }, - [406] = { - [sym__terminated_statement] = STATE(190), - [sym_for_statement] = STATE(818), - [sym_c_style_for_statement] = STATE(818), - [sym_while_statement] = STATE(818), - [sym_if_statement] = STATE(818), - [sym_case_statement] = STATE(818), - [sym_function_definition] = STATE(818), - [sym_subshell] = STATE(818), - [sym_pipeline] = STATE(818), - [sym_list] = STATE(818), - [sym_negated_command] = STATE(818), - [sym_test_command] = STATE(818), - [sym_declaration_command] = STATE(818), - [sym_unset_command] = STATE(818), - [sym_command] = STATE(818), - [sym_command_name] = STATE(165), - [sym_variable_assignment] = STATE(819), - [sym_subscript] = STATE(53), - [sym_file_redirect] = STATE(168), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(47), - [sym_simple_expansion] = STATE(47), - [sym_string_expansion] = STATE(47), - [sym_expansion] = STATE(47), - [sym_command_substitution] = STATE(47), - [sym_process_substitution] = STATE(47), - [aux_sym__statements_repeat1] = STATE(190), - [aux_sym_command_repeat1] = STATE(168), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(69), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(289), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(291), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(293), - [anon_sym_LBRACK] = ACTIONS(295), - [anon_sym_LBRACK_LBRACK] = ACTIONS(297), - [anon_sym_declare] = ACTIONS(299), - [anon_sym_typeset] = ACTIONS(299), - [anon_sym_export] = ACTIONS(299), - [anon_sym_readonly] = ACTIONS(299), - [anon_sym_local] = ACTIONS(299), - [anon_sym_unset] = ACTIONS(301), - [anon_sym_unsetenv] = ACTIONS(301), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(87), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(303), - }, - [407] = { - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(1638), - [anon_sym_SEMI_SEMI] = ACTIONS(1640), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1640), - [anon_sym_AMP] = ACTIONS(1636), - }, - [408] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(1638), - [anon_sym_SEMI_SEMI] = ACTIONS(1640), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(1640), - [anon_sym_AMP] = ACTIONS(1636), - }, - [409] = { - [sym__terminated_statement] = STATE(190), - [sym_for_statement] = STATE(822), - [sym_c_style_for_statement] = STATE(822), - [sym_while_statement] = STATE(822), - [sym_if_statement] = STATE(822), - [sym_case_statement] = STATE(822), - [sym_function_definition] = STATE(822), - [sym_subshell] = STATE(822), - [sym_pipeline] = STATE(822), - [sym_list] = STATE(822), - [sym_negated_command] = STATE(822), - [sym_test_command] = STATE(822), - [sym_declaration_command] = STATE(822), - [sym_unset_command] = STATE(822), - [sym_command] = STATE(822), - [sym_command_name] = STATE(78), - [sym_variable_assignment] = STATE(823), - [sym_subscript] = STATE(80), - [sym_file_redirect] = STATE(82), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(75), - [sym_simple_expansion] = STATE(75), - [sym_string_expansion] = STATE(75), - [sym_expansion] = STATE(75), - [sym_command_substitution] = STATE(75), - [sym_process_substitution] = STATE(75), - [aux_sym__statements_repeat1] = STATE(190), - [aux_sym_command_repeat1] = STATE(82), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(111), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(119), - [anon_sym_declare] = ACTIONS(121), - [anon_sym_typeset] = ACTIONS(121), - [anon_sym_export] = ACTIONS(121), - [anon_sym_readonly] = ACTIONS(121), - [anon_sym_local] = ACTIONS(121), - [anon_sym_unset] = ACTIONS(123), - [anon_sym_unsetenv] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), - }, - [410] = { - [sym_concatenation] = STATE(410), - [sym_string] = STATE(122), - [sym_simple_expansion] = STATE(122), - [sym_string_expansion] = STATE(122), - [sym_expansion] = STATE(122), - [sym_command_substitution] = STATE(122), - [sym_process_substitution] = STATE(122), - [aux_sym_unset_command_repeat1] = STATE(410), - [ts_builtin_sym_end] = ACTIONS(1642), - [anon_sym_SEMI] = ACTIONS(1644), - [anon_sym_PIPE] = ACTIONS(1644), - [anon_sym_SEMI_SEMI] = ACTIONS(1642), - [anon_sym_PIPE_AMP] = ACTIONS(1642), - [anon_sym_AMP_AMP] = ACTIONS(1642), - [anon_sym_PIPE_PIPE] = ACTIONS(1642), - [sym__special_characters] = ACTIONS(1646), - [anon_sym_DQUOTE] = ACTIONS(1649), - [anon_sym_DOLLAR] = ACTIONS(1652), - [sym_raw_string] = ACTIONS(1655), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1658), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1661), - [anon_sym_BQUOTE] = ACTIONS(1664), - [anon_sym_LT_LPAREN] = ACTIONS(1667), - [anon_sym_GT_LPAREN] = ACTIONS(1667), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1670), - [sym_word] = ACTIONS(1673), - [anon_sym_LF] = ACTIONS(1642), - [anon_sym_AMP] = ACTIONS(1644), - }, - [411] = { - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym__special_characters] = ACTIONS(1676), - [anon_sym_DQUOTE] = ACTIONS(233), - [anon_sym_DOLLAR] = ACTIONS(235), - [sym_raw_string] = ACTIONS(1676), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(239), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(241), - [anon_sym_BQUOTE] = ACTIONS(243), - [anon_sym_LT_LPAREN] = ACTIONS(245), - [anon_sym_GT_LPAREN] = ACTIONS(245), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1676), - }, - [412] = { - [aux_sym_concatenation_repeat1] = STATE(825), - [sym_file_descriptor] = ACTIONS(765), - [sym__concat] = ACTIONS(733), - [sym_variable_name] = ACTIONS(765), - [anon_sym_LT] = ACTIONS(767), - [anon_sym_GT] = ACTIONS(767), - [anon_sym_GT_GT] = ACTIONS(765), - [anon_sym_AMP_GT] = ACTIONS(767), - [anon_sym_AMP_GT_GT] = ACTIONS(765), - [anon_sym_LT_AMP] = ACTIONS(765), - [anon_sym_GT_AMP] = ACTIONS(765), - [sym__special_characters] = ACTIONS(765), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_DOLLAR] = ACTIONS(767), - [sym_raw_string] = ACTIONS(765), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(765), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(765), - [anon_sym_BQUOTE] = ACTIONS(765), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(765), - }, - [413] = { - [sym_file_descriptor] = ACTIONS(769), - [sym__concat] = ACTIONS(769), - [sym_variable_name] = ACTIONS(769), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_GT] = ACTIONS(769), - [anon_sym_AMP_GT] = ACTIONS(771), - [anon_sym_AMP_GT_GT] = ACTIONS(769), - [anon_sym_LT_AMP] = ACTIONS(769), - [anon_sym_GT_AMP] = ACTIONS(769), - [sym__special_characters] = ACTIONS(769), - [anon_sym_DQUOTE] = ACTIONS(769), - [anon_sym_DOLLAR] = ACTIONS(771), - [sym_raw_string] = ACTIONS(769), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(769), - [anon_sym_BQUOTE] = ACTIONS(769), - [anon_sym_LT_LPAREN] = ACTIONS(769), - [anon_sym_GT_LPAREN] = ACTIONS(769), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(769), - }, - [414] = { - [anon_sym_DQUOTE] = ACTIONS(1678), - [anon_sym_DOLLAR] = ACTIONS(775), - [sym__string_content] = ACTIONS(777), - [anon_sym_POUND] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(781), - [anon_sym_STAR] = ACTIONS(783), - [anon_sym_AT] = ACTIONS(783), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_0] = ACTIONS(781), - [anon_sym__] = ACTIONS(781), - }, [415] = { - [sym_simple_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [sym_command_substitution] = STATE(141), - [aux_sym_string_repeat1] = STATE(450), - [anon_sym_DQUOTE] = ACTIONS(1678), - [anon_sym_DOLLAR] = ACTIONS(1680), - [sym__string_content] = ACTIONS(257), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(261), - [anon_sym_BQUOTE] = ACTIONS(263), - [sym_comment] = ACTIONS(265), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_DQUOTE] = ACTIONS(1635), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym__string_content] = ACTIONS(821), + [anon_sym_POUND] = ACTIONS(815), + [sym_comment] = ACTIONS(281), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(823), + [anon_sym_STAR] = ACTIONS(825), + [anon_sym_AT] = ACTIONS(825), + [anon_sym_QMARK] = ACTIONS(825), + [anon_sym_0] = ACTIONS(823), + [anon_sym__] = ACTIONS(823), }, [416] = { - [sym_file_descriptor] = ACTIONS(803), - [sym__concat] = ACTIONS(803), - [sym_variable_name] = ACTIONS(803), - [anon_sym_LT] = ACTIONS(805), - [anon_sym_GT] = ACTIONS(805), - [anon_sym_GT_GT] = ACTIONS(803), - [anon_sym_AMP_GT] = ACTIONS(805), - [anon_sym_AMP_GT_GT] = ACTIONS(803), - [anon_sym_LT_AMP] = ACTIONS(803), - [anon_sym_GT_AMP] = ACTIONS(803), - [sym__special_characters] = ACTIONS(803), - [anon_sym_DQUOTE] = ACTIONS(803), - [anon_sym_DOLLAR] = ACTIONS(805), - [sym_raw_string] = ACTIONS(803), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(803), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(803), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(803), - [anon_sym_GT_LPAREN] = ACTIONS(803), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(803), + [sym_simple_expansion] = STATE(148), + [sym_expansion] = STATE(148), + [sym_command_substitution] = STATE(148), + [aux_sym_string_repeat1] = STATE(473), + [anon_sym_DQUOTE] = ACTIONS(1635), + [anon_sym_DOLLAR] = ACTIONS(1637), + [sym__string_content] = ACTIONS(273), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(277), + [anon_sym_BQUOTE] = ACTIONS(279), + [sym_comment] = ACTIONS(281), }, [417] = { + [sym__concat] = ACTIONS(845), + [ts_builtin_sym_end] = ACTIONS(845), + [anon_sym_SEMI] = ACTIONS(847), + [anon_sym_PIPE] = ACTIONS(847), + [anon_sym_RPAREN] = ACTIONS(845), + [anon_sym_SEMI_SEMI] = ACTIONS(845), + [anon_sym_PIPE_AMP] = ACTIONS(845), + [anon_sym_AMP_AMP] = ACTIONS(845), + [anon_sym_PIPE_PIPE] = ACTIONS(845), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(845), + [anon_sym_DOLLAR] = ACTIONS(847), + [sym_raw_string] = ACTIONS(845), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(845), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), + [anon_sym_BQUOTE] = ACTIONS(845), + [anon_sym_LT_LPAREN] = ACTIONS(845), + [anon_sym_GT_LPAREN] = ACTIONS(845), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(847), + [sym_word] = ACTIONS(847), + [anon_sym_LF] = ACTIONS(845), + [anon_sym_AMP] = ACTIONS(847), + }, + [418] = { + [sym__concat] = ACTIONS(849), + [ts_builtin_sym_end] = ACTIONS(849), + [anon_sym_SEMI] = ACTIONS(851), + [anon_sym_PIPE] = ACTIONS(851), + [anon_sym_RPAREN] = ACTIONS(849), + [anon_sym_SEMI_SEMI] = ACTIONS(849), + [anon_sym_PIPE_AMP] = ACTIONS(849), + [anon_sym_AMP_AMP] = ACTIONS(849), + [anon_sym_PIPE_PIPE] = ACTIONS(849), + [sym__special_characters] = ACTIONS(849), + [anon_sym_DQUOTE] = ACTIONS(849), + [anon_sym_DOLLAR] = ACTIONS(851), + [sym_raw_string] = ACTIONS(849), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(849), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(849), + [anon_sym_BQUOTE] = ACTIONS(849), + [anon_sym_LT_LPAREN] = ACTIONS(849), + [anon_sym_GT_LPAREN] = ACTIONS(849), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(851), + [sym_word] = ACTIONS(851), + [anon_sym_LF] = ACTIONS(849), + [anon_sym_AMP] = ACTIONS(851), + }, + [419] = { + [sym__concat] = ACTIONS(853), + [ts_builtin_sym_end] = ACTIONS(853), + [anon_sym_SEMI] = ACTIONS(855), + [anon_sym_PIPE] = ACTIONS(855), + [anon_sym_RPAREN] = ACTIONS(853), + [anon_sym_SEMI_SEMI] = ACTIONS(853), + [anon_sym_PIPE_AMP] = ACTIONS(853), + [anon_sym_AMP_AMP] = ACTIONS(853), + [anon_sym_PIPE_PIPE] = ACTIONS(853), + [sym__special_characters] = ACTIONS(853), + [anon_sym_DQUOTE] = ACTIONS(853), + [anon_sym_DOLLAR] = ACTIONS(855), + [sym_raw_string] = ACTIONS(853), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(853), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(853), + [anon_sym_BQUOTE] = ACTIONS(853), + [anon_sym_LT_LPAREN] = ACTIONS(853), + [anon_sym_GT_LPAREN] = ACTIONS(853), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(855), + [sym_word] = ACTIONS(855), + [anon_sym_LF] = ACTIONS(853), + [anon_sym_AMP] = ACTIONS(855), + }, + [420] = { + [anon_sym_LBRACK] = ACTIONS(857), + [anon_sym_EQ] = ACTIONS(1639), + [sym_comment] = ACTIONS(55), + }, + [421] = { + [sym_subscript] = STATE(854), + [sym_variable_name] = ACTIONS(1641), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_DOLLAR] = ACTIONS(1643), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1645), + [anon_sym_STAR] = ACTIONS(1647), + [anon_sym_AT] = ACTIONS(1647), + [anon_sym_QMARK] = ACTIONS(1647), + [anon_sym_0] = ACTIONS(1645), + [anon_sym__] = ACTIONS(1645), + }, + [422] = { + [sym_concatenation] = STATE(857), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(857), + [anon_sym_RBRACE] = ACTIONS(1649), + [anon_sym_EQ] = ACTIONS(1651), + [anon_sym_DASH] = ACTIONS(1651), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1653), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_COLON] = ACTIONS(1651), + [anon_sym_COLON_QMARK] = ACTIONS(1651), + [anon_sym_COLON_DASH] = ACTIONS(1651), + [anon_sym_PERCENT] = ACTIONS(1651), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [423] = { + [sym_concatenation] = STATE(860), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(860), + [anon_sym_RBRACE] = ACTIONS(1657), + [anon_sym_EQ] = ACTIONS(1659), + [anon_sym_DASH] = ACTIONS(1659), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1661), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(1663), + [anon_sym_COLON] = ACTIONS(1659), + [anon_sym_COLON_QMARK] = ACTIONS(1659), + [anon_sym_COLON_DASH] = ACTIONS(1659), + [anon_sym_PERCENT] = ACTIONS(1659), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [424] = { + [anon_sym_SEMI] = ACTIONS(1665), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(1667), + [anon_sym_SEMI_SEMI] = ACTIONS(1669), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1669), + [anon_sym_AMP] = ACTIONS(1665), + }, + [425] = { + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(1665), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(1667), + [anon_sym_SEMI_SEMI] = ACTIONS(1669), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(1669), + [anon_sym_AMP] = ACTIONS(1665), + }, + [426] = { + [sym__terminated_statement] = STATE(198), + [sym_for_statement] = STATE(863), + [sym_c_style_for_statement] = STATE(863), + [sym_while_statement] = STATE(863), + [sym_if_statement] = STATE(863), + [sym_case_statement] = STATE(863), + [sym_function_definition] = STATE(863), + [sym_subshell] = STATE(863), + [sym_pipeline] = STATE(863), + [sym_list] = STATE(863), + [sym_negated_command] = STATE(863), + [sym_test_command] = STATE(863), + [sym_declaration_command] = STATE(863), + [sym_unset_command] = STATE(863), + [sym_command] = STATE(863), + [sym_command_name] = STATE(92), + [sym_variable_assignment] = STATE(864), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(96), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), + [aux_sym__statements_repeat1] = STATE(198), + [aux_sym_command_repeat1] = STATE(96), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(137), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(149), + [anon_sym_declare] = ACTIONS(151), + [anon_sym_typeset] = ACTIONS(151), + [anon_sym_export] = ACTIONS(151), + [anon_sym_readonly] = ACTIONS(151), + [anon_sym_local] = ACTIONS(151), + [anon_sym_unset] = ACTIONS(153), + [anon_sym_unsetenv] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(159), + }, + [427] = { + [anon_sym_SEMI] = ACTIONS(1671), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_SEMI_SEMI] = ACTIONS(1673), + [anon_sym_PIPE_AMP] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_BQUOTE] = ACTIONS(1667), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1673), + [anon_sym_AMP] = ACTIONS(1671), + }, + [428] = { + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(1671), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_SEMI_SEMI] = ACTIONS(1673), + [anon_sym_PIPE_AMP] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(1667), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(1673), + [anon_sym_AMP] = ACTIONS(1671), + }, + [429] = { + [sym__terminated_statement] = STATE(198), + [sym_for_statement] = STATE(866), + [sym_c_style_for_statement] = STATE(866), + [sym_while_statement] = STATE(866), + [sym_if_statement] = STATE(866), + [sym_case_statement] = STATE(866), + [sym_function_definition] = STATE(866), + [sym_subshell] = STATE(866), + [sym_pipeline] = STATE(866), + [sym_list] = STATE(866), + [sym_negated_command] = STATE(866), + [sym_test_command] = STATE(866), + [sym_declaration_command] = STATE(866), + [sym_unset_command] = STATE(866), + [sym_command] = STATE(866), + [sym_command_name] = STATE(173), + [sym_variable_assignment] = STATE(867), + [sym_subscript] = STATE(66), + [sym_file_redirect] = STATE(176), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(60), + [sym_simple_expansion] = STATE(60), + [sym_string_expansion] = STATE(60), + [sym_expansion] = STATE(60), + [sym_command_substitution] = STATE(60), + [sym_process_substitution] = STATE(60), + [aux_sym__statements_repeat1] = STATE(198), + [aux_sym_command_repeat1] = STATE(176), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(95), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(305), + [anon_sym_while] = ACTIONS(307), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(311), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(315), + [anon_sym_declare] = ACTIONS(317), + [anon_sym_typeset] = ACTIONS(317), + [anon_sym_export] = ACTIONS(317), + [anon_sym_readonly] = ACTIONS(317), + [anon_sym_local] = ACTIONS(317), + [anon_sym_unset] = ACTIONS(319), + [anon_sym_unsetenv] = ACTIONS(319), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(115), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(321), + }, + [430] = { + [anon_sym_SEMI] = ACTIONS(1675), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(1677), + [anon_sym_SEMI_SEMI] = ACTIONS(1679), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1679), + [anon_sym_AMP] = ACTIONS(1675), + }, + [431] = { + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(1675), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(1677), + [anon_sym_SEMI_SEMI] = ACTIONS(1679), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(1679), + [anon_sym_AMP] = ACTIONS(1675), + }, + [432] = { + [sym__terminated_statement] = STATE(198), + [sym_for_statement] = STATE(870), + [sym_c_style_for_statement] = STATE(870), + [sym_while_statement] = STATE(870), + [sym_if_statement] = STATE(870), + [sym_case_statement] = STATE(870), + [sym_function_definition] = STATE(870), + [sym_subshell] = STATE(870), + [sym_pipeline] = STATE(870), + [sym_list] = STATE(870), + [sym_negated_command] = STATE(870), + [sym_test_command] = STATE(870), + [sym_declaration_command] = STATE(870), + [sym_unset_command] = STATE(870), + [sym_command] = STATE(870), + [sym_command_name] = STATE(92), + [sym_variable_assignment] = STATE(871), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(96), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), + [aux_sym__statements_repeat1] = STATE(198), + [aux_sym_command_repeat1] = STATE(96), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(137), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(149), + [anon_sym_declare] = ACTIONS(151), + [anon_sym_typeset] = ACTIONS(151), + [anon_sym_export] = ACTIONS(151), + [anon_sym_readonly] = ACTIONS(151), + [anon_sym_local] = ACTIONS(151), + [anon_sym_unset] = ACTIONS(153), + [anon_sym_unsetenv] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(159), + }, + [433] = { + [sym_concatenation] = STATE(433), + [sym_string] = STATE(129), + [sym_simple_expansion] = STATE(129), + [sym_string_expansion] = STATE(129), + [sym_expansion] = STATE(129), + [sym_command_substitution] = STATE(129), + [sym_process_substitution] = STATE(129), + [aux_sym_unset_command_repeat1] = STATE(433), + [ts_builtin_sym_end] = ACTIONS(1681), + [anon_sym_SEMI] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1683), + [anon_sym_SEMI_SEMI] = ACTIONS(1681), + [anon_sym_PIPE_AMP] = ACTIONS(1681), + [anon_sym_AMP_AMP] = ACTIONS(1681), + [anon_sym_PIPE_PIPE] = ACTIONS(1681), + [sym__special_characters] = ACTIONS(1685), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_DOLLAR] = ACTIONS(1691), + [sym_raw_string] = ACTIONS(1694), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1697), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1700), + [anon_sym_BQUOTE] = ACTIONS(1703), + [anon_sym_LT_LPAREN] = ACTIONS(1706), + [anon_sym_GT_LPAREN] = ACTIONS(1706), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1709), + [sym_word] = ACTIONS(1712), + [anon_sym_LF] = ACTIONS(1681), + [anon_sym_AMP] = ACTIONS(1683), + }, + [434] = { + [sym_string] = STATE(872), + [sym_simple_expansion] = STATE(872), + [sym_string_expansion] = STATE(872), + [sym_expansion] = STATE(872), + [sym_command_substitution] = STATE(872), + [sym_process_substitution] = STATE(872), + [sym__special_characters] = ACTIONS(1715), + [anon_sym_DQUOTE] = ACTIONS(249), + [anon_sym_DOLLAR] = ACTIONS(251), + [sym_raw_string] = ACTIONS(1715), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(255), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(257), + [anon_sym_BQUOTE] = ACTIONS(259), + [anon_sym_LT_LPAREN] = ACTIONS(261), + [anon_sym_GT_LPAREN] = ACTIONS(261), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1715), + }, + [435] = { + [aux_sym_concatenation_repeat1] = STATE(873), [sym_file_descriptor] = ACTIONS(807), - [sym__concat] = ACTIONS(807), + [sym__concat] = ACTIONS(775), [sym_variable_name] = ACTIONS(807), [anon_sym_LT] = ACTIONS(809), [anon_sym_GT] = ACTIONS(809), @@ -20417,10 +21081,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(807), [anon_sym_LT_LPAREN] = ACTIONS(807), [anon_sym_GT_LPAREN] = ACTIONS(807), - [sym_comment] = ACTIONS(53), + [sym_comment] = ACTIONS(55), [sym_word] = ACTIONS(807), }, - [418] = { + [436] = { [sym_file_descriptor] = ACTIONS(811), [sym__concat] = ACTIONS(811), [sym_variable_name] = ACTIONS(811), @@ -20440,3121 +21104,1952 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(811), [anon_sym_LT_LPAREN] = ACTIONS(811), [anon_sym_GT_LPAREN] = ACTIONS(811), - [sym_comment] = ACTIONS(53), + [sym_comment] = ACTIONS(55), [sym_word] = ACTIONS(811), }, - [419] = { - [anon_sym_LBRACK] = ACTIONS(815), - [anon_sym_EQ] = ACTIONS(1682), - [sym_comment] = ACTIONS(53), - }, - [420] = { - [sym_subscript] = STATE(831), - [sym_variable_name] = ACTIONS(1684), - [anon_sym_DOLLAR] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(1690), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_QMARK] = ACTIONS(1690), - [anon_sym_0] = ACTIONS(1688), - [anon_sym__] = ACTIONS(1688), - }, - [421] = { - [sym_concatenation] = STATE(834), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(834), - [anon_sym_RBRACE] = ACTIONS(1692), - [anon_sym_EQ] = ACTIONS(1694), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1696), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(1698), - [anon_sym_COLON] = ACTIONS(1694), - [anon_sym_COLON_QMARK] = ACTIONS(1694), - [anon_sym_COLON_DASH] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [422] = { - [sym_concatenation] = STATE(837), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(837), - [anon_sym_RBRACE] = ACTIONS(1700), - [anon_sym_EQ] = ACTIONS(1702), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1704), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(1706), - [anon_sym_COLON] = ACTIONS(1702), - [anon_sym_COLON_QMARK] = ACTIONS(1702), - [anon_sym_COLON_DASH] = ACTIONS(1702), - [anon_sym_PERCENT] = ACTIONS(1702), - [anon_sym_DASH] = ACTIONS(1702), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [423] = { - [anon_sym_SEMI] = ACTIONS(1708), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(1710), - [anon_sym_SEMI_SEMI] = ACTIONS(1712), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1712), - [anon_sym_AMP] = ACTIONS(1708), - }, - [424] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(1708), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(1710), - [anon_sym_SEMI_SEMI] = ACTIONS(1712), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(1712), - [anon_sym_AMP] = ACTIONS(1708), - }, - [425] = { - [sym__terminated_statement] = STATE(190), - [sym_for_statement] = STATE(840), - [sym_c_style_for_statement] = STATE(840), - [sym_while_statement] = STATE(840), - [sym_if_statement] = STATE(840), - [sym_case_statement] = STATE(840), - [sym_function_definition] = STATE(840), - [sym_subshell] = STATE(840), - [sym_pipeline] = STATE(840), - [sym_list] = STATE(840), - [sym_negated_command] = STATE(840), - [sym_test_command] = STATE(840), - [sym_declaration_command] = STATE(840), - [sym_unset_command] = STATE(840), - [sym_command] = STATE(840), - [sym_command_name] = STATE(78), - [sym_variable_assignment] = STATE(841), - [sym_subscript] = STATE(80), - [sym_file_redirect] = STATE(82), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(75), - [sym_simple_expansion] = STATE(75), - [sym_string_expansion] = STATE(75), - [sym_expansion] = STATE(75), - [sym_command_substitution] = STATE(75), - [sym_process_substitution] = STATE(75), - [aux_sym__statements_repeat1] = STATE(190), - [aux_sym_command_repeat1] = STATE(82), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(111), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(119), - [anon_sym_declare] = ACTIONS(121), - [anon_sym_typeset] = ACTIONS(121), - [anon_sym_export] = ACTIONS(121), - [anon_sym_readonly] = ACTIONS(121), - [anon_sym_local] = ACTIONS(121), - [anon_sym_unset] = ACTIONS(123), - [anon_sym_unsetenv] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), - }, - [426] = { - [anon_sym_SEMI] = ACTIONS(1714), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_SEMI_SEMI] = ACTIONS(1716), - [anon_sym_PIPE_AMP] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(883), - [anon_sym_PIPE_PIPE] = ACTIONS(883), - [anon_sym_BQUOTE] = ACTIONS(1710), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1716), - [anon_sym_AMP] = ACTIONS(1714), - }, - [427] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(1714), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_SEMI_SEMI] = ACTIONS(1716), - [anon_sym_PIPE_AMP] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(883), - [anon_sym_PIPE_PIPE] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(1710), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(1716), - [anon_sym_AMP] = ACTIONS(1714), - }, - [428] = { - [sym__terminated_statement] = STATE(190), - [sym_for_statement] = STATE(843), - [sym_c_style_for_statement] = STATE(843), - [sym_while_statement] = STATE(843), - [sym_if_statement] = STATE(843), - [sym_case_statement] = STATE(843), - [sym_function_definition] = STATE(843), - [sym_subshell] = STATE(843), - [sym_pipeline] = STATE(843), - [sym_list] = STATE(843), - [sym_negated_command] = STATE(843), - [sym_test_command] = STATE(843), - [sym_declaration_command] = STATE(843), - [sym_unset_command] = STATE(843), - [sym_command] = STATE(843), - [sym_command_name] = STATE(165), - [sym_variable_assignment] = STATE(844), - [sym_subscript] = STATE(53), - [sym_file_redirect] = STATE(168), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(47), - [sym_simple_expansion] = STATE(47), - [sym_string_expansion] = STATE(47), - [sym_expansion] = STATE(47), - [sym_command_substitution] = STATE(47), - [sym_process_substitution] = STATE(47), - [aux_sym__statements_repeat1] = STATE(190), - [aux_sym_command_repeat1] = STATE(168), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(69), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(289), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(291), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(293), - [anon_sym_LBRACK] = ACTIONS(295), - [anon_sym_LBRACK_LBRACK] = ACTIONS(297), - [anon_sym_declare] = ACTIONS(299), - [anon_sym_typeset] = ACTIONS(299), - [anon_sym_export] = ACTIONS(299), - [anon_sym_readonly] = ACTIONS(299), - [anon_sym_local] = ACTIONS(299), - [anon_sym_unset] = ACTIONS(301), - [anon_sym_unsetenv] = ACTIONS(301), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(87), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(303), - }, - [429] = { - [anon_sym_SEMI] = ACTIONS(1718), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(1720), - [anon_sym_SEMI_SEMI] = ACTIONS(1722), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1722), - [anon_sym_AMP] = ACTIONS(1718), - }, - [430] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(1718), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(1720), - [anon_sym_SEMI_SEMI] = ACTIONS(1722), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(1722), - [anon_sym_AMP] = ACTIONS(1718), - }, - [431] = { - [sym__terminated_statement] = STATE(190), - [sym_for_statement] = STATE(847), - [sym_c_style_for_statement] = STATE(847), - [sym_while_statement] = STATE(847), - [sym_if_statement] = STATE(847), - [sym_case_statement] = STATE(847), - [sym_function_definition] = STATE(847), - [sym_subshell] = STATE(847), - [sym_pipeline] = STATE(847), - [sym_list] = STATE(847), - [sym_negated_command] = STATE(847), - [sym_test_command] = STATE(847), - [sym_declaration_command] = STATE(847), - [sym_unset_command] = STATE(847), - [sym_command] = STATE(847), - [sym_command_name] = STATE(78), - [sym_variable_assignment] = STATE(848), - [sym_subscript] = STATE(80), - [sym_file_redirect] = STATE(82), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(75), - [sym_simple_expansion] = STATE(75), - [sym_string_expansion] = STATE(75), - [sym_expansion] = STATE(75), - [sym_command_substitution] = STATE(75), - [sym_process_substitution] = STATE(75), - [aux_sym__statements_repeat1] = STATE(190), - [aux_sym_command_repeat1] = STATE(82), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(111), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(119), - [anon_sym_declare] = ACTIONS(121), - [anon_sym_typeset] = ACTIONS(121), - [anon_sym_export] = ACTIONS(121), - [anon_sym_readonly] = ACTIONS(121), - [anon_sym_local] = ACTIONS(121), - [anon_sym_unset] = ACTIONS(123), - [anon_sym_unsetenv] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), - }, - [432] = { - [sym__simple_heredoc_body] = ACTIONS(1724), - [sym__heredoc_body_beginning] = ACTIONS(1724), - [sym_file_descriptor] = ACTIONS(1724), - [sym__concat] = ACTIONS(1724), - [ts_builtin_sym_end] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(1726), - [anon_sym_RPAREN] = ACTIONS(1724), - [anon_sym_SEMI_SEMI] = ACTIONS(1724), - [anon_sym_PIPE_AMP] = ACTIONS(1724), - [anon_sym_AMP_AMP] = ACTIONS(1724), - [anon_sym_PIPE_PIPE] = ACTIONS(1724), - [anon_sym_EQ_TILDE] = ACTIONS(1726), - [anon_sym_EQ_EQ] = ACTIONS(1726), - [anon_sym_LT] = ACTIONS(1726), - [anon_sym_GT] = ACTIONS(1726), - [anon_sym_GT_GT] = ACTIONS(1724), - [anon_sym_AMP_GT] = ACTIONS(1726), - [anon_sym_AMP_GT_GT] = ACTIONS(1724), - [anon_sym_LT_AMP] = ACTIONS(1724), - [anon_sym_GT_AMP] = ACTIONS(1724), - [anon_sym_LT_LT] = ACTIONS(1726), - [anon_sym_LT_LT_DASH] = ACTIONS(1724), - [anon_sym_LT_LT_LT] = ACTIONS(1724), - [sym__special_characters] = ACTIONS(1724), - [anon_sym_DQUOTE] = ACTIONS(1724), - [anon_sym_DOLLAR] = ACTIONS(1726), - [sym_raw_string] = ACTIONS(1724), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1724), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1724), - [anon_sym_BQUOTE] = ACTIONS(1724), - [anon_sym_LT_LPAREN] = ACTIONS(1724), - [anon_sym_GT_LPAREN] = ACTIONS(1724), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1726), - [anon_sym_LF] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1726), - }, - [433] = { - [aux_sym_concatenation_repeat1] = STATE(433), - [sym__simple_heredoc_body] = ACTIONS(1724), - [sym__heredoc_body_beginning] = ACTIONS(1724), - [sym_file_descriptor] = ACTIONS(1724), - [sym__concat] = ACTIONS(1728), - [ts_builtin_sym_end] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(1726), - [anon_sym_SEMI_SEMI] = ACTIONS(1724), - [anon_sym_PIPE_AMP] = ACTIONS(1724), - [anon_sym_AMP_AMP] = ACTIONS(1724), - [anon_sym_PIPE_PIPE] = ACTIONS(1724), - [anon_sym_EQ_TILDE] = ACTIONS(1726), - [anon_sym_EQ_EQ] = ACTIONS(1726), - [anon_sym_LT] = ACTIONS(1726), - [anon_sym_GT] = ACTIONS(1726), - [anon_sym_GT_GT] = ACTIONS(1724), - [anon_sym_AMP_GT] = ACTIONS(1726), - [anon_sym_AMP_GT_GT] = ACTIONS(1724), - [anon_sym_LT_AMP] = ACTIONS(1724), - [anon_sym_GT_AMP] = ACTIONS(1724), - [anon_sym_LT_LT] = ACTIONS(1726), - [anon_sym_LT_LT_DASH] = ACTIONS(1724), - [anon_sym_LT_LT_LT] = ACTIONS(1724), - [sym__special_characters] = ACTIONS(1724), - [anon_sym_DQUOTE] = ACTIONS(1724), - [anon_sym_DOLLAR] = ACTIONS(1726), - [sym_raw_string] = ACTIONS(1724), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1724), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1724), - [anon_sym_BQUOTE] = ACTIONS(1724), - [anon_sym_LT_LPAREN] = ACTIONS(1724), - [anon_sym_GT_LPAREN] = ACTIONS(1724), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1726), - [anon_sym_LF] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1726), - }, - [434] = { - [sym__simple_heredoc_body] = ACTIONS(1731), - [sym__heredoc_body_beginning] = ACTIONS(1731), - [sym_file_descriptor] = ACTIONS(1731), - [sym__concat] = ACTIONS(1731), - [ts_builtin_sym_end] = ACTIONS(1731), - [anon_sym_SEMI] = ACTIONS(1733), - [anon_sym_PIPE] = ACTIONS(1733), - [anon_sym_RPAREN] = ACTIONS(1731), - [anon_sym_SEMI_SEMI] = ACTIONS(1731), - [anon_sym_PIPE_AMP] = ACTIONS(1731), - [anon_sym_AMP_AMP] = ACTIONS(1731), - [anon_sym_PIPE_PIPE] = ACTIONS(1731), - [anon_sym_EQ_TILDE] = ACTIONS(1733), - [anon_sym_EQ_EQ] = ACTIONS(1733), - [anon_sym_LT] = ACTIONS(1733), - [anon_sym_GT] = ACTIONS(1733), - [anon_sym_GT_GT] = ACTIONS(1731), - [anon_sym_AMP_GT] = ACTIONS(1733), - [anon_sym_AMP_GT_GT] = ACTIONS(1731), - [anon_sym_LT_AMP] = ACTIONS(1731), - [anon_sym_GT_AMP] = ACTIONS(1731), - [anon_sym_LT_LT] = ACTIONS(1733), - [anon_sym_LT_LT_DASH] = ACTIONS(1731), - [anon_sym_LT_LT_LT] = ACTIONS(1731), - [sym__special_characters] = ACTIONS(1731), - [anon_sym_DQUOTE] = ACTIONS(1731), - [anon_sym_DOLLAR] = ACTIONS(1733), - [sym_raw_string] = ACTIONS(1731), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1731), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1731), - [anon_sym_BQUOTE] = ACTIONS(1731), - [anon_sym_LT_LPAREN] = ACTIONS(1731), - [anon_sym_GT_LPAREN] = ACTIONS(1731), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1733), - [anon_sym_LF] = ACTIONS(1731), - [anon_sym_AMP] = ACTIONS(1733), - }, - [435] = { - [sym__concat] = ACTIONS(803), - [anon_sym_DQUOTE] = ACTIONS(805), - [anon_sym_DOLLAR] = ACTIONS(805), - [sym__string_content] = ACTIONS(803), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(805), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(805), - [anon_sym_BQUOTE] = ACTIONS(805), - [sym_comment] = ACTIONS(265), - }, - [436] = { - [sym__concat] = ACTIONS(1735), - [anon_sym_DQUOTE] = ACTIONS(1737), - [anon_sym_DOLLAR] = ACTIONS(1737), - [sym__string_content] = ACTIONS(1739), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1737), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1737), - [anon_sym_BQUOTE] = ACTIONS(1737), - [sym_comment] = ACTIONS(265), - }, [437] = { - [sym__concat] = ACTIONS(811), - [anon_sym_DQUOTE] = ACTIONS(813), - [anon_sym_DOLLAR] = ACTIONS(813), - [sym__string_content] = ACTIONS(811), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(813), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(813), - [anon_sym_BQUOTE] = ACTIONS(813), - [sym_comment] = ACTIONS(265), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_DQUOTE] = ACTIONS(1717), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym__string_content] = ACTIONS(821), + [anon_sym_POUND] = ACTIONS(815), + [sym_comment] = ACTIONS(281), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(823), + [anon_sym_STAR] = ACTIONS(825), + [anon_sym_AT] = ACTIONS(825), + [anon_sym_QMARK] = ACTIONS(825), + [anon_sym_0] = ACTIONS(823), + [anon_sym__] = ACTIONS(823), }, [438] = { - [anon_sym_DQUOTE] = ACTIONS(1737), - [anon_sym_DOLLAR] = ACTIONS(1737), - [sym__string_content] = ACTIONS(1739), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1737), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1737), - [anon_sym_BQUOTE] = ACTIONS(1737), - [sym_comment] = ACTIONS(265), + [sym_simple_expansion] = STATE(148), + [sym_expansion] = STATE(148), + [sym_command_substitution] = STATE(148), + [aux_sym_string_repeat1] = STATE(473), + [anon_sym_DQUOTE] = ACTIONS(1717), + [anon_sym_DOLLAR] = ACTIONS(1719), + [sym__string_content] = ACTIONS(273), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(277), + [anon_sym_BQUOTE] = ACTIONS(279), + [sym_comment] = ACTIONS(281), }, [439] = { - [anon_sym_LBRACK] = ACTIONS(815), - [anon_sym_EQ] = ACTIONS(1741), - [sym_comment] = ACTIONS(53), + [sym_file_descriptor] = ACTIONS(845), + [sym__concat] = ACTIONS(845), + [sym_variable_name] = ACTIONS(845), + [anon_sym_LT] = ACTIONS(847), + [anon_sym_GT] = ACTIONS(847), + [anon_sym_GT_GT] = ACTIONS(845), + [anon_sym_AMP_GT] = ACTIONS(847), + [anon_sym_AMP_GT_GT] = ACTIONS(845), + [anon_sym_LT_AMP] = ACTIONS(845), + [anon_sym_GT_AMP] = ACTIONS(845), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(845), + [anon_sym_DOLLAR] = ACTIONS(847), + [sym_raw_string] = ACTIONS(845), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(845), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), + [anon_sym_BQUOTE] = ACTIONS(845), + [anon_sym_LT_LPAREN] = ACTIONS(845), + [anon_sym_GT_LPAREN] = ACTIONS(845), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(845), }, [440] = { - [sym_subscript] = STATE(853), - [sym_variable_name] = ACTIONS(1743), - [anon_sym_DOLLAR] = ACTIONS(1745), - [anon_sym_DASH] = ACTIONS(1745), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1747), - [anon_sym_STAR] = ACTIONS(1749), - [anon_sym_AT] = ACTIONS(1749), - [anon_sym_QMARK] = ACTIONS(1749), - [anon_sym_0] = ACTIONS(1747), - [anon_sym__] = ACTIONS(1747), + [sym_file_descriptor] = ACTIONS(849), + [sym__concat] = ACTIONS(849), + [sym_variable_name] = ACTIONS(849), + [anon_sym_LT] = ACTIONS(851), + [anon_sym_GT] = ACTIONS(851), + [anon_sym_GT_GT] = ACTIONS(849), + [anon_sym_AMP_GT] = ACTIONS(851), + [anon_sym_AMP_GT_GT] = ACTIONS(849), + [anon_sym_LT_AMP] = ACTIONS(849), + [anon_sym_GT_AMP] = ACTIONS(849), + [sym__special_characters] = ACTIONS(849), + [anon_sym_DQUOTE] = ACTIONS(849), + [anon_sym_DOLLAR] = ACTIONS(851), + [sym_raw_string] = ACTIONS(849), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(849), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(849), + [anon_sym_BQUOTE] = ACTIONS(849), + [anon_sym_LT_LPAREN] = ACTIONS(849), + [anon_sym_GT_LPAREN] = ACTIONS(849), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(849), }, [441] = { - [sym_concatenation] = STATE(856), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(856), - [anon_sym_RBRACE] = ACTIONS(1751), - [anon_sym_EQ] = ACTIONS(1753), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1755), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(1757), - [anon_sym_COLON] = ACTIONS(1753), - [anon_sym_COLON_QMARK] = ACTIONS(1753), - [anon_sym_COLON_DASH] = ACTIONS(1753), - [anon_sym_PERCENT] = ACTIONS(1753), - [anon_sym_DASH] = ACTIONS(1753), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_file_descriptor] = ACTIONS(853), + [sym__concat] = ACTIONS(853), + [sym_variable_name] = ACTIONS(853), + [anon_sym_LT] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_GT_GT] = ACTIONS(853), + [anon_sym_AMP_GT] = ACTIONS(855), + [anon_sym_AMP_GT_GT] = ACTIONS(853), + [anon_sym_LT_AMP] = ACTIONS(853), + [anon_sym_GT_AMP] = ACTIONS(853), + [sym__special_characters] = ACTIONS(853), + [anon_sym_DQUOTE] = ACTIONS(853), + [anon_sym_DOLLAR] = ACTIONS(855), + [sym_raw_string] = ACTIONS(853), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(853), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(853), + [anon_sym_BQUOTE] = ACTIONS(853), + [anon_sym_LT_LPAREN] = ACTIONS(853), + [anon_sym_GT_LPAREN] = ACTIONS(853), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(853), }, [442] = { - [sym_concatenation] = STATE(859), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(859), - [anon_sym_RBRACE] = ACTIONS(1759), - [anon_sym_EQ] = ACTIONS(1761), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1763), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(1765), - [anon_sym_COLON] = ACTIONS(1761), - [anon_sym_COLON_QMARK] = ACTIONS(1761), - [anon_sym_COLON_DASH] = ACTIONS(1761), - [anon_sym_PERCENT] = ACTIONS(1761), - [anon_sym_DASH] = ACTIONS(1761), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [anon_sym_LBRACK] = ACTIONS(857), + [anon_sym_EQ] = ACTIONS(1721), + [sym_comment] = ACTIONS(55), }, [443] = { - [anon_sym_SEMI] = ACTIONS(1767), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(1769), - [anon_sym_SEMI_SEMI] = ACTIONS(1771), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1771), - [anon_sym_AMP] = ACTIONS(1767), + [sym_subscript] = STATE(879), + [sym_variable_name] = ACTIONS(1723), + [anon_sym_DASH] = ACTIONS(1725), + [anon_sym_DOLLAR] = ACTIONS(1725), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1727), + [anon_sym_STAR] = ACTIONS(1729), + [anon_sym_AT] = ACTIONS(1729), + [anon_sym_QMARK] = ACTIONS(1729), + [anon_sym_0] = ACTIONS(1727), + [anon_sym__] = ACTIONS(1727), }, [444] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(1767), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(1769), - [anon_sym_SEMI_SEMI] = ACTIONS(1771), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(1771), - [anon_sym_AMP] = ACTIONS(1767), + [sym_concatenation] = STATE(882), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(882), + [anon_sym_RBRACE] = ACTIONS(1731), + [anon_sym_EQ] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1733), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1735), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(1737), + [anon_sym_COLON] = ACTIONS(1733), + [anon_sym_COLON_QMARK] = ACTIONS(1733), + [anon_sym_COLON_DASH] = ACTIONS(1733), + [anon_sym_PERCENT] = ACTIONS(1733), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [445] = { - [sym__terminated_statement] = STATE(190), - [sym_for_statement] = STATE(862), - [sym_c_style_for_statement] = STATE(862), - [sym_while_statement] = STATE(862), - [sym_if_statement] = STATE(862), - [sym_case_statement] = STATE(862), - [sym_function_definition] = STATE(862), - [sym_subshell] = STATE(862), - [sym_pipeline] = STATE(862), - [sym_list] = STATE(862), - [sym_negated_command] = STATE(862), - [sym_test_command] = STATE(862), - [sym_declaration_command] = STATE(862), - [sym_unset_command] = STATE(862), - [sym_command] = STATE(862), - [sym_command_name] = STATE(78), - [sym_variable_assignment] = STATE(863), - [sym_subscript] = STATE(80), - [sym_file_redirect] = STATE(82), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(75), - [sym_simple_expansion] = STATE(75), - [sym_string_expansion] = STATE(75), - [sym_expansion] = STATE(75), - [sym_command_substitution] = STATE(75), - [sym_process_substitution] = STATE(75), - [aux_sym__statements_repeat1] = STATE(190), - [aux_sym_command_repeat1] = STATE(82), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(111), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(119), - [anon_sym_declare] = ACTIONS(121), - [anon_sym_typeset] = ACTIONS(121), - [anon_sym_export] = ACTIONS(121), - [anon_sym_readonly] = ACTIONS(121), - [anon_sym_local] = ACTIONS(121), - [anon_sym_unset] = ACTIONS(123), - [anon_sym_unsetenv] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(1739), + [anon_sym_EQ] = ACTIONS(1741), + [anon_sym_DASH] = ACTIONS(1741), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1743), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(1745), + [anon_sym_COLON] = ACTIONS(1741), + [anon_sym_COLON_QMARK] = ACTIONS(1741), + [anon_sym_COLON_DASH] = ACTIONS(1741), + [anon_sym_PERCENT] = ACTIONS(1741), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [446] = { - [anon_sym_SEMI] = ACTIONS(1773), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_SEMI_SEMI] = ACTIONS(1775), - [anon_sym_PIPE_AMP] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(883), - [anon_sym_PIPE_PIPE] = ACTIONS(883), - [anon_sym_BQUOTE] = ACTIONS(1769), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1775), - [anon_sym_AMP] = ACTIONS(1773), + [anon_sym_SEMI] = ACTIONS(1747), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(1749), + [anon_sym_SEMI_SEMI] = ACTIONS(1751), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1751), + [anon_sym_AMP] = ACTIONS(1747), }, [447] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(1773), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_SEMI_SEMI] = ACTIONS(1775), - [anon_sym_PIPE_AMP] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(883), - [anon_sym_PIPE_PIPE] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(1769), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(1775), - [anon_sym_AMP] = ACTIONS(1773), + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(1747), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(1749), + [anon_sym_SEMI_SEMI] = ACTIONS(1751), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(1751), + [anon_sym_AMP] = ACTIONS(1747), }, [448] = { - [sym__terminated_statement] = STATE(190), - [sym_for_statement] = STATE(865), - [sym_c_style_for_statement] = STATE(865), - [sym_while_statement] = STATE(865), - [sym_if_statement] = STATE(865), - [sym_case_statement] = STATE(865), - [sym_function_definition] = STATE(865), - [sym_subshell] = STATE(865), - [sym_pipeline] = STATE(865), - [sym_list] = STATE(865), - [sym_negated_command] = STATE(865), - [sym_test_command] = STATE(865), - [sym_declaration_command] = STATE(865), - [sym_unset_command] = STATE(865), - [sym_command] = STATE(865), - [sym_command_name] = STATE(165), - [sym_variable_assignment] = STATE(866), - [sym_subscript] = STATE(53), - [sym_file_redirect] = STATE(168), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(47), - [sym_simple_expansion] = STATE(47), - [sym_string_expansion] = STATE(47), - [sym_expansion] = STATE(47), - [sym_command_substitution] = STATE(47), - [sym_process_substitution] = STATE(47), - [aux_sym__statements_repeat1] = STATE(190), - [aux_sym_command_repeat1] = STATE(168), + [sym__terminated_statement] = STATE(198), + [sym_for_statement] = STATE(888), + [sym_c_style_for_statement] = STATE(888), + [sym_while_statement] = STATE(888), + [sym_if_statement] = STATE(888), + [sym_case_statement] = STATE(888), + [sym_function_definition] = STATE(888), + [sym_subshell] = STATE(888), + [sym_pipeline] = STATE(888), + [sym_list] = STATE(888), + [sym_negated_command] = STATE(888), + [sym_test_command] = STATE(888), + [sym_declaration_command] = STATE(888), + [sym_unset_command] = STATE(888), + [sym_command] = STATE(888), + [sym_command_name] = STATE(92), + [sym_variable_assignment] = STATE(889), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(96), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), + [aux_sym__statements_repeat1] = STATE(198), + [aux_sym_command_repeat1] = STATE(96), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(69), + [sym_variable_name] = ACTIONS(137), [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(289), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(291), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(293), - [anon_sym_LBRACK] = ACTIONS(295), - [anon_sym_LBRACK_LBRACK] = ACTIONS(297), - [anon_sym_declare] = ACTIONS(299), - [anon_sym_typeset] = ACTIONS(299), - [anon_sym_export] = ACTIONS(299), - [anon_sym_readonly] = ACTIONS(299), - [anon_sym_local] = ACTIONS(299), - [anon_sym_unset] = ACTIONS(301), - [anon_sym_unsetenv] = ACTIONS(301), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(87), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(303), + [anon_sym_LPAREN_LPAREN] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(149), + [anon_sym_declare] = ACTIONS(151), + [anon_sym_typeset] = ACTIONS(151), + [anon_sym_export] = ACTIONS(151), + [anon_sym_readonly] = ACTIONS(151), + [anon_sym_local] = ACTIONS(151), + [anon_sym_unset] = ACTIONS(153), + [anon_sym_unsetenv] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(159), }, [449] = { - [anon_sym_DQUOTE] = ACTIONS(1777), - [anon_sym_DOLLAR] = ACTIONS(775), - [sym__string_content] = ACTIONS(777), - [anon_sym_POUND] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(781), - [anon_sym_STAR] = ACTIONS(783), - [anon_sym_AT] = ACTIONS(783), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_0] = ACTIONS(781), - [anon_sym__] = ACTIONS(781), + [anon_sym_SEMI] = ACTIONS(1753), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_SEMI_SEMI] = ACTIONS(1755), + [anon_sym_PIPE_AMP] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_BQUOTE] = ACTIONS(1749), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1755), + [anon_sym_AMP] = ACTIONS(1753), }, [450] = { - [sym_simple_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [sym_command_substitution] = STATE(141), - [aux_sym_string_repeat1] = STATE(450), - [anon_sym_DQUOTE] = ACTIONS(1737), - [anon_sym_DOLLAR] = ACTIONS(1779), - [sym__string_content] = ACTIONS(1782), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1785), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1791), - [sym_comment] = ACTIONS(265), + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(1753), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_SEMI_SEMI] = ACTIONS(1755), + [anon_sym_PIPE_AMP] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(1749), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(1755), + [anon_sym_AMP] = ACTIONS(1753), }, [451] = { - [sym_concatenation] = STATE(871), - [sym_string] = STATE(870), - [sym_simple_expansion] = STATE(870), - [sym_string_expansion] = STATE(870), - [sym_expansion] = STATE(870), - [sym_command_substitution] = STATE(870), - [sym_process_substitution] = STATE(870), - [sym__special_characters] = ACTIONS(1794), - [anon_sym_DQUOTE] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(141), - [sym_raw_string] = ACTIONS(1796), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(145), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(147), - [anon_sym_BQUOTE] = ACTIONS(149), - [anon_sym_LT_LPAREN] = ACTIONS(151), - [anon_sym_GT_LPAREN] = ACTIONS(151), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1796), + [sym__terminated_statement] = STATE(198), + [sym_for_statement] = STATE(891), + [sym_c_style_for_statement] = STATE(891), + [sym_while_statement] = STATE(891), + [sym_if_statement] = STATE(891), + [sym_case_statement] = STATE(891), + [sym_function_definition] = STATE(891), + [sym_subshell] = STATE(891), + [sym_pipeline] = STATE(891), + [sym_list] = STATE(891), + [sym_negated_command] = STATE(891), + [sym_test_command] = STATE(891), + [sym_declaration_command] = STATE(891), + [sym_unset_command] = STATE(891), + [sym_command] = STATE(891), + [sym_command_name] = STATE(173), + [sym_variable_assignment] = STATE(892), + [sym_subscript] = STATE(66), + [sym_file_redirect] = STATE(176), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(60), + [sym_simple_expansion] = STATE(60), + [sym_string_expansion] = STATE(60), + [sym_expansion] = STATE(60), + [sym_command_substitution] = STATE(60), + [sym_process_substitution] = STATE(60), + [aux_sym__statements_repeat1] = STATE(198), + [aux_sym_command_repeat1] = STATE(176), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(95), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(305), + [anon_sym_while] = ACTIONS(307), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(311), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(315), + [anon_sym_declare] = ACTIONS(317), + [anon_sym_typeset] = ACTIONS(317), + [anon_sym_export] = ACTIONS(317), + [anon_sym_readonly] = ACTIONS(317), + [anon_sym_local] = ACTIONS(317), + [anon_sym_unset] = ACTIONS(319), + [anon_sym_unsetenv] = ACTIONS(319), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(115), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(321), }, [452] = { - [sym_concatenation] = STATE(881), - [sym_string] = STATE(876), - [sym_simple_expansion] = STATE(876), - [sym_string_expansion] = STATE(876), - [sym_expansion] = STATE(876), - [sym_command_substitution] = STATE(876), - [sym_process_substitution] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(1798), - [sym__special_characters] = ACTIONS(1800), - [anon_sym_DQUOTE] = ACTIONS(1802), - [anon_sym_DOLLAR] = ACTIONS(1804), - [sym_raw_string] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1808), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1810), - [anon_sym_BQUOTE] = ACTIONS(1812), - [anon_sym_LT_LPAREN] = ACTIONS(1814), - [anon_sym_GT_LPAREN] = ACTIONS(1814), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1806), + [anon_sym_SEMI] = ACTIONS(1757), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(1759), + [anon_sym_SEMI_SEMI] = ACTIONS(1761), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1761), + [anon_sym_AMP] = ACTIONS(1757), }, [453] = { - [anon_sym_LBRACK] = ACTIONS(815), - [anon_sym_EQ] = ACTIONS(1816), - [sym_comment] = ACTIONS(53), + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(1757), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(1759), + [anon_sym_SEMI_SEMI] = ACTIONS(1761), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(1761), + [anon_sym_AMP] = ACTIONS(1757), }, [454] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_EQ] = ACTIONS(1820), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1822), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(1824), - [anon_sym_COLON] = ACTIONS(1820), - [anon_sym_COLON_QMARK] = ACTIONS(1820), - [anon_sym_COLON_DASH] = ACTIONS(1820), - [anon_sym_PERCENT] = ACTIONS(1820), - [anon_sym_DASH] = ACTIONS(1820), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym__terminated_statement] = STATE(198), + [sym_for_statement] = STATE(895), + [sym_c_style_for_statement] = STATE(895), + [sym_while_statement] = STATE(895), + [sym_if_statement] = STATE(895), + [sym_case_statement] = STATE(895), + [sym_function_definition] = STATE(895), + [sym_subshell] = STATE(895), + [sym_pipeline] = STATE(895), + [sym_list] = STATE(895), + [sym_negated_command] = STATE(895), + [sym_test_command] = STATE(895), + [sym_declaration_command] = STATE(895), + [sym_unset_command] = STATE(895), + [sym_command] = STATE(895), + [sym_command_name] = STATE(92), + [sym_variable_assignment] = STATE(896), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(96), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), + [aux_sym__statements_repeat1] = STATE(198), + [aux_sym_command_repeat1] = STATE(96), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(137), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(149), + [anon_sym_declare] = ACTIONS(151), + [anon_sym_typeset] = ACTIONS(151), + [anon_sym_export] = ACTIONS(151), + [anon_sym_readonly] = ACTIONS(151), + [anon_sym_local] = ACTIONS(151), + [anon_sym_unset] = ACTIONS(153), + [anon_sym_unsetenv] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(159), }, [455] = { - [sym_concatenation] = STATE(887), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(887), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_EQ] = ACTIONS(1826), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1828), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(1830), - [anon_sym_COLON] = ACTIONS(1826), - [anon_sym_COLON_QMARK] = ACTIONS(1826), - [anon_sym_COLON_DASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym__simple_heredoc_body] = ACTIONS(1763), + [sym__heredoc_body_beginning] = ACTIONS(1763), + [sym_file_descriptor] = ACTIONS(1763), + [sym__concat] = ACTIONS(1763), + [ts_builtin_sym_end] = ACTIONS(1763), + [anon_sym_SEMI] = ACTIONS(1765), + [anon_sym_PIPE] = ACTIONS(1765), + [anon_sym_RPAREN] = ACTIONS(1763), + [anon_sym_SEMI_SEMI] = ACTIONS(1763), + [anon_sym_PIPE_AMP] = ACTIONS(1763), + [anon_sym_AMP_AMP] = ACTIONS(1763), + [anon_sym_PIPE_PIPE] = ACTIONS(1763), + [anon_sym_EQ_TILDE] = ACTIONS(1765), + [anon_sym_EQ_EQ] = ACTIONS(1765), + [anon_sym_LT] = ACTIONS(1765), + [anon_sym_GT] = ACTIONS(1765), + [anon_sym_GT_GT] = ACTIONS(1763), + [anon_sym_AMP_GT] = ACTIONS(1765), + [anon_sym_AMP_GT_GT] = ACTIONS(1763), + [anon_sym_LT_AMP] = ACTIONS(1763), + [anon_sym_GT_AMP] = ACTIONS(1763), + [anon_sym_LT_LT] = ACTIONS(1765), + [anon_sym_LT_LT_DASH] = ACTIONS(1763), + [anon_sym_LT_LT_LT] = ACTIONS(1763), + [sym__special_characters] = ACTIONS(1763), + [anon_sym_DQUOTE] = ACTIONS(1763), + [anon_sym_DOLLAR] = ACTIONS(1765), + [sym_raw_string] = ACTIONS(1763), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1763), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1763), + [anon_sym_BQUOTE] = ACTIONS(1763), + [anon_sym_LT_LPAREN] = ACTIONS(1763), + [anon_sym_GT_LPAREN] = ACTIONS(1763), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1765), + [anon_sym_LF] = ACTIONS(1763), + [anon_sym_AMP] = ACTIONS(1765), }, [456] = { - [sym__simple_heredoc_body] = ACTIONS(1832), - [sym__heredoc_body_beginning] = ACTIONS(1832), - [sym_file_descriptor] = ACTIONS(1832), - [sym__concat] = ACTIONS(1832), - [ts_builtin_sym_end] = ACTIONS(1832), - [anon_sym_SEMI] = ACTIONS(1834), - [anon_sym_PIPE] = ACTIONS(1834), - [anon_sym_RPAREN] = ACTIONS(1832), - [anon_sym_SEMI_SEMI] = ACTIONS(1832), - [anon_sym_PIPE_AMP] = ACTIONS(1832), - [anon_sym_AMP_AMP] = ACTIONS(1832), - [anon_sym_PIPE_PIPE] = ACTIONS(1832), - [anon_sym_EQ_TILDE] = ACTIONS(1834), - [anon_sym_EQ_EQ] = ACTIONS(1834), - [anon_sym_LT] = ACTIONS(1834), - [anon_sym_GT] = ACTIONS(1834), - [anon_sym_GT_GT] = ACTIONS(1832), - [anon_sym_AMP_GT] = ACTIONS(1834), - [anon_sym_AMP_GT_GT] = ACTIONS(1832), - [anon_sym_LT_AMP] = ACTIONS(1832), - [anon_sym_GT_AMP] = ACTIONS(1832), - [anon_sym_LT_LT] = ACTIONS(1834), - [anon_sym_LT_LT_DASH] = ACTIONS(1832), - [anon_sym_LT_LT_LT] = ACTIONS(1832), - [sym__special_characters] = ACTIONS(1832), - [anon_sym_DQUOTE] = ACTIONS(1832), - [anon_sym_DOLLAR] = ACTIONS(1834), - [sym_raw_string] = ACTIONS(1832), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1832), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1832), - [anon_sym_BQUOTE] = ACTIONS(1832), - [anon_sym_LT_LPAREN] = ACTIONS(1832), - [anon_sym_GT_LPAREN] = ACTIONS(1832), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1834), - [anon_sym_LF] = ACTIONS(1832), - [anon_sym_AMP] = ACTIONS(1834), + [aux_sym_concatenation_repeat1] = STATE(456), + [sym__simple_heredoc_body] = ACTIONS(1763), + [sym__heredoc_body_beginning] = ACTIONS(1763), + [sym_file_descriptor] = ACTIONS(1763), + [sym__concat] = ACTIONS(1767), + [ts_builtin_sym_end] = ACTIONS(1763), + [anon_sym_SEMI] = ACTIONS(1765), + [anon_sym_PIPE] = ACTIONS(1765), + [anon_sym_SEMI_SEMI] = ACTIONS(1763), + [anon_sym_PIPE_AMP] = ACTIONS(1763), + [anon_sym_AMP_AMP] = ACTIONS(1763), + [anon_sym_PIPE_PIPE] = ACTIONS(1763), + [anon_sym_EQ_TILDE] = ACTIONS(1765), + [anon_sym_EQ_EQ] = ACTIONS(1765), + [anon_sym_LT] = ACTIONS(1765), + [anon_sym_GT] = ACTIONS(1765), + [anon_sym_GT_GT] = ACTIONS(1763), + [anon_sym_AMP_GT] = ACTIONS(1765), + [anon_sym_AMP_GT_GT] = ACTIONS(1763), + [anon_sym_LT_AMP] = ACTIONS(1763), + [anon_sym_GT_AMP] = ACTIONS(1763), + [anon_sym_LT_LT] = ACTIONS(1765), + [anon_sym_LT_LT_DASH] = ACTIONS(1763), + [anon_sym_LT_LT_LT] = ACTIONS(1763), + [sym__special_characters] = ACTIONS(1763), + [anon_sym_DQUOTE] = ACTIONS(1763), + [anon_sym_DOLLAR] = ACTIONS(1765), + [sym_raw_string] = ACTIONS(1763), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1763), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1763), + [anon_sym_BQUOTE] = ACTIONS(1763), + [anon_sym_LT_LPAREN] = ACTIONS(1763), + [anon_sym_GT_LPAREN] = ACTIONS(1763), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1765), + [anon_sym_LF] = ACTIONS(1763), + [anon_sym_AMP] = ACTIONS(1765), }, [457] = { - [aux_sym_concatenation_repeat1] = STATE(889), - [sym__concat] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(1838), - [anon_sym_EQ] = ACTIONS(1840), - [sym__special_characters] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1838), - [anon_sym_DOLLAR] = ACTIONS(1840), - [sym_raw_string] = ACTIONS(1838), - [anon_sym_POUND] = ACTIONS(1838), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1838), - [anon_sym_COLON] = ACTIONS(1840), - [anon_sym_COLON_QMARK] = ACTIONS(1840), - [anon_sym_COLON_DASH] = ACTIONS(1840), - [anon_sym_PERCENT] = ACTIONS(1840), - [anon_sym_DASH] = ACTIONS(1840), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1838), - [anon_sym_BQUOTE] = ACTIONS(1838), - [anon_sym_LT_LPAREN] = ACTIONS(1838), - [anon_sym_GT_LPAREN] = ACTIONS(1838), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(1840), + [sym__concat] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(847), + [sym__string_content] = ACTIONS(845), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(847), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(847), + [anon_sym_BQUOTE] = ACTIONS(847), + [sym_comment] = ACTIONS(281), }, [458] = { - [sym_simple_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [sym_command_substitution] = STATE(141), - [aux_sym_string_repeat1] = STATE(892), - [anon_sym_DQUOTE] = ACTIONS(1842), - [anon_sym_DOLLAR] = ACTIONS(1844), - [sym__string_content] = ACTIONS(257), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(261), - [anon_sym_BQUOTE] = ACTIONS(263), - [sym_comment] = ACTIONS(265), + [sym__simple_heredoc_body] = ACTIONS(1770), + [sym__heredoc_body_beginning] = ACTIONS(1770), + [sym_file_descriptor] = ACTIONS(1770), + [sym__concat] = ACTIONS(1770), + [ts_builtin_sym_end] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(1772), + [anon_sym_PIPE] = ACTIONS(1772), + [anon_sym_RPAREN] = ACTIONS(1770), + [anon_sym_SEMI_SEMI] = ACTIONS(1770), + [anon_sym_PIPE_AMP] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_EQ_TILDE] = ACTIONS(1772), + [anon_sym_EQ_EQ] = ACTIONS(1772), + [anon_sym_LT] = ACTIONS(1772), + [anon_sym_GT] = ACTIONS(1772), + [anon_sym_GT_GT] = ACTIONS(1770), + [anon_sym_AMP_GT] = ACTIONS(1772), + [anon_sym_AMP_GT_GT] = ACTIONS(1770), + [anon_sym_LT_AMP] = ACTIONS(1770), + [anon_sym_GT_AMP] = ACTIONS(1770), + [anon_sym_LT_LT] = ACTIONS(1772), + [anon_sym_LT_LT_DASH] = ACTIONS(1770), + [anon_sym_LT_LT_LT] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(1770), + [anon_sym_DQUOTE] = ACTIONS(1770), + [anon_sym_DOLLAR] = ACTIONS(1772), + [sym_raw_string] = ACTIONS(1770), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1770), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1770), + [anon_sym_BQUOTE] = ACTIONS(1770), + [anon_sym_LT_LPAREN] = ACTIONS(1770), + [anon_sym_GT_LPAREN] = ACTIONS(1770), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1772), + [anon_sym_LF] = ACTIONS(1770), + [anon_sym_AMP] = ACTIONS(1772), }, [459] = { - [sym_string] = STATE(894), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(1846), - [sym_raw_string] = ACTIONS(1848), - [anon_sym_POUND] = ACTIONS(1846), - [anon_sym_DASH] = ACTIONS(1846), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1850), - [anon_sym_STAR] = ACTIONS(1852), - [anon_sym_AT] = ACTIONS(1852), - [anon_sym_QMARK] = ACTIONS(1852), - [anon_sym_0] = ACTIONS(1850), - [anon_sym__] = ACTIONS(1850), + [sym__concat] = ACTIONS(1774), + [anon_sym_DQUOTE] = ACTIONS(1776), + [anon_sym_DOLLAR] = ACTIONS(1776), + [sym__string_content] = ACTIONS(1778), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1776), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1776), + [anon_sym_BQUOTE] = ACTIONS(1776), + [sym_comment] = ACTIONS(281), }, [460] = { - [aux_sym_concatenation_repeat1] = STATE(889), - [sym__concat] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(1854), - [anon_sym_EQ] = ACTIONS(1856), - [sym__special_characters] = ACTIONS(1856), - [anon_sym_DQUOTE] = ACTIONS(1854), - [anon_sym_DOLLAR] = ACTIONS(1856), - [sym_raw_string] = ACTIONS(1854), - [anon_sym_POUND] = ACTIONS(1854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1854), - [anon_sym_COLON] = ACTIONS(1856), - [anon_sym_COLON_QMARK] = ACTIONS(1856), - [anon_sym_COLON_DASH] = ACTIONS(1856), - [anon_sym_PERCENT] = ACTIONS(1856), - [anon_sym_DASH] = ACTIONS(1856), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1854), - [anon_sym_BQUOTE] = ACTIONS(1854), - [anon_sym_LT_LPAREN] = ACTIONS(1854), - [anon_sym_GT_LPAREN] = ACTIONS(1854), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(1856), + [sym__concat] = ACTIONS(853), + [anon_sym_DQUOTE] = ACTIONS(855), + [anon_sym_DOLLAR] = ACTIONS(855), + [sym__string_content] = ACTIONS(853), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(855), + [anon_sym_BQUOTE] = ACTIONS(855), + [sym_comment] = ACTIONS(281), }, [461] = { - [sym_subscript] = STATE(899), - [sym_variable_name] = ACTIONS(1858), - [anon_sym_BANG] = ACTIONS(1860), - [anon_sym_DOLLAR] = ACTIONS(1862), - [anon_sym_POUND] = ACTIONS(1860), - [anon_sym_DASH] = ACTIONS(1862), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1864), - [anon_sym_STAR] = ACTIONS(1866), - [anon_sym_AT] = ACTIONS(1866), - [anon_sym_QMARK] = ACTIONS(1866), - [anon_sym_0] = ACTIONS(1864), - [anon_sym__] = ACTIONS(1864), + [anon_sym_DQUOTE] = ACTIONS(1776), + [anon_sym_DOLLAR] = ACTIONS(1776), + [sym__string_content] = ACTIONS(1778), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1776), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1776), + [anon_sym_BQUOTE] = ACTIONS(1776), + [sym_comment] = ACTIONS(281), }, [462] = { - [sym_comment] = ACTIONS(265), - [sym_regex_without_right_brace] = ACTIONS(1868), + [anon_sym_LBRACK] = ACTIONS(857), + [anon_sym_EQ] = ACTIONS(1780), + [sym_comment] = ACTIONS(55), }, [463] = { - [sym__terminated_statement] = STATE(903), - [sym_for_statement] = STATE(901), - [sym_c_style_for_statement] = STATE(901), - [sym_while_statement] = STATE(901), - [sym_if_statement] = STATE(901), - [sym_case_statement] = STATE(901), - [sym_function_definition] = STATE(901), - [sym_subshell] = STATE(901), - [sym_pipeline] = STATE(901), - [sym_list] = STATE(901), - [sym_negated_command] = STATE(901), - [sym_test_command] = STATE(901), - [sym_declaration_command] = STATE(901), - [sym_unset_command] = STATE(901), - [sym_command] = STATE(901), - [sym_command_name] = STATE(78), - [sym_variable_assignment] = STATE(902), - [sym_subscript] = STATE(80), - [sym_file_redirect] = STATE(82), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(75), - [sym_simple_expansion] = STATE(75), - [sym_string_expansion] = STATE(75), - [sym_expansion] = STATE(75), - [sym_command_substitution] = STATE(75), - [sym_process_substitution] = STATE(75), - [aux_sym__statements_repeat1] = STATE(903), - [aux_sym_command_repeat1] = STATE(82), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(111), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(119), - [anon_sym_declare] = ACTIONS(121), - [anon_sym_typeset] = ACTIONS(121), - [anon_sym_export] = ACTIONS(121), - [anon_sym_readonly] = ACTIONS(121), - [anon_sym_local] = ACTIONS(121), - [anon_sym_unset] = ACTIONS(123), - [anon_sym_unsetenv] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), + [sym_subscript] = STATE(901), + [sym_variable_name] = ACTIONS(1782), + [anon_sym_DASH] = ACTIONS(1784), + [anon_sym_DOLLAR] = ACTIONS(1784), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1786), + [anon_sym_STAR] = ACTIONS(1788), + [anon_sym_AT] = ACTIONS(1788), + [anon_sym_QMARK] = ACTIONS(1788), + [anon_sym_0] = ACTIONS(1786), + [anon_sym__] = ACTIONS(1786), }, [464] = { - [sym__terminated_statement] = STATE(906), - [sym_for_statement] = STATE(904), - [sym_c_style_for_statement] = STATE(904), - [sym_while_statement] = STATE(904), - [sym_if_statement] = STATE(904), - [sym_case_statement] = STATE(904), - [sym_function_definition] = STATE(904), - [sym_subshell] = STATE(904), - [sym_pipeline] = STATE(904), - [sym_list] = STATE(904), - [sym_negated_command] = STATE(904), - [sym_test_command] = STATE(904), - [sym_declaration_command] = STATE(904), - [sym_unset_command] = STATE(904), - [sym_command] = STATE(904), - [sym_command_name] = STATE(165), - [sym_variable_assignment] = STATE(905), - [sym_subscript] = STATE(53), - [sym_file_redirect] = STATE(168), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(47), - [sym_simple_expansion] = STATE(47), - [sym_string_expansion] = STATE(47), - [sym_expansion] = STATE(47), - [sym_command_substitution] = STATE(47), - [sym_process_substitution] = STATE(47), - [aux_sym__statements_repeat1] = STATE(906), - [aux_sym_command_repeat1] = STATE(168), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(69), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(289), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(291), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(293), - [anon_sym_LBRACK] = ACTIONS(295), - [anon_sym_LBRACK_LBRACK] = ACTIONS(297), - [anon_sym_declare] = ACTIONS(299), - [anon_sym_typeset] = ACTIONS(299), - [anon_sym_export] = ACTIONS(299), - [anon_sym_readonly] = ACTIONS(299), - [anon_sym_local] = ACTIONS(299), - [anon_sym_unset] = ACTIONS(301), - [anon_sym_unsetenv] = ACTIONS(301), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(87), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(303), + [sym_concatenation] = STATE(904), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(904), + [anon_sym_RBRACE] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1792), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1794), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(1796), + [anon_sym_COLON] = ACTIONS(1792), + [anon_sym_COLON_QMARK] = ACTIONS(1792), + [anon_sym_COLON_DASH] = ACTIONS(1792), + [anon_sym_PERCENT] = ACTIONS(1792), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [465] = { - [sym__terminated_statement] = STATE(909), - [sym_for_statement] = STATE(907), - [sym_c_style_for_statement] = STATE(907), - [sym_while_statement] = STATE(907), - [sym_if_statement] = STATE(907), - [sym_case_statement] = STATE(907), - [sym_function_definition] = STATE(907), - [sym_subshell] = STATE(907), - [sym_pipeline] = STATE(907), - [sym_list] = STATE(907), - [sym_negated_command] = STATE(907), - [sym_test_command] = STATE(907), - [sym_declaration_command] = STATE(907), - [sym_unset_command] = STATE(907), - [sym_command] = STATE(907), - [sym_command_name] = STATE(78), - [sym_variable_assignment] = STATE(908), - [sym_subscript] = STATE(80), - [sym_file_redirect] = STATE(82), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(75), - [sym_simple_expansion] = STATE(75), - [sym_string_expansion] = STATE(75), - [sym_expansion] = STATE(75), - [sym_command_substitution] = STATE(75), - [sym_process_substitution] = STATE(75), - [aux_sym__statements_repeat1] = STATE(909), - [aux_sym_command_repeat1] = STATE(82), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(111), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(119), - [anon_sym_declare] = ACTIONS(121), - [anon_sym_typeset] = ACTIONS(121), - [anon_sym_export] = ACTIONS(121), - [anon_sym_readonly] = ACTIONS(121), - [anon_sym_local] = ACTIONS(121), - [anon_sym_unset] = ACTIONS(123), - [anon_sym_unsetenv] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), + [sym_concatenation] = STATE(907), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(907), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_EQ] = ACTIONS(1800), + [anon_sym_DASH] = ACTIONS(1800), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1802), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(1804), + [anon_sym_COLON] = ACTIONS(1800), + [anon_sym_COLON_QMARK] = ACTIONS(1800), + [anon_sym_COLON_DASH] = ACTIONS(1800), + [anon_sym_PERCENT] = ACTIONS(1800), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [466] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(1870), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [anon_sym_SEMI] = ACTIONS(1806), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(1808), + [anon_sym_SEMI_SEMI] = ACTIONS(1810), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1810), + [anon_sym_AMP] = ACTIONS(1806), }, [467] = { - [sym__simple_heredoc_body] = ACTIONS(1876), - [sym__heredoc_body_beginning] = ACTIONS(1876), - [sym_file_descriptor] = ACTIONS(1876), - [sym__concat] = ACTIONS(1876), - [ts_builtin_sym_end] = ACTIONS(1876), - [anon_sym_SEMI] = ACTIONS(1878), - [anon_sym_PIPE] = ACTIONS(1878), - [anon_sym_RPAREN] = ACTIONS(1876), - [anon_sym_SEMI_SEMI] = ACTIONS(1876), - [anon_sym_PIPE_AMP] = ACTIONS(1876), - [anon_sym_AMP_AMP] = ACTIONS(1876), - [anon_sym_PIPE_PIPE] = ACTIONS(1876), - [anon_sym_EQ_TILDE] = ACTIONS(1878), - [anon_sym_EQ_EQ] = ACTIONS(1878), - [anon_sym_LT] = ACTIONS(1878), - [anon_sym_GT] = ACTIONS(1878), - [anon_sym_GT_GT] = ACTIONS(1876), - [anon_sym_AMP_GT] = ACTIONS(1878), - [anon_sym_AMP_GT_GT] = ACTIONS(1876), - [anon_sym_LT_AMP] = ACTIONS(1876), - [anon_sym_GT_AMP] = ACTIONS(1876), - [anon_sym_LT_LT] = ACTIONS(1878), - [anon_sym_LT_LT_DASH] = ACTIONS(1876), - [anon_sym_LT_LT_LT] = ACTIONS(1876), - [sym__special_characters] = ACTIONS(1876), - [anon_sym_DQUOTE] = ACTIONS(1876), - [anon_sym_DOLLAR] = ACTIONS(1878), - [sym_raw_string] = ACTIONS(1876), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1876), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1876), - [anon_sym_BQUOTE] = ACTIONS(1876), - [anon_sym_LT_LPAREN] = ACTIONS(1876), - [anon_sym_GT_LPAREN] = ACTIONS(1876), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1878), - [anon_sym_LF] = ACTIONS(1876), - [anon_sym_AMP] = ACTIONS(1878), + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(1806), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(1808), + [anon_sym_SEMI_SEMI] = ACTIONS(1810), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(1810), + [anon_sym_AMP] = ACTIONS(1806), }, [468] = { - [sym_comment] = ACTIONS(265), - [sym_regex_without_right_brace] = ACTIONS(1880), + [sym__terminated_statement] = STATE(198), + [sym_for_statement] = STATE(910), + [sym_c_style_for_statement] = STATE(910), + [sym_while_statement] = STATE(910), + [sym_if_statement] = STATE(910), + [sym_case_statement] = STATE(910), + [sym_function_definition] = STATE(910), + [sym_subshell] = STATE(910), + [sym_pipeline] = STATE(910), + [sym_list] = STATE(910), + [sym_negated_command] = STATE(910), + [sym_test_command] = STATE(910), + [sym_declaration_command] = STATE(910), + [sym_unset_command] = STATE(910), + [sym_command] = STATE(910), + [sym_command_name] = STATE(92), + [sym_variable_assignment] = STATE(911), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(96), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), + [aux_sym__statements_repeat1] = STATE(198), + [aux_sym_command_repeat1] = STATE(96), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(137), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(149), + [anon_sym_declare] = ACTIONS(151), + [anon_sym_typeset] = ACTIONS(151), + [anon_sym_export] = ACTIONS(151), + [anon_sym_readonly] = ACTIONS(151), + [anon_sym_local] = ACTIONS(151), + [anon_sym_unset] = ACTIONS(153), + [anon_sym_unsetenv] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(159), }, [469] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [anon_sym_SEMI] = ACTIONS(1812), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_SEMI_SEMI] = ACTIONS(1814), + [anon_sym_PIPE_AMP] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_BQUOTE] = ACTIONS(1808), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1814), + [anon_sym_AMP] = ACTIONS(1812), }, [470] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(1882), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(901), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(1812), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_SEMI_SEMI] = ACTIONS(1814), + [anon_sym_PIPE_AMP] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(1808), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(1814), + [anon_sym_AMP] = ACTIONS(1812), }, [471] = { - [sym__simple_heredoc_body] = ACTIONS(1884), - [sym__heredoc_body_beginning] = ACTIONS(1884), - [sym_file_descriptor] = ACTIONS(1884), - [sym__concat] = ACTIONS(1884), - [ts_builtin_sym_end] = ACTIONS(1884), - [anon_sym_SEMI] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(1886), - [anon_sym_RPAREN] = ACTIONS(1884), - [anon_sym_SEMI_SEMI] = ACTIONS(1884), - [anon_sym_PIPE_AMP] = ACTIONS(1884), - [anon_sym_AMP_AMP] = ACTIONS(1884), - [anon_sym_PIPE_PIPE] = ACTIONS(1884), - [anon_sym_EQ_TILDE] = ACTIONS(1886), - [anon_sym_EQ_EQ] = ACTIONS(1886), - [anon_sym_LT] = ACTIONS(1886), - [anon_sym_GT] = ACTIONS(1886), - [anon_sym_GT_GT] = ACTIONS(1884), - [anon_sym_AMP_GT] = ACTIONS(1886), - [anon_sym_AMP_GT_GT] = ACTIONS(1884), - [anon_sym_LT_AMP] = ACTIONS(1884), - [anon_sym_GT_AMP] = ACTIONS(1884), - [anon_sym_LT_LT] = ACTIONS(1886), - [anon_sym_LT_LT_DASH] = ACTIONS(1884), - [anon_sym_LT_LT_LT] = ACTIONS(1884), - [sym__special_characters] = ACTIONS(1884), - [anon_sym_DQUOTE] = ACTIONS(1884), - [anon_sym_DOLLAR] = ACTIONS(1886), - [sym_raw_string] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1884), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1884), - [anon_sym_BQUOTE] = ACTIONS(1884), - [anon_sym_LT_LPAREN] = ACTIONS(1884), - [anon_sym_GT_LPAREN] = ACTIONS(1884), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1886), - [anon_sym_LF] = ACTIONS(1884), - [anon_sym_AMP] = ACTIONS(1886), + [sym__terminated_statement] = STATE(198), + [sym_for_statement] = STATE(913), + [sym_c_style_for_statement] = STATE(913), + [sym_while_statement] = STATE(913), + [sym_if_statement] = STATE(913), + [sym_case_statement] = STATE(913), + [sym_function_definition] = STATE(913), + [sym_subshell] = STATE(913), + [sym_pipeline] = STATE(913), + [sym_list] = STATE(913), + [sym_negated_command] = STATE(913), + [sym_test_command] = STATE(913), + [sym_declaration_command] = STATE(913), + [sym_unset_command] = STATE(913), + [sym_command] = STATE(913), + [sym_command_name] = STATE(173), + [sym_variable_assignment] = STATE(914), + [sym_subscript] = STATE(66), + [sym_file_redirect] = STATE(176), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(60), + [sym_simple_expansion] = STATE(60), + [sym_string_expansion] = STATE(60), + [sym_expansion] = STATE(60), + [sym_command_substitution] = STATE(60), + [sym_process_substitution] = STATE(60), + [aux_sym__statements_repeat1] = STATE(198), + [aux_sym_command_repeat1] = STATE(176), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(95), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(305), + [anon_sym_while] = ACTIONS(307), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(311), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(315), + [anon_sym_declare] = ACTIONS(317), + [anon_sym_typeset] = ACTIONS(317), + [anon_sym_export] = ACTIONS(317), + [anon_sym_readonly] = ACTIONS(317), + [anon_sym_local] = ACTIONS(317), + [anon_sym_unset] = ACTIONS(319), + [anon_sym_unsetenv] = ACTIONS(319), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(115), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(321), }, [472] = { - [anon_sym_SEMI] = ACTIONS(1888), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(1882), - [anon_sym_SEMI_SEMI] = ACTIONS(1890), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1890), - [anon_sym_AMP] = ACTIONS(1888), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_DQUOTE] = ACTIONS(1816), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym__string_content] = ACTIONS(821), + [anon_sym_POUND] = ACTIONS(815), + [sym_comment] = ACTIONS(281), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(823), + [anon_sym_STAR] = ACTIONS(825), + [anon_sym_AT] = ACTIONS(825), + [anon_sym_QMARK] = ACTIONS(825), + [anon_sym_0] = ACTIONS(823), + [anon_sym__] = ACTIONS(823), }, [473] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(1888), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(1882), - [anon_sym_SEMI_SEMI] = ACTIONS(1890), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(1890), - [anon_sym_AMP] = ACTIONS(1888), + [sym_simple_expansion] = STATE(148), + [sym_expansion] = STATE(148), + [sym_command_substitution] = STATE(148), + [aux_sym_string_repeat1] = STATE(473), + [anon_sym_DQUOTE] = ACTIONS(1776), + [anon_sym_DOLLAR] = ACTIONS(1818), + [sym__string_content] = ACTIONS(1821), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1824), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1827), + [anon_sym_BQUOTE] = ACTIONS(1830), + [sym_comment] = ACTIONS(281), }, [474] = { - [sym_do_group] = STATE(915), - [anon_sym_do] = ACTIONS(441), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(919), + [sym_string] = STATE(918), + [sym_simple_expansion] = STATE(918), + [sym_string_expansion] = STATE(918), + [sym_expansion] = STATE(918), + [sym_command_substitution] = STATE(918), + [sym_process_substitution] = STATE(918), + [sym__special_characters] = ACTIONS(1833), + [anon_sym_DQUOTE] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(171), + [sym_raw_string] = ACTIONS(1835), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(175), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(177), + [anon_sym_BQUOTE] = ACTIONS(179), + [anon_sym_LT_LPAREN] = ACTIONS(181), + [anon_sym_GT_LPAREN] = ACTIONS(181), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1835), }, [475] = { - [sym_compound_statement] = STATE(917), - [anon_sym_LPAREN] = ACTIONS(1892), - [anon_sym_LBRACE] = ACTIONS(511), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(929), + [sym_string] = STATE(924), + [sym_simple_expansion] = STATE(924), + [sym_string_expansion] = STATE(924), + [sym_expansion] = STATE(924), + [sym_command_substitution] = STATE(924), + [sym_process_substitution] = STATE(924), + [anon_sym_RBRACE] = ACTIONS(1837), + [sym__special_characters] = ACTIONS(1839), + [anon_sym_DQUOTE] = ACTIONS(1841), + [anon_sym_DOLLAR] = ACTIONS(1843), + [sym_raw_string] = ACTIONS(1845), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1849), + [anon_sym_BQUOTE] = ACTIONS(1851), + [anon_sym_LT_LPAREN] = ACTIONS(1853), + [anon_sym_GT_LPAREN] = ACTIONS(1853), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1845), }, [476] = { - [anon_sym_AMP_AMP] = ACTIONS(615), - [anon_sym_PIPE_PIPE] = ACTIONS(615), - [anon_sym_RBRACK] = ACTIONS(1894), - [anon_sym_EQ_TILDE] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(619), - [anon_sym_EQ] = ACTIONS(621), - [anon_sym_LT] = ACTIONS(615), - [anon_sym_GT] = ACTIONS(615), - [anon_sym_BANG_EQ] = ACTIONS(615), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(615), + [anon_sym_LBRACK] = ACTIONS(857), + [anon_sym_EQ] = ACTIONS(1855), + [sym_comment] = ACTIONS(55), }, [477] = { - [anon_sym_AMP_AMP] = ACTIONS(647), - [anon_sym_PIPE_PIPE] = ACTIONS(647), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1894), - [anon_sym_EQ_TILDE] = ACTIONS(649), - [anon_sym_EQ_EQ] = ACTIONS(649), - [anon_sym_EQ] = ACTIONS(651), - [anon_sym_LT] = ACTIONS(647), - [anon_sym_GT] = ACTIONS(647), - [anon_sym_BANG_EQ] = ACTIONS(647), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(647), + [sym_concatenation] = STATE(933), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(933), + [anon_sym_RBRACE] = ACTIONS(1857), + [anon_sym_EQ] = ACTIONS(1859), + [anon_sym_DASH] = ACTIONS(1859), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1861), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(1863), + [anon_sym_COLON] = ACTIONS(1859), + [anon_sym_COLON_QMARK] = ACTIONS(1859), + [anon_sym_COLON_DASH] = ACTIONS(1859), + [anon_sym_PERCENT] = ACTIONS(1859), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [478] = { - [sym_variable_assignment] = STATE(608), - [sym_subscript] = STATE(231), - [sym_concatenation] = STATE(608), - [sym_string] = STATE(230), - [sym_simple_expansion] = STATE(230), - [sym_string_expansion] = STATE(230), - [sym_expansion] = STATE(230), - [sym_command_substitution] = STATE(230), - [sym_process_substitution] = STATE(230), - [aux_sym_declaration_command_repeat1] = STATE(608), - [sym_variable_name] = ACTIONS(421), - [anon_sym_SEMI] = ACTIONS(689), - [anon_sym_PIPE] = ACTIONS(689), - [anon_sym_SEMI_SEMI] = ACTIONS(687), - [anon_sym_PIPE_AMP] = ACTIONS(687), - [anon_sym_AMP_AMP] = ACTIONS(687), - [anon_sym_PIPE_PIPE] = ACTIONS(687), - [sym__special_characters] = ACTIONS(423), - [anon_sym_DQUOTE] = ACTIONS(189), - [anon_sym_DOLLAR] = ACTIONS(191), - [sym_raw_string] = ACTIONS(425), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(195), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(197), - [anon_sym_BQUOTE] = ACTIONS(687), - [anon_sym_LT_LPAREN] = ACTIONS(201), - [anon_sym_GT_LPAREN] = ACTIONS(201), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1187), - [sym_word] = ACTIONS(429), - [anon_sym_LF] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(689), + [sym_concatenation] = STATE(935), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(935), + [anon_sym_RBRACE] = ACTIONS(1837), + [anon_sym_EQ] = ACTIONS(1865), + [anon_sym_DASH] = ACTIONS(1865), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1867), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(1869), + [anon_sym_COLON] = ACTIONS(1865), + [anon_sym_COLON_QMARK] = ACTIONS(1865), + [anon_sym_COLON_DASH] = ACTIONS(1865), + [anon_sym_PERCENT] = ACTIONS(1865), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [479] = { - [sym_concatenation] = STATE(610), - [sym_string] = STATE(234), - [sym_simple_expansion] = STATE(234), - [sym_string_expansion] = STATE(234), - [sym_expansion] = STATE(234), - [sym_command_substitution] = STATE(234), - [sym_process_substitution] = STATE(234), - [aux_sym_unset_command_repeat1] = STATE(610), - [anon_sym_SEMI] = ACTIONS(727), - [anon_sym_PIPE] = ACTIONS(727), - [anon_sym_SEMI_SEMI] = ACTIONS(725), - [anon_sym_PIPE_AMP] = ACTIONS(725), - [anon_sym_AMP_AMP] = ACTIONS(725), - [anon_sym_PIPE_PIPE] = ACTIONS(725), - [sym__special_characters] = ACTIONS(431), - [anon_sym_DQUOTE] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(215), - [sym_raw_string] = ACTIONS(433), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(219), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(221), - [anon_sym_BQUOTE] = ACTIONS(725), - [anon_sym_LT_LPAREN] = ACTIONS(225), - [anon_sym_GT_LPAREN] = ACTIONS(225), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1189), - [sym_word] = ACTIONS(437), - [anon_sym_LF] = ACTIONS(725), - [anon_sym_AMP] = ACTIONS(727), + [sym__simple_heredoc_body] = ACTIONS(1871), + [sym__heredoc_body_beginning] = ACTIONS(1871), + [sym_file_descriptor] = ACTIONS(1871), + [sym__concat] = ACTIONS(1871), + [ts_builtin_sym_end] = ACTIONS(1871), + [anon_sym_SEMI] = ACTIONS(1873), + [anon_sym_PIPE] = ACTIONS(1873), + [anon_sym_RPAREN] = ACTIONS(1871), + [anon_sym_SEMI_SEMI] = ACTIONS(1871), + [anon_sym_PIPE_AMP] = ACTIONS(1871), + [anon_sym_AMP_AMP] = ACTIONS(1871), + [anon_sym_PIPE_PIPE] = ACTIONS(1871), + [anon_sym_EQ_TILDE] = ACTIONS(1873), + [anon_sym_EQ_EQ] = ACTIONS(1873), + [anon_sym_LT] = ACTIONS(1873), + [anon_sym_GT] = ACTIONS(1873), + [anon_sym_GT_GT] = ACTIONS(1871), + [anon_sym_AMP_GT] = ACTIONS(1873), + [anon_sym_AMP_GT_GT] = ACTIONS(1871), + [anon_sym_LT_AMP] = ACTIONS(1871), + [anon_sym_GT_AMP] = ACTIONS(1871), + [anon_sym_LT_LT] = ACTIONS(1873), + [anon_sym_LT_LT_DASH] = ACTIONS(1871), + [anon_sym_LT_LT_LT] = ACTIONS(1871), + [sym__special_characters] = ACTIONS(1871), + [anon_sym_DQUOTE] = ACTIONS(1871), + [anon_sym_DOLLAR] = ACTIONS(1873), + [sym_raw_string] = ACTIONS(1871), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1871), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1871), + [anon_sym_BQUOTE] = ACTIONS(1871), + [anon_sym_LT_LPAREN] = ACTIONS(1871), + [anon_sym_GT_LPAREN] = ACTIONS(1871), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1873), + [anon_sym_LF] = ACTIONS(1871), + [anon_sym_AMP] = ACTIONS(1873), }, [480] = { - [anon_sym_RPAREN] = ACTIONS(1896), - [sym_comment] = ACTIONS(53), + [aux_sym_concatenation_repeat1] = STATE(937), + [sym__concat] = ACTIONS(1875), + [anon_sym_RBRACE] = ACTIONS(1877), + [anon_sym_EQ] = ACTIONS(1879), + [anon_sym_DASH] = ACTIONS(1879), + [sym__special_characters] = ACTIONS(1879), + [anon_sym_DQUOTE] = ACTIONS(1877), + [anon_sym_DOLLAR] = ACTIONS(1879), + [sym_raw_string] = ACTIONS(1877), + [anon_sym_POUND] = ACTIONS(1877), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1877), + [anon_sym_COLON] = ACTIONS(1879), + [anon_sym_COLON_QMARK] = ACTIONS(1879), + [anon_sym_COLON_DASH] = ACTIONS(1879), + [anon_sym_PERCENT] = ACTIONS(1879), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1877), + [anon_sym_BQUOTE] = ACTIONS(1877), + [anon_sym_LT_LPAREN] = ACTIONS(1877), + [anon_sym_GT_LPAREN] = ACTIONS(1877), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(1879), }, [481] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(1882), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), + [sym_simple_expansion] = STATE(148), + [sym_expansion] = STATE(148), + [sym_command_substitution] = STATE(148), + [aux_sym_string_repeat1] = STATE(940), + [anon_sym_DQUOTE] = ACTIONS(1881), + [anon_sym_DOLLAR] = ACTIONS(1883), + [sym__string_content] = ACTIONS(273), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(277), + [anon_sym_BQUOTE] = ACTIONS(279), + [sym_comment] = ACTIONS(281), }, [482] = { - [sym_for_statement] = STATE(497), - [sym_c_style_for_statement] = STATE(497), - [sym_while_statement] = STATE(497), - [sym_if_statement] = STATE(497), - [sym_case_statement] = STATE(497), - [sym_function_definition] = STATE(497), - [sym_subshell] = STATE(497), - [sym_pipeline] = STATE(497), - [sym_list] = STATE(497), - [sym_negated_command] = STATE(497), - [sym_test_command] = STATE(497), - [sym_declaration_command] = STATE(497), - [sym_unset_command] = STATE(497), - [sym_command] = STATE(497), - [sym_command_name] = STATE(165), - [sym_variable_assignment] = STATE(920), - [sym_subscript] = STATE(53), - [sym_file_redirect] = STATE(168), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(47), - [sym_simple_expansion] = STATE(47), - [sym_string_expansion] = STATE(47), - [sym_expansion] = STATE(47), - [sym_command_substitution] = STATE(47), - [sym_process_substitution] = STATE(47), - [aux_sym_command_repeat1] = STATE(168), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(69), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(289), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(291), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(293), - [anon_sym_LBRACK] = ACTIONS(295), - [anon_sym_LBRACK_LBRACK] = ACTIONS(297), - [anon_sym_declare] = ACTIONS(299), - [anon_sym_typeset] = ACTIONS(299), - [anon_sym_export] = ACTIONS(299), - [anon_sym_readonly] = ACTIONS(299), - [anon_sym_local] = ACTIONS(299), - [anon_sym_unset] = ACTIONS(301), - [anon_sym_unsetenv] = ACTIONS(301), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(87), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(303), + [sym_string] = STATE(942), + [anon_sym_DASH] = ACTIONS(1885), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(1885), + [sym_raw_string] = ACTIONS(1887), + [anon_sym_POUND] = ACTIONS(1885), + [sym_comment] = ACTIONS(281), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1889), + [anon_sym_STAR] = ACTIONS(1891), + [anon_sym_AT] = ACTIONS(1891), + [anon_sym_QMARK] = ACTIONS(1891), + [anon_sym_0] = ACTIONS(1889), + [anon_sym__] = ACTIONS(1889), }, [483] = { - [sym_for_statement] = STATE(921), - [sym_c_style_for_statement] = STATE(921), - [sym_while_statement] = STATE(921), - [sym_if_statement] = STATE(921), - [sym_case_statement] = STATE(921), - [sym_function_definition] = STATE(921), - [sym_subshell] = STATE(921), - [sym_pipeline] = STATE(921), - [sym_list] = STATE(921), - [sym_negated_command] = STATE(921), - [sym_test_command] = STATE(921), - [sym_declaration_command] = STATE(921), - [sym_unset_command] = STATE(921), - [sym_command] = STATE(921), - [sym_command_name] = STATE(165), - [sym_variable_assignment] = STATE(922), - [sym_subscript] = STATE(53), - [sym_file_redirect] = STATE(168), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(47), - [sym_simple_expansion] = STATE(47), - [sym_string_expansion] = STATE(47), - [sym_expansion] = STATE(47), - [sym_command_substitution] = STATE(47), - [sym_process_substitution] = STATE(47), - [aux_sym_command_repeat1] = STATE(168), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(69), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(289), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(291), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(293), - [anon_sym_LBRACK] = ACTIONS(295), - [anon_sym_LBRACK_LBRACK] = ACTIONS(297), - [anon_sym_declare] = ACTIONS(299), - [anon_sym_typeset] = ACTIONS(299), - [anon_sym_export] = ACTIONS(299), - [anon_sym_readonly] = ACTIONS(299), - [anon_sym_local] = ACTIONS(299), - [anon_sym_unset] = ACTIONS(301), - [anon_sym_unsetenv] = ACTIONS(301), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(87), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(303), + [aux_sym_concatenation_repeat1] = STATE(937), + [sym__concat] = ACTIONS(1875), + [anon_sym_RBRACE] = ACTIONS(1893), + [anon_sym_EQ] = ACTIONS(1895), + [anon_sym_DASH] = ACTIONS(1895), + [sym__special_characters] = ACTIONS(1895), + [anon_sym_DQUOTE] = ACTIONS(1893), + [anon_sym_DOLLAR] = ACTIONS(1895), + [sym_raw_string] = ACTIONS(1893), + [anon_sym_POUND] = ACTIONS(1893), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1893), + [anon_sym_COLON] = ACTIONS(1895), + [anon_sym_COLON_QMARK] = ACTIONS(1895), + [anon_sym_COLON_DASH] = ACTIONS(1895), + [anon_sym_PERCENT] = ACTIONS(1895), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1893), + [anon_sym_BQUOTE] = ACTIONS(1893), + [anon_sym_LT_LPAREN] = ACTIONS(1893), + [anon_sym_GT_LPAREN] = ACTIONS(1893), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(1895), }, [484] = { - [anon_sym_LT] = ACTIONS(1898), - [anon_sym_GT] = ACTIONS(1898), - [anon_sym_GT_GT] = ACTIONS(1900), - [anon_sym_AMP_GT] = ACTIONS(1898), - [anon_sym_AMP_GT_GT] = ACTIONS(1900), - [anon_sym_LT_AMP] = ACTIONS(1900), - [anon_sym_GT_AMP] = ACTIONS(1900), - [sym_comment] = ACTIONS(53), + [sym_subscript] = STATE(947), + [sym_variable_name] = ACTIONS(1897), + [anon_sym_BANG] = ACTIONS(1899), + [anon_sym_DASH] = ACTIONS(1901), + [anon_sym_DOLLAR] = ACTIONS(1901), + [anon_sym_POUND] = ACTIONS(1899), + [sym_comment] = ACTIONS(281), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1903), + [anon_sym_STAR] = ACTIONS(1905), + [anon_sym_AT] = ACTIONS(1905), + [anon_sym_QMARK] = ACTIONS(1905), + [anon_sym_0] = ACTIONS(1903), + [anon_sym__] = ACTIONS(1903), }, [485] = { - [sym_concatenation] = STATE(511), - [sym_string] = STATE(925), - [sym_simple_expansion] = STATE(925), - [sym_string_expansion] = STATE(925), - [sym_expansion] = STATE(925), - [sym_command_substitution] = STATE(925), - [sym_process_substitution] = STATE(925), - [sym__special_characters] = ACTIONS(1902), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1904), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1904), + [sym_concatenation] = STATE(950), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(950), + [sym_regex] = ACTIONS(1907), + [anon_sym_RBRACE] = ACTIONS(1909), + [anon_sym_EQ] = ACTIONS(1911), + [anon_sym_DASH] = ACTIONS(1911), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1913), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1911), + [anon_sym_COLON_QMARK] = ACTIONS(1911), + [anon_sym_COLON_DASH] = ACTIONS(1911), + [anon_sym_PERCENT] = ACTIONS(1911), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [486] = { - [sym_concatenation] = STATE(515), - [sym_string] = STATE(927), - [sym_simple_expansion] = STATE(927), - [sym_string_expansion] = STATE(927), - [sym_expansion] = STATE(927), - [sym_command_substitution] = STATE(927), - [sym_process_substitution] = STATE(927), - [sym__special_characters] = ACTIONS(1906), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1908), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1908), + [sym__terminated_statement] = STATE(953), + [sym_for_statement] = STATE(951), + [sym_c_style_for_statement] = STATE(951), + [sym_while_statement] = STATE(951), + [sym_if_statement] = STATE(951), + [sym_case_statement] = STATE(951), + [sym_function_definition] = STATE(951), + [sym_subshell] = STATE(951), + [sym_pipeline] = STATE(951), + [sym_list] = STATE(951), + [sym_negated_command] = STATE(951), + [sym_test_command] = STATE(951), + [sym_declaration_command] = STATE(951), + [sym_unset_command] = STATE(951), + [sym_command] = STATE(951), + [sym_command_name] = STATE(92), + [sym_variable_assignment] = STATE(952), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(96), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), + [aux_sym__statements_repeat1] = STATE(953), + [aux_sym_command_repeat1] = STATE(96), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(137), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(149), + [anon_sym_declare] = ACTIONS(151), + [anon_sym_typeset] = ACTIONS(151), + [anon_sym_export] = ACTIONS(151), + [anon_sym_readonly] = ACTIONS(151), + [anon_sym_local] = ACTIONS(151), + [anon_sym_unset] = ACTIONS(153), + [anon_sym_unsetenv] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(159), }, [487] = { - [sym_file_redirect] = STATE(928), - [sym_heredoc_redirect] = STATE(928), - [sym_heredoc_body] = STATE(516), - [sym_herestring_redirect] = STATE(928), - [aux_sym_while_statement_repeat1] = STATE(928), - [sym__simple_heredoc_body] = ACTIONS(321), - [sym__heredoc_body_beginning] = ACTIONS(323), - [sym_file_descriptor] = ACTIONS(885), - [anon_sym_SEMI] = ACTIONS(959), - [anon_sym_PIPE] = ACTIONS(959), - [anon_sym_SEMI_SEMI] = ACTIONS(957), - [anon_sym_PIPE_AMP] = ACTIONS(957), - [anon_sym_AMP_AMP] = ACTIONS(957), - [anon_sym_PIPE_PIPE] = ACTIONS(957), - [anon_sym_LT] = ACTIONS(887), - [anon_sym_GT] = ACTIONS(887), - [anon_sym_GT_GT] = ACTIONS(889), - [anon_sym_AMP_GT] = ACTIONS(887), - [anon_sym_AMP_GT_GT] = ACTIONS(889), - [anon_sym_LT_AMP] = ACTIONS(889), - [anon_sym_GT_AMP] = ACTIONS(889), - [anon_sym_LT_LT] = ACTIONS(337), - [anon_sym_LT_LT_DASH] = ACTIONS(339), - [anon_sym_LT_LT_LT] = ACTIONS(891), - [anon_sym_BQUOTE] = ACTIONS(957), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(957), - [anon_sym_AMP] = ACTIONS(959), + [sym__terminated_statement] = STATE(956), + [sym_for_statement] = STATE(954), + [sym_c_style_for_statement] = STATE(954), + [sym_while_statement] = STATE(954), + [sym_if_statement] = STATE(954), + [sym_case_statement] = STATE(954), + [sym_function_definition] = STATE(954), + [sym_subshell] = STATE(954), + [sym_pipeline] = STATE(954), + [sym_list] = STATE(954), + [sym_negated_command] = STATE(954), + [sym_test_command] = STATE(954), + [sym_declaration_command] = STATE(954), + [sym_unset_command] = STATE(954), + [sym_command] = STATE(954), + [sym_command_name] = STATE(173), + [sym_variable_assignment] = STATE(955), + [sym_subscript] = STATE(66), + [sym_file_redirect] = STATE(176), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(60), + [sym_simple_expansion] = STATE(60), + [sym_string_expansion] = STATE(60), + [sym_expansion] = STATE(60), + [sym_command_substitution] = STATE(60), + [sym_process_substitution] = STATE(60), + [aux_sym__statements_repeat1] = STATE(956), + [aux_sym_command_repeat1] = STATE(176), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(95), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(305), + [anon_sym_while] = ACTIONS(307), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(311), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(315), + [anon_sym_declare] = ACTIONS(317), + [anon_sym_typeset] = ACTIONS(317), + [anon_sym_export] = ACTIONS(317), + [anon_sym_readonly] = ACTIONS(317), + [anon_sym_local] = ACTIONS(317), + [anon_sym_unset] = ACTIONS(319), + [anon_sym_unsetenv] = ACTIONS(319), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(115), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(321), }, [488] = { - [sym_file_redirect] = STATE(929), - [sym_heredoc_redirect] = STATE(929), - [sym_heredoc_body] = STATE(516), - [sym_herestring_redirect] = STATE(929), - [sym_concatenation] = STATE(628), - [sym_string] = STATE(248), - [sym_simple_expansion] = STATE(248), - [sym_string_expansion] = STATE(248), - [sym_expansion] = STATE(248), - [sym_command_substitution] = STATE(248), - [sym_process_substitution] = STATE(248), - [aux_sym_while_statement_repeat1] = STATE(929), - [aux_sym_command_repeat2] = STATE(628), - [sym__simple_heredoc_body] = ACTIONS(321), - [sym__heredoc_body_beginning] = ACTIONS(323), - [sym_file_descriptor] = ACTIONS(885), - [anon_sym_SEMI] = ACTIONS(959), - [anon_sym_PIPE] = ACTIONS(959), - [anon_sym_SEMI_SEMI] = ACTIONS(957), - [anon_sym_PIPE_AMP] = ACTIONS(957), - [anon_sym_AMP_AMP] = ACTIONS(957), - [anon_sym_PIPE_PIPE] = ACTIONS(957), - [anon_sym_EQ_TILDE] = ACTIONS(455), - [anon_sym_EQ_EQ] = ACTIONS(455), - [anon_sym_LT] = ACTIONS(887), - [anon_sym_GT] = ACTIONS(887), - [anon_sym_GT_GT] = ACTIONS(889), - [anon_sym_AMP_GT] = ACTIONS(887), - [anon_sym_AMP_GT_GT] = ACTIONS(889), - [anon_sym_LT_AMP] = ACTIONS(889), - [anon_sym_GT_AMP] = ACTIONS(889), - [anon_sym_LT_LT] = ACTIONS(337), - [anon_sym_LT_LT_DASH] = ACTIONS(339), - [anon_sym_LT_LT_LT] = ACTIONS(891), - [sym__special_characters] = ACTIONS(463), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(465), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(957), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(467), - [anon_sym_LF] = ACTIONS(957), - [anon_sym_AMP] = ACTIONS(959), + [sym__terminated_statement] = STATE(959), + [sym_for_statement] = STATE(957), + [sym_c_style_for_statement] = STATE(957), + [sym_while_statement] = STATE(957), + [sym_if_statement] = STATE(957), + [sym_case_statement] = STATE(957), + [sym_function_definition] = STATE(957), + [sym_subshell] = STATE(957), + [sym_pipeline] = STATE(957), + [sym_list] = STATE(957), + [sym_negated_command] = STATE(957), + [sym_test_command] = STATE(957), + [sym_declaration_command] = STATE(957), + [sym_unset_command] = STATE(957), + [sym_command] = STATE(957), + [sym_command_name] = STATE(92), + [sym_variable_assignment] = STATE(958), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(96), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), + [aux_sym__statements_repeat1] = STATE(959), + [aux_sym_command_repeat1] = STATE(96), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(137), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(149), + [anon_sym_declare] = ACTIONS(151), + [anon_sym_typeset] = ACTIONS(151), + [anon_sym_export] = ACTIONS(151), + [anon_sym_readonly] = ACTIONS(151), + [anon_sym_local] = ACTIONS(151), + [anon_sym_unset] = ACTIONS(153), + [anon_sym_unsetenv] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(159), }, [489] = { - [anon_sym_SEMI] = ACTIONS(1910), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_SEMI_SEMI] = ACTIONS(1912), - [anon_sym_PIPE_AMP] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(883), - [anon_sym_PIPE_PIPE] = ACTIONS(883), - [anon_sym_BQUOTE] = ACTIONS(1882), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1912), - [anon_sym_AMP] = ACTIONS(1910), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(1909), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [490] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(1910), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_SEMI_SEMI] = ACTIONS(1912), - [anon_sym_PIPE_AMP] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(883), - [anon_sym_PIPE_PIPE] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(1882), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(1912), - [anon_sym_AMP] = ACTIONS(1910), + [sym__simple_heredoc_body] = ACTIONS(1919), + [sym__heredoc_body_beginning] = ACTIONS(1919), + [sym_file_descriptor] = ACTIONS(1919), + [sym__concat] = ACTIONS(1919), + [ts_builtin_sym_end] = ACTIONS(1919), + [anon_sym_SEMI] = ACTIONS(1921), + [anon_sym_PIPE] = ACTIONS(1921), + [anon_sym_RPAREN] = ACTIONS(1919), + [anon_sym_SEMI_SEMI] = ACTIONS(1919), + [anon_sym_PIPE_AMP] = ACTIONS(1919), + [anon_sym_AMP_AMP] = ACTIONS(1919), + [anon_sym_PIPE_PIPE] = ACTIONS(1919), + [anon_sym_EQ_TILDE] = ACTIONS(1921), + [anon_sym_EQ_EQ] = ACTIONS(1921), + [anon_sym_LT] = ACTIONS(1921), + [anon_sym_GT] = ACTIONS(1921), + [anon_sym_GT_GT] = ACTIONS(1919), + [anon_sym_AMP_GT] = ACTIONS(1921), + [anon_sym_AMP_GT_GT] = ACTIONS(1919), + [anon_sym_LT_AMP] = ACTIONS(1919), + [anon_sym_GT_AMP] = ACTIONS(1919), + [anon_sym_LT_LT] = ACTIONS(1921), + [anon_sym_LT_LT_DASH] = ACTIONS(1919), + [anon_sym_LT_LT_LT] = ACTIONS(1919), + [sym__special_characters] = ACTIONS(1919), + [anon_sym_DQUOTE] = ACTIONS(1919), + [anon_sym_DOLLAR] = ACTIONS(1921), + [sym_raw_string] = ACTIONS(1919), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1919), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1919), + [anon_sym_BQUOTE] = ACTIONS(1919), + [anon_sym_LT_LPAREN] = ACTIONS(1919), + [anon_sym_GT_LPAREN] = ACTIONS(1919), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1921), + [anon_sym_LF] = ACTIONS(1919), + [anon_sym_AMP] = ACTIONS(1921), }, [491] = { - [sym_file_redirect] = STATE(929), - [sym_heredoc_redirect] = STATE(929), - [sym_heredoc_body] = STATE(516), - [sym_herestring_redirect] = STATE(929), - [sym_concatenation] = STATE(931), - [sym_string] = STATE(248), - [sym_simple_expansion] = STATE(248), - [sym_string_expansion] = STATE(248), - [sym_expansion] = STATE(248), - [sym_command_substitution] = STATE(248), - [sym_process_substitution] = STATE(248), - [aux_sym_while_statement_repeat1] = STATE(929), - [aux_sym_command_repeat2] = STATE(931), - [sym__simple_heredoc_body] = ACTIONS(321), - [sym__heredoc_body_beginning] = ACTIONS(323), - [sym_file_descriptor] = ACTIONS(885), - [anon_sym_SEMI] = ACTIONS(959), - [anon_sym_PIPE] = ACTIONS(959), - [anon_sym_SEMI_SEMI] = ACTIONS(957), - [anon_sym_PIPE_AMP] = ACTIONS(957), - [anon_sym_AMP_AMP] = ACTIONS(957), - [anon_sym_PIPE_PIPE] = ACTIONS(957), - [anon_sym_EQ_TILDE] = ACTIONS(455), - [anon_sym_EQ_EQ] = ACTIONS(455), - [anon_sym_LT] = ACTIONS(887), - [anon_sym_GT] = ACTIONS(887), - [anon_sym_GT_GT] = ACTIONS(889), - [anon_sym_AMP_GT] = ACTIONS(887), - [anon_sym_AMP_GT_GT] = ACTIONS(889), - [anon_sym_LT_AMP] = ACTIONS(889), - [anon_sym_GT_AMP] = ACTIONS(889), - [anon_sym_LT_LT] = ACTIONS(337), - [anon_sym_LT_LT_DASH] = ACTIONS(339), - [anon_sym_LT_LT_LT] = ACTIONS(891), - [sym__special_characters] = ACTIONS(463), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(465), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(957), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(467), - [anon_sym_LF] = ACTIONS(957), - [anon_sym_AMP] = ACTIONS(959), + [sym_concatenation] = STATE(935), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(935), + [sym_regex] = ACTIONS(1923), + [anon_sym_RBRACE] = ACTIONS(1837), + [anon_sym_EQ] = ACTIONS(1865), + [anon_sym_DASH] = ACTIONS(1865), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1867), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1865), + [anon_sym_COLON_QMARK] = ACTIONS(1865), + [anon_sym_COLON_DASH] = ACTIONS(1865), + [anon_sym_PERCENT] = ACTIONS(1865), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [492] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(1914), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(901), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(1837), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [493] = { - [sym__simple_heredoc_body] = ACTIONS(1916), - [sym__heredoc_body_beginning] = ACTIONS(1916), - [sym_file_descriptor] = ACTIONS(1916), - [sym__concat] = ACTIONS(1916), - [ts_builtin_sym_end] = ACTIONS(1916), - [anon_sym_SEMI] = ACTIONS(1918), - [anon_sym_PIPE] = ACTIONS(1918), - [anon_sym_RPAREN] = ACTIONS(1916), - [anon_sym_SEMI_SEMI] = ACTIONS(1916), - [anon_sym_PIPE_AMP] = ACTIONS(1916), - [anon_sym_AMP_AMP] = ACTIONS(1916), - [anon_sym_PIPE_PIPE] = ACTIONS(1916), - [anon_sym_EQ_TILDE] = ACTIONS(1918), - [anon_sym_EQ_EQ] = ACTIONS(1918), - [anon_sym_LT] = ACTIONS(1918), - [anon_sym_GT] = ACTIONS(1918), - [anon_sym_GT_GT] = ACTIONS(1916), - [anon_sym_AMP_GT] = ACTIONS(1918), - [anon_sym_AMP_GT_GT] = ACTIONS(1916), - [anon_sym_LT_AMP] = ACTIONS(1916), - [anon_sym_GT_AMP] = ACTIONS(1916), - [anon_sym_LT_LT] = ACTIONS(1918), - [anon_sym_LT_LT_DASH] = ACTIONS(1916), - [anon_sym_LT_LT_LT] = ACTIONS(1916), - [sym__special_characters] = ACTIONS(1916), - [anon_sym_DQUOTE] = ACTIONS(1916), - [anon_sym_DOLLAR] = ACTIONS(1918), - [sym_raw_string] = ACTIONS(1916), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1916), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1916), - [anon_sym_BQUOTE] = ACTIONS(1916), - [anon_sym_LT_LPAREN] = ACTIONS(1916), - [anon_sym_GT_LPAREN] = ACTIONS(1916), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1918), - [anon_sym_LF] = ACTIONS(1916), - [anon_sym_AMP] = ACTIONS(1918), + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(1925), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), }, [494] = { - [anon_sym_SEMI] = ACTIONS(1920), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(1914), - [anon_sym_SEMI_SEMI] = ACTIONS(1922), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1922), - [anon_sym_AMP] = ACTIONS(1920), + [sym__simple_heredoc_body] = ACTIONS(1927), + [sym__heredoc_body_beginning] = ACTIONS(1927), + [sym_file_descriptor] = ACTIONS(1927), + [sym__concat] = ACTIONS(1927), + [ts_builtin_sym_end] = ACTIONS(1927), + [anon_sym_SEMI] = ACTIONS(1929), + [anon_sym_PIPE] = ACTIONS(1929), + [anon_sym_RPAREN] = ACTIONS(1927), + [anon_sym_SEMI_SEMI] = ACTIONS(1927), + [anon_sym_PIPE_AMP] = ACTIONS(1927), + [anon_sym_AMP_AMP] = ACTIONS(1927), + [anon_sym_PIPE_PIPE] = ACTIONS(1927), + [anon_sym_EQ_TILDE] = ACTIONS(1929), + [anon_sym_EQ_EQ] = ACTIONS(1929), + [anon_sym_LT] = ACTIONS(1929), + [anon_sym_GT] = ACTIONS(1929), + [anon_sym_GT_GT] = ACTIONS(1927), + [anon_sym_AMP_GT] = ACTIONS(1929), + [anon_sym_AMP_GT_GT] = ACTIONS(1927), + [anon_sym_LT_AMP] = ACTIONS(1927), + [anon_sym_GT_AMP] = ACTIONS(1927), + [anon_sym_LT_LT] = ACTIONS(1929), + [anon_sym_LT_LT_DASH] = ACTIONS(1927), + [anon_sym_LT_LT_LT] = ACTIONS(1927), + [sym__special_characters] = ACTIONS(1927), + [anon_sym_DQUOTE] = ACTIONS(1927), + [anon_sym_DOLLAR] = ACTIONS(1929), + [sym_raw_string] = ACTIONS(1927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1927), + [anon_sym_BQUOTE] = ACTIONS(1927), + [anon_sym_LT_LPAREN] = ACTIONS(1927), + [anon_sym_GT_LPAREN] = ACTIONS(1927), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1929), + [anon_sym_LF] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1929), }, [495] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(1920), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(1914), - [anon_sym_SEMI_SEMI] = ACTIONS(1922), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(1922), - [anon_sym_AMP] = ACTIONS(1920), + [anon_sym_SEMI] = ACTIONS(1931), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(1925), + [anon_sym_SEMI_SEMI] = ACTIONS(1933), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1933), + [anon_sym_AMP] = ACTIONS(1931), }, [496] = { - [sym_compound_statement] = STATE(934), - [anon_sym_LBRACE] = ACTIONS(511), - [sym_comment] = ACTIONS(53), + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(1931), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(1925), + [anon_sym_SEMI_SEMI] = ACTIONS(1933), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(1933), + [anon_sym_AMP] = ACTIONS(1931), }, [497] = { - [ts_builtin_sym_end] = ACTIONS(1924), - [anon_sym_SEMI] = ACTIONS(1926), - [anon_sym_esac] = ACTIONS(1924), - [anon_sym_PIPE] = ACTIONS(1926), - [anon_sym_RPAREN] = ACTIONS(1924), - [anon_sym_SEMI_SEMI] = ACTIONS(1924), - [anon_sym_PIPE_AMP] = ACTIONS(1924), - [anon_sym_AMP_AMP] = ACTIONS(1924), - [anon_sym_PIPE_PIPE] = ACTIONS(1924), - [anon_sym_BQUOTE] = ACTIONS(1924), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1926), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1935), + [anon_sym_AMP_AMP] = ACTIONS(493), + [anon_sym_PIPE_PIPE] = ACTIONS(493), + [anon_sym_EQ_TILDE] = ACTIONS(495), + [anon_sym_EQ_EQ] = ACTIONS(495), + [anon_sym_EQ] = ACTIONS(497), + [anon_sym_PLUS_EQ] = ACTIONS(493), + [anon_sym_LT] = ACTIONS(497), + [anon_sym_GT] = ACTIONS(497), + [anon_sym_BANG_EQ] = ACTIONS(493), + [anon_sym_PLUS] = ACTIONS(497), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_DASH_EQ] = ACTIONS(493), + [anon_sym_LT_EQ] = ACTIONS(493), + [anon_sym_GT_EQ] = ACTIONS(493), + [anon_sym_PLUS_PLUS] = ACTIONS(499), + [anon_sym_DASH_DASH] = ACTIONS(499), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(493), }, [498] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [ts_builtin_sym_end] = ACTIONS(1924), - [anon_sym_SEMI] = ACTIONS(1926), - [anon_sym_PIPE] = ACTIONS(1926), - [anon_sym_RPAREN] = ACTIONS(1924), - [anon_sym_SEMI_SEMI] = ACTIONS(1924), - [anon_sym_PIPE_AMP] = ACTIONS(1924), - [anon_sym_AMP_AMP] = ACTIONS(1924), - [anon_sym_PIPE_PIPE] = ACTIONS(1924), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1926), + [sym_do_group] = STATE(965), + [anon_sym_do] = ACTIONS(525), + [sym_comment] = ACTIONS(55), }, [499] = { - [ts_builtin_sym_end] = ACTIONS(1928), - [anon_sym_SEMI] = ACTIONS(1930), - [anon_sym_PIPE] = ACTIONS(313), - [anon_sym_SEMI_SEMI] = ACTIONS(1928), - [anon_sym_PIPE_AMP] = ACTIONS(317), - [anon_sym_AMP_AMP] = ACTIONS(1928), - [anon_sym_PIPE_PIPE] = ACTIONS(1928), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1928), - [anon_sym_AMP] = ACTIONS(1930), + [sym_compound_statement] = STATE(967), + [anon_sym_LPAREN] = ACTIONS(1937), + [anon_sym_LBRACE] = ACTIONS(595), + [sym_comment] = ACTIONS(55), }, [500] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [ts_builtin_sym_end] = ACTIONS(1928), - [anon_sym_SEMI] = ACTIONS(1930), - [anon_sym_PIPE] = ACTIONS(313), - [anon_sym_SEMI_SEMI] = ACTIONS(1928), - [anon_sym_PIPE_AMP] = ACTIONS(317), - [anon_sym_AMP_AMP] = ACTIONS(1928), - [anon_sym_PIPE_PIPE] = ACTIONS(1928), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(1928), - [anon_sym_AMP] = ACTIONS(1930), + [anon_sym_AMP_AMP] = ACTIONS(681), + [anon_sym_PIPE_PIPE] = ACTIONS(681), + [anon_sym_RBRACK] = ACTIONS(1935), + [anon_sym_EQ_TILDE] = ACTIONS(683), + [anon_sym_EQ_EQ] = ACTIONS(683), + [anon_sym_EQ] = ACTIONS(685), + [anon_sym_PLUS_EQ] = ACTIONS(681), + [anon_sym_LT] = ACTIONS(685), + [anon_sym_GT] = ACTIONS(685), + [anon_sym_BANG_EQ] = ACTIONS(681), + [anon_sym_PLUS] = ACTIONS(685), + [anon_sym_DASH] = ACTIONS(685), + [anon_sym_DASH_EQ] = ACTIONS(681), + [anon_sym_LT_EQ] = ACTIONS(681), + [anon_sym_GT_EQ] = ACTIONS(681), + [anon_sym_PLUS_PLUS] = ACTIONS(687), + [anon_sym_DASH_DASH] = ACTIONS(687), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(681), }, [501] = { - [ts_builtin_sym_end] = ACTIONS(1932), - [anon_sym_SEMI] = ACTIONS(1934), - [anon_sym_esac] = ACTIONS(1932), - [anon_sym_PIPE] = ACTIONS(1934), - [anon_sym_RPAREN] = ACTIONS(1932), - [anon_sym_SEMI_SEMI] = ACTIONS(1932), - [anon_sym_PIPE_AMP] = ACTIONS(1932), - [anon_sym_AMP_AMP] = ACTIONS(1932), - [anon_sym_PIPE_PIPE] = ACTIONS(1932), - [anon_sym_BQUOTE] = ACTIONS(1932), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1932), - [anon_sym_AMP] = ACTIONS(1934), + [anon_sym_AMP_AMP] = ACTIONS(689), + [anon_sym_PIPE_PIPE] = ACTIONS(689), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1935), + [anon_sym_EQ_TILDE] = ACTIONS(691), + [anon_sym_EQ_EQ] = ACTIONS(691), + [anon_sym_EQ] = ACTIONS(693), + [anon_sym_PLUS_EQ] = ACTIONS(689), + [anon_sym_LT] = ACTIONS(693), + [anon_sym_GT] = ACTIONS(693), + [anon_sym_BANG_EQ] = ACTIONS(689), + [anon_sym_PLUS] = ACTIONS(693), + [anon_sym_DASH] = ACTIONS(693), + [anon_sym_DASH_EQ] = ACTIONS(689), + [anon_sym_LT_EQ] = ACTIONS(689), + [anon_sym_GT_EQ] = ACTIONS(689), + [anon_sym_PLUS_PLUS] = ACTIONS(499), + [anon_sym_DASH_DASH] = ACTIONS(499), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(689), }, [502] = { - [anon_sym_DOLLAR] = ACTIONS(1936), - [anon_sym_POUND] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1938), - [anon_sym_STAR] = ACTIONS(1940), - [anon_sym_AT] = ACTIONS(1940), - [anon_sym_QMARK] = ACTIONS(1940), - [anon_sym_0] = ACTIONS(1938), - [anon_sym__] = ACTIONS(1938), + [sym_variable_assignment] = STATE(692), + [sym_subscript] = STATE(277), + [sym_concatenation] = STATE(692), + [sym_string] = STATE(276), + [sym_simple_expansion] = STATE(276), + [sym_string_expansion] = STATE(276), + [sym_expansion] = STATE(276), + [sym_command_substitution] = STATE(276), + [sym_process_substitution] = STATE(276), + [aux_sym_declaration_command_repeat1] = STATE(692), + [sym_variable_name] = ACTIONS(505), + [anon_sym_SEMI] = ACTIONS(731), + [anon_sym_PIPE] = ACTIONS(731), + [anon_sym_SEMI_SEMI] = ACTIONS(729), + [anon_sym_PIPE_AMP] = ACTIONS(729), + [anon_sym_AMP_AMP] = ACTIONS(729), + [anon_sym_PIPE_PIPE] = ACTIONS(729), + [sym__special_characters] = ACTIONS(507), + [anon_sym_DQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR] = ACTIONS(207), + [sym_raw_string] = ACTIONS(509), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(729), + [anon_sym_LT_LPAREN] = ACTIONS(217), + [anon_sym_GT_LPAREN] = ACTIONS(217), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1330), + [sym_word] = ACTIONS(513), + [anon_sym_LF] = ACTIONS(729), + [anon_sym_AMP] = ACTIONS(731), }, [503] = { - [sym_subscript] = STATE(940), - [sym_variable_name] = ACTIONS(1942), - [anon_sym_BANG] = ACTIONS(1944), - [anon_sym_DOLLAR] = ACTIONS(1946), - [anon_sym_POUND] = ACTIONS(1944), - [anon_sym_DASH] = ACTIONS(1946), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1948), - [anon_sym_STAR] = ACTIONS(1950), - [anon_sym_AT] = ACTIONS(1950), - [anon_sym_QMARK] = ACTIONS(1950), - [anon_sym_0] = ACTIONS(1948), - [anon_sym__] = ACTIONS(1948), + [sym_concatenation] = STATE(694), + [sym_string] = STATE(280), + [sym_simple_expansion] = STATE(280), + [sym_string_expansion] = STATE(280), + [sym_expansion] = STATE(280), + [sym_command_substitution] = STATE(280), + [sym_process_substitution] = STATE(280), + [aux_sym_unset_command_repeat1] = STATE(694), + [anon_sym_SEMI] = ACTIONS(769), + [anon_sym_PIPE] = ACTIONS(769), + [anon_sym_SEMI_SEMI] = ACTIONS(767), + [anon_sym_PIPE_AMP] = ACTIONS(767), + [anon_sym_AMP_AMP] = ACTIONS(767), + [anon_sym_PIPE_PIPE] = ACTIONS(767), + [sym__special_characters] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(229), + [anon_sym_DOLLAR] = ACTIONS(231), + [sym_raw_string] = ACTIONS(517), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), + [anon_sym_BQUOTE] = ACTIONS(767), + [anon_sym_LT_LPAREN] = ACTIONS(241), + [anon_sym_GT_LPAREN] = ACTIONS(241), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1332), + [sym_word] = ACTIONS(521), + [anon_sym_LF] = ACTIONS(767), + [anon_sym_AMP] = ACTIONS(769), }, [504] = { - [sym_simple_expansion] = STATE(942), - [sym_expansion] = STATE(942), - [aux_sym_heredoc_body_repeat1] = STATE(942), - [sym__heredoc_body_middle] = ACTIONS(1952), - [sym__heredoc_body_end] = ACTIONS(1954), - [anon_sym_DOLLAR] = ACTIONS(915), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(917), - [sym_comment] = ACTIONS(53), + [anon_sym_RPAREN] = ACTIONS(1939), + [sym_comment] = ACTIONS(55), }, [505] = { - [sym_concatenation] = STATE(945), - [sym_string] = STATE(944), - [sym_simple_expansion] = STATE(944), - [sym_string_expansion] = STATE(944), - [sym_expansion] = STATE(944), - [sym_command_substitution] = STATE(944), - [sym_process_substitution] = STATE(944), - [sym__special_characters] = ACTIONS(1956), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(1958), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1958), + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(1925), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), }, [506] = { - [aux_sym_concatenation_repeat1] = STATE(138), - [sym__simple_heredoc_body] = ACTIONS(1960), - [sym__heredoc_body_beginning] = ACTIONS(1960), - [sym_file_descriptor] = ACTIONS(1960), - [sym__concat] = ACTIONS(249), - [ts_builtin_sym_end] = ACTIONS(1960), - [anon_sym_SEMI] = ACTIONS(1962), - [anon_sym_PIPE] = ACTIONS(1962), - [anon_sym_SEMI_SEMI] = ACTIONS(1960), - [anon_sym_PIPE_AMP] = ACTIONS(1960), - [anon_sym_AMP_AMP] = ACTIONS(1960), - [anon_sym_PIPE_PIPE] = ACTIONS(1960), - [anon_sym_EQ_TILDE] = ACTIONS(1962), - [anon_sym_EQ_EQ] = ACTIONS(1962), - [anon_sym_LT] = ACTIONS(1962), - [anon_sym_GT] = ACTIONS(1962), - [anon_sym_GT_GT] = ACTIONS(1960), - [anon_sym_AMP_GT] = ACTIONS(1962), - [anon_sym_AMP_GT_GT] = ACTIONS(1960), - [anon_sym_LT_AMP] = ACTIONS(1960), - [anon_sym_GT_AMP] = ACTIONS(1960), - [anon_sym_LT_LT] = ACTIONS(1962), - [anon_sym_LT_LT_DASH] = ACTIONS(1960), - [anon_sym_LT_LT_LT] = ACTIONS(1960), - [sym__special_characters] = ACTIONS(1960), - [anon_sym_DQUOTE] = ACTIONS(1960), - [anon_sym_DOLLAR] = ACTIONS(1962), - [sym_raw_string] = ACTIONS(1960), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1960), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), - [anon_sym_BQUOTE] = ACTIONS(1960), - [anon_sym_LT_LPAREN] = ACTIONS(1960), - [anon_sym_GT_LPAREN] = ACTIONS(1960), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1962), - [anon_sym_LF] = ACTIONS(1960), - [anon_sym_AMP] = ACTIONS(1962), + [sym_for_statement] = STATE(521), + [sym_c_style_for_statement] = STATE(521), + [sym_while_statement] = STATE(521), + [sym_if_statement] = STATE(521), + [sym_case_statement] = STATE(521), + [sym_function_definition] = STATE(521), + [sym_subshell] = STATE(521), + [sym_pipeline] = STATE(521), + [sym_list] = STATE(521), + [sym_negated_command] = STATE(521), + [sym_test_command] = STATE(521), + [sym_declaration_command] = STATE(521), + [sym_unset_command] = STATE(521), + [sym_command] = STATE(521), + [sym_command_name] = STATE(173), + [sym_variable_assignment] = STATE(969), + [sym_subscript] = STATE(66), + [sym_file_redirect] = STATE(176), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(60), + [sym_simple_expansion] = STATE(60), + [sym_string_expansion] = STATE(60), + [sym_expansion] = STATE(60), + [sym_command_substitution] = STATE(60), + [sym_process_substitution] = STATE(60), + [aux_sym_command_repeat1] = STATE(176), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(95), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(305), + [anon_sym_while] = ACTIONS(307), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(311), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(315), + [anon_sym_declare] = ACTIONS(317), + [anon_sym_typeset] = ACTIONS(317), + [anon_sym_export] = ACTIONS(317), + [anon_sym_readonly] = ACTIONS(317), + [anon_sym_local] = ACTIONS(317), + [anon_sym_unset] = ACTIONS(319), + [anon_sym_unsetenv] = ACTIONS(319), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(115), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(321), }, [507] = { - [aux_sym_concatenation_repeat1] = STATE(138), - [sym__simple_heredoc_body] = ACTIONS(1964), - [sym__heredoc_body_beginning] = ACTIONS(1964), - [sym_file_descriptor] = ACTIONS(1964), - [sym__concat] = ACTIONS(249), - [ts_builtin_sym_end] = ACTIONS(1964), - [anon_sym_SEMI] = ACTIONS(1966), - [anon_sym_PIPE] = ACTIONS(1966), - [anon_sym_SEMI_SEMI] = ACTIONS(1964), - [anon_sym_PIPE_AMP] = ACTIONS(1964), - [anon_sym_AMP_AMP] = ACTIONS(1964), - [anon_sym_PIPE_PIPE] = ACTIONS(1964), - [anon_sym_EQ_TILDE] = ACTIONS(1966), - [anon_sym_EQ_EQ] = ACTIONS(1966), - [anon_sym_LT] = ACTIONS(1966), - [anon_sym_GT] = ACTIONS(1966), - [anon_sym_GT_GT] = ACTIONS(1964), - [anon_sym_AMP_GT] = ACTIONS(1966), - [anon_sym_AMP_GT_GT] = ACTIONS(1964), - [anon_sym_LT_AMP] = ACTIONS(1964), - [anon_sym_GT_AMP] = ACTIONS(1964), - [anon_sym_LT_LT] = ACTIONS(1966), - [anon_sym_LT_LT_DASH] = ACTIONS(1964), - [anon_sym_LT_LT_LT] = ACTIONS(1964), - [sym__special_characters] = ACTIONS(1964), - [anon_sym_DQUOTE] = ACTIONS(1964), - [anon_sym_DOLLAR] = ACTIONS(1966), - [sym_raw_string] = ACTIONS(1964), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1964), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1964), - [anon_sym_LT_LPAREN] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1964), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1966), - [anon_sym_LF] = ACTIONS(1964), - [anon_sym_AMP] = ACTIONS(1966), - }, - [508] = { - [sym__simple_heredoc_body] = ACTIONS(1964), - [sym__heredoc_body_beginning] = ACTIONS(1964), - [sym_file_descriptor] = ACTIONS(1964), - [ts_builtin_sym_end] = ACTIONS(1964), - [anon_sym_SEMI] = ACTIONS(1966), - [anon_sym_PIPE] = ACTIONS(1966), - [anon_sym_RPAREN] = ACTIONS(1964), - [anon_sym_SEMI_SEMI] = ACTIONS(1964), - [anon_sym_PIPE_AMP] = ACTIONS(1964), - [anon_sym_AMP_AMP] = ACTIONS(1964), - [anon_sym_PIPE_PIPE] = ACTIONS(1964), - [anon_sym_EQ_TILDE] = ACTIONS(1966), - [anon_sym_EQ_EQ] = ACTIONS(1966), - [anon_sym_LT] = ACTIONS(1966), - [anon_sym_GT] = ACTIONS(1966), - [anon_sym_GT_GT] = ACTIONS(1964), - [anon_sym_AMP_GT] = ACTIONS(1966), - [anon_sym_AMP_GT_GT] = ACTIONS(1964), - [anon_sym_LT_AMP] = ACTIONS(1964), - [anon_sym_GT_AMP] = ACTIONS(1964), - [anon_sym_LT_LT] = ACTIONS(1966), - [anon_sym_LT_LT_DASH] = ACTIONS(1964), - [anon_sym_LT_LT_LT] = ACTIONS(1964), - [sym__special_characters] = ACTIONS(1964), - [anon_sym_DQUOTE] = ACTIONS(1964), - [anon_sym_DOLLAR] = ACTIONS(1966), - [sym_raw_string] = ACTIONS(1964), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1964), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1964), - [anon_sym_LT_LPAREN] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1964), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1966), - [anon_sym_LF] = ACTIONS(1964), - [anon_sym_AMP] = ACTIONS(1966), - }, - [509] = { - [aux_sym_concatenation_repeat1] = STATE(946), - [sym__simple_heredoc_body] = ACTIONS(731), - [sym__heredoc_body_beginning] = ACTIONS(731), - [sym_file_descriptor] = ACTIONS(731), - [sym__concat] = ACTIONS(249), - [ts_builtin_sym_end] = ACTIONS(731), - [anon_sym_SEMI] = ACTIONS(735), - [anon_sym_PIPE] = ACTIONS(735), - [anon_sym_SEMI_SEMI] = ACTIONS(731), - [anon_sym_PIPE_AMP] = ACTIONS(731), - [anon_sym_AMP_AMP] = ACTIONS(731), - [anon_sym_PIPE_PIPE] = ACTIONS(731), - [anon_sym_LT] = ACTIONS(735), - [anon_sym_GT] = ACTIONS(735), - [anon_sym_GT_GT] = ACTIONS(731), - [anon_sym_AMP_GT] = ACTIONS(735), - [anon_sym_AMP_GT_GT] = ACTIONS(731), - [anon_sym_LT_AMP] = ACTIONS(731), - [anon_sym_GT_AMP] = ACTIONS(731), - [anon_sym_LT_LT] = ACTIONS(735), - [anon_sym_LT_LT_DASH] = ACTIONS(731), - [anon_sym_LT_LT_LT] = ACTIONS(731), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(731), - [anon_sym_AMP] = ACTIONS(735), - }, - [510] = { - [aux_sym_concatenation_repeat1] = STATE(946), - [sym__simple_heredoc_body] = ACTIONS(749), - [sym__heredoc_body_beginning] = ACTIONS(749), - [sym_file_descriptor] = ACTIONS(749), - [sym__concat] = ACTIONS(249), - [ts_builtin_sym_end] = ACTIONS(749), - [anon_sym_SEMI] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(751), - [anon_sym_SEMI_SEMI] = ACTIONS(749), - [anon_sym_PIPE_AMP] = ACTIONS(749), - [anon_sym_AMP_AMP] = ACTIONS(749), - [anon_sym_PIPE_PIPE] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(751), - [anon_sym_GT] = ACTIONS(751), - [anon_sym_GT_GT] = ACTIONS(749), - [anon_sym_AMP_GT] = ACTIONS(751), - [anon_sym_AMP_GT_GT] = ACTIONS(749), - [anon_sym_LT_AMP] = ACTIONS(749), - [anon_sym_GT_AMP] = ACTIONS(749), - [anon_sym_LT_LT] = ACTIONS(751), - [anon_sym_LT_LT_DASH] = ACTIONS(749), - [anon_sym_LT_LT_LT] = ACTIONS(749), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(749), - [anon_sym_AMP] = ACTIONS(751), - }, - [511] = { - [sym__simple_heredoc_body] = ACTIONS(749), - [sym__heredoc_body_beginning] = ACTIONS(749), - [sym_file_descriptor] = ACTIONS(749), - [ts_builtin_sym_end] = ACTIONS(749), - [anon_sym_SEMI] = ACTIONS(751), - [anon_sym_esac] = ACTIONS(749), - [anon_sym_PIPE] = ACTIONS(751), - [anon_sym_RPAREN] = ACTIONS(749), - [anon_sym_SEMI_SEMI] = ACTIONS(749), - [anon_sym_PIPE_AMP] = ACTIONS(749), - [anon_sym_AMP_AMP] = ACTIONS(749), - [anon_sym_PIPE_PIPE] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(751), - [anon_sym_GT] = ACTIONS(751), - [anon_sym_GT_GT] = ACTIONS(749), - [anon_sym_AMP_GT] = ACTIONS(751), - [anon_sym_AMP_GT_GT] = ACTIONS(749), - [anon_sym_LT_AMP] = ACTIONS(749), - [anon_sym_GT_AMP] = ACTIONS(749), - [anon_sym_LT_LT] = ACTIONS(751), - [anon_sym_LT_LT_DASH] = ACTIONS(749), - [anon_sym_LT_LT_LT] = ACTIONS(749), - [anon_sym_BQUOTE] = ACTIONS(749), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(749), - [anon_sym_AMP] = ACTIONS(751), - }, - [512] = { - [sym__simple_heredoc_body] = ACTIONS(1968), - [sym__heredoc_body_beginning] = ACTIONS(1968), - [sym_file_descriptor] = ACTIONS(1968), - [ts_builtin_sym_end] = ACTIONS(1968), - [anon_sym_SEMI] = ACTIONS(1970), - [anon_sym_esac] = ACTIONS(1968), - [anon_sym_PIPE] = ACTIONS(1970), - [anon_sym_RPAREN] = ACTIONS(1968), - [anon_sym_SEMI_SEMI] = ACTIONS(1968), - [anon_sym_PIPE_AMP] = ACTIONS(1968), - [anon_sym_AMP_AMP] = ACTIONS(1968), - [anon_sym_PIPE_PIPE] = ACTIONS(1968), - [anon_sym_LT] = ACTIONS(1970), - [anon_sym_GT] = ACTIONS(1970), - [anon_sym_GT_GT] = ACTIONS(1968), - [anon_sym_AMP_GT] = ACTIONS(1970), - [anon_sym_AMP_GT_GT] = ACTIONS(1968), - [anon_sym_LT_AMP] = ACTIONS(1968), - [anon_sym_GT_AMP] = ACTIONS(1968), - [anon_sym_LT_LT] = ACTIONS(1970), - [anon_sym_LT_LT_DASH] = ACTIONS(1968), - [anon_sym_LT_LT_LT] = ACTIONS(1968), - [anon_sym_BQUOTE] = ACTIONS(1968), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1968), - [anon_sym_AMP] = ACTIONS(1970), - }, - [513] = { - [aux_sym_concatenation_repeat1] = STATE(946), - [sym__simple_heredoc_body] = ACTIONS(1972), - [sym__heredoc_body_beginning] = ACTIONS(1972), - [sym_file_descriptor] = ACTIONS(1972), - [sym__concat] = ACTIONS(249), - [ts_builtin_sym_end] = ACTIONS(1972), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_PIPE] = ACTIONS(1974), - [anon_sym_SEMI_SEMI] = ACTIONS(1972), - [anon_sym_PIPE_AMP] = ACTIONS(1972), - [anon_sym_AMP_AMP] = ACTIONS(1972), - [anon_sym_PIPE_PIPE] = ACTIONS(1972), - [anon_sym_LT] = ACTIONS(1974), - [anon_sym_GT] = ACTIONS(1974), - [anon_sym_GT_GT] = ACTIONS(1972), - [anon_sym_AMP_GT] = ACTIONS(1974), - [anon_sym_AMP_GT_GT] = ACTIONS(1972), - [anon_sym_LT_AMP] = ACTIONS(1972), - [anon_sym_GT_AMP] = ACTIONS(1972), - [anon_sym_LT_LT] = ACTIONS(1974), - [anon_sym_LT_LT_DASH] = ACTIONS(1972), - [anon_sym_LT_LT_LT] = ACTIONS(1972), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1972), - [anon_sym_AMP] = ACTIONS(1974), - }, - [514] = { - [aux_sym_concatenation_repeat1] = STATE(946), - [sym__simple_heredoc_body] = ACTIONS(1976), - [sym__heredoc_body_beginning] = ACTIONS(1976), - [sym_file_descriptor] = ACTIONS(1976), - [sym__concat] = ACTIONS(249), - [ts_builtin_sym_end] = ACTIONS(1976), - [anon_sym_SEMI] = ACTIONS(1978), - [anon_sym_PIPE] = ACTIONS(1978), - [anon_sym_SEMI_SEMI] = ACTIONS(1976), - [anon_sym_PIPE_AMP] = ACTIONS(1976), - [anon_sym_AMP_AMP] = ACTIONS(1976), - [anon_sym_PIPE_PIPE] = ACTIONS(1976), - [anon_sym_LT] = ACTIONS(1978), - [anon_sym_GT] = ACTIONS(1978), - [anon_sym_GT_GT] = ACTIONS(1976), - [anon_sym_AMP_GT] = ACTIONS(1978), - [anon_sym_AMP_GT_GT] = ACTIONS(1976), - [anon_sym_LT_AMP] = ACTIONS(1976), - [anon_sym_GT_AMP] = ACTIONS(1976), - [anon_sym_LT_LT] = ACTIONS(1978), - [anon_sym_LT_LT_DASH] = ACTIONS(1976), - [anon_sym_LT_LT_LT] = ACTIONS(1976), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1978), - }, - [515] = { - [sym__simple_heredoc_body] = ACTIONS(1976), - [sym__heredoc_body_beginning] = ACTIONS(1976), - [sym_file_descriptor] = ACTIONS(1976), - [ts_builtin_sym_end] = ACTIONS(1976), - [anon_sym_SEMI] = ACTIONS(1978), - [anon_sym_esac] = ACTIONS(1976), - [anon_sym_PIPE] = ACTIONS(1978), - [anon_sym_RPAREN] = ACTIONS(1976), - [anon_sym_SEMI_SEMI] = ACTIONS(1976), - [anon_sym_PIPE_AMP] = ACTIONS(1976), - [anon_sym_AMP_AMP] = ACTIONS(1976), - [anon_sym_PIPE_PIPE] = ACTIONS(1976), - [anon_sym_LT] = ACTIONS(1978), - [anon_sym_GT] = ACTIONS(1978), - [anon_sym_GT_GT] = ACTIONS(1976), - [anon_sym_AMP_GT] = ACTIONS(1978), - [anon_sym_AMP_GT_GT] = ACTIONS(1976), - [anon_sym_LT_AMP] = ACTIONS(1976), - [anon_sym_GT_AMP] = ACTIONS(1976), - [anon_sym_LT_LT] = ACTIONS(1978), - [anon_sym_LT_LT_DASH] = ACTIONS(1976), - [anon_sym_LT_LT_LT] = ACTIONS(1976), - [anon_sym_BQUOTE] = ACTIONS(1976), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1978), - }, - [516] = { - [ts_builtin_sym_end] = ACTIONS(1980), - [anon_sym_SEMI] = ACTIONS(1982), - [anon_sym_esac] = ACTIONS(1980), - [anon_sym_PIPE] = ACTIONS(1982), - [anon_sym_RPAREN] = ACTIONS(1980), - [anon_sym_SEMI_SEMI] = ACTIONS(1980), - [anon_sym_PIPE_AMP] = ACTIONS(1980), - [anon_sym_AMP_AMP] = ACTIONS(1980), - [anon_sym_PIPE_PIPE] = ACTIONS(1980), - [anon_sym_BQUOTE] = ACTIONS(1980), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1980), - [anon_sym_AMP] = ACTIONS(1982), - }, - [517] = { - [sym_file_redirect] = STATE(517), - [sym_heredoc_redirect] = STATE(517), - [sym_herestring_redirect] = STATE(517), - [aux_sym_while_statement_repeat1] = STATE(517), - [sym__simple_heredoc_body] = ACTIONS(1984), - [sym__heredoc_body_beginning] = ACTIONS(1984), - [sym_file_descriptor] = ACTIONS(1986), - [ts_builtin_sym_end] = ACTIONS(1984), - [anon_sym_SEMI] = ACTIONS(1989), - [anon_sym_PIPE] = ACTIONS(1989), - [anon_sym_SEMI_SEMI] = ACTIONS(1984), - [anon_sym_PIPE_AMP] = ACTIONS(1984), - [anon_sym_AMP_AMP] = ACTIONS(1984), - [anon_sym_PIPE_PIPE] = ACTIONS(1984), - [anon_sym_LT] = ACTIONS(1991), - [anon_sym_GT] = ACTIONS(1991), - [anon_sym_GT_GT] = ACTIONS(1994), - [anon_sym_AMP_GT] = ACTIONS(1991), - [anon_sym_AMP_GT_GT] = ACTIONS(1994), - [anon_sym_LT_AMP] = ACTIONS(1994), - [anon_sym_GT_AMP] = ACTIONS(1994), - [anon_sym_LT_LT] = ACTIONS(1997), - [anon_sym_LT_LT_DASH] = ACTIONS(2000), - [anon_sym_LT_LT_LT] = ACTIONS(2003), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1984), - [anon_sym_AMP] = ACTIONS(1989), - }, - [518] = { - [sym_file_redirect] = STATE(517), - [sym_heredoc_redirect] = STATE(517), - [sym_heredoc_body] = STATE(947), - [sym_herestring_redirect] = STATE(517), - [aux_sym_while_statement_repeat1] = STATE(517), - [sym__simple_heredoc_body] = ACTIONS(321), - [sym__heredoc_body_beginning] = ACTIONS(323), - [sym_file_descriptor] = ACTIONS(325), - [ts_builtin_sym_end] = ACTIONS(1980), - [anon_sym_SEMI] = ACTIONS(1982), - [anon_sym_PIPE] = ACTIONS(1982), - [anon_sym_SEMI_SEMI] = ACTIONS(1980), - [anon_sym_PIPE_AMP] = ACTIONS(1980), - [anon_sym_AMP_AMP] = ACTIONS(1980), - [anon_sym_PIPE_PIPE] = ACTIONS(1980), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), - [anon_sym_AMP_GT] = ACTIONS(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(335), - [anon_sym_GT_AMP] = ACTIONS(335), - [anon_sym_LT_LT] = ACTIONS(337), - [anon_sym_LT_LT_DASH] = ACTIONS(339), - [anon_sym_LT_LT_LT] = ACTIONS(341), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1980), - [anon_sym_AMP] = ACTIONS(1982), - }, - [519] = { - [sym_concatenation] = STATE(519), - [sym_string] = STATE(184), - [sym_simple_expansion] = STATE(184), - [sym_string_expansion] = STATE(184), - [sym_expansion] = STATE(184), - [sym_command_substitution] = STATE(184), - [sym_process_substitution] = STATE(184), - [aux_sym_command_repeat2] = STATE(519), - [sym__simple_heredoc_body] = ACTIONS(1964), - [sym__heredoc_body_beginning] = ACTIONS(1964), - [sym_file_descriptor] = ACTIONS(1964), - [ts_builtin_sym_end] = ACTIONS(1964), - [anon_sym_SEMI] = ACTIONS(1966), - [anon_sym_PIPE] = ACTIONS(1966), - [anon_sym_SEMI_SEMI] = ACTIONS(1964), - [anon_sym_PIPE_AMP] = ACTIONS(1964), - [anon_sym_AMP_AMP] = ACTIONS(1964), - [anon_sym_PIPE_PIPE] = ACTIONS(1964), - [anon_sym_EQ_TILDE] = ACTIONS(2006), - [anon_sym_EQ_EQ] = ACTIONS(2006), - [anon_sym_LT] = ACTIONS(1966), - [anon_sym_GT] = ACTIONS(1966), - [anon_sym_GT_GT] = ACTIONS(1964), - [anon_sym_AMP_GT] = ACTIONS(1966), - [anon_sym_AMP_GT_GT] = ACTIONS(1964), - [anon_sym_LT_AMP] = ACTIONS(1964), - [anon_sym_GT_AMP] = ACTIONS(1964), - [anon_sym_LT_LT] = ACTIONS(1966), - [anon_sym_LT_LT_DASH] = ACTIONS(1964), - [anon_sym_LT_LT_LT] = ACTIONS(1964), - [sym__special_characters] = ACTIONS(2009), - [anon_sym_DQUOTE] = ACTIONS(2012), - [anon_sym_DOLLAR] = ACTIONS(2015), - [sym_raw_string] = ACTIONS(2018), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2021), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2024), - [anon_sym_BQUOTE] = ACTIONS(2027), - [anon_sym_LT_LPAREN] = ACTIONS(2030), - [anon_sym_GT_LPAREN] = ACTIONS(2030), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2033), - [anon_sym_LF] = ACTIONS(1964), - [anon_sym_AMP] = ACTIONS(1966), - }, - [520] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [ts_builtin_sym_end] = ACTIONS(2036), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(901), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), - }, - [521] = { - [anon_sym_SEMI] = ACTIONS(2038), - [anon_sym_PIPE] = ACTIONS(445), - [anon_sym_SEMI_SEMI] = ACTIONS(2040), - [anon_sym_PIPE_AMP] = ACTIONS(449), - [anon_sym_AMP_AMP] = ACTIONS(451), - [anon_sym_PIPE_PIPE] = ACTIONS(451), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(2040), - [anon_sym_AMP] = ACTIONS(2038), - }, - [522] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(2038), - [anon_sym_PIPE] = ACTIONS(445), - [anon_sym_SEMI_SEMI] = ACTIONS(2040), - [anon_sym_PIPE_AMP] = ACTIONS(449), - [anon_sym_AMP_AMP] = ACTIONS(451), - [anon_sym_PIPE_PIPE] = ACTIONS(451), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(2040), - [anon_sym_AMP] = ACTIONS(2038), - }, - [523] = { - [sym_file_redirect] = STATE(949), - [sym_heredoc_redirect] = STATE(949), - [sym_heredoc_body] = STATE(947), - [sym_herestring_redirect] = STATE(949), - [sym_concatenation] = STATE(519), - [sym_string] = STATE(184), - [sym_simple_expansion] = STATE(184), - [sym_string_expansion] = STATE(184), - [sym_expansion] = STATE(184), - [sym_command_substitution] = STATE(184), - [sym_process_substitution] = STATE(184), - [aux_sym_while_statement_repeat1] = STATE(949), - [aux_sym_command_repeat2] = STATE(519), - [sym__simple_heredoc_body] = ACTIONS(321), - [sym__heredoc_body_beginning] = ACTIONS(323), - [sym_file_descriptor] = ACTIONS(325), - [ts_builtin_sym_end] = ACTIONS(1980), - [anon_sym_SEMI] = ACTIONS(1982), - [anon_sym_PIPE] = ACTIONS(1982), - [anon_sym_SEMI_SEMI] = ACTIONS(1980), - [anon_sym_PIPE_AMP] = ACTIONS(1980), - [anon_sym_AMP_AMP] = ACTIONS(1980), - [anon_sym_PIPE_PIPE] = ACTIONS(1980), - [anon_sym_EQ_TILDE] = ACTIONS(331), - [anon_sym_EQ_EQ] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), - [anon_sym_AMP_GT] = ACTIONS(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(335), - [anon_sym_GT_AMP] = ACTIONS(335), - [anon_sym_LT_LT] = ACTIONS(337), - [anon_sym_LT_LT_DASH] = ACTIONS(339), - [anon_sym_LT_LT_LT] = ACTIONS(341), - [sym__special_characters] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(345), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(347), - [anon_sym_LF] = ACTIONS(1980), - [anon_sym_AMP] = ACTIONS(1982), - }, - [524] = { - [sym_string] = STATE(710), - [sym_simple_expansion] = STATE(710), - [sym_string_expansion] = STATE(710), - [sym_expansion] = STATE(710), - [sym_command_substitution] = STATE(710), - [sym_process_substitution] = STATE(710), - [anon_sym_RBRACK] = ACTIONS(2042), - [sym__special_characters] = ACTIONS(2044), - [anon_sym_DQUOTE] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(141), - [sym_raw_string] = ACTIONS(1355), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(145), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(147), - [anon_sym_BQUOTE] = ACTIONS(149), - [anon_sym_LT_LPAREN] = ACTIONS(151), - [anon_sym_GT_LPAREN] = ACTIONS(151), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1355), - }, - [525] = { - [sym__concat] = ACTIONS(2046), - [anon_sym_EQ] = ACTIONS(2048), - [anon_sym_PLUS_EQ] = ACTIONS(2048), - [sym_comment] = ACTIONS(53), - }, - [526] = { - [aux_sym_concatenation_repeat1] = STATE(952), - [sym__concat] = ACTIONS(583), - [anon_sym_RBRACK] = ACTIONS(765), - [sym_comment] = ACTIONS(53), - }, - [527] = { - [sym_string] = STATE(710), - [sym_simple_expansion] = STATE(710), - [sym_string_expansion] = STATE(710), - [sym_expansion] = STATE(710), - [sym_command_substitution] = STATE(710), - [sym_process_substitution] = STATE(710), - [anon_sym_RBRACK] = ACTIONS(2050), - [sym__special_characters] = ACTIONS(2044), - [anon_sym_DQUOTE] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(141), - [sym_raw_string] = ACTIONS(1355), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(145), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(147), - [anon_sym_BQUOTE] = ACTIONS(149), - [anon_sym_LT_LPAREN] = ACTIONS(151), - [anon_sym_GT_LPAREN] = ACTIONS(151), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1355), - }, - [528] = { - [sym__concat] = ACTIONS(2052), - [anon_sym_EQ] = ACTIONS(2054), - [anon_sym_PLUS_EQ] = ACTIONS(2054), - [sym_comment] = ACTIONS(53), - }, - [529] = { - [anon_sym_RBRACK] = ACTIONS(2050), - [sym_comment] = ACTIONS(53), - }, - [530] = { - [sym_file_descriptor] = ACTIONS(2056), - [sym_variable_name] = ACTIONS(2056), - [ts_builtin_sym_end] = ACTIONS(2056), - [anon_sym_SEMI] = ACTIONS(2058), - [anon_sym_PIPE] = ACTIONS(2058), - [anon_sym_RPAREN] = ACTIONS(2056), - [anon_sym_SEMI_SEMI] = ACTIONS(2056), - [anon_sym_PIPE_AMP] = ACTIONS(2056), - [anon_sym_AMP_AMP] = ACTIONS(2056), - [anon_sym_PIPE_PIPE] = ACTIONS(2056), - [anon_sym_LT] = ACTIONS(2058), - [anon_sym_GT] = ACTIONS(2058), - [anon_sym_GT_GT] = ACTIONS(2056), - [anon_sym_AMP_GT] = ACTIONS(2058), - [anon_sym_AMP_GT_GT] = ACTIONS(2056), - [anon_sym_LT_AMP] = ACTIONS(2056), - [anon_sym_GT_AMP] = ACTIONS(2056), - [sym__special_characters] = ACTIONS(2056), - [anon_sym_DQUOTE] = ACTIONS(2056), - [anon_sym_DOLLAR] = ACTIONS(2058), - [sym_raw_string] = ACTIONS(2056), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2056), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2056), - [anon_sym_BQUOTE] = ACTIONS(2056), - [anon_sym_LT_LPAREN] = ACTIONS(2056), - [anon_sym_GT_LPAREN] = ACTIONS(2056), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2058), - [anon_sym_LF] = ACTIONS(2056), - [anon_sym_AMP] = ACTIONS(2058), - }, - [531] = { - [aux_sym_concatenation_repeat1] = STATE(956), - [sym__concat] = ACTIONS(2060), - [anon_sym_RPAREN] = ACTIONS(2062), - [sym__special_characters] = ACTIONS(2062), - [anon_sym_DQUOTE] = ACTIONS(2062), - [anon_sym_DOLLAR] = ACTIONS(2064), - [sym_raw_string] = ACTIONS(2062), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2062), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2062), - [anon_sym_BQUOTE] = ACTIONS(2062), - [anon_sym_LT_LPAREN] = ACTIONS(2062), - [anon_sym_GT_LPAREN] = ACTIONS(2062), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2062), - }, - [532] = { - [sym_simple_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [sym_command_substitution] = STATE(141), - [aux_sym_string_repeat1] = STATE(959), - [anon_sym_DQUOTE] = ACTIONS(2066), - [anon_sym_DOLLAR] = ACTIONS(2068), - [sym__string_content] = ACTIONS(257), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(261), - [anon_sym_BQUOTE] = ACTIONS(263), - [sym_comment] = ACTIONS(265), - }, - [533] = { - [sym_string] = STATE(961), - [anon_sym_DQUOTE] = ACTIONS(1079), - [anon_sym_DOLLAR] = ACTIONS(2070), - [sym_raw_string] = ACTIONS(2072), - [anon_sym_POUND] = ACTIONS(2070), - [anon_sym_DASH] = ACTIONS(2070), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2074), - [anon_sym_STAR] = ACTIONS(2076), - [anon_sym_AT] = ACTIONS(2076), - [anon_sym_QMARK] = ACTIONS(2076), - [anon_sym_0] = ACTIONS(2074), - [anon_sym__] = ACTIONS(2074), - }, - [534] = { - [aux_sym_concatenation_repeat1] = STATE(956), - [sym__concat] = ACTIONS(2060), - [anon_sym_RPAREN] = ACTIONS(2078), - [sym__special_characters] = ACTIONS(2078), - [anon_sym_DQUOTE] = ACTIONS(2078), - [anon_sym_DOLLAR] = ACTIONS(2080), - [sym_raw_string] = ACTIONS(2078), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2078), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2078), - [anon_sym_BQUOTE] = ACTIONS(2078), - [anon_sym_LT_LPAREN] = ACTIONS(2078), - [anon_sym_GT_LPAREN] = ACTIONS(2078), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2078), - }, - [535] = { - [sym_subscript] = STATE(966), - [sym_variable_name] = ACTIONS(2082), - [anon_sym_BANG] = ACTIONS(2084), - [anon_sym_DOLLAR] = ACTIONS(2086), - [anon_sym_POUND] = ACTIONS(2084), - [anon_sym_DASH] = ACTIONS(2086), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2088), - [anon_sym_STAR] = ACTIONS(2090), - [anon_sym_AT] = ACTIONS(2090), - [anon_sym_QMARK] = ACTIONS(2090), - [anon_sym_0] = ACTIONS(2088), - [anon_sym__] = ACTIONS(2088), - }, - [536] = { - [sym__terminated_statement] = STATE(969), - [sym_for_statement] = STATE(967), - [sym_c_style_for_statement] = STATE(967), - [sym_while_statement] = STATE(967), - [sym_if_statement] = STATE(967), - [sym_case_statement] = STATE(967), - [sym_function_definition] = STATE(967), - [sym_subshell] = STATE(967), - [sym_pipeline] = STATE(967), - [sym_list] = STATE(967), - [sym_negated_command] = STATE(967), - [sym_test_command] = STATE(967), - [sym_declaration_command] = STATE(967), - [sym_unset_command] = STATE(967), - [sym_command] = STATE(967), - [sym_command_name] = STATE(78), - [sym_variable_assignment] = STATE(968), - [sym_subscript] = STATE(80), - [sym_file_redirect] = STATE(82), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(75), - [sym_simple_expansion] = STATE(75), - [sym_string_expansion] = STATE(75), - [sym_expansion] = STATE(75), - [sym_command_substitution] = STATE(75), - [sym_process_substitution] = STATE(75), - [aux_sym__statements_repeat1] = STATE(969), - [aux_sym_command_repeat1] = STATE(82), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(111), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(119), - [anon_sym_declare] = ACTIONS(121), - [anon_sym_typeset] = ACTIONS(121), - [anon_sym_export] = ACTIONS(121), - [anon_sym_readonly] = ACTIONS(121), - [anon_sym_local] = ACTIONS(121), - [anon_sym_unset] = ACTIONS(123), - [anon_sym_unsetenv] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), - }, - [537] = { - [sym__terminated_statement] = STATE(972), [sym_for_statement] = STATE(970), [sym_c_style_for_statement] = STATE(970), [sym_while_statement] = STATE(970), @@ -23569,297 +23064,1542 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(970), [sym_unset_command] = STATE(970), [sym_command] = STATE(970), - [sym_command_name] = STATE(165), + [sym_command_name] = STATE(173), [sym_variable_assignment] = STATE(971), - [sym_subscript] = STATE(53), - [sym_file_redirect] = STATE(168), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(47), - [sym_simple_expansion] = STATE(47), - [sym_string_expansion] = STATE(47), - [sym_expansion] = STATE(47), - [sym_command_substitution] = STATE(47), - [sym_process_substitution] = STATE(47), - [aux_sym__statements_repeat1] = STATE(972), - [aux_sym_command_repeat1] = STATE(168), + [sym_subscript] = STATE(66), + [sym_file_redirect] = STATE(176), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(60), + [sym_simple_expansion] = STATE(60), + [sym_string_expansion] = STATE(60), + [sym_expansion] = STATE(60), + [sym_command_substitution] = STATE(60), + [sym_process_substitution] = STATE(60), + [aux_sym_command_repeat1] = STATE(176), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(69), + [sym_variable_name] = ACTIONS(95), [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(289), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(291), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(293), - [anon_sym_LBRACK] = ACTIONS(295), - [anon_sym_LBRACK_LBRACK] = ACTIONS(297), - [anon_sym_declare] = ACTIONS(299), - [anon_sym_typeset] = ACTIONS(299), - [anon_sym_export] = ACTIONS(299), - [anon_sym_readonly] = ACTIONS(299), - [anon_sym_local] = ACTIONS(299), - [anon_sym_unset] = ACTIONS(301), - [anon_sym_unsetenv] = ACTIONS(301), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(87), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(303), + [anon_sym_LPAREN_LPAREN] = ACTIONS(305), + [anon_sym_while] = ACTIONS(307), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(311), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(315), + [anon_sym_declare] = ACTIONS(317), + [anon_sym_typeset] = ACTIONS(317), + [anon_sym_export] = ACTIONS(317), + [anon_sym_readonly] = ACTIONS(317), + [anon_sym_local] = ACTIONS(317), + [anon_sym_unset] = ACTIONS(319), + [anon_sym_unsetenv] = ACTIONS(319), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(115), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(321), + }, + [508] = { + [anon_sym_LT] = ACTIONS(1941), + [anon_sym_GT] = ACTIONS(1941), + [anon_sym_GT_GT] = ACTIONS(1943), + [anon_sym_AMP_GT] = ACTIONS(1941), + [anon_sym_AMP_GT_GT] = ACTIONS(1943), + [anon_sym_LT_AMP] = ACTIONS(1943), + [anon_sym_GT_AMP] = ACTIONS(1943), + [sym_comment] = ACTIONS(55), + }, + [509] = { + [sym_concatenation] = STATE(535), + [sym_string] = STATE(974), + [sym_simple_expansion] = STATE(974), + [sym_string_expansion] = STATE(974), + [sym_expansion] = STATE(974), + [sym_command_substitution] = STATE(974), + [sym_process_substitution] = STATE(974), + [sym__special_characters] = ACTIONS(1945), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(1947), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1947), + }, + [510] = { + [sym_concatenation] = STATE(539), + [sym_string] = STATE(976), + [sym_simple_expansion] = STATE(976), + [sym_string_expansion] = STATE(976), + [sym_expansion] = STATE(976), + [sym_command_substitution] = STATE(976), + [sym_process_substitution] = STATE(976), + [sym__special_characters] = ACTIONS(1949), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(1951), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1951), + }, + [511] = { + [sym_file_redirect] = STATE(977), + [sym_heredoc_redirect] = STATE(977), + [sym_heredoc_body] = STATE(540), + [sym_herestring_redirect] = STATE(977), + [aux_sym_while_statement_repeat1] = STATE(977), + [sym__simple_heredoc_body] = ACTIONS(339), + [sym__heredoc_body_beginning] = ACTIONS(341), + [sym_file_descriptor] = ACTIONS(927), + [anon_sym_SEMI] = ACTIONS(991), + [anon_sym_PIPE] = ACTIONS(991), + [anon_sym_SEMI_SEMI] = ACTIONS(989), + [anon_sym_PIPE_AMP] = ACTIONS(989), + [anon_sym_AMP_AMP] = ACTIONS(989), + [anon_sym_PIPE_PIPE] = ACTIONS(989), + [anon_sym_LT] = ACTIONS(929), + [anon_sym_GT] = ACTIONS(929), + [anon_sym_GT_GT] = ACTIONS(931), + [anon_sym_AMP_GT] = ACTIONS(929), + [anon_sym_AMP_GT_GT] = ACTIONS(931), + [anon_sym_LT_AMP] = ACTIONS(931), + [anon_sym_GT_AMP] = ACTIONS(931), + [anon_sym_LT_LT] = ACTIONS(355), + [anon_sym_LT_LT_DASH] = ACTIONS(357), + [anon_sym_LT_LT_LT] = ACTIONS(933), + [anon_sym_BQUOTE] = ACTIONS(989), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(991), + }, + [512] = { + [sym_file_redirect] = STATE(978), + [sym_heredoc_redirect] = STATE(978), + [sym_heredoc_body] = STATE(540), + [sym_herestring_redirect] = STATE(978), + [sym_concatenation] = STATE(712), + [sym_string] = STATE(294), + [sym_simple_expansion] = STATE(294), + [sym_string_expansion] = STATE(294), + [sym_expansion] = STATE(294), + [sym_command_substitution] = STATE(294), + [sym_process_substitution] = STATE(294), + [aux_sym_while_statement_repeat1] = STATE(978), + [aux_sym_command_repeat2] = STATE(712), + [sym__simple_heredoc_body] = ACTIONS(339), + [sym__heredoc_body_beginning] = ACTIONS(341), + [sym_file_descriptor] = ACTIONS(927), + [anon_sym_SEMI] = ACTIONS(991), + [anon_sym_PIPE] = ACTIONS(991), + [anon_sym_SEMI_SEMI] = ACTIONS(989), + [anon_sym_PIPE_AMP] = ACTIONS(989), + [anon_sym_AMP_AMP] = ACTIONS(989), + [anon_sym_PIPE_PIPE] = ACTIONS(989), + [anon_sym_EQ_TILDE] = ACTIONS(539), + [anon_sym_EQ_EQ] = ACTIONS(539), + [anon_sym_LT] = ACTIONS(929), + [anon_sym_GT] = ACTIONS(929), + [anon_sym_GT_GT] = ACTIONS(931), + [anon_sym_AMP_GT] = ACTIONS(929), + [anon_sym_AMP_GT_GT] = ACTIONS(931), + [anon_sym_LT_AMP] = ACTIONS(931), + [anon_sym_GT_AMP] = ACTIONS(931), + [anon_sym_LT_LT] = ACTIONS(355), + [anon_sym_LT_LT_DASH] = ACTIONS(357), + [anon_sym_LT_LT_LT] = ACTIONS(933), + [sym__special_characters] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(549), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(989), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(551), + [anon_sym_LF] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(991), + }, + [513] = { + [anon_sym_SEMI] = ACTIONS(1953), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_SEMI_SEMI] = ACTIONS(1955), + [anon_sym_PIPE_AMP] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_BQUOTE] = ACTIONS(1925), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1955), + [anon_sym_AMP] = ACTIONS(1953), + }, + [514] = { + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(1953), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_SEMI_SEMI] = ACTIONS(1955), + [anon_sym_PIPE_AMP] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(1925), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(1955), + [anon_sym_AMP] = ACTIONS(1953), + }, + [515] = { + [sym_file_redirect] = STATE(978), + [sym_heredoc_redirect] = STATE(978), + [sym_heredoc_body] = STATE(540), + [sym_herestring_redirect] = STATE(978), + [sym_concatenation] = STATE(980), + [sym_string] = STATE(294), + [sym_simple_expansion] = STATE(294), + [sym_string_expansion] = STATE(294), + [sym_expansion] = STATE(294), + [sym_command_substitution] = STATE(294), + [sym_process_substitution] = STATE(294), + [aux_sym_while_statement_repeat1] = STATE(978), + [aux_sym_command_repeat2] = STATE(980), + [sym__simple_heredoc_body] = ACTIONS(339), + [sym__heredoc_body_beginning] = ACTIONS(341), + [sym_file_descriptor] = ACTIONS(927), + [anon_sym_SEMI] = ACTIONS(991), + [anon_sym_PIPE] = ACTIONS(991), + [anon_sym_SEMI_SEMI] = ACTIONS(989), + [anon_sym_PIPE_AMP] = ACTIONS(989), + [anon_sym_AMP_AMP] = ACTIONS(989), + [anon_sym_PIPE_PIPE] = ACTIONS(989), + [anon_sym_EQ_TILDE] = ACTIONS(539), + [anon_sym_EQ_EQ] = ACTIONS(539), + [anon_sym_LT] = ACTIONS(929), + [anon_sym_GT] = ACTIONS(929), + [anon_sym_GT_GT] = ACTIONS(931), + [anon_sym_AMP_GT] = ACTIONS(929), + [anon_sym_AMP_GT_GT] = ACTIONS(931), + [anon_sym_LT_AMP] = ACTIONS(931), + [anon_sym_GT_AMP] = ACTIONS(931), + [anon_sym_LT_LT] = ACTIONS(355), + [anon_sym_LT_LT_DASH] = ACTIONS(357), + [anon_sym_LT_LT_LT] = ACTIONS(933), + [sym__special_characters] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(549), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(989), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(551), + [anon_sym_LF] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(991), + }, + [516] = { + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(1957), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), + }, + [517] = { + [sym__simple_heredoc_body] = ACTIONS(1959), + [sym__heredoc_body_beginning] = ACTIONS(1959), + [sym_file_descriptor] = ACTIONS(1959), + [sym__concat] = ACTIONS(1959), + [ts_builtin_sym_end] = ACTIONS(1959), + [anon_sym_SEMI] = ACTIONS(1961), + [anon_sym_PIPE] = ACTIONS(1961), + [anon_sym_RPAREN] = ACTIONS(1959), + [anon_sym_SEMI_SEMI] = ACTIONS(1959), + [anon_sym_PIPE_AMP] = ACTIONS(1959), + [anon_sym_AMP_AMP] = ACTIONS(1959), + [anon_sym_PIPE_PIPE] = ACTIONS(1959), + [anon_sym_EQ_TILDE] = ACTIONS(1961), + [anon_sym_EQ_EQ] = ACTIONS(1961), + [anon_sym_LT] = ACTIONS(1961), + [anon_sym_GT] = ACTIONS(1961), + [anon_sym_GT_GT] = ACTIONS(1959), + [anon_sym_AMP_GT] = ACTIONS(1961), + [anon_sym_AMP_GT_GT] = ACTIONS(1959), + [anon_sym_LT_AMP] = ACTIONS(1959), + [anon_sym_GT_AMP] = ACTIONS(1959), + [anon_sym_LT_LT] = ACTIONS(1961), + [anon_sym_LT_LT_DASH] = ACTIONS(1959), + [anon_sym_LT_LT_LT] = ACTIONS(1959), + [sym__special_characters] = ACTIONS(1959), + [anon_sym_DQUOTE] = ACTIONS(1959), + [anon_sym_DOLLAR] = ACTIONS(1961), + [sym_raw_string] = ACTIONS(1959), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1959), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1959), + [anon_sym_BQUOTE] = ACTIONS(1959), + [anon_sym_LT_LPAREN] = ACTIONS(1959), + [anon_sym_GT_LPAREN] = ACTIONS(1959), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1961), + [anon_sym_LF] = ACTIONS(1959), + [anon_sym_AMP] = ACTIONS(1961), + }, + [518] = { + [anon_sym_SEMI] = ACTIONS(1963), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(1957), + [anon_sym_SEMI_SEMI] = ACTIONS(1965), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1965), + [anon_sym_AMP] = ACTIONS(1963), + }, + [519] = { + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(1963), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(1957), + [anon_sym_SEMI_SEMI] = ACTIONS(1965), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(1965), + [anon_sym_AMP] = ACTIONS(1963), + }, + [520] = { + [sym_compound_statement] = STATE(983), + [anon_sym_LBRACE] = ACTIONS(595), + [sym_comment] = ACTIONS(55), + }, + [521] = { + [ts_builtin_sym_end] = ACTIONS(1967), + [anon_sym_SEMI] = ACTIONS(1969), + [anon_sym_esac] = ACTIONS(1967), + [anon_sym_PIPE] = ACTIONS(1969), + [anon_sym_RPAREN] = ACTIONS(1967), + [anon_sym_SEMI_SEMI] = ACTIONS(1967), + [anon_sym_PIPE_AMP] = ACTIONS(1967), + [anon_sym_AMP_AMP] = ACTIONS(1967), + [anon_sym_PIPE_PIPE] = ACTIONS(1967), + [anon_sym_BQUOTE] = ACTIONS(1967), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1967), + [anon_sym_AMP] = ACTIONS(1969), + }, + [522] = { + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [ts_builtin_sym_end] = ACTIONS(1967), + [anon_sym_SEMI] = ACTIONS(1969), + [anon_sym_PIPE] = ACTIONS(1969), + [anon_sym_RPAREN] = ACTIONS(1967), + [anon_sym_SEMI_SEMI] = ACTIONS(1967), + [anon_sym_PIPE_AMP] = ACTIONS(1967), + [anon_sym_AMP_AMP] = ACTIONS(1967), + [anon_sym_PIPE_PIPE] = ACTIONS(1967), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(1967), + [anon_sym_AMP] = ACTIONS(1969), + }, + [523] = { + [ts_builtin_sym_end] = ACTIONS(1971), + [anon_sym_SEMI] = ACTIONS(1973), + [anon_sym_PIPE] = ACTIONS(331), + [anon_sym_SEMI_SEMI] = ACTIONS(1971), + [anon_sym_PIPE_AMP] = ACTIONS(335), + [anon_sym_AMP_AMP] = ACTIONS(1971), + [anon_sym_PIPE_PIPE] = ACTIONS(1971), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1971), + [anon_sym_AMP] = ACTIONS(1973), + }, + [524] = { + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [ts_builtin_sym_end] = ACTIONS(1971), + [anon_sym_SEMI] = ACTIONS(1973), + [anon_sym_PIPE] = ACTIONS(331), + [anon_sym_SEMI_SEMI] = ACTIONS(1971), + [anon_sym_PIPE_AMP] = ACTIONS(335), + [anon_sym_AMP_AMP] = ACTIONS(1971), + [anon_sym_PIPE_PIPE] = ACTIONS(1971), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(1971), + [anon_sym_AMP] = ACTIONS(1973), + }, + [525] = { + [ts_builtin_sym_end] = ACTIONS(1975), + [anon_sym_SEMI] = ACTIONS(1977), + [anon_sym_esac] = ACTIONS(1975), + [anon_sym_PIPE] = ACTIONS(1977), + [anon_sym_RPAREN] = ACTIONS(1975), + [anon_sym_SEMI_SEMI] = ACTIONS(1975), + [anon_sym_PIPE_AMP] = ACTIONS(1975), + [anon_sym_AMP_AMP] = ACTIONS(1975), + [anon_sym_PIPE_PIPE] = ACTIONS(1975), + [anon_sym_BQUOTE] = ACTIONS(1975), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1975), + [anon_sym_AMP] = ACTIONS(1977), + }, + [526] = { + [anon_sym_DASH] = ACTIONS(1979), + [anon_sym_DOLLAR] = ACTIONS(1979), + [anon_sym_POUND] = ACTIONS(1979), + [sym_comment] = ACTIONS(281), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1981), + [anon_sym_STAR] = ACTIONS(1983), + [anon_sym_AT] = ACTIONS(1983), + [anon_sym_QMARK] = ACTIONS(1983), + [anon_sym_0] = ACTIONS(1981), + [anon_sym__] = ACTIONS(1981), + }, + [527] = { + [sym_subscript] = STATE(989), + [sym_variable_name] = ACTIONS(1985), + [anon_sym_BANG] = ACTIONS(1987), + [anon_sym_DASH] = ACTIONS(1989), + [anon_sym_DOLLAR] = ACTIONS(1989), + [anon_sym_POUND] = ACTIONS(1987), + [sym_comment] = ACTIONS(281), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1991), + [anon_sym_STAR] = ACTIONS(1993), + [anon_sym_AT] = ACTIONS(1993), + [anon_sym_QMARK] = ACTIONS(1993), + [anon_sym_0] = ACTIONS(1991), + [anon_sym__] = ACTIONS(1991), + }, + [528] = { + [sym_simple_expansion] = STATE(991), + [sym_expansion] = STATE(991), + [aux_sym_heredoc_body_repeat1] = STATE(991), + [sym__heredoc_body_middle] = ACTIONS(1995), + [sym__heredoc_body_end] = ACTIONS(1997), + [anon_sym_DOLLAR] = ACTIONS(957), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(959), + [sym_comment] = ACTIONS(55), + }, + [529] = { + [sym_concatenation] = STATE(994), + [sym_string] = STATE(993), + [sym_simple_expansion] = STATE(993), + [sym_string_expansion] = STATE(993), + [sym_expansion] = STATE(993), + [sym_command_substitution] = STATE(993), + [sym_process_substitution] = STATE(993), + [sym__special_characters] = ACTIONS(1999), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(2001), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(2001), + }, + [530] = { + [sym__simple_heredoc_body] = ACTIONS(2003), + [sym__heredoc_body_beginning] = ACTIONS(2003), + [sym_file_descriptor] = ACTIONS(2003), + [ts_builtin_sym_end] = ACTIONS(2003), + [anon_sym_SEMI] = ACTIONS(2005), + [anon_sym_PIPE] = ACTIONS(2005), + [anon_sym_RPAREN] = ACTIONS(2003), + [anon_sym_SEMI_SEMI] = ACTIONS(2003), + [anon_sym_PIPE_AMP] = ACTIONS(2003), + [anon_sym_AMP_AMP] = ACTIONS(2003), + [anon_sym_PIPE_PIPE] = ACTIONS(2003), + [anon_sym_EQ_TILDE] = ACTIONS(2005), + [anon_sym_EQ_EQ] = ACTIONS(2005), + [anon_sym_LT] = ACTIONS(2005), + [anon_sym_GT] = ACTIONS(2005), + [anon_sym_GT_GT] = ACTIONS(2003), + [anon_sym_AMP_GT] = ACTIONS(2005), + [anon_sym_AMP_GT_GT] = ACTIONS(2003), + [anon_sym_LT_AMP] = ACTIONS(2003), + [anon_sym_GT_AMP] = ACTIONS(2003), + [anon_sym_LT_LT] = ACTIONS(2005), + [anon_sym_LT_LT_DASH] = ACTIONS(2003), + [anon_sym_LT_LT_LT] = ACTIONS(2003), + [sym__special_characters] = ACTIONS(2003), + [anon_sym_DQUOTE] = ACTIONS(2003), + [anon_sym_DOLLAR] = ACTIONS(2005), + [sym_raw_string] = ACTIONS(2003), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2003), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2003), + [anon_sym_BQUOTE] = ACTIONS(2003), + [anon_sym_LT_LPAREN] = ACTIONS(2003), + [anon_sym_GT_LPAREN] = ACTIONS(2003), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(2005), + [anon_sym_LF] = ACTIONS(2003), + [anon_sym_AMP] = ACTIONS(2005), + }, + [531] = { + [aux_sym_concatenation_repeat1] = STATE(145), + [sym__simple_heredoc_body] = ACTIONS(2007), + [sym__heredoc_body_beginning] = ACTIONS(2007), + [sym_file_descriptor] = ACTIONS(2007), + [sym__concat] = ACTIONS(265), + [ts_builtin_sym_end] = ACTIONS(2007), + [anon_sym_SEMI] = ACTIONS(2009), + [anon_sym_PIPE] = ACTIONS(2009), + [anon_sym_SEMI_SEMI] = ACTIONS(2007), + [anon_sym_PIPE_AMP] = ACTIONS(2007), + [anon_sym_AMP_AMP] = ACTIONS(2007), + [anon_sym_PIPE_PIPE] = ACTIONS(2007), + [anon_sym_EQ_TILDE] = ACTIONS(2009), + [anon_sym_EQ_EQ] = ACTIONS(2009), + [anon_sym_LT] = ACTIONS(2009), + [anon_sym_GT] = ACTIONS(2009), + [anon_sym_GT_GT] = ACTIONS(2007), + [anon_sym_AMP_GT] = ACTIONS(2009), + [anon_sym_AMP_GT_GT] = ACTIONS(2007), + [anon_sym_LT_AMP] = ACTIONS(2007), + [anon_sym_GT_AMP] = ACTIONS(2007), + [anon_sym_LT_LT] = ACTIONS(2009), + [anon_sym_LT_LT_DASH] = ACTIONS(2007), + [anon_sym_LT_LT_LT] = ACTIONS(2007), + [sym__special_characters] = ACTIONS(2007), + [anon_sym_DQUOTE] = ACTIONS(2007), + [anon_sym_DOLLAR] = ACTIONS(2009), + [sym_raw_string] = ACTIONS(2007), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2007), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2007), + [anon_sym_BQUOTE] = ACTIONS(2007), + [anon_sym_LT_LPAREN] = ACTIONS(2007), + [anon_sym_GT_LPAREN] = ACTIONS(2007), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(2009), + [anon_sym_LF] = ACTIONS(2007), + [anon_sym_AMP] = ACTIONS(2009), + }, + [532] = { + [aux_sym_concatenation_repeat1] = STATE(145), + [sym__simple_heredoc_body] = ACTIONS(2003), + [sym__heredoc_body_beginning] = ACTIONS(2003), + [sym_file_descriptor] = ACTIONS(2003), + [sym__concat] = ACTIONS(265), + [ts_builtin_sym_end] = ACTIONS(2003), + [anon_sym_SEMI] = ACTIONS(2005), + [anon_sym_PIPE] = ACTIONS(2005), + [anon_sym_SEMI_SEMI] = ACTIONS(2003), + [anon_sym_PIPE_AMP] = ACTIONS(2003), + [anon_sym_AMP_AMP] = ACTIONS(2003), + [anon_sym_PIPE_PIPE] = ACTIONS(2003), + [anon_sym_EQ_TILDE] = ACTIONS(2005), + [anon_sym_EQ_EQ] = ACTIONS(2005), + [anon_sym_LT] = ACTIONS(2005), + [anon_sym_GT] = ACTIONS(2005), + [anon_sym_GT_GT] = ACTIONS(2003), + [anon_sym_AMP_GT] = ACTIONS(2005), + [anon_sym_AMP_GT_GT] = ACTIONS(2003), + [anon_sym_LT_AMP] = ACTIONS(2003), + [anon_sym_GT_AMP] = ACTIONS(2003), + [anon_sym_LT_LT] = ACTIONS(2005), + [anon_sym_LT_LT_DASH] = ACTIONS(2003), + [anon_sym_LT_LT_LT] = ACTIONS(2003), + [sym__special_characters] = ACTIONS(2003), + [anon_sym_DQUOTE] = ACTIONS(2003), + [anon_sym_DOLLAR] = ACTIONS(2005), + [sym_raw_string] = ACTIONS(2003), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2003), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2003), + [anon_sym_BQUOTE] = ACTIONS(2003), + [anon_sym_LT_LPAREN] = ACTIONS(2003), + [anon_sym_GT_LPAREN] = ACTIONS(2003), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(2005), + [anon_sym_LF] = ACTIONS(2003), + [anon_sym_AMP] = ACTIONS(2005), + }, + [533] = { + [aux_sym_concatenation_repeat1] = STATE(995), + [sym__simple_heredoc_body] = ACTIONS(773), + [sym__heredoc_body_beginning] = ACTIONS(773), + [sym_file_descriptor] = ACTIONS(773), + [sym__concat] = ACTIONS(265), + [ts_builtin_sym_end] = ACTIONS(773), + [anon_sym_SEMI] = ACTIONS(777), + [anon_sym_PIPE] = ACTIONS(777), + [anon_sym_SEMI_SEMI] = ACTIONS(773), + [anon_sym_PIPE_AMP] = ACTIONS(773), + [anon_sym_AMP_AMP] = ACTIONS(773), + [anon_sym_PIPE_PIPE] = ACTIONS(773), + [anon_sym_LT] = ACTIONS(777), + [anon_sym_GT] = ACTIONS(777), + [anon_sym_GT_GT] = ACTIONS(773), + [anon_sym_AMP_GT] = ACTIONS(777), + [anon_sym_AMP_GT_GT] = ACTIONS(773), + [anon_sym_LT_AMP] = ACTIONS(773), + [anon_sym_GT_AMP] = ACTIONS(773), + [anon_sym_LT_LT] = ACTIONS(777), + [anon_sym_LT_LT_DASH] = ACTIONS(773), + [anon_sym_LT_LT_LT] = ACTIONS(773), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(773), + [anon_sym_AMP] = ACTIONS(777), + }, + [534] = { + [aux_sym_concatenation_repeat1] = STATE(995), + [sym__simple_heredoc_body] = ACTIONS(791), + [sym__heredoc_body_beginning] = ACTIONS(791), + [sym_file_descriptor] = ACTIONS(791), + [sym__concat] = ACTIONS(265), + [ts_builtin_sym_end] = ACTIONS(791), + [anon_sym_SEMI] = ACTIONS(793), + [anon_sym_PIPE] = ACTIONS(793), + [anon_sym_SEMI_SEMI] = ACTIONS(791), + [anon_sym_PIPE_AMP] = ACTIONS(791), + [anon_sym_AMP_AMP] = ACTIONS(791), + [anon_sym_PIPE_PIPE] = ACTIONS(791), + [anon_sym_LT] = ACTIONS(793), + [anon_sym_GT] = ACTIONS(793), + [anon_sym_GT_GT] = ACTIONS(791), + [anon_sym_AMP_GT] = ACTIONS(793), + [anon_sym_AMP_GT_GT] = ACTIONS(791), + [anon_sym_LT_AMP] = ACTIONS(791), + [anon_sym_GT_AMP] = ACTIONS(791), + [anon_sym_LT_LT] = ACTIONS(793), + [anon_sym_LT_LT_DASH] = ACTIONS(791), + [anon_sym_LT_LT_LT] = ACTIONS(791), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(791), + [anon_sym_AMP] = ACTIONS(793), + }, + [535] = { + [sym__simple_heredoc_body] = ACTIONS(791), + [sym__heredoc_body_beginning] = ACTIONS(791), + [sym_file_descriptor] = ACTIONS(791), + [ts_builtin_sym_end] = ACTIONS(791), + [anon_sym_SEMI] = ACTIONS(793), + [anon_sym_esac] = ACTIONS(791), + [anon_sym_PIPE] = ACTIONS(793), + [anon_sym_RPAREN] = ACTIONS(791), + [anon_sym_SEMI_SEMI] = ACTIONS(791), + [anon_sym_PIPE_AMP] = ACTIONS(791), + [anon_sym_AMP_AMP] = ACTIONS(791), + [anon_sym_PIPE_PIPE] = ACTIONS(791), + [anon_sym_LT] = ACTIONS(793), + [anon_sym_GT] = ACTIONS(793), + [anon_sym_GT_GT] = ACTIONS(791), + [anon_sym_AMP_GT] = ACTIONS(793), + [anon_sym_AMP_GT_GT] = ACTIONS(791), + [anon_sym_LT_AMP] = ACTIONS(791), + [anon_sym_GT_AMP] = ACTIONS(791), + [anon_sym_LT_LT] = ACTIONS(793), + [anon_sym_LT_LT_DASH] = ACTIONS(791), + [anon_sym_LT_LT_LT] = ACTIONS(791), + [anon_sym_BQUOTE] = ACTIONS(791), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(791), + [anon_sym_AMP] = ACTIONS(793), + }, + [536] = { + [sym__simple_heredoc_body] = ACTIONS(2011), + [sym__heredoc_body_beginning] = ACTIONS(2011), + [sym_file_descriptor] = ACTIONS(2011), + [ts_builtin_sym_end] = ACTIONS(2011), + [anon_sym_SEMI] = ACTIONS(2013), + [anon_sym_esac] = ACTIONS(2011), + [anon_sym_PIPE] = ACTIONS(2013), + [anon_sym_RPAREN] = ACTIONS(2011), + [anon_sym_SEMI_SEMI] = ACTIONS(2011), + [anon_sym_PIPE_AMP] = ACTIONS(2011), + [anon_sym_AMP_AMP] = ACTIONS(2011), + [anon_sym_PIPE_PIPE] = ACTIONS(2011), + [anon_sym_LT] = ACTIONS(2013), + [anon_sym_GT] = ACTIONS(2013), + [anon_sym_GT_GT] = ACTIONS(2011), + [anon_sym_AMP_GT] = ACTIONS(2013), + [anon_sym_AMP_GT_GT] = ACTIONS(2011), + [anon_sym_LT_AMP] = ACTIONS(2011), + [anon_sym_GT_AMP] = ACTIONS(2011), + [anon_sym_LT_LT] = ACTIONS(2013), + [anon_sym_LT_LT_DASH] = ACTIONS(2011), + [anon_sym_LT_LT_LT] = ACTIONS(2011), + [anon_sym_BQUOTE] = ACTIONS(2011), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2011), + [anon_sym_AMP] = ACTIONS(2013), + }, + [537] = { + [aux_sym_concatenation_repeat1] = STATE(995), + [sym__simple_heredoc_body] = ACTIONS(2015), + [sym__heredoc_body_beginning] = ACTIONS(2015), + [sym_file_descriptor] = ACTIONS(2015), + [sym__concat] = ACTIONS(265), + [ts_builtin_sym_end] = ACTIONS(2015), + [anon_sym_SEMI] = ACTIONS(2017), + [anon_sym_PIPE] = ACTIONS(2017), + [anon_sym_SEMI_SEMI] = ACTIONS(2015), + [anon_sym_PIPE_AMP] = ACTIONS(2015), + [anon_sym_AMP_AMP] = ACTIONS(2015), + [anon_sym_PIPE_PIPE] = ACTIONS(2015), + [anon_sym_LT] = ACTIONS(2017), + [anon_sym_GT] = ACTIONS(2017), + [anon_sym_GT_GT] = ACTIONS(2015), + [anon_sym_AMP_GT] = ACTIONS(2017), + [anon_sym_AMP_GT_GT] = ACTIONS(2015), + [anon_sym_LT_AMP] = ACTIONS(2015), + [anon_sym_GT_AMP] = ACTIONS(2015), + [anon_sym_LT_LT] = ACTIONS(2017), + [anon_sym_LT_LT_DASH] = ACTIONS(2015), + [anon_sym_LT_LT_LT] = ACTIONS(2015), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2017), }, [538] = { - [sym__terminated_statement] = STATE(975), - [sym_for_statement] = STATE(973), - [sym_c_style_for_statement] = STATE(973), - [sym_while_statement] = STATE(973), - [sym_if_statement] = STATE(973), - [sym_case_statement] = STATE(973), - [sym_function_definition] = STATE(973), - [sym_subshell] = STATE(973), - [sym_pipeline] = STATE(973), - [sym_list] = STATE(973), - [sym_negated_command] = STATE(973), - [sym_test_command] = STATE(973), - [sym_declaration_command] = STATE(973), - [sym_unset_command] = STATE(973), - [sym_command] = STATE(973), - [sym_command_name] = STATE(78), - [sym_variable_assignment] = STATE(974), - [sym_subscript] = STATE(80), - [sym_file_redirect] = STATE(82), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(75), - [sym_simple_expansion] = STATE(75), - [sym_string_expansion] = STATE(75), - [sym_expansion] = STATE(75), - [sym_command_substitution] = STATE(75), - [sym_process_substitution] = STATE(75), - [aux_sym__statements_repeat1] = STATE(975), - [aux_sym_command_repeat1] = STATE(82), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(111), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(119), - [anon_sym_declare] = ACTIONS(121), - [anon_sym_typeset] = ACTIONS(121), - [anon_sym_export] = ACTIONS(121), - [anon_sym_readonly] = ACTIONS(121), - [anon_sym_local] = ACTIONS(121), - [anon_sym_unset] = ACTIONS(123), - [anon_sym_unsetenv] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), + [aux_sym_concatenation_repeat1] = STATE(995), + [sym__simple_heredoc_body] = ACTIONS(2019), + [sym__heredoc_body_beginning] = ACTIONS(2019), + [sym_file_descriptor] = ACTIONS(2019), + [sym__concat] = ACTIONS(265), + [ts_builtin_sym_end] = ACTIONS(2019), + [anon_sym_SEMI] = ACTIONS(2021), + [anon_sym_PIPE] = ACTIONS(2021), + [anon_sym_SEMI_SEMI] = ACTIONS(2019), + [anon_sym_PIPE_AMP] = ACTIONS(2019), + [anon_sym_AMP_AMP] = ACTIONS(2019), + [anon_sym_PIPE_PIPE] = ACTIONS(2019), + [anon_sym_LT] = ACTIONS(2021), + [anon_sym_GT] = ACTIONS(2021), + [anon_sym_GT_GT] = ACTIONS(2019), + [anon_sym_AMP_GT] = ACTIONS(2021), + [anon_sym_AMP_GT_GT] = ACTIONS(2019), + [anon_sym_LT_AMP] = ACTIONS(2019), + [anon_sym_GT_AMP] = ACTIONS(2019), + [anon_sym_LT_LT] = ACTIONS(2021), + [anon_sym_LT_LT_DASH] = ACTIONS(2019), + [anon_sym_LT_LT_LT] = ACTIONS(2019), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2019), + [anon_sym_AMP] = ACTIONS(2021), }, [539] = { - [sym_concatenation] = STATE(977), - [sym_string] = STATE(534), - [sym_simple_expansion] = STATE(534), - [sym_string_expansion] = STATE(534), - [sym_expansion] = STATE(534), - [sym_command_substitution] = STATE(534), - [sym_process_substitution] = STATE(534), - [aux_sym_for_statement_repeat1] = STATE(977), - [anon_sym_RPAREN] = ACTIONS(2092), - [sym__special_characters] = ACTIONS(1077), - [anon_sym_DQUOTE] = ACTIONS(1079), - [anon_sym_DOLLAR] = ACTIONS(1081), - [sym_raw_string] = ACTIONS(1083), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1085), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1087), - [anon_sym_BQUOTE] = ACTIONS(1089), - [anon_sym_LT_LPAREN] = ACTIONS(1091), - [anon_sym_GT_LPAREN] = ACTIONS(1091), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1083), + [sym__simple_heredoc_body] = ACTIONS(2019), + [sym__heredoc_body_beginning] = ACTIONS(2019), + [sym_file_descriptor] = ACTIONS(2019), + [ts_builtin_sym_end] = ACTIONS(2019), + [anon_sym_SEMI] = ACTIONS(2021), + [anon_sym_esac] = ACTIONS(2019), + [anon_sym_PIPE] = ACTIONS(2021), + [anon_sym_RPAREN] = ACTIONS(2019), + [anon_sym_SEMI_SEMI] = ACTIONS(2019), + [anon_sym_PIPE_AMP] = ACTIONS(2019), + [anon_sym_AMP_AMP] = ACTIONS(2019), + [anon_sym_PIPE_PIPE] = ACTIONS(2019), + [anon_sym_LT] = ACTIONS(2021), + [anon_sym_GT] = ACTIONS(2021), + [anon_sym_GT_GT] = ACTIONS(2019), + [anon_sym_AMP_GT] = ACTIONS(2021), + [anon_sym_AMP_GT_GT] = ACTIONS(2019), + [anon_sym_LT_AMP] = ACTIONS(2019), + [anon_sym_GT_AMP] = ACTIONS(2019), + [anon_sym_LT_LT] = ACTIONS(2021), + [anon_sym_LT_LT_DASH] = ACTIONS(2019), + [anon_sym_LT_LT_LT] = ACTIONS(2019), + [anon_sym_BQUOTE] = ACTIONS(2019), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2019), + [anon_sym_AMP] = ACTIONS(2021), }, [540] = { - [sym_string] = STATE(978), - [sym_simple_expansion] = STATE(978), - [sym_string_expansion] = STATE(978), - [sym_expansion] = STATE(978), - [sym_command_substitution] = STATE(978), - [sym_process_substitution] = STATE(978), - [sym__special_characters] = ACTIONS(2094), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_DOLLAR] = ACTIONS(371), - [sym_raw_string] = ACTIONS(2094), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(375), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(377), - [anon_sym_BQUOTE] = ACTIONS(379), - [anon_sym_LT_LPAREN] = ACTIONS(381), - [anon_sym_GT_LPAREN] = ACTIONS(381), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2094), + [ts_builtin_sym_end] = ACTIONS(2023), + [anon_sym_SEMI] = ACTIONS(2025), + [anon_sym_esac] = ACTIONS(2023), + [anon_sym_PIPE] = ACTIONS(2025), + [anon_sym_RPAREN] = ACTIONS(2023), + [anon_sym_SEMI_SEMI] = ACTIONS(2023), + [anon_sym_PIPE_AMP] = ACTIONS(2023), + [anon_sym_AMP_AMP] = ACTIONS(2023), + [anon_sym_PIPE_PIPE] = ACTIONS(2023), + [anon_sym_BQUOTE] = ACTIONS(2023), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2023), + [anon_sym_AMP] = ACTIONS(2025), }, [541] = { - [aux_sym_concatenation_repeat1] = STATE(979), - [sym_file_descriptor] = ACTIONS(765), - [sym__concat] = ACTIONS(1095), - [sym_variable_name] = ACTIONS(765), - [ts_builtin_sym_end] = ACTIONS(765), - [anon_sym_SEMI] = ACTIONS(767), - [anon_sym_PIPE] = ACTIONS(767), - [anon_sym_SEMI_SEMI] = ACTIONS(765), - [anon_sym_PIPE_AMP] = ACTIONS(765), - [anon_sym_AMP_AMP] = ACTIONS(765), - [anon_sym_PIPE_PIPE] = ACTIONS(765), - [anon_sym_LT] = ACTIONS(767), - [anon_sym_GT] = ACTIONS(767), - [anon_sym_GT_GT] = ACTIONS(765), - [anon_sym_AMP_GT] = ACTIONS(767), - [anon_sym_AMP_GT_GT] = ACTIONS(765), - [anon_sym_LT_AMP] = ACTIONS(765), - [anon_sym_GT_AMP] = ACTIONS(765), - [sym__special_characters] = ACTIONS(765), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_DOLLAR] = ACTIONS(767), - [sym_raw_string] = ACTIONS(765), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(765), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(765), - [anon_sym_BQUOTE] = ACTIONS(765), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(767), - [anon_sym_LF] = ACTIONS(765), - [anon_sym_AMP] = ACTIONS(767), + [sym_file_redirect] = STATE(541), + [sym_heredoc_redirect] = STATE(541), + [sym_herestring_redirect] = STATE(541), + [aux_sym_while_statement_repeat1] = STATE(541), + [sym__simple_heredoc_body] = ACTIONS(2027), + [sym__heredoc_body_beginning] = ACTIONS(2027), + [sym_file_descriptor] = ACTIONS(2029), + [ts_builtin_sym_end] = ACTIONS(2027), + [anon_sym_SEMI] = ACTIONS(2032), + [anon_sym_PIPE] = ACTIONS(2032), + [anon_sym_SEMI_SEMI] = ACTIONS(2027), + [anon_sym_PIPE_AMP] = ACTIONS(2027), + [anon_sym_AMP_AMP] = ACTIONS(2027), + [anon_sym_PIPE_PIPE] = ACTIONS(2027), + [anon_sym_LT] = ACTIONS(2034), + [anon_sym_GT] = ACTIONS(2034), + [anon_sym_GT_GT] = ACTIONS(2037), + [anon_sym_AMP_GT] = ACTIONS(2034), + [anon_sym_AMP_GT_GT] = ACTIONS(2037), + [anon_sym_LT_AMP] = ACTIONS(2037), + [anon_sym_GT_AMP] = ACTIONS(2037), + [anon_sym_LT_LT] = ACTIONS(2040), + [anon_sym_LT_LT_DASH] = ACTIONS(2043), + [anon_sym_LT_LT_LT] = ACTIONS(2046), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2027), + [anon_sym_AMP] = ACTIONS(2032), }, [542] = { - [sym_file_descriptor] = ACTIONS(769), - [sym__concat] = ACTIONS(769), - [sym_variable_name] = ACTIONS(769), - [ts_builtin_sym_end] = ACTIONS(769), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_RPAREN] = ACTIONS(769), - [anon_sym_SEMI_SEMI] = ACTIONS(769), - [anon_sym_PIPE_AMP] = ACTIONS(769), - [anon_sym_AMP_AMP] = ACTIONS(769), - [anon_sym_PIPE_PIPE] = ACTIONS(769), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_GT] = ACTIONS(769), - [anon_sym_AMP_GT] = ACTIONS(771), - [anon_sym_AMP_GT_GT] = ACTIONS(769), - [anon_sym_LT_AMP] = ACTIONS(769), - [anon_sym_GT_AMP] = ACTIONS(769), - [sym__special_characters] = ACTIONS(769), - [anon_sym_DQUOTE] = ACTIONS(769), - [anon_sym_DOLLAR] = ACTIONS(771), - [sym_raw_string] = ACTIONS(769), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(769), - [anon_sym_BQUOTE] = ACTIONS(769), - [anon_sym_LT_LPAREN] = ACTIONS(769), - [anon_sym_GT_LPAREN] = ACTIONS(769), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(771), - [anon_sym_LF] = ACTIONS(769), - [anon_sym_AMP] = ACTIONS(771), + [sym_file_redirect] = STATE(541), + [sym_heredoc_redirect] = STATE(541), + [sym_heredoc_body] = STATE(996), + [sym_herestring_redirect] = STATE(541), + [aux_sym_while_statement_repeat1] = STATE(541), + [sym__simple_heredoc_body] = ACTIONS(339), + [sym__heredoc_body_beginning] = ACTIONS(341), + [sym_file_descriptor] = ACTIONS(343), + [ts_builtin_sym_end] = ACTIONS(2023), + [anon_sym_SEMI] = ACTIONS(2025), + [anon_sym_PIPE] = ACTIONS(2025), + [anon_sym_SEMI_SEMI] = ACTIONS(2023), + [anon_sym_PIPE_AMP] = ACTIONS(2023), + [anon_sym_AMP_AMP] = ACTIONS(2023), + [anon_sym_PIPE_PIPE] = ACTIONS(2023), + [anon_sym_LT] = ACTIONS(351), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_GT_GT] = ACTIONS(353), + [anon_sym_AMP_GT] = ACTIONS(351), + [anon_sym_AMP_GT_GT] = ACTIONS(353), + [anon_sym_LT_AMP] = ACTIONS(353), + [anon_sym_GT_AMP] = ACTIONS(353), + [anon_sym_LT_LT] = ACTIONS(355), + [anon_sym_LT_LT_DASH] = ACTIONS(357), + [anon_sym_LT_LT_LT] = ACTIONS(359), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2023), + [anon_sym_AMP] = ACTIONS(2025), }, [543] = { - [anon_sym_DQUOTE] = ACTIONS(2096), - [anon_sym_DOLLAR] = ACTIONS(775), - [sym__string_content] = ACTIONS(777), - [anon_sym_POUND] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(781), - [anon_sym_STAR] = ACTIONS(783), - [anon_sym_AT] = ACTIONS(783), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_0] = ACTIONS(781), - [anon_sym__] = ACTIONS(781), + [sym_concatenation] = STATE(543), + [sym_string] = STATE(192), + [sym_simple_expansion] = STATE(192), + [sym_string_expansion] = STATE(192), + [sym_expansion] = STATE(192), + [sym_command_substitution] = STATE(192), + [sym_process_substitution] = STATE(192), + [aux_sym_command_repeat2] = STATE(543), + [sym__simple_heredoc_body] = ACTIONS(2003), + [sym__heredoc_body_beginning] = ACTIONS(2003), + [sym_file_descriptor] = ACTIONS(2003), + [ts_builtin_sym_end] = ACTIONS(2003), + [anon_sym_SEMI] = ACTIONS(2005), + [anon_sym_PIPE] = ACTIONS(2005), + [anon_sym_SEMI_SEMI] = ACTIONS(2003), + [anon_sym_PIPE_AMP] = ACTIONS(2003), + [anon_sym_AMP_AMP] = ACTIONS(2003), + [anon_sym_PIPE_PIPE] = ACTIONS(2003), + [anon_sym_EQ_TILDE] = ACTIONS(2049), + [anon_sym_EQ_EQ] = ACTIONS(2049), + [anon_sym_LT] = ACTIONS(2005), + [anon_sym_GT] = ACTIONS(2005), + [anon_sym_GT_GT] = ACTIONS(2003), + [anon_sym_AMP_GT] = ACTIONS(2005), + [anon_sym_AMP_GT_GT] = ACTIONS(2003), + [anon_sym_LT_AMP] = ACTIONS(2003), + [anon_sym_GT_AMP] = ACTIONS(2003), + [anon_sym_LT_LT] = ACTIONS(2005), + [anon_sym_LT_LT_DASH] = ACTIONS(2003), + [anon_sym_LT_LT_LT] = ACTIONS(2003), + [sym__special_characters] = ACTIONS(2052), + [anon_sym_DQUOTE] = ACTIONS(2055), + [anon_sym_DOLLAR] = ACTIONS(2058), + [sym_raw_string] = ACTIONS(2061), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2064), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2067), + [anon_sym_BQUOTE] = ACTIONS(2070), + [anon_sym_LT_LPAREN] = ACTIONS(2073), + [anon_sym_GT_LPAREN] = ACTIONS(2073), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(2076), + [anon_sym_LF] = ACTIONS(2003), + [anon_sym_AMP] = ACTIONS(2005), }, [544] = { - [sym_simple_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [sym_command_substitution] = STATE(141), - [aux_sym_string_repeat1] = STATE(450), - [anon_sym_DQUOTE] = ACTIONS(2096), - [anon_sym_DOLLAR] = ACTIONS(2098), - [sym__string_content] = ACTIONS(257), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(261), - [anon_sym_BQUOTE] = ACTIONS(263), - [sym_comment] = ACTIONS(265), + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [ts_builtin_sym_end] = ACTIONS(2079), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), }, [545] = { - [sym_file_descriptor] = ACTIONS(803), - [sym__concat] = ACTIONS(803), - [sym_variable_name] = ACTIONS(803), - [ts_builtin_sym_end] = ACTIONS(803), - [anon_sym_SEMI] = ACTIONS(805), - [anon_sym_PIPE] = ACTIONS(805), - [anon_sym_RPAREN] = ACTIONS(803), - [anon_sym_SEMI_SEMI] = ACTIONS(803), - [anon_sym_PIPE_AMP] = ACTIONS(803), - [anon_sym_AMP_AMP] = ACTIONS(803), - [anon_sym_PIPE_PIPE] = ACTIONS(803), - [anon_sym_LT] = ACTIONS(805), - [anon_sym_GT] = ACTIONS(805), - [anon_sym_GT_GT] = ACTIONS(803), - [anon_sym_AMP_GT] = ACTIONS(805), - [anon_sym_AMP_GT_GT] = ACTIONS(803), - [anon_sym_LT_AMP] = ACTIONS(803), - [anon_sym_GT_AMP] = ACTIONS(803), - [sym__special_characters] = ACTIONS(803), - [anon_sym_DQUOTE] = ACTIONS(803), - [anon_sym_DOLLAR] = ACTIONS(805), - [sym_raw_string] = ACTIONS(803), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(803), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(803), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(803), - [anon_sym_GT_LPAREN] = ACTIONS(803), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(805), - [anon_sym_LF] = ACTIONS(803), - [anon_sym_AMP] = ACTIONS(805), + [anon_sym_SEMI] = ACTIONS(2081), + [anon_sym_PIPE] = ACTIONS(529), + [anon_sym_SEMI_SEMI] = ACTIONS(2083), + [anon_sym_PIPE_AMP] = ACTIONS(533), + [anon_sym_AMP_AMP] = ACTIONS(535), + [anon_sym_PIPE_PIPE] = ACTIONS(535), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2083), + [anon_sym_AMP] = ACTIONS(2081), }, [546] = { + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(2081), + [anon_sym_PIPE] = ACTIONS(529), + [anon_sym_SEMI_SEMI] = ACTIONS(2083), + [anon_sym_PIPE_AMP] = ACTIONS(533), + [anon_sym_AMP_AMP] = ACTIONS(535), + [anon_sym_PIPE_PIPE] = ACTIONS(535), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(2083), + [anon_sym_AMP] = ACTIONS(2081), + }, + [547] = { + [sym_file_redirect] = STATE(998), + [sym_heredoc_redirect] = STATE(998), + [sym_heredoc_body] = STATE(996), + [sym_herestring_redirect] = STATE(998), + [sym_concatenation] = STATE(543), + [sym_string] = STATE(192), + [sym_simple_expansion] = STATE(192), + [sym_string_expansion] = STATE(192), + [sym_expansion] = STATE(192), + [sym_command_substitution] = STATE(192), + [sym_process_substitution] = STATE(192), + [aux_sym_while_statement_repeat1] = STATE(998), + [aux_sym_command_repeat2] = STATE(543), + [sym__simple_heredoc_body] = ACTIONS(339), + [sym__heredoc_body_beginning] = ACTIONS(341), + [sym_file_descriptor] = ACTIONS(343), + [ts_builtin_sym_end] = ACTIONS(2023), + [anon_sym_SEMI] = ACTIONS(2025), + [anon_sym_PIPE] = ACTIONS(2025), + [anon_sym_SEMI_SEMI] = ACTIONS(2023), + [anon_sym_PIPE_AMP] = ACTIONS(2023), + [anon_sym_AMP_AMP] = ACTIONS(2023), + [anon_sym_PIPE_PIPE] = ACTIONS(2023), + [anon_sym_EQ_TILDE] = ACTIONS(349), + [anon_sym_EQ_EQ] = ACTIONS(349), + [anon_sym_LT] = ACTIONS(351), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_GT_GT] = ACTIONS(353), + [anon_sym_AMP_GT] = ACTIONS(351), + [anon_sym_AMP_GT_GT] = ACTIONS(353), + [anon_sym_LT_AMP] = ACTIONS(353), + [anon_sym_GT_AMP] = ACTIONS(353), + [anon_sym_LT_LT] = ACTIONS(355), + [anon_sym_LT_LT_DASH] = ACTIONS(357), + [anon_sym_LT_LT_LT] = ACTIONS(359), + [sym__special_characters] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(363), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(365), + [anon_sym_LF] = ACTIONS(2023), + [anon_sym_AMP] = ACTIONS(2025), + }, + [548] = { + [sym_string] = STATE(790), + [sym_simple_expansion] = STATE(790), + [sym_string_expansion] = STATE(790), + [sym_expansion] = STATE(790), + [sym_command_substitution] = STATE(790), + [sym_process_substitution] = STATE(790), + [anon_sym_RBRACK] = ACTIONS(2085), + [sym__special_characters] = ACTIONS(2087), + [anon_sym_DQUOTE] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(171), + [sym_raw_string] = ACTIONS(1490), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(175), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(177), + [anon_sym_BQUOTE] = ACTIONS(179), + [anon_sym_LT_LPAREN] = ACTIONS(181), + [anon_sym_GT_LPAREN] = ACTIONS(181), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1490), + }, + [549] = { + [sym__concat] = ACTIONS(2089), + [anon_sym_EQ] = ACTIONS(2091), + [anon_sym_PLUS_EQ] = ACTIONS(2091), + [sym_comment] = ACTIONS(55), + }, + [550] = { + [aux_sym_concatenation_repeat1] = STATE(1001), + [sym__concat] = ACTIONS(657), + [anon_sym_RBRACK] = ACTIONS(807), + [sym_comment] = ACTIONS(55), + }, + [551] = { + [sym_string] = STATE(790), + [sym_simple_expansion] = STATE(790), + [sym_string_expansion] = STATE(790), + [sym_expansion] = STATE(790), + [sym_command_substitution] = STATE(790), + [sym_process_substitution] = STATE(790), + [anon_sym_RBRACK] = ACTIONS(2093), + [sym__special_characters] = ACTIONS(2087), + [anon_sym_DQUOTE] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(171), + [sym_raw_string] = ACTIONS(1490), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(175), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(177), + [anon_sym_BQUOTE] = ACTIONS(179), + [anon_sym_LT_LPAREN] = ACTIONS(181), + [anon_sym_GT_LPAREN] = ACTIONS(181), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1490), + }, + [552] = { + [sym__concat] = ACTIONS(2095), + [anon_sym_EQ] = ACTIONS(2097), + [anon_sym_PLUS_EQ] = ACTIONS(2097), + [sym_comment] = ACTIONS(55), + }, + [553] = { + [anon_sym_RBRACK] = ACTIONS(2093), + [sym_comment] = ACTIONS(55), + }, + [554] = { + [sym_file_descriptor] = ACTIONS(2099), + [sym_variable_name] = ACTIONS(2099), + [ts_builtin_sym_end] = ACTIONS(2099), + [anon_sym_SEMI] = ACTIONS(2101), + [anon_sym_PIPE] = ACTIONS(2101), + [anon_sym_RPAREN] = ACTIONS(2099), + [anon_sym_SEMI_SEMI] = ACTIONS(2099), + [anon_sym_PIPE_AMP] = ACTIONS(2099), + [anon_sym_AMP_AMP] = ACTIONS(2099), + [anon_sym_PIPE_PIPE] = ACTIONS(2099), + [anon_sym_LT] = ACTIONS(2101), + [anon_sym_GT] = ACTIONS(2101), + [anon_sym_GT_GT] = ACTIONS(2099), + [anon_sym_AMP_GT] = ACTIONS(2101), + [anon_sym_AMP_GT_GT] = ACTIONS(2099), + [anon_sym_LT_AMP] = ACTIONS(2099), + [anon_sym_GT_AMP] = ACTIONS(2099), + [sym__special_characters] = ACTIONS(2099), + [anon_sym_DQUOTE] = ACTIONS(2099), + [anon_sym_DOLLAR] = ACTIONS(2101), + [sym_raw_string] = ACTIONS(2099), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2099), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2099), + [anon_sym_BQUOTE] = ACTIONS(2099), + [anon_sym_LT_LPAREN] = ACTIONS(2099), + [anon_sym_GT_LPAREN] = ACTIONS(2099), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(2101), + [anon_sym_LF] = ACTIONS(2099), + [anon_sym_AMP] = ACTIONS(2101), + }, + [555] = { + [aux_sym_concatenation_repeat1] = STATE(1005), + [sym__concat] = ACTIONS(2103), + [anon_sym_RPAREN] = ACTIONS(2105), + [sym__special_characters] = ACTIONS(2105), + [anon_sym_DQUOTE] = ACTIONS(2105), + [anon_sym_DOLLAR] = ACTIONS(2107), + [sym_raw_string] = ACTIONS(2105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2105), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2105), + [anon_sym_BQUOTE] = ACTIONS(2105), + [anon_sym_LT_LPAREN] = ACTIONS(2105), + [anon_sym_GT_LPAREN] = ACTIONS(2105), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(2105), + }, + [556] = { + [sym_simple_expansion] = STATE(148), + [sym_expansion] = STATE(148), + [sym_command_substitution] = STATE(148), + [aux_sym_string_repeat1] = STATE(1008), + [anon_sym_DQUOTE] = ACTIONS(2109), + [anon_sym_DOLLAR] = ACTIONS(2111), + [sym__string_content] = ACTIONS(273), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(277), + [anon_sym_BQUOTE] = ACTIONS(279), + [sym_comment] = ACTIONS(281), + }, + [557] = { + [sym_string] = STATE(1010), + [anon_sym_DASH] = ACTIONS(2113), + [anon_sym_DQUOTE] = ACTIONS(1114), + [anon_sym_DOLLAR] = ACTIONS(2113), + [sym_raw_string] = ACTIONS(2115), + [anon_sym_POUND] = ACTIONS(2113), + [sym_comment] = ACTIONS(281), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_AT] = ACTIONS(2119), + [anon_sym_QMARK] = ACTIONS(2119), + [anon_sym_0] = ACTIONS(2117), + [anon_sym__] = ACTIONS(2117), + }, + [558] = { + [aux_sym_concatenation_repeat1] = STATE(1005), + [sym__concat] = ACTIONS(2103), + [anon_sym_RPAREN] = ACTIONS(2121), + [sym__special_characters] = ACTIONS(2121), + [anon_sym_DQUOTE] = ACTIONS(2121), + [anon_sym_DOLLAR] = ACTIONS(2123), + [sym_raw_string] = ACTIONS(2121), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2121), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2121), + [anon_sym_BQUOTE] = ACTIONS(2121), + [anon_sym_LT_LPAREN] = ACTIONS(2121), + [anon_sym_GT_LPAREN] = ACTIONS(2121), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(2121), + }, + [559] = { + [sym_subscript] = STATE(1015), + [sym_variable_name] = ACTIONS(2125), + [anon_sym_BANG] = ACTIONS(2127), + [anon_sym_DASH] = ACTIONS(2129), + [anon_sym_DOLLAR] = ACTIONS(2129), + [anon_sym_POUND] = ACTIONS(2127), + [sym_comment] = ACTIONS(281), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2131), + [anon_sym_STAR] = ACTIONS(2133), + [anon_sym_AT] = ACTIONS(2133), + [anon_sym_QMARK] = ACTIONS(2133), + [anon_sym_0] = ACTIONS(2131), + [anon_sym__] = ACTIONS(2131), + }, + [560] = { + [sym__terminated_statement] = STATE(1018), + [sym_for_statement] = STATE(1016), + [sym_c_style_for_statement] = STATE(1016), + [sym_while_statement] = STATE(1016), + [sym_if_statement] = STATE(1016), + [sym_case_statement] = STATE(1016), + [sym_function_definition] = STATE(1016), + [sym_subshell] = STATE(1016), + [sym_pipeline] = STATE(1016), + [sym_list] = STATE(1016), + [sym_negated_command] = STATE(1016), + [sym_test_command] = STATE(1016), + [sym_declaration_command] = STATE(1016), + [sym_unset_command] = STATE(1016), + [sym_command] = STATE(1016), + [sym_command_name] = STATE(92), + [sym_variable_assignment] = STATE(1017), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(96), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), + [aux_sym__statements_repeat1] = STATE(1018), + [aux_sym_command_repeat1] = STATE(96), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(137), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(149), + [anon_sym_declare] = ACTIONS(151), + [anon_sym_typeset] = ACTIONS(151), + [anon_sym_export] = ACTIONS(151), + [anon_sym_readonly] = ACTIONS(151), + [anon_sym_local] = ACTIONS(151), + [anon_sym_unset] = ACTIONS(153), + [anon_sym_unsetenv] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(159), + }, + [561] = { + [sym__terminated_statement] = STATE(1021), + [sym_for_statement] = STATE(1019), + [sym_c_style_for_statement] = STATE(1019), + [sym_while_statement] = STATE(1019), + [sym_if_statement] = STATE(1019), + [sym_case_statement] = STATE(1019), + [sym_function_definition] = STATE(1019), + [sym_subshell] = STATE(1019), + [sym_pipeline] = STATE(1019), + [sym_list] = STATE(1019), + [sym_negated_command] = STATE(1019), + [sym_test_command] = STATE(1019), + [sym_declaration_command] = STATE(1019), + [sym_unset_command] = STATE(1019), + [sym_command] = STATE(1019), + [sym_command_name] = STATE(173), + [sym_variable_assignment] = STATE(1020), + [sym_subscript] = STATE(66), + [sym_file_redirect] = STATE(176), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(60), + [sym_simple_expansion] = STATE(60), + [sym_string_expansion] = STATE(60), + [sym_expansion] = STATE(60), + [sym_command_substitution] = STATE(60), + [sym_process_substitution] = STATE(60), + [aux_sym__statements_repeat1] = STATE(1021), + [aux_sym_command_repeat1] = STATE(176), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(95), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(305), + [anon_sym_while] = ACTIONS(307), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(311), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(315), + [anon_sym_declare] = ACTIONS(317), + [anon_sym_typeset] = ACTIONS(317), + [anon_sym_export] = ACTIONS(317), + [anon_sym_readonly] = ACTIONS(317), + [anon_sym_local] = ACTIONS(317), + [anon_sym_unset] = ACTIONS(319), + [anon_sym_unsetenv] = ACTIONS(319), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(115), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(321), + }, + [562] = { + [sym__terminated_statement] = STATE(1024), + [sym_for_statement] = STATE(1022), + [sym_c_style_for_statement] = STATE(1022), + [sym_while_statement] = STATE(1022), + [sym_if_statement] = STATE(1022), + [sym_case_statement] = STATE(1022), + [sym_function_definition] = STATE(1022), + [sym_subshell] = STATE(1022), + [sym_pipeline] = STATE(1022), + [sym_list] = STATE(1022), + [sym_negated_command] = STATE(1022), + [sym_test_command] = STATE(1022), + [sym_declaration_command] = STATE(1022), + [sym_unset_command] = STATE(1022), + [sym_command] = STATE(1022), + [sym_command_name] = STATE(92), + [sym_variable_assignment] = STATE(1023), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(96), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), + [aux_sym__statements_repeat1] = STATE(1024), + [aux_sym_command_repeat1] = STATE(96), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(137), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(149), + [anon_sym_declare] = ACTIONS(151), + [anon_sym_typeset] = ACTIONS(151), + [anon_sym_export] = ACTIONS(151), + [anon_sym_readonly] = ACTIONS(151), + [anon_sym_local] = ACTIONS(151), + [anon_sym_unset] = ACTIONS(153), + [anon_sym_unsetenv] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(159), + }, + [563] = { + [sym_concatenation] = STATE(1026), + [sym_string] = STATE(558), + [sym_simple_expansion] = STATE(558), + [sym_string_expansion] = STATE(558), + [sym_expansion] = STATE(558), + [sym_command_substitution] = STATE(558), + [sym_process_substitution] = STATE(558), + [aux_sym_for_statement_repeat1] = STATE(1026), + [anon_sym_RPAREN] = ACTIONS(2135), + [sym__special_characters] = ACTIONS(1112), + [anon_sym_DQUOTE] = ACTIONS(1114), + [anon_sym_DOLLAR] = ACTIONS(1116), + [sym_raw_string] = ACTIONS(1118), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1120), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1122), + [anon_sym_BQUOTE] = ACTIONS(1124), + [anon_sym_LT_LPAREN] = ACTIONS(1126), + [anon_sym_GT_LPAREN] = ACTIONS(1126), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1118), + }, + [564] = { + [sym_string] = STATE(1027), + [sym_simple_expansion] = STATE(1027), + [sym_string_expansion] = STATE(1027), + [sym_expansion] = STATE(1027), + [sym_command_substitution] = STATE(1027), + [sym_process_substitution] = STATE(1027), + [sym__special_characters] = ACTIONS(2137), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR] = ACTIONS(389), + [sym_raw_string] = ACTIONS(2137), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(393), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(395), + [anon_sym_BQUOTE] = ACTIONS(397), + [anon_sym_LT_LPAREN] = ACTIONS(399), + [anon_sym_GT_LPAREN] = ACTIONS(399), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(2137), + }, + [565] = { + [aux_sym_concatenation_repeat1] = STATE(1028), [sym_file_descriptor] = ACTIONS(807), - [sym__concat] = ACTIONS(807), + [sym__concat] = ACTIONS(1130), [sym_variable_name] = ACTIONS(807), [ts_builtin_sym_end] = ACTIONS(807), [anon_sym_SEMI] = ACTIONS(809), [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_RPAREN] = ACTIONS(807), [anon_sym_SEMI_SEMI] = ACTIONS(807), [anon_sym_PIPE_AMP] = ACTIONS(807), [anon_sym_AMP_AMP] = ACTIONS(807), @@ -23880,12 +24620,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(807), [anon_sym_LT_LPAREN] = ACTIONS(807), [anon_sym_GT_LPAREN] = ACTIONS(807), - [sym_comment] = ACTIONS(53), + [sym_comment] = ACTIONS(55), [sym_word] = ACTIONS(809), [anon_sym_LF] = ACTIONS(807), [anon_sym_AMP] = ACTIONS(809), }, - [547] = { + [566] = { [sym_file_descriptor] = ACTIONS(811), [sym__concat] = ACTIONS(811), [sym_variable_name] = ACTIONS(811), @@ -23913,613 +24653,688 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(811), [anon_sym_LT_LPAREN] = ACTIONS(811), [anon_sym_GT_LPAREN] = ACTIONS(811), - [sym_comment] = ACTIONS(53), + [sym_comment] = ACTIONS(55), [sym_word] = ACTIONS(813), [anon_sym_LF] = ACTIONS(811), [anon_sym_AMP] = ACTIONS(813), }, - [548] = { - [anon_sym_LBRACK] = ACTIONS(815), - [anon_sym_EQ] = ACTIONS(2100), - [sym_comment] = ACTIONS(53), - }, - [549] = { - [sym_subscript] = STATE(985), - [sym_variable_name] = ACTIONS(2102), - [anon_sym_DOLLAR] = ACTIONS(2104), - [anon_sym_DASH] = ACTIONS(2104), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2106), - [anon_sym_STAR] = ACTIONS(2108), - [anon_sym_AT] = ACTIONS(2108), - [anon_sym_QMARK] = ACTIONS(2108), - [anon_sym_0] = ACTIONS(2106), - [anon_sym__] = ACTIONS(2106), - }, - [550] = { - [sym_concatenation] = STATE(988), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(988), - [anon_sym_RBRACE] = ACTIONS(2110), - [anon_sym_EQ] = ACTIONS(2112), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(2114), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(2116), - [anon_sym_COLON] = ACTIONS(2112), - [anon_sym_COLON_QMARK] = ACTIONS(2112), - [anon_sym_COLON_DASH] = ACTIONS(2112), - [anon_sym_PERCENT] = ACTIONS(2112), - [anon_sym_DASH] = ACTIONS(2112), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [551] = { - [sym_concatenation] = STATE(991), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(991), - [anon_sym_RBRACE] = ACTIONS(2118), - [anon_sym_EQ] = ACTIONS(2120), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(2122), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(2124), - [anon_sym_COLON] = ACTIONS(2120), - [anon_sym_COLON_QMARK] = ACTIONS(2120), - [anon_sym_COLON_DASH] = ACTIONS(2120), - [anon_sym_PERCENT] = ACTIONS(2120), - [anon_sym_DASH] = ACTIONS(2120), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [552] = { - [anon_sym_SEMI] = ACTIONS(2126), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(2128), - [anon_sym_SEMI_SEMI] = ACTIONS(2130), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(2130), - [anon_sym_AMP] = ACTIONS(2126), - }, - [553] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(2126), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(2128), - [anon_sym_SEMI_SEMI] = ACTIONS(2130), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(2130), - [anon_sym_AMP] = ACTIONS(2126), - }, - [554] = { - [sym__terminated_statement] = STATE(190), - [sym_for_statement] = STATE(994), - [sym_c_style_for_statement] = STATE(994), - [sym_while_statement] = STATE(994), - [sym_if_statement] = STATE(994), - [sym_case_statement] = STATE(994), - [sym_function_definition] = STATE(994), - [sym_subshell] = STATE(994), - [sym_pipeline] = STATE(994), - [sym_list] = STATE(994), - [sym_negated_command] = STATE(994), - [sym_test_command] = STATE(994), - [sym_declaration_command] = STATE(994), - [sym_unset_command] = STATE(994), - [sym_command] = STATE(994), - [sym_command_name] = STATE(78), - [sym_variable_assignment] = STATE(995), - [sym_subscript] = STATE(80), - [sym_file_redirect] = STATE(82), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(75), - [sym_simple_expansion] = STATE(75), - [sym_string_expansion] = STATE(75), - [sym_expansion] = STATE(75), - [sym_command_substitution] = STATE(75), - [sym_process_substitution] = STATE(75), - [aux_sym__statements_repeat1] = STATE(190), - [aux_sym_command_repeat1] = STATE(82), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(111), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(119), - [anon_sym_declare] = ACTIONS(121), - [anon_sym_typeset] = ACTIONS(121), - [anon_sym_export] = ACTIONS(121), - [anon_sym_readonly] = ACTIONS(121), - [anon_sym_local] = ACTIONS(121), - [anon_sym_unset] = ACTIONS(123), - [anon_sym_unsetenv] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), - }, - [555] = { - [anon_sym_SEMI] = ACTIONS(2132), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_SEMI_SEMI] = ACTIONS(2134), - [anon_sym_PIPE_AMP] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(883), - [anon_sym_PIPE_PIPE] = ACTIONS(883), - [anon_sym_BQUOTE] = ACTIONS(2128), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(2134), - [anon_sym_AMP] = ACTIONS(2132), - }, - [556] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(2132), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_SEMI_SEMI] = ACTIONS(2134), - [anon_sym_PIPE_AMP] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(883), - [anon_sym_PIPE_PIPE] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(2128), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(2134), - [anon_sym_AMP] = ACTIONS(2132), - }, - [557] = { - [sym__terminated_statement] = STATE(190), - [sym_for_statement] = STATE(997), - [sym_c_style_for_statement] = STATE(997), - [sym_while_statement] = STATE(997), - [sym_if_statement] = STATE(997), - [sym_case_statement] = STATE(997), - [sym_function_definition] = STATE(997), - [sym_subshell] = STATE(997), - [sym_pipeline] = STATE(997), - [sym_list] = STATE(997), - [sym_negated_command] = STATE(997), - [sym_test_command] = STATE(997), - [sym_declaration_command] = STATE(997), - [sym_unset_command] = STATE(997), - [sym_command] = STATE(997), - [sym_command_name] = STATE(165), - [sym_variable_assignment] = STATE(998), - [sym_subscript] = STATE(53), - [sym_file_redirect] = STATE(168), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(47), - [sym_simple_expansion] = STATE(47), - [sym_string_expansion] = STATE(47), - [sym_expansion] = STATE(47), - [sym_command_substitution] = STATE(47), - [sym_process_substitution] = STATE(47), - [aux_sym__statements_repeat1] = STATE(190), - [aux_sym_command_repeat1] = STATE(168), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(69), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(289), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(291), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(293), - [anon_sym_LBRACK] = ACTIONS(295), - [anon_sym_LBRACK_LBRACK] = ACTIONS(297), - [anon_sym_declare] = ACTIONS(299), - [anon_sym_typeset] = ACTIONS(299), - [anon_sym_export] = ACTIONS(299), - [anon_sym_readonly] = ACTIONS(299), - [anon_sym_local] = ACTIONS(299), - [anon_sym_unset] = ACTIONS(301), - [anon_sym_unsetenv] = ACTIONS(301), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(87), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(303), - }, - [558] = { - [anon_sym_SEMI] = ACTIONS(2136), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(2138), - [anon_sym_SEMI_SEMI] = ACTIONS(2140), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(2140), - [anon_sym_AMP] = ACTIONS(2136), - }, - [559] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(2136), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(2138), - [anon_sym_SEMI_SEMI] = ACTIONS(2140), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(2140), - [anon_sym_AMP] = ACTIONS(2136), - }, - [560] = { - [sym__terminated_statement] = STATE(190), - [sym_for_statement] = STATE(1001), - [sym_c_style_for_statement] = STATE(1001), - [sym_while_statement] = STATE(1001), - [sym_if_statement] = STATE(1001), - [sym_case_statement] = STATE(1001), - [sym_function_definition] = STATE(1001), - [sym_subshell] = STATE(1001), - [sym_pipeline] = STATE(1001), - [sym_list] = STATE(1001), - [sym_negated_command] = STATE(1001), - [sym_test_command] = STATE(1001), - [sym_declaration_command] = STATE(1001), - [sym_unset_command] = STATE(1001), - [sym_command] = STATE(1001), - [sym_command_name] = STATE(78), - [sym_variable_assignment] = STATE(1002), - [sym_subscript] = STATE(80), - [sym_file_redirect] = STATE(82), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(75), - [sym_simple_expansion] = STATE(75), - [sym_string_expansion] = STATE(75), - [sym_expansion] = STATE(75), - [sym_command_substitution] = STATE(75), - [sym_process_substitution] = STATE(75), - [aux_sym__statements_repeat1] = STATE(190), - [aux_sym_command_repeat1] = STATE(82), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(111), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(119), - [anon_sym_declare] = ACTIONS(121), - [anon_sym_typeset] = ACTIONS(121), - [anon_sym_export] = ACTIONS(121), - [anon_sym_readonly] = ACTIONS(121), - [anon_sym_local] = ACTIONS(121), - [anon_sym_unset] = ACTIONS(123), - [anon_sym_unsetenv] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), - }, - [561] = { - [sym__expression] = STATE(1014), - [sym_binary_expression] = STATE(1014), - [sym_unary_expression] = STATE(1014), - [sym_parenthesized_expression] = STATE(1014), - [sym_concatenation] = STATE(1014), - [sym_string] = STATE(1009), - [sym_simple_expansion] = STATE(1009), - [sym_string_expansion] = STATE(1009), - [sym_expansion] = STATE(1009), - [sym_command_substitution] = STATE(1009), - [sym_process_substitution] = STATE(1009), - [anon_sym_RPAREN_RPAREN] = ACTIONS(2142), - [anon_sym_LPAREN] = ACTIONS(2144), - [anon_sym_BANG] = ACTIONS(2146), - [sym__special_characters] = ACTIONS(2148), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_DOLLAR] = ACTIONS(2152), - [sym_raw_string] = ACTIONS(2154), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2156), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2158), - [anon_sym_BQUOTE] = ACTIONS(2160), - [anon_sym_LT_LPAREN] = ACTIONS(2162), - [anon_sym_GT_LPAREN] = ACTIONS(2162), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2164), - [sym_test_operator] = ACTIONS(2166), - }, - [562] = { - [anon_sym_SEMI] = ACTIONS(2168), - [anon_sym_SEMI_SEMI] = ACTIONS(2170), - [anon_sym_AMP_AMP] = ACTIONS(1153), - [anon_sym_PIPE_PIPE] = ACTIONS(1153), - [anon_sym_EQ_TILDE] = ACTIONS(1155), - [anon_sym_EQ_EQ] = ACTIONS(1155), - [anon_sym_EQ] = ACTIONS(1157), - [anon_sym_LT] = ACTIONS(1153), - [anon_sym_GT] = ACTIONS(1153), - [anon_sym_BANG_EQ] = ACTIONS(1153), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1153), - [anon_sym_LF] = ACTIONS(2170), - [anon_sym_AMP] = ACTIONS(2168), - }, - [563] = { - [anon_sym_RPAREN] = ACTIONS(2172), - [anon_sym_AMP_AMP] = ACTIONS(1347), - [anon_sym_PIPE_PIPE] = ACTIONS(1347), - [anon_sym_EQ_TILDE] = ACTIONS(1349), - [anon_sym_EQ_EQ] = ACTIONS(1349), - [anon_sym_EQ] = ACTIONS(1351), - [anon_sym_LT] = ACTIONS(1347), - [anon_sym_GT] = ACTIONS(1347), - [anon_sym_BANG_EQ] = ACTIONS(1347), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1347), - }, - [564] = { - [anon_sym_SEMI] = ACTIONS(2174), - [anon_sym_SEMI_SEMI] = ACTIONS(1353), - [anon_sym_AMP_AMP] = ACTIONS(1153), - [anon_sym_PIPE_PIPE] = ACTIONS(1153), - [anon_sym_EQ_TILDE] = ACTIONS(1155), - [anon_sym_EQ_EQ] = ACTIONS(1155), - [anon_sym_EQ] = ACTIONS(1157), - [anon_sym_LT] = ACTIONS(1153), - [anon_sym_GT] = ACTIONS(1153), - [anon_sym_BANG_EQ] = ACTIONS(1153), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1153), - [anon_sym_LF] = ACTIONS(1353), - [anon_sym_AMP] = ACTIONS(2174), - }, - [565] = { - [sym_string] = STATE(1017), - [sym_simple_expansion] = STATE(1017), - [sym_string_expansion] = STATE(1017), - [sym_expansion] = STATE(1017), - [sym_command_substitution] = STATE(1017), - [sym_process_substitution] = STATE(1017), - [sym__special_characters] = ACTIONS(2176), - [anon_sym_DQUOTE] = ACTIONS(393), - [anon_sym_DOLLAR] = ACTIONS(395), - [sym_raw_string] = ACTIONS(2176), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(399), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(401), - [anon_sym_BQUOTE] = ACTIONS(403), - [anon_sym_LT_LPAREN] = ACTIONS(405), - [anon_sym_GT_LPAREN] = ACTIONS(405), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2176), - }, - [566] = { - [aux_sym_concatenation_repeat1] = STATE(1018), - [sym__concat] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(767), - [anon_sym_SEMI_SEMI] = ACTIONS(765), - [anon_sym_AMP_AMP] = ACTIONS(765), - [anon_sym_PIPE_PIPE] = ACTIONS(765), - [anon_sym_EQ_TILDE] = ACTIONS(765), - [anon_sym_EQ_EQ] = ACTIONS(765), - [anon_sym_EQ] = ACTIONS(767), - [anon_sym_LT] = ACTIONS(765), - [anon_sym_GT] = ACTIONS(765), - [anon_sym_BANG_EQ] = ACTIONS(765), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(765), - [anon_sym_LF] = ACTIONS(765), - [anon_sym_AMP] = ACTIONS(767), - }, [567] = { - [sym__concat] = ACTIONS(769), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_esac] = ACTIONS(769), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_SEMI_SEMI] = ACTIONS(769), - [anon_sym_PIPE_AMP] = ACTIONS(769), - [anon_sym_AMP_AMP] = ACTIONS(769), - [anon_sym_PIPE_PIPE] = ACTIONS(769), - [anon_sym_EQ_TILDE] = ACTIONS(769), - [anon_sym_EQ_EQ] = ACTIONS(769), - [anon_sym_EQ] = ACTIONS(771), - [anon_sym_LT] = ACTIONS(769), - [anon_sym_GT] = ACTIONS(769), - [anon_sym_BANG_EQ] = ACTIONS(769), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(769), - [anon_sym_LF] = ACTIONS(769), - [anon_sym_AMP] = ACTIONS(771), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_DQUOTE] = ACTIONS(2139), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym__string_content] = ACTIONS(821), + [anon_sym_POUND] = ACTIONS(815), + [sym_comment] = ACTIONS(281), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(823), + [anon_sym_STAR] = ACTIONS(825), + [anon_sym_AT] = ACTIONS(825), + [anon_sym_QMARK] = ACTIONS(825), + [anon_sym_0] = ACTIONS(823), + [anon_sym__] = ACTIONS(823), }, [568] = { - [anon_sym_DQUOTE] = ACTIONS(2178), - [anon_sym_DOLLAR] = ACTIONS(775), - [sym__string_content] = ACTIONS(777), - [anon_sym_POUND] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(781), - [anon_sym_STAR] = ACTIONS(783), - [anon_sym_AT] = ACTIONS(783), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_0] = ACTIONS(781), - [anon_sym__] = ACTIONS(781), + [sym_simple_expansion] = STATE(148), + [sym_expansion] = STATE(148), + [sym_command_substitution] = STATE(148), + [aux_sym_string_repeat1] = STATE(473), + [anon_sym_DQUOTE] = ACTIONS(2139), + [anon_sym_DOLLAR] = ACTIONS(2141), + [sym__string_content] = ACTIONS(273), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(277), + [anon_sym_BQUOTE] = ACTIONS(279), + [sym_comment] = ACTIONS(281), }, [569] = { - [sym_simple_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [sym_command_substitution] = STATE(141), - [aux_sym_string_repeat1] = STATE(450), - [anon_sym_DQUOTE] = ACTIONS(2178), - [anon_sym_DOLLAR] = ACTIONS(2180), - [sym__string_content] = ACTIONS(257), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(261), - [anon_sym_BQUOTE] = ACTIONS(263), - [sym_comment] = ACTIONS(265), + [sym_file_descriptor] = ACTIONS(845), + [sym__concat] = ACTIONS(845), + [sym_variable_name] = ACTIONS(845), + [ts_builtin_sym_end] = ACTIONS(845), + [anon_sym_SEMI] = ACTIONS(847), + [anon_sym_PIPE] = ACTIONS(847), + [anon_sym_RPAREN] = ACTIONS(845), + [anon_sym_SEMI_SEMI] = ACTIONS(845), + [anon_sym_PIPE_AMP] = ACTIONS(845), + [anon_sym_AMP_AMP] = ACTIONS(845), + [anon_sym_PIPE_PIPE] = ACTIONS(845), + [anon_sym_LT] = ACTIONS(847), + [anon_sym_GT] = ACTIONS(847), + [anon_sym_GT_GT] = ACTIONS(845), + [anon_sym_AMP_GT] = ACTIONS(847), + [anon_sym_AMP_GT_GT] = ACTIONS(845), + [anon_sym_LT_AMP] = ACTIONS(845), + [anon_sym_GT_AMP] = ACTIONS(845), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(845), + [anon_sym_DOLLAR] = ACTIONS(847), + [sym_raw_string] = ACTIONS(845), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(845), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), + [anon_sym_BQUOTE] = ACTIONS(845), + [anon_sym_LT_LPAREN] = ACTIONS(845), + [anon_sym_GT_LPAREN] = ACTIONS(845), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(847), + [anon_sym_LF] = ACTIONS(845), + [anon_sym_AMP] = ACTIONS(847), }, [570] = { - [sym__concat] = ACTIONS(803), - [anon_sym_SEMI] = ACTIONS(805), - [anon_sym_esac] = ACTIONS(803), - [anon_sym_PIPE] = ACTIONS(805), - [anon_sym_SEMI_SEMI] = ACTIONS(803), - [anon_sym_PIPE_AMP] = ACTIONS(803), - [anon_sym_AMP_AMP] = ACTIONS(803), - [anon_sym_PIPE_PIPE] = ACTIONS(803), - [anon_sym_EQ_TILDE] = ACTIONS(803), - [anon_sym_EQ_EQ] = ACTIONS(803), - [anon_sym_EQ] = ACTIONS(805), - [anon_sym_LT] = ACTIONS(803), - [anon_sym_GT] = ACTIONS(803), - [anon_sym_BANG_EQ] = ACTIONS(803), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(803), - [anon_sym_LF] = ACTIONS(803), - [anon_sym_AMP] = ACTIONS(805), + [sym_file_descriptor] = ACTIONS(849), + [sym__concat] = ACTIONS(849), + [sym_variable_name] = ACTIONS(849), + [ts_builtin_sym_end] = ACTIONS(849), + [anon_sym_SEMI] = ACTIONS(851), + [anon_sym_PIPE] = ACTIONS(851), + [anon_sym_RPAREN] = ACTIONS(849), + [anon_sym_SEMI_SEMI] = ACTIONS(849), + [anon_sym_PIPE_AMP] = ACTIONS(849), + [anon_sym_AMP_AMP] = ACTIONS(849), + [anon_sym_PIPE_PIPE] = ACTIONS(849), + [anon_sym_LT] = ACTIONS(851), + [anon_sym_GT] = ACTIONS(851), + [anon_sym_GT_GT] = ACTIONS(849), + [anon_sym_AMP_GT] = ACTIONS(851), + [anon_sym_AMP_GT_GT] = ACTIONS(849), + [anon_sym_LT_AMP] = ACTIONS(849), + [anon_sym_GT_AMP] = ACTIONS(849), + [sym__special_characters] = ACTIONS(849), + [anon_sym_DQUOTE] = ACTIONS(849), + [anon_sym_DOLLAR] = ACTIONS(851), + [sym_raw_string] = ACTIONS(849), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(849), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(849), + [anon_sym_BQUOTE] = ACTIONS(849), + [anon_sym_LT_LPAREN] = ACTIONS(849), + [anon_sym_GT_LPAREN] = ACTIONS(849), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(851), + [anon_sym_LF] = ACTIONS(849), + [anon_sym_AMP] = ACTIONS(851), }, [571] = { - [sym__concat] = ACTIONS(807), + [sym_file_descriptor] = ACTIONS(853), + [sym__concat] = ACTIONS(853), + [sym_variable_name] = ACTIONS(853), + [ts_builtin_sym_end] = ACTIONS(853), + [anon_sym_SEMI] = ACTIONS(855), + [anon_sym_PIPE] = ACTIONS(855), + [anon_sym_RPAREN] = ACTIONS(853), + [anon_sym_SEMI_SEMI] = ACTIONS(853), + [anon_sym_PIPE_AMP] = ACTIONS(853), + [anon_sym_AMP_AMP] = ACTIONS(853), + [anon_sym_PIPE_PIPE] = ACTIONS(853), + [anon_sym_LT] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_GT_GT] = ACTIONS(853), + [anon_sym_AMP_GT] = ACTIONS(855), + [anon_sym_AMP_GT_GT] = ACTIONS(853), + [anon_sym_LT_AMP] = ACTIONS(853), + [anon_sym_GT_AMP] = ACTIONS(853), + [sym__special_characters] = ACTIONS(853), + [anon_sym_DQUOTE] = ACTIONS(853), + [anon_sym_DOLLAR] = ACTIONS(855), + [sym_raw_string] = ACTIONS(853), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(853), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(853), + [anon_sym_BQUOTE] = ACTIONS(853), + [anon_sym_LT_LPAREN] = ACTIONS(853), + [anon_sym_GT_LPAREN] = ACTIONS(853), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(855), + [anon_sym_LF] = ACTIONS(853), + [anon_sym_AMP] = ACTIONS(855), + }, + [572] = { + [anon_sym_LBRACK] = ACTIONS(857), + [anon_sym_EQ] = ACTIONS(2143), + [sym_comment] = ACTIONS(55), + }, + [573] = { + [sym_subscript] = STATE(1034), + [sym_variable_name] = ACTIONS(2145), + [anon_sym_DASH] = ACTIONS(2147), + [anon_sym_DOLLAR] = ACTIONS(2147), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2149), + [anon_sym_STAR] = ACTIONS(2151), + [anon_sym_AT] = ACTIONS(2151), + [anon_sym_QMARK] = ACTIONS(2151), + [anon_sym_0] = ACTIONS(2149), + [anon_sym__] = ACTIONS(2149), + }, + [574] = { + [sym_concatenation] = STATE(1037), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1037), + [anon_sym_RBRACE] = ACTIONS(2153), + [anon_sym_EQ] = ACTIONS(2155), + [anon_sym_DASH] = ACTIONS(2155), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(2157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(2159), + [anon_sym_COLON] = ACTIONS(2155), + [anon_sym_COLON_QMARK] = ACTIONS(2155), + [anon_sym_COLON_DASH] = ACTIONS(2155), + [anon_sym_PERCENT] = ACTIONS(2155), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [575] = { + [sym_concatenation] = STATE(1040), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1040), + [anon_sym_RBRACE] = ACTIONS(2161), + [anon_sym_EQ] = ACTIONS(2163), + [anon_sym_DASH] = ACTIONS(2163), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(2165), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(2167), + [anon_sym_COLON] = ACTIONS(2163), + [anon_sym_COLON_QMARK] = ACTIONS(2163), + [anon_sym_COLON_DASH] = ACTIONS(2163), + [anon_sym_PERCENT] = ACTIONS(2163), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [576] = { + [anon_sym_SEMI] = ACTIONS(2169), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(2171), + [anon_sym_SEMI_SEMI] = ACTIONS(2173), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2173), + [anon_sym_AMP] = ACTIONS(2169), + }, + [577] = { + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(2169), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(2171), + [anon_sym_SEMI_SEMI] = ACTIONS(2173), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(2173), + [anon_sym_AMP] = ACTIONS(2169), + }, + [578] = { + [sym__terminated_statement] = STATE(198), + [sym_for_statement] = STATE(1043), + [sym_c_style_for_statement] = STATE(1043), + [sym_while_statement] = STATE(1043), + [sym_if_statement] = STATE(1043), + [sym_case_statement] = STATE(1043), + [sym_function_definition] = STATE(1043), + [sym_subshell] = STATE(1043), + [sym_pipeline] = STATE(1043), + [sym_list] = STATE(1043), + [sym_negated_command] = STATE(1043), + [sym_test_command] = STATE(1043), + [sym_declaration_command] = STATE(1043), + [sym_unset_command] = STATE(1043), + [sym_command] = STATE(1043), + [sym_command_name] = STATE(92), + [sym_variable_assignment] = STATE(1044), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(96), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), + [aux_sym__statements_repeat1] = STATE(198), + [aux_sym_command_repeat1] = STATE(96), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(137), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(149), + [anon_sym_declare] = ACTIONS(151), + [anon_sym_typeset] = ACTIONS(151), + [anon_sym_export] = ACTIONS(151), + [anon_sym_readonly] = ACTIONS(151), + [anon_sym_local] = ACTIONS(151), + [anon_sym_unset] = ACTIONS(153), + [anon_sym_unsetenv] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(159), + }, + [579] = { + [anon_sym_SEMI] = ACTIONS(2175), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_SEMI_SEMI] = ACTIONS(2177), + [anon_sym_PIPE_AMP] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_BQUOTE] = ACTIONS(2171), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2177), + [anon_sym_AMP] = ACTIONS(2175), + }, + [580] = { + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(2175), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_SEMI_SEMI] = ACTIONS(2177), + [anon_sym_PIPE_AMP] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(2171), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(2177), + [anon_sym_AMP] = ACTIONS(2175), + }, + [581] = { + [sym__terminated_statement] = STATE(198), + [sym_for_statement] = STATE(1046), + [sym_c_style_for_statement] = STATE(1046), + [sym_while_statement] = STATE(1046), + [sym_if_statement] = STATE(1046), + [sym_case_statement] = STATE(1046), + [sym_function_definition] = STATE(1046), + [sym_subshell] = STATE(1046), + [sym_pipeline] = STATE(1046), + [sym_list] = STATE(1046), + [sym_negated_command] = STATE(1046), + [sym_test_command] = STATE(1046), + [sym_declaration_command] = STATE(1046), + [sym_unset_command] = STATE(1046), + [sym_command] = STATE(1046), + [sym_command_name] = STATE(173), + [sym_variable_assignment] = STATE(1047), + [sym_subscript] = STATE(66), + [sym_file_redirect] = STATE(176), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(60), + [sym_simple_expansion] = STATE(60), + [sym_string_expansion] = STATE(60), + [sym_expansion] = STATE(60), + [sym_command_substitution] = STATE(60), + [sym_process_substitution] = STATE(60), + [aux_sym__statements_repeat1] = STATE(198), + [aux_sym_command_repeat1] = STATE(176), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(95), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(305), + [anon_sym_while] = ACTIONS(307), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(311), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(315), + [anon_sym_declare] = ACTIONS(317), + [anon_sym_typeset] = ACTIONS(317), + [anon_sym_export] = ACTIONS(317), + [anon_sym_readonly] = ACTIONS(317), + [anon_sym_local] = ACTIONS(317), + [anon_sym_unset] = ACTIONS(319), + [anon_sym_unsetenv] = ACTIONS(319), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(115), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(321), + }, + [582] = { + [anon_sym_SEMI] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(2181), + [anon_sym_SEMI_SEMI] = ACTIONS(2183), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2183), + [anon_sym_AMP] = ACTIONS(2179), + }, + [583] = { + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(2181), + [anon_sym_SEMI_SEMI] = ACTIONS(2183), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(2183), + [anon_sym_AMP] = ACTIONS(2179), + }, + [584] = { + [sym__terminated_statement] = STATE(198), + [sym_for_statement] = STATE(1050), + [sym_c_style_for_statement] = STATE(1050), + [sym_while_statement] = STATE(1050), + [sym_if_statement] = STATE(1050), + [sym_case_statement] = STATE(1050), + [sym_function_definition] = STATE(1050), + [sym_subshell] = STATE(1050), + [sym_pipeline] = STATE(1050), + [sym_list] = STATE(1050), + [sym_negated_command] = STATE(1050), + [sym_test_command] = STATE(1050), + [sym_declaration_command] = STATE(1050), + [sym_unset_command] = STATE(1050), + [sym_command] = STATE(1050), + [sym_command_name] = STATE(92), + [sym_variable_assignment] = STATE(1051), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(96), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), + [aux_sym__statements_repeat1] = STATE(198), + [aux_sym_command_repeat1] = STATE(96), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(137), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(149), + [anon_sym_declare] = ACTIONS(151), + [anon_sym_typeset] = ACTIONS(151), + [anon_sym_export] = ACTIONS(151), + [anon_sym_readonly] = ACTIONS(151), + [anon_sym_local] = ACTIONS(151), + [anon_sym_unset] = ACTIONS(153), + [anon_sym_unsetenv] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(159), + }, + [585] = { + [sym__expression] = STATE(1053), + [sym_binary_expression] = STATE(1053), + [sym_unary_expression] = STATE(1053), + [sym_postfix_expression] = STATE(1053), + [sym_parenthesized_expression] = STATE(1053), + [sym_concatenation] = STATE(1053), + [sym_string] = STATE(44), + [sym_simple_expansion] = STATE(44), + [sym_string_expansion] = STATE(44), + [sym_expansion] = STATE(44), + [sym_command_substitution] = STATE(44), + [sym_process_substitution] = STATE(44), + [anon_sym_RPAREN_RPAREN] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(73), + [sym__special_characters] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(79), + [sym_raw_string] = ACTIONS(81), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(83), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(85), + [anon_sym_BQUOTE] = ACTIONS(87), + [anon_sym_LT_LPAREN] = ACTIONS(89), + [anon_sym_GT_LPAREN] = ACTIONS(89), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(91), + [sym_test_operator] = ACTIONS(93), + }, + [586] = { + [anon_sym_SEMI] = ACTIONS(2187), + [anon_sym_SEMI_SEMI] = ACTIONS(2189), + [anon_sym_AMP_AMP] = ACTIONS(1188), + [anon_sym_PIPE_PIPE] = ACTIONS(1188), + [anon_sym_EQ_TILDE] = ACTIONS(1190), + [anon_sym_EQ_EQ] = ACTIONS(1190), + [anon_sym_EQ] = ACTIONS(1192), + [anon_sym_PLUS_EQ] = ACTIONS(1188), + [anon_sym_LT] = ACTIONS(1192), + [anon_sym_GT] = ACTIONS(1192), + [anon_sym_BANG_EQ] = ACTIONS(1188), + [anon_sym_PLUS] = ACTIONS(1192), + [anon_sym_DASH] = ACTIONS(1192), + [anon_sym_DASH_EQ] = ACTIONS(1188), + [anon_sym_LT_EQ] = ACTIONS(1188), + [anon_sym_GT_EQ] = ACTIONS(1188), + [anon_sym_PLUS_PLUS] = ACTIONS(1194), + [anon_sym_DASH_DASH] = ACTIONS(1194), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(1188), + [anon_sym_LF] = ACTIONS(2189), + [anon_sym_AMP] = ACTIONS(2187), + }, + [587] = { + [anon_sym_RPAREN] = ACTIONS(2191), + [anon_sym_AMP_AMP] = ACTIONS(1240), + [anon_sym_PIPE_PIPE] = ACTIONS(1240), + [anon_sym_EQ_TILDE] = ACTIONS(1242), + [anon_sym_EQ_EQ] = ACTIONS(1242), + [anon_sym_EQ] = ACTIONS(1244), + [anon_sym_PLUS_EQ] = ACTIONS(1240), + [anon_sym_LT] = ACTIONS(1244), + [anon_sym_GT] = ACTIONS(1244), + [anon_sym_BANG_EQ] = ACTIONS(1240), + [anon_sym_PLUS] = ACTIONS(1244), + [anon_sym_DASH] = ACTIONS(1244), + [anon_sym_DASH_EQ] = ACTIONS(1240), + [anon_sym_LT_EQ] = ACTIONS(1240), + [anon_sym_GT_EQ] = ACTIONS(1240), + [anon_sym_PLUS_PLUS] = ACTIONS(1246), + [anon_sym_DASH_DASH] = ACTIONS(1246), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(1240), + }, + [588] = { + [anon_sym_SEMI] = ACTIONS(2193), + [anon_sym_SEMI_SEMI] = ACTIONS(1248), + [anon_sym_AMP_AMP] = ACTIONS(1188), + [anon_sym_PIPE_PIPE] = ACTIONS(1188), + [anon_sym_EQ_TILDE] = ACTIONS(1190), + [anon_sym_EQ_EQ] = ACTIONS(1190), + [anon_sym_EQ] = ACTIONS(1192), + [anon_sym_PLUS_EQ] = ACTIONS(1188), + [anon_sym_LT] = ACTIONS(1192), + [anon_sym_GT] = ACTIONS(1192), + [anon_sym_BANG_EQ] = ACTIONS(1188), + [anon_sym_PLUS] = ACTIONS(1192), + [anon_sym_DASH] = ACTIONS(1192), + [anon_sym_DASH_EQ] = ACTIONS(1188), + [anon_sym_LT_EQ] = ACTIONS(1188), + [anon_sym_GT_EQ] = ACTIONS(1188), + [anon_sym_PLUS_PLUS] = ACTIONS(1194), + [anon_sym_DASH_DASH] = ACTIONS(1194), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(1188), + [anon_sym_LF] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(2193), + }, + [589] = { + [sym_string] = STATE(1056), + [sym_simple_expansion] = STATE(1056), + [sym_string_expansion] = STATE(1056), + [sym_expansion] = STATE(1056), + [sym_command_substitution] = STATE(1056), + [sym_process_substitution] = STATE(1056), + [sym__special_characters] = ACTIONS(2195), + [anon_sym_DQUOTE] = ACTIONS(411), + [anon_sym_DOLLAR] = ACTIONS(413), + [sym_raw_string] = ACTIONS(2195), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), + [anon_sym_BQUOTE] = ACTIONS(421), + [anon_sym_LT_LPAREN] = ACTIONS(423), + [anon_sym_GT_LPAREN] = ACTIONS(423), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(2195), + }, + [590] = { + [aux_sym_concatenation_repeat1] = STATE(1057), + [sym__concat] = ACTIONS(1160), [anon_sym_SEMI] = ACTIONS(809), - [anon_sym_esac] = ACTIONS(807), - [anon_sym_PIPE] = ACTIONS(809), [anon_sym_SEMI_SEMI] = ACTIONS(807), - [anon_sym_PIPE_AMP] = ACTIONS(807), [anon_sym_AMP_AMP] = ACTIONS(807), [anon_sym_PIPE_PIPE] = ACTIONS(807), [anon_sym_EQ_TILDE] = ACTIONS(807), [anon_sym_EQ_EQ] = ACTIONS(807), [anon_sym_EQ] = ACTIONS(809), - [anon_sym_LT] = ACTIONS(807), - [anon_sym_GT] = ACTIONS(807), + [anon_sym_PLUS_EQ] = ACTIONS(807), + [anon_sym_LT] = ACTIONS(809), + [anon_sym_GT] = ACTIONS(809), [anon_sym_BANG_EQ] = ACTIONS(807), - [sym_comment] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(809), + [anon_sym_DASH_EQ] = ACTIONS(807), + [anon_sym_LT_EQ] = ACTIONS(807), + [anon_sym_GT_EQ] = ACTIONS(807), + [anon_sym_PLUS_PLUS] = ACTIONS(807), + [anon_sym_DASH_DASH] = ACTIONS(807), + [sym_comment] = ACTIONS(55), [sym_test_operator] = ACTIONS(807), [anon_sym_LF] = ACTIONS(807), [anon_sym_AMP] = ACTIONS(809), }, - [572] = { + [591] = { [sym__concat] = ACTIONS(811), [anon_sym_SEMI] = ACTIONS(813), [anon_sym_esac] = ACTIONS(811), @@ -24531,7655 +25346,8943 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE] = ACTIONS(811), [anon_sym_EQ_EQ] = ACTIONS(811), [anon_sym_EQ] = ACTIONS(813), - [anon_sym_LT] = ACTIONS(811), - [anon_sym_GT] = ACTIONS(811), + [anon_sym_PLUS_EQ] = ACTIONS(811), + [anon_sym_LT] = ACTIONS(813), + [anon_sym_GT] = ACTIONS(813), [anon_sym_BANG_EQ] = ACTIONS(811), - [sym_comment] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_DASH_EQ] = ACTIONS(811), + [anon_sym_LT_EQ] = ACTIONS(811), + [anon_sym_GT_EQ] = ACTIONS(811), + [anon_sym_PLUS_PLUS] = ACTIONS(811), + [anon_sym_DASH_DASH] = ACTIONS(811), + [sym_comment] = ACTIONS(55), [sym_test_operator] = ACTIONS(811), [anon_sym_LF] = ACTIONS(811), [anon_sym_AMP] = ACTIONS(813), }, - [573] = { - [anon_sym_LBRACK] = ACTIONS(815), - [anon_sym_EQ] = ACTIONS(2182), - [sym_comment] = ACTIONS(53), - }, - [574] = { - [sym_subscript] = STATE(1024), - [sym_variable_name] = ACTIONS(2184), - [anon_sym_DOLLAR] = ACTIONS(2186), - [anon_sym_DASH] = ACTIONS(2186), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2188), - [anon_sym_STAR] = ACTIONS(2190), - [anon_sym_AT] = ACTIONS(2190), - [anon_sym_QMARK] = ACTIONS(2190), - [anon_sym_0] = ACTIONS(2188), - [anon_sym__] = ACTIONS(2188), - }, - [575] = { - [sym_concatenation] = STATE(1027), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(1027), - [anon_sym_RBRACE] = ACTIONS(2192), - [anon_sym_EQ] = ACTIONS(2194), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(2196), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(2198), - [anon_sym_COLON] = ACTIONS(2194), - [anon_sym_COLON_QMARK] = ACTIONS(2194), - [anon_sym_COLON_DASH] = ACTIONS(2194), - [anon_sym_PERCENT] = ACTIONS(2194), - [anon_sym_DASH] = ACTIONS(2194), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [576] = { - [sym_concatenation] = STATE(1030), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(1030), - [anon_sym_RBRACE] = ACTIONS(2200), - [anon_sym_EQ] = ACTIONS(2202), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(2204), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(2206), - [anon_sym_COLON] = ACTIONS(2202), - [anon_sym_COLON_QMARK] = ACTIONS(2202), - [anon_sym_COLON_DASH] = ACTIONS(2202), - [anon_sym_PERCENT] = ACTIONS(2202), - [anon_sym_DASH] = ACTIONS(2202), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [577] = { - [anon_sym_SEMI] = ACTIONS(2208), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(2210), - [anon_sym_SEMI_SEMI] = ACTIONS(2212), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(2212), - [anon_sym_AMP] = ACTIONS(2208), - }, - [578] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(2208), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(2210), - [anon_sym_SEMI_SEMI] = ACTIONS(2212), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(2212), - [anon_sym_AMP] = ACTIONS(2208), - }, - [579] = { - [sym__terminated_statement] = STATE(190), - [sym_for_statement] = STATE(1033), - [sym_c_style_for_statement] = STATE(1033), - [sym_while_statement] = STATE(1033), - [sym_if_statement] = STATE(1033), - [sym_case_statement] = STATE(1033), - [sym_function_definition] = STATE(1033), - [sym_subshell] = STATE(1033), - [sym_pipeline] = STATE(1033), - [sym_list] = STATE(1033), - [sym_negated_command] = STATE(1033), - [sym_test_command] = STATE(1033), - [sym_declaration_command] = STATE(1033), - [sym_unset_command] = STATE(1033), - [sym_command] = STATE(1033), - [sym_command_name] = STATE(78), - [sym_variable_assignment] = STATE(1034), - [sym_subscript] = STATE(80), - [sym_file_redirect] = STATE(82), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(75), - [sym_simple_expansion] = STATE(75), - [sym_string_expansion] = STATE(75), - [sym_expansion] = STATE(75), - [sym_command_substitution] = STATE(75), - [sym_process_substitution] = STATE(75), - [aux_sym__statements_repeat1] = STATE(190), - [aux_sym_command_repeat1] = STATE(82), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(111), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(119), - [anon_sym_declare] = ACTIONS(121), - [anon_sym_typeset] = ACTIONS(121), - [anon_sym_export] = ACTIONS(121), - [anon_sym_readonly] = ACTIONS(121), - [anon_sym_local] = ACTIONS(121), - [anon_sym_unset] = ACTIONS(123), - [anon_sym_unsetenv] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), - }, - [580] = { - [anon_sym_SEMI] = ACTIONS(2214), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_SEMI_SEMI] = ACTIONS(2216), - [anon_sym_PIPE_AMP] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(883), - [anon_sym_PIPE_PIPE] = ACTIONS(883), - [anon_sym_BQUOTE] = ACTIONS(2210), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(2216), - [anon_sym_AMP] = ACTIONS(2214), - }, - [581] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(2214), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_SEMI_SEMI] = ACTIONS(2216), - [anon_sym_PIPE_AMP] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(883), - [anon_sym_PIPE_PIPE] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(2210), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(2216), - [anon_sym_AMP] = ACTIONS(2214), - }, - [582] = { - [sym__terminated_statement] = STATE(190), - [sym_for_statement] = STATE(1036), - [sym_c_style_for_statement] = STATE(1036), - [sym_while_statement] = STATE(1036), - [sym_if_statement] = STATE(1036), - [sym_case_statement] = STATE(1036), - [sym_function_definition] = STATE(1036), - [sym_subshell] = STATE(1036), - [sym_pipeline] = STATE(1036), - [sym_list] = STATE(1036), - [sym_negated_command] = STATE(1036), - [sym_test_command] = STATE(1036), - [sym_declaration_command] = STATE(1036), - [sym_unset_command] = STATE(1036), - [sym_command] = STATE(1036), - [sym_command_name] = STATE(165), - [sym_variable_assignment] = STATE(1037), - [sym_subscript] = STATE(53), - [sym_file_redirect] = STATE(168), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(47), - [sym_simple_expansion] = STATE(47), - [sym_string_expansion] = STATE(47), - [sym_expansion] = STATE(47), - [sym_command_substitution] = STATE(47), - [sym_process_substitution] = STATE(47), - [aux_sym__statements_repeat1] = STATE(190), - [aux_sym_command_repeat1] = STATE(168), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(69), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(289), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(291), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(293), - [anon_sym_LBRACK] = ACTIONS(295), - [anon_sym_LBRACK_LBRACK] = ACTIONS(297), - [anon_sym_declare] = ACTIONS(299), - [anon_sym_typeset] = ACTIONS(299), - [anon_sym_export] = ACTIONS(299), - [anon_sym_readonly] = ACTIONS(299), - [anon_sym_local] = ACTIONS(299), - [anon_sym_unset] = ACTIONS(301), - [anon_sym_unsetenv] = ACTIONS(301), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(87), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(303), - }, - [583] = { - [anon_sym_SEMI] = ACTIONS(2218), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(2220), - [anon_sym_SEMI_SEMI] = ACTIONS(2222), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(2222), - [anon_sym_AMP] = ACTIONS(2218), - }, - [584] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(2218), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(2220), - [anon_sym_SEMI_SEMI] = ACTIONS(2222), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(2222), - [anon_sym_AMP] = ACTIONS(2218), - }, - [585] = { - [sym__terminated_statement] = STATE(190), - [sym_for_statement] = STATE(1040), - [sym_c_style_for_statement] = STATE(1040), - [sym_while_statement] = STATE(1040), - [sym_if_statement] = STATE(1040), - [sym_case_statement] = STATE(1040), - [sym_function_definition] = STATE(1040), - [sym_subshell] = STATE(1040), - [sym_pipeline] = STATE(1040), - [sym_list] = STATE(1040), - [sym_negated_command] = STATE(1040), - [sym_test_command] = STATE(1040), - [sym_declaration_command] = STATE(1040), - [sym_unset_command] = STATE(1040), - [sym_command] = STATE(1040), - [sym_command_name] = STATE(78), - [sym_variable_assignment] = STATE(1041), - [sym_subscript] = STATE(80), - [sym_file_redirect] = STATE(82), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(75), - [sym_simple_expansion] = STATE(75), - [sym_string_expansion] = STATE(75), - [sym_expansion] = STATE(75), - [sym_command_substitution] = STATE(75), - [sym_process_substitution] = STATE(75), - [aux_sym__statements_repeat1] = STATE(190), - [aux_sym_command_repeat1] = STATE(82), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(111), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(119), - [anon_sym_declare] = ACTIONS(121), - [anon_sym_typeset] = ACTIONS(121), - [anon_sym_export] = ACTIONS(121), - [anon_sym_readonly] = ACTIONS(121), - [anon_sym_local] = ACTIONS(121), - [anon_sym_unset] = ACTIONS(123), - [anon_sym_unsetenv] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), - }, - [586] = { - [sym__expression] = STATE(1042), - [sym_binary_expression] = STATE(1042), - [sym_unary_expression] = STATE(1042), - [sym_parenthesized_expression] = STATE(1042), - [sym_concatenation] = STATE(1042), - [sym_string] = STATE(215), - [sym_simple_expansion] = STATE(215), - [sym_string_expansion] = STATE(215), - [sym_expansion] = STATE(215), - [sym_command_substitution] = STATE(215), - [sym_process_substitution] = STATE(215), - [anon_sym_SEMI] = ACTIONS(2168), - [anon_sym_SEMI_SEMI] = ACTIONS(2170), - [anon_sym_LPAREN] = ACTIONS(387), - [anon_sym_BANG] = ACTIONS(389), - [sym__special_characters] = ACTIONS(391), - [anon_sym_DQUOTE] = ACTIONS(393), - [anon_sym_DOLLAR] = ACTIONS(395), - [sym_raw_string] = ACTIONS(397), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(399), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(401), - [anon_sym_BQUOTE] = ACTIONS(403), - [anon_sym_LT_LPAREN] = ACTIONS(405), - [anon_sym_GT_LPAREN] = ACTIONS(405), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(407), - [sym_test_operator] = ACTIONS(409), - [anon_sym_LF] = ACTIONS(2170), - [anon_sym_AMP] = ACTIONS(2170), - }, - [587] = { - [sym__expression] = STATE(1043), - [sym_binary_expression] = STATE(1043), - [sym_unary_expression] = STATE(1043), - [sym_parenthesized_expression] = STATE(1043), - [sym_concatenation] = STATE(1043), - [sym_string] = STATE(215), - [sym_simple_expansion] = STATE(215), - [sym_string_expansion] = STATE(215), - [sym_expansion] = STATE(215), - [sym_command_substitution] = STATE(215), - [sym_process_substitution] = STATE(215), - [anon_sym_LPAREN] = ACTIONS(387), - [anon_sym_BANG] = ACTIONS(389), - [sym__special_characters] = ACTIONS(391), - [anon_sym_DQUOTE] = ACTIONS(393), - [anon_sym_DOLLAR] = ACTIONS(395), - [sym_raw_string] = ACTIONS(397), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(399), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(401), - [anon_sym_BQUOTE] = ACTIONS(403), - [anon_sym_LT_LPAREN] = ACTIONS(405), - [anon_sym_GT_LPAREN] = ACTIONS(405), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(407), - [sym_test_operator] = ACTIONS(409), - }, - [588] = { - [sym__expression] = STATE(1043), - [sym_binary_expression] = STATE(1043), - [sym_unary_expression] = STATE(1043), - [sym_parenthesized_expression] = STATE(1043), - [sym_concatenation] = STATE(1043), - [sym_string] = STATE(215), - [sym_simple_expansion] = STATE(215), - [sym_string_expansion] = STATE(215), - [sym_expansion] = STATE(215), - [sym_command_substitution] = STATE(215), - [sym_process_substitution] = STATE(215), - [anon_sym_LPAREN] = ACTIONS(2224), - [anon_sym_BANG] = ACTIONS(389), - [sym__special_characters] = ACTIONS(2226), - [anon_sym_DQUOTE] = ACTIONS(2228), - [anon_sym_DOLLAR] = ACTIONS(395), - [sym_raw_string] = ACTIONS(407), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2230), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2232), - [anon_sym_BQUOTE] = ACTIONS(2234), - [anon_sym_LT_LPAREN] = ACTIONS(2236), - [anon_sym_GT_LPAREN] = ACTIONS(2236), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(407), - [sym_test_operator] = ACTIONS(389), - [sym_regex] = ACTIONS(2238), - }, - [589] = { - [aux_sym_concatenation_repeat1] = STATE(1046), - [sym__concat] = ACTIONS(2240), - [anon_sym_SEMI] = ACTIONS(2064), - [anon_sym_SEMI_SEMI] = ACTIONS(2062), - [sym__special_characters] = ACTIONS(2062), - [anon_sym_DQUOTE] = ACTIONS(2062), - [anon_sym_DOLLAR] = ACTIONS(2064), - [sym_raw_string] = ACTIONS(2062), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2062), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2062), - [anon_sym_BQUOTE] = ACTIONS(2062), - [anon_sym_LT_LPAREN] = ACTIONS(2062), - [anon_sym_GT_LPAREN] = ACTIONS(2062), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2064), - [anon_sym_LF] = ACTIONS(2062), - [anon_sym_AMP] = ACTIONS(2062), - }, - [590] = { - [sym_simple_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [sym_command_substitution] = STATE(141), - [aux_sym_string_repeat1] = STATE(1049), - [anon_sym_DQUOTE] = ACTIONS(2242), - [anon_sym_DOLLAR] = ACTIONS(2244), - [sym__string_content] = ACTIONS(257), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(261), - [anon_sym_BQUOTE] = ACTIONS(263), - [sym_comment] = ACTIONS(265), - }, - [591] = { - [sym_string] = STATE(1051), - [anon_sym_DQUOTE] = ACTIONS(1161), - [anon_sym_DOLLAR] = ACTIONS(2246), - [sym_raw_string] = ACTIONS(2248), - [anon_sym_POUND] = ACTIONS(2246), - [anon_sym_DASH] = ACTIONS(2246), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2250), - [anon_sym_STAR] = ACTIONS(2252), - [anon_sym_AT] = ACTIONS(2252), - [anon_sym_QMARK] = ACTIONS(2252), - [anon_sym_0] = ACTIONS(2250), - [anon_sym__] = ACTIONS(2250), - }, [592] = { - [aux_sym_concatenation_repeat1] = STATE(1046), - [sym__concat] = ACTIONS(2240), - [anon_sym_SEMI] = ACTIONS(2080), - [anon_sym_SEMI_SEMI] = ACTIONS(2078), - [sym__special_characters] = ACTIONS(2078), - [anon_sym_DQUOTE] = ACTIONS(2078), - [anon_sym_DOLLAR] = ACTIONS(2080), - [sym_raw_string] = ACTIONS(2078), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2078), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2078), - [anon_sym_BQUOTE] = ACTIONS(2078), - [anon_sym_LT_LPAREN] = ACTIONS(2078), - [anon_sym_GT_LPAREN] = ACTIONS(2078), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2080), - [anon_sym_LF] = ACTIONS(2078), - [anon_sym_AMP] = ACTIONS(2078), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_DQUOTE] = ACTIONS(2197), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym__string_content] = ACTIONS(821), + [anon_sym_POUND] = ACTIONS(815), + [sym_comment] = ACTIONS(281), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(823), + [anon_sym_STAR] = ACTIONS(825), + [anon_sym_AT] = ACTIONS(825), + [anon_sym_QMARK] = ACTIONS(825), + [anon_sym_0] = ACTIONS(823), + [anon_sym__] = ACTIONS(823), }, [593] = { - [sym_subscript] = STATE(1056), - [sym_variable_name] = ACTIONS(2254), - [anon_sym_BANG] = ACTIONS(2256), - [anon_sym_DOLLAR] = ACTIONS(2258), - [anon_sym_POUND] = ACTIONS(2256), - [anon_sym_DASH] = ACTIONS(2258), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2260), - [anon_sym_STAR] = ACTIONS(2262), - [anon_sym_AT] = ACTIONS(2262), - [anon_sym_QMARK] = ACTIONS(2262), - [anon_sym_0] = ACTIONS(2260), - [anon_sym__] = ACTIONS(2260), + [sym_simple_expansion] = STATE(148), + [sym_expansion] = STATE(148), + [sym_command_substitution] = STATE(148), + [aux_sym_string_repeat1] = STATE(473), + [anon_sym_DQUOTE] = ACTIONS(2197), + [anon_sym_DOLLAR] = ACTIONS(2199), + [sym__string_content] = ACTIONS(273), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(277), + [anon_sym_BQUOTE] = ACTIONS(279), + [sym_comment] = ACTIONS(281), }, [594] = { - [sym__terminated_statement] = STATE(1059), - [sym_for_statement] = STATE(1057), - [sym_c_style_for_statement] = STATE(1057), - [sym_while_statement] = STATE(1057), - [sym_if_statement] = STATE(1057), - [sym_case_statement] = STATE(1057), - [sym_function_definition] = STATE(1057), - [sym_subshell] = STATE(1057), - [sym_pipeline] = STATE(1057), - [sym_list] = STATE(1057), - [sym_negated_command] = STATE(1057), - [sym_test_command] = STATE(1057), - [sym_declaration_command] = STATE(1057), - [sym_unset_command] = STATE(1057), - [sym_command] = STATE(1057), - [sym_command_name] = STATE(78), - [sym_variable_assignment] = STATE(1058), - [sym_subscript] = STATE(80), - [sym_file_redirect] = STATE(82), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(75), - [sym_simple_expansion] = STATE(75), - [sym_string_expansion] = STATE(75), - [sym_expansion] = STATE(75), - [sym_command_substitution] = STATE(75), - [sym_process_substitution] = STATE(75), - [aux_sym__statements_repeat1] = STATE(1059), - [aux_sym_command_repeat1] = STATE(82), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(111), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(119), - [anon_sym_declare] = ACTIONS(121), - [anon_sym_typeset] = ACTIONS(121), - [anon_sym_export] = ACTIONS(121), - [anon_sym_readonly] = ACTIONS(121), - [anon_sym_local] = ACTIONS(121), - [anon_sym_unset] = ACTIONS(123), - [anon_sym_unsetenv] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), + [sym__concat] = ACTIONS(845), + [anon_sym_SEMI] = ACTIONS(847), + [anon_sym_esac] = ACTIONS(845), + [anon_sym_PIPE] = ACTIONS(847), + [anon_sym_SEMI_SEMI] = ACTIONS(845), + [anon_sym_PIPE_AMP] = ACTIONS(845), + [anon_sym_AMP_AMP] = ACTIONS(845), + [anon_sym_PIPE_PIPE] = ACTIONS(845), + [anon_sym_EQ_TILDE] = ACTIONS(845), + [anon_sym_EQ_EQ] = ACTIONS(845), + [anon_sym_EQ] = ACTIONS(847), + [anon_sym_PLUS_EQ] = ACTIONS(845), + [anon_sym_LT] = ACTIONS(847), + [anon_sym_GT] = ACTIONS(847), + [anon_sym_BANG_EQ] = ACTIONS(845), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_DASH_EQ] = ACTIONS(845), + [anon_sym_LT_EQ] = ACTIONS(845), + [anon_sym_GT_EQ] = ACTIONS(845), + [anon_sym_PLUS_PLUS] = ACTIONS(845), + [anon_sym_DASH_DASH] = ACTIONS(845), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(845), + [anon_sym_LF] = ACTIONS(845), + [anon_sym_AMP] = ACTIONS(847), }, [595] = { - [sym__terminated_statement] = STATE(1062), - [sym_for_statement] = STATE(1060), - [sym_c_style_for_statement] = STATE(1060), - [sym_while_statement] = STATE(1060), - [sym_if_statement] = STATE(1060), - [sym_case_statement] = STATE(1060), - [sym_function_definition] = STATE(1060), - [sym_subshell] = STATE(1060), - [sym_pipeline] = STATE(1060), - [sym_list] = STATE(1060), - [sym_negated_command] = STATE(1060), - [sym_test_command] = STATE(1060), - [sym_declaration_command] = STATE(1060), - [sym_unset_command] = STATE(1060), - [sym_command] = STATE(1060), - [sym_command_name] = STATE(165), - [sym_variable_assignment] = STATE(1061), - [sym_subscript] = STATE(53), - [sym_file_redirect] = STATE(168), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(47), - [sym_simple_expansion] = STATE(47), - [sym_string_expansion] = STATE(47), - [sym_expansion] = STATE(47), - [sym_command_substitution] = STATE(47), - [sym_process_substitution] = STATE(47), - [aux_sym__statements_repeat1] = STATE(1062), - [aux_sym_command_repeat1] = STATE(168), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(69), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(289), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(291), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(293), - [anon_sym_LBRACK] = ACTIONS(295), - [anon_sym_LBRACK_LBRACK] = ACTIONS(297), - [anon_sym_declare] = ACTIONS(299), - [anon_sym_typeset] = ACTIONS(299), - [anon_sym_export] = ACTIONS(299), - [anon_sym_readonly] = ACTIONS(299), - [anon_sym_local] = ACTIONS(299), - [anon_sym_unset] = ACTIONS(301), - [anon_sym_unsetenv] = ACTIONS(301), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(87), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(303), + [sym__concat] = ACTIONS(849), + [anon_sym_SEMI] = ACTIONS(851), + [anon_sym_esac] = ACTIONS(849), + [anon_sym_PIPE] = ACTIONS(851), + [anon_sym_SEMI_SEMI] = ACTIONS(849), + [anon_sym_PIPE_AMP] = ACTIONS(849), + [anon_sym_AMP_AMP] = ACTIONS(849), + [anon_sym_PIPE_PIPE] = ACTIONS(849), + [anon_sym_EQ_TILDE] = ACTIONS(849), + [anon_sym_EQ_EQ] = ACTIONS(849), + [anon_sym_EQ] = ACTIONS(851), + [anon_sym_PLUS_EQ] = ACTIONS(849), + [anon_sym_LT] = ACTIONS(851), + [anon_sym_GT] = ACTIONS(851), + [anon_sym_BANG_EQ] = ACTIONS(849), + [anon_sym_PLUS] = ACTIONS(851), + [anon_sym_DASH] = ACTIONS(851), + [anon_sym_DASH_EQ] = ACTIONS(849), + [anon_sym_LT_EQ] = ACTIONS(849), + [anon_sym_GT_EQ] = ACTIONS(849), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(849), + [anon_sym_LF] = ACTIONS(849), + [anon_sym_AMP] = ACTIONS(851), }, [596] = { - [sym__terminated_statement] = STATE(1065), - [sym_for_statement] = STATE(1063), - [sym_c_style_for_statement] = STATE(1063), - [sym_while_statement] = STATE(1063), - [sym_if_statement] = STATE(1063), - [sym_case_statement] = STATE(1063), - [sym_function_definition] = STATE(1063), - [sym_subshell] = STATE(1063), - [sym_pipeline] = STATE(1063), - [sym_list] = STATE(1063), - [sym_negated_command] = STATE(1063), - [sym_test_command] = STATE(1063), - [sym_declaration_command] = STATE(1063), - [sym_unset_command] = STATE(1063), - [sym_command] = STATE(1063), - [sym_command_name] = STATE(78), - [sym_variable_assignment] = STATE(1064), - [sym_subscript] = STATE(80), - [sym_file_redirect] = STATE(82), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(75), - [sym_simple_expansion] = STATE(75), - [sym_string_expansion] = STATE(75), - [sym_expansion] = STATE(75), - [sym_command_substitution] = STATE(75), - [sym_process_substitution] = STATE(75), - [aux_sym__statements_repeat1] = STATE(1065), - [aux_sym_command_repeat1] = STATE(82), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(111), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(119), - [anon_sym_declare] = ACTIONS(121), - [anon_sym_typeset] = ACTIONS(121), - [anon_sym_export] = ACTIONS(121), - [anon_sym_readonly] = ACTIONS(121), - [anon_sym_local] = ACTIONS(121), - [anon_sym_unset] = ACTIONS(123), - [anon_sym_unsetenv] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), + [sym__concat] = ACTIONS(853), + [anon_sym_SEMI] = ACTIONS(855), + [anon_sym_esac] = ACTIONS(853), + [anon_sym_PIPE] = ACTIONS(855), + [anon_sym_SEMI_SEMI] = ACTIONS(853), + [anon_sym_PIPE_AMP] = ACTIONS(853), + [anon_sym_AMP_AMP] = ACTIONS(853), + [anon_sym_PIPE_PIPE] = ACTIONS(853), + [anon_sym_EQ_TILDE] = ACTIONS(853), + [anon_sym_EQ_EQ] = ACTIONS(853), + [anon_sym_EQ] = ACTIONS(855), + [anon_sym_PLUS_EQ] = ACTIONS(853), + [anon_sym_LT] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_BANG_EQ] = ACTIONS(853), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_DASH_EQ] = ACTIONS(853), + [anon_sym_LT_EQ] = ACTIONS(853), + [anon_sym_GT_EQ] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(853), + [anon_sym_DASH_DASH] = ACTIONS(853), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(853), + [anon_sym_LF] = ACTIONS(853), + [anon_sym_AMP] = ACTIONS(855), }, [597] = { - [sym_concatenation] = STATE(1067), - [sym_string] = STATE(592), - [sym_simple_expansion] = STATE(592), - [sym_string_expansion] = STATE(592), - [sym_expansion] = STATE(592), - [sym_command_substitution] = STATE(592), - [sym_process_substitution] = STATE(592), - [aux_sym_for_statement_repeat1] = STATE(1067), - [anon_sym_SEMI] = ACTIONS(2264), - [anon_sym_SEMI_SEMI] = ACTIONS(2266), - [sym__special_characters] = ACTIONS(1159), - [anon_sym_DQUOTE] = ACTIONS(1161), - [anon_sym_DOLLAR] = ACTIONS(1163), - [sym_raw_string] = ACTIONS(1165), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1167), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1169), - [anon_sym_BQUOTE] = ACTIONS(1171), - [anon_sym_LT_LPAREN] = ACTIONS(1173), - [anon_sym_GT_LPAREN] = ACTIONS(1173), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2268), - [anon_sym_LF] = ACTIONS(2266), - [anon_sym_AMP] = ACTIONS(2266), + [anon_sym_LBRACK] = ACTIONS(857), + [anon_sym_EQ] = ACTIONS(2201), + [sym_comment] = ACTIONS(55), }, [598] = { - [sym__terminated_statement] = STATE(1069), - [sym_for_statement] = STATE(521), - [sym_c_style_for_statement] = STATE(521), - [sym_while_statement] = STATE(521), - [sym_if_statement] = STATE(521), - [sym_case_statement] = STATE(521), - [sym_function_definition] = STATE(521), - [sym_subshell] = STATE(521), - [sym_pipeline] = STATE(521), - [sym_list] = STATE(521), - [sym_negated_command] = STATE(521), - [sym_test_command] = STATE(521), - [sym_declaration_command] = STATE(521), - [sym_unset_command] = STATE(521), - [sym_command] = STATE(521), - [sym_command_name] = STATE(51), - [sym_variable_assignment] = STATE(522), - [sym_subscript] = STATE(53), - [sym_file_redirect] = STATE(54), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(47), - [sym_simple_expansion] = STATE(47), - [sym_string_expansion] = STATE(47), - [sym_expansion] = STATE(47), - [sym_command_substitution] = STATE(47), - [sym_process_substitution] = STATE(47), - [aux_sym__statements_repeat1] = STATE(1069), - [aux_sym_command_repeat1] = STATE(54), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(69), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(71), - [anon_sym_done] = ACTIONS(2270), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(73), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(75), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_LBRACK_LBRACK] = ACTIONS(79), - [anon_sym_declare] = ACTIONS(81), - [anon_sym_typeset] = ACTIONS(81), - [anon_sym_export] = ACTIONS(81), - [anon_sym_readonly] = ACTIONS(81), - [anon_sym_local] = ACTIONS(81), - [anon_sym_unset] = ACTIONS(83), - [anon_sym_unsetenv] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(87), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(89), + [sym_subscript] = STATE(1063), + [sym_variable_name] = ACTIONS(2203), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_DOLLAR] = ACTIONS(2205), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2207), + [anon_sym_STAR] = ACTIONS(2209), + [anon_sym_AT] = ACTIONS(2209), + [anon_sym_QMARK] = ACTIONS(2209), + [anon_sym_0] = ACTIONS(2207), + [anon_sym__] = ACTIONS(2207), }, [599] = { - [ts_builtin_sym_end] = ACTIONS(2272), - [anon_sym_SEMI] = ACTIONS(2274), - [anon_sym_esac] = ACTIONS(2272), - [anon_sym_PIPE] = ACTIONS(2274), - [anon_sym_RPAREN] = ACTIONS(2272), - [anon_sym_SEMI_SEMI] = ACTIONS(2272), - [anon_sym_PIPE_AMP] = ACTIONS(2272), - [anon_sym_AMP_AMP] = ACTIONS(2272), - [anon_sym_PIPE_PIPE] = ACTIONS(2272), - [anon_sym_BQUOTE] = ACTIONS(2272), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(2272), - [anon_sym_AMP] = ACTIONS(2274), + [sym_concatenation] = STATE(1066), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1066), + [anon_sym_RBRACE] = ACTIONS(2211), + [anon_sym_EQ] = ACTIONS(2213), + [anon_sym_DASH] = ACTIONS(2213), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(2215), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(2217), + [anon_sym_COLON] = ACTIONS(2213), + [anon_sym_COLON_QMARK] = ACTIONS(2213), + [anon_sym_COLON_DASH] = ACTIONS(2213), + [anon_sym_PERCENT] = ACTIONS(2213), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [600] = { - [aux_sym_concatenation_repeat1] = STATE(1070), - [sym_file_descriptor] = ACTIONS(1093), - [sym__concat] = ACTIONS(1095), - [sym_variable_name] = ACTIONS(1093), - [anon_sym_SEMI] = ACTIONS(1097), - [anon_sym_PIPE] = ACTIONS(1097), - [anon_sym_SEMI_SEMI] = ACTIONS(1093), - [anon_sym_PIPE_AMP] = ACTIONS(1093), - [anon_sym_AMP_AMP] = ACTIONS(1093), - [anon_sym_PIPE_PIPE] = ACTIONS(1093), - [anon_sym_LT] = ACTIONS(1097), - [anon_sym_GT] = ACTIONS(1097), - [anon_sym_GT_GT] = ACTIONS(1093), - [anon_sym_AMP_GT] = ACTIONS(1097), - [anon_sym_AMP_GT_GT] = ACTIONS(1093), - [anon_sym_LT_AMP] = ACTIONS(1093), - [anon_sym_GT_AMP] = ACTIONS(1093), - [sym__special_characters] = ACTIONS(1093), - [anon_sym_DQUOTE] = ACTIONS(1093), - [anon_sym_DOLLAR] = ACTIONS(1097), - [sym_raw_string] = ACTIONS(1093), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1093), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1093), - [anon_sym_BQUOTE] = ACTIONS(1093), - [anon_sym_LT_LPAREN] = ACTIONS(1093), - [anon_sym_GT_LPAREN] = ACTIONS(1093), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1097), - [anon_sym_LF] = ACTIONS(1093), - [anon_sym_AMP] = ACTIONS(1097), + [sym_concatenation] = STATE(1069), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1069), + [anon_sym_RBRACE] = ACTIONS(2219), + [anon_sym_EQ] = ACTIONS(2221), + [anon_sym_DASH] = ACTIONS(2221), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(2223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(2225), + [anon_sym_COLON] = ACTIONS(2221), + [anon_sym_COLON_QMARK] = ACTIONS(2221), + [anon_sym_COLON_DASH] = ACTIONS(2221), + [anon_sym_PERCENT] = ACTIONS(2221), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [601] = { - [aux_sym_concatenation_repeat1] = STATE(1070), - [sym_file_descriptor] = ACTIONS(1071), - [sym__concat] = ACTIONS(1095), - [sym_variable_name] = ACTIONS(1071), - [anon_sym_SEMI] = ACTIONS(1073), - [anon_sym_PIPE] = ACTIONS(1073), - [anon_sym_SEMI_SEMI] = ACTIONS(1071), - [anon_sym_PIPE_AMP] = ACTIONS(1071), - [anon_sym_AMP_AMP] = ACTIONS(1071), - [anon_sym_PIPE_PIPE] = ACTIONS(1071), - [anon_sym_LT] = ACTIONS(1073), - [anon_sym_GT] = ACTIONS(1073), - [anon_sym_GT_GT] = ACTIONS(1071), - [anon_sym_AMP_GT] = ACTIONS(1073), - [anon_sym_AMP_GT_GT] = ACTIONS(1071), - [anon_sym_LT_AMP] = ACTIONS(1071), - [anon_sym_GT_AMP] = ACTIONS(1071), - [sym__special_characters] = ACTIONS(1071), - [anon_sym_DQUOTE] = ACTIONS(1071), - [anon_sym_DOLLAR] = ACTIONS(1073), - [sym_raw_string] = ACTIONS(1071), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1071), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1071), - [anon_sym_BQUOTE] = ACTIONS(1071), - [anon_sym_LT_LPAREN] = ACTIONS(1071), - [anon_sym_GT_LPAREN] = ACTIONS(1071), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1073), - [anon_sym_LF] = ACTIONS(1071), - [anon_sym_AMP] = ACTIONS(1073), + [anon_sym_SEMI] = ACTIONS(2227), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(2229), + [anon_sym_SEMI_SEMI] = ACTIONS(2231), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2231), + [anon_sym_AMP] = ACTIONS(2227), }, [602] = { - [sym_file_redirect] = STATE(1071), - [sym_heredoc_redirect] = STATE(1071), - [sym_heredoc_body] = STATE(615), - [sym_herestring_redirect] = STATE(1071), - [aux_sym_while_statement_repeat1] = STATE(1071), - [sym__simple_heredoc_body] = ACTIONS(321), - [sym__heredoc_body_beginning] = ACTIONS(323), - [sym_file_descriptor] = ACTIONS(453), - [anon_sym_SEMI] = ACTIONS(1197), - [anon_sym_PIPE] = ACTIONS(1197), - [anon_sym_SEMI_SEMI] = ACTIONS(1195), - [anon_sym_PIPE_AMP] = ACTIONS(1195), - [anon_sym_AMP_AMP] = ACTIONS(1195), - [anon_sym_PIPE_PIPE] = ACTIONS(1195), - [anon_sym_LT] = ACTIONS(457), - [anon_sym_GT] = ACTIONS(457), - [anon_sym_GT_GT] = ACTIONS(459), - [anon_sym_AMP_GT] = ACTIONS(457), - [anon_sym_AMP_GT_GT] = ACTIONS(459), - [anon_sym_LT_AMP] = ACTIONS(459), - [anon_sym_GT_AMP] = ACTIONS(459), - [anon_sym_LT_LT] = ACTIONS(337), - [anon_sym_LT_LT_DASH] = ACTIONS(339), - [anon_sym_LT_LT_LT] = ACTIONS(461), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1195), - [anon_sym_AMP] = ACTIONS(1197), + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(2227), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(2229), + [anon_sym_SEMI_SEMI] = ACTIONS(2231), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(2231), + [anon_sym_AMP] = ACTIONS(2227), }, [603] = { - [anon_sym_RPAREN] = ACTIONS(2276), - [sym_comment] = ACTIONS(53), + [sym__terminated_statement] = STATE(198), + [sym_for_statement] = STATE(1072), + [sym_c_style_for_statement] = STATE(1072), + [sym_while_statement] = STATE(1072), + [sym_if_statement] = STATE(1072), + [sym_case_statement] = STATE(1072), + [sym_function_definition] = STATE(1072), + [sym_subshell] = STATE(1072), + [sym_pipeline] = STATE(1072), + [sym_list] = STATE(1072), + [sym_negated_command] = STATE(1072), + [sym_test_command] = STATE(1072), + [sym_declaration_command] = STATE(1072), + [sym_unset_command] = STATE(1072), + [sym_command] = STATE(1072), + [sym_command_name] = STATE(92), + [sym_variable_assignment] = STATE(1073), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(96), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), + [aux_sym__statements_repeat1] = STATE(198), + [aux_sym_command_repeat1] = STATE(96), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(137), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(149), + [anon_sym_declare] = ACTIONS(151), + [anon_sym_typeset] = ACTIONS(151), + [anon_sym_export] = ACTIONS(151), + [anon_sym_readonly] = ACTIONS(151), + [anon_sym_local] = ACTIONS(151), + [anon_sym_unset] = ACTIONS(153), + [anon_sym_unsetenv] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(159), }, [604] = { - [sym_file_redirect] = STATE(672), - [sym_file_descriptor] = ACTIONS(2278), - [anon_sym_SEMI] = ACTIONS(1289), - [anon_sym_PIPE] = ACTIONS(1289), - [anon_sym_SEMI_SEMI] = ACTIONS(1287), - [anon_sym_PIPE_AMP] = ACTIONS(1287), - [anon_sym_AMP_AMP] = ACTIONS(1287), - [anon_sym_PIPE_PIPE] = ACTIONS(1287), - [anon_sym_LT] = ACTIONS(2280), - [anon_sym_GT] = ACTIONS(2280), - [anon_sym_GT_GT] = ACTIONS(2282), - [anon_sym_AMP_GT] = ACTIONS(2280), - [anon_sym_AMP_GT_GT] = ACTIONS(2282), - [anon_sym_LT_AMP] = ACTIONS(2282), - [anon_sym_GT_AMP] = ACTIONS(2282), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1287), - [anon_sym_AMP] = ACTIONS(1289), + [anon_sym_SEMI] = ACTIONS(2233), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_SEMI_SEMI] = ACTIONS(2235), + [anon_sym_PIPE_AMP] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_BQUOTE] = ACTIONS(2229), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2235), + [anon_sym_AMP] = ACTIONS(2233), }, [605] = { - [sym_file_redirect] = STATE(1078), - [sym_heredoc_redirect] = STATE(1078), - [sym_herestring_redirect] = STATE(1078), - [aux_sym_while_statement_repeat1] = STATE(1078), - [sym_file_descriptor] = ACTIONS(2284), - [anon_sym_SEMI] = ACTIONS(1407), - [anon_sym_PIPE] = ACTIONS(1407), - [anon_sym_SEMI_SEMI] = ACTIONS(1405), - [anon_sym_PIPE_AMP] = ACTIONS(1405), - [anon_sym_AMP_AMP] = ACTIONS(1405), - [anon_sym_PIPE_PIPE] = ACTIONS(1405), - [anon_sym_LT] = ACTIONS(2286), - [anon_sym_GT] = ACTIONS(2286), - [anon_sym_GT_GT] = ACTIONS(2288), - [anon_sym_AMP_GT] = ACTIONS(2286), - [anon_sym_AMP_GT_GT] = ACTIONS(2288), - [anon_sym_LT_AMP] = ACTIONS(2288), - [anon_sym_GT_AMP] = ACTIONS(2288), - [anon_sym_LT_LT] = ACTIONS(1413), - [anon_sym_LT_LT_DASH] = ACTIONS(1415), - [anon_sym_LT_LT_LT] = ACTIONS(2290), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1405), - [anon_sym_AMP] = ACTIONS(1407), + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(2233), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_SEMI_SEMI] = ACTIONS(2235), + [anon_sym_PIPE_AMP] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(2229), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(2235), + [anon_sym_AMP] = ACTIONS(2233), }, [606] = { - [sym_concatenation] = STATE(770), - [sym_string] = STATE(1080), - [sym_array] = STATE(770), - [sym_simple_expansion] = STATE(1080), - [sym_string_expansion] = STATE(1080), - [sym_expansion] = STATE(1080), - [sym_command_substitution] = STATE(1080), - [sym_process_substitution] = STATE(1080), - [sym__empty_value] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1503), - [sym__special_characters] = ACTIONS(2292), - [anon_sym_DQUOTE] = ACTIONS(189), - [anon_sym_DOLLAR] = ACTIONS(191), - [sym_raw_string] = ACTIONS(2294), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(195), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(197), - [anon_sym_BQUOTE] = ACTIONS(199), - [anon_sym_LT_LPAREN] = ACTIONS(201), - [anon_sym_GT_LPAREN] = ACTIONS(201), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2294), + [sym__terminated_statement] = STATE(198), + [sym_for_statement] = STATE(1075), + [sym_c_style_for_statement] = STATE(1075), + [sym_while_statement] = STATE(1075), + [sym_if_statement] = STATE(1075), + [sym_case_statement] = STATE(1075), + [sym_function_definition] = STATE(1075), + [sym_subshell] = STATE(1075), + [sym_pipeline] = STATE(1075), + [sym_list] = STATE(1075), + [sym_negated_command] = STATE(1075), + [sym_test_command] = STATE(1075), + [sym_declaration_command] = STATE(1075), + [sym_unset_command] = STATE(1075), + [sym_command] = STATE(1075), + [sym_command_name] = STATE(173), + [sym_variable_assignment] = STATE(1076), + [sym_subscript] = STATE(66), + [sym_file_redirect] = STATE(176), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(60), + [sym_simple_expansion] = STATE(60), + [sym_string_expansion] = STATE(60), + [sym_expansion] = STATE(60), + [sym_command_substitution] = STATE(60), + [sym_process_substitution] = STATE(60), + [aux_sym__statements_repeat1] = STATE(198), + [aux_sym_command_repeat1] = STATE(176), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(95), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(305), + [anon_sym_while] = ACTIONS(307), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(311), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(315), + [anon_sym_declare] = ACTIONS(317), + [anon_sym_typeset] = ACTIONS(317), + [anon_sym_export] = ACTIONS(317), + [anon_sym_readonly] = ACTIONS(317), + [anon_sym_local] = ACTIONS(317), + [anon_sym_unset] = ACTIONS(319), + [anon_sym_unsetenv] = ACTIONS(319), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(115), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(321), }, [607] = { - [aux_sym_concatenation_repeat1] = STATE(1081), - [sym__concat] = ACTIONS(655), - [sym_variable_name] = ACTIONS(765), - [anon_sym_SEMI] = ACTIONS(767), - [anon_sym_PIPE] = ACTIONS(767), - [anon_sym_SEMI_SEMI] = ACTIONS(765), - [anon_sym_PIPE_AMP] = ACTIONS(765), - [anon_sym_AMP_AMP] = ACTIONS(765), - [anon_sym_PIPE_PIPE] = ACTIONS(765), - [sym__special_characters] = ACTIONS(765), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_DOLLAR] = ACTIONS(767), - [sym_raw_string] = ACTIONS(765), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(765), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(765), - [anon_sym_BQUOTE] = ACTIONS(765), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(767), - [sym_word] = ACTIONS(767), - [anon_sym_LF] = ACTIONS(765), - [anon_sym_AMP] = ACTIONS(767), + [anon_sym_SEMI] = ACTIONS(2237), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(2239), + [anon_sym_SEMI_SEMI] = ACTIONS(2241), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2241), + [anon_sym_AMP] = ACTIONS(2237), }, [608] = { - [sym_variable_assignment] = STATE(608), - [sym_subscript] = STATE(231), - [sym_concatenation] = STATE(608), - [sym_string] = STATE(230), - [sym_simple_expansion] = STATE(230), - [sym_string_expansion] = STATE(230), - [sym_expansion] = STATE(230), - [sym_command_substitution] = STATE(230), - [sym_process_substitution] = STATE(230), - [aux_sym_declaration_command_repeat1] = STATE(608), - [sym_variable_name] = ACTIONS(2296), - [anon_sym_SEMI] = ACTIONS(1562), - [anon_sym_PIPE] = ACTIONS(1562), - [anon_sym_SEMI_SEMI] = ACTIONS(1560), - [anon_sym_PIPE_AMP] = ACTIONS(1560), - [anon_sym_AMP_AMP] = ACTIONS(1560), - [anon_sym_PIPE_PIPE] = ACTIONS(1560), - [sym__special_characters] = ACTIONS(2299), - [anon_sym_DQUOTE] = ACTIONS(1567), - [anon_sym_DOLLAR] = ACTIONS(1570), - [sym_raw_string] = ACTIONS(2302), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1576), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1579), - [anon_sym_BQUOTE] = ACTIONS(1582), - [anon_sym_LT_LPAREN] = ACTIONS(1585), - [anon_sym_GT_LPAREN] = ACTIONS(1585), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2305), - [sym_word] = ACTIONS(2308), - [anon_sym_LF] = ACTIONS(1560), - [anon_sym_AMP] = ACTIONS(1562), + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(2237), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(2239), + [anon_sym_SEMI_SEMI] = ACTIONS(2241), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(2241), + [anon_sym_AMP] = ACTIONS(2237), }, [609] = { - [aux_sym_concatenation_repeat1] = STATE(1082), - [sym__concat] = ACTIONS(693), - [anon_sym_SEMI] = ACTIONS(767), - [anon_sym_PIPE] = ACTIONS(767), - [anon_sym_SEMI_SEMI] = ACTIONS(765), - [anon_sym_PIPE_AMP] = ACTIONS(765), - [anon_sym_AMP_AMP] = ACTIONS(765), - [anon_sym_PIPE_PIPE] = ACTIONS(765), - [sym__special_characters] = ACTIONS(765), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_DOLLAR] = ACTIONS(767), - [sym_raw_string] = ACTIONS(765), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(765), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(765), - [anon_sym_BQUOTE] = ACTIONS(765), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(767), - [sym_word] = ACTIONS(767), - [anon_sym_LF] = ACTIONS(765), - [anon_sym_AMP] = ACTIONS(767), + [sym__terminated_statement] = STATE(198), + [sym_for_statement] = STATE(1079), + [sym_c_style_for_statement] = STATE(1079), + [sym_while_statement] = STATE(1079), + [sym_if_statement] = STATE(1079), + [sym_case_statement] = STATE(1079), + [sym_function_definition] = STATE(1079), + [sym_subshell] = STATE(1079), + [sym_pipeline] = STATE(1079), + [sym_list] = STATE(1079), + [sym_negated_command] = STATE(1079), + [sym_test_command] = STATE(1079), + [sym_declaration_command] = STATE(1079), + [sym_unset_command] = STATE(1079), + [sym_command] = STATE(1079), + [sym_command_name] = STATE(92), + [sym_variable_assignment] = STATE(1080), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(96), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), + [aux_sym__statements_repeat1] = STATE(198), + [aux_sym_command_repeat1] = STATE(96), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(137), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(149), + [anon_sym_declare] = ACTIONS(151), + [anon_sym_typeset] = ACTIONS(151), + [anon_sym_export] = ACTIONS(151), + [anon_sym_readonly] = ACTIONS(151), + [anon_sym_local] = ACTIONS(151), + [anon_sym_unset] = ACTIONS(153), + [anon_sym_unsetenv] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(159), }, [610] = { - [sym_concatenation] = STATE(610), - [sym_string] = STATE(234), - [sym_simple_expansion] = STATE(234), - [sym_string_expansion] = STATE(234), - [sym_expansion] = STATE(234), - [sym_command_substitution] = STATE(234), - [sym_process_substitution] = STATE(234), - [aux_sym_unset_command_repeat1] = STATE(610), - [anon_sym_SEMI] = ACTIONS(1644), - [anon_sym_PIPE] = ACTIONS(1644), - [anon_sym_SEMI_SEMI] = ACTIONS(1642), - [anon_sym_PIPE_AMP] = ACTIONS(1642), - [anon_sym_AMP_AMP] = ACTIONS(1642), - [anon_sym_PIPE_PIPE] = ACTIONS(1642), - [sym__special_characters] = ACTIONS(2311), - [anon_sym_DQUOTE] = ACTIONS(1649), - [anon_sym_DOLLAR] = ACTIONS(1652), - [sym_raw_string] = ACTIONS(2314), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1658), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1661), - [anon_sym_BQUOTE] = ACTIONS(1664), - [anon_sym_LT_LPAREN] = ACTIONS(1667), - [anon_sym_GT_LPAREN] = ACTIONS(1667), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2317), - [sym_word] = ACTIONS(2320), - [anon_sym_LF] = ACTIONS(1642), - [anon_sym_AMP] = ACTIONS(1644), + [sym__expression] = STATE(1081), + [sym_binary_expression] = STATE(1081), + [sym_unary_expression] = STATE(1081), + [sym_postfix_expression] = STATE(1081), + [sym_parenthesized_expression] = STATE(1081), + [sym_concatenation] = STATE(1081), + [sym_string] = STATE(223), + [sym_simple_expansion] = STATE(223), + [sym_string_expansion] = STATE(223), + [sym_expansion] = STATE(223), + [sym_command_substitution] = STATE(223), + [sym_process_substitution] = STATE(223), + [anon_sym_SEMI] = ACTIONS(2187), + [anon_sym_SEMI_SEMI] = ACTIONS(2189), + [anon_sym_LPAREN] = ACTIONS(405), + [anon_sym_BANG] = ACTIONS(407), + [sym__special_characters] = ACTIONS(409), + [anon_sym_DQUOTE] = ACTIONS(411), + [anon_sym_DOLLAR] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), + [anon_sym_BQUOTE] = ACTIONS(421), + [anon_sym_LT_LPAREN] = ACTIONS(423), + [anon_sym_GT_LPAREN] = ACTIONS(423), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(425), + [sym_test_operator] = ACTIONS(427), + [anon_sym_LF] = ACTIONS(2189), + [anon_sym_AMP] = ACTIONS(2189), }, [611] = { - [aux_sym_concatenation_repeat1] = STATE(611), - [sym__simple_heredoc_body] = ACTIONS(1724), - [sym__heredoc_body_beginning] = ACTIONS(1724), - [sym_file_descriptor] = ACTIONS(1724), - [sym__concat] = ACTIONS(1728), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(1726), - [anon_sym_SEMI_SEMI] = ACTIONS(1724), - [anon_sym_PIPE_AMP] = ACTIONS(1724), - [anon_sym_AMP_AMP] = ACTIONS(1724), - [anon_sym_PIPE_PIPE] = ACTIONS(1724), - [anon_sym_EQ_TILDE] = ACTIONS(1726), - [anon_sym_EQ_EQ] = ACTIONS(1726), - [anon_sym_LT] = ACTIONS(1726), - [anon_sym_GT] = ACTIONS(1726), - [anon_sym_GT_GT] = ACTIONS(1724), - [anon_sym_AMP_GT] = ACTIONS(1726), - [anon_sym_AMP_GT_GT] = ACTIONS(1724), - [anon_sym_LT_AMP] = ACTIONS(1724), - [anon_sym_GT_AMP] = ACTIONS(1724), - [anon_sym_LT_LT] = ACTIONS(1726), - [anon_sym_LT_LT_DASH] = ACTIONS(1724), - [anon_sym_LT_LT_LT] = ACTIONS(1724), - [sym__special_characters] = ACTIONS(1724), - [anon_sym_DQUOTE] = ACTIONS(1724), - [anon_sym_DOLLAR] = ACTIONS(1726), - [sym_raw_string] = ACTIONS(1724), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1724), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1724), - [anon_sym_BQUOTE] = ACTIONS(1724), - [anon_sym_LT_LPAREN] = ACTIONS(1724), - [anon_sym_GT_LPAREN] = ACTIONS(1724), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1726), - [anon_sym_LF] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1726), + [sym__expression] = STATE(1082), + [sym_binary_expression] = STATE(1082), + [sym_unary_expression] = STATE(1082), + [sym_postfix_expression] = STATE(1082), + [sym_parenthesized_expression] = STATE(1082), + [sym_concatenation] = STATE(1082), + [sym_string] = STATE(223), + [sym_simple_expansion] = STATE(223), + [sym_string_expansion] = STATE(223), + [sym_expansion] = STATE(223), + [sym_command_substitution] = STATE(223), + [sym_process_substitution] = STATE(223), + [anon_sym_LPAREN] = ACTIONS(405), + [anon_sym_BANG] = ACTIONS(407), + [sym__special_characters] = ACTIONS(409), + [anon_sym_DQUOTE] = ACTIONS(411), + [anon_sym_DOLLAR] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), + [anon_sym_BQUOTE] = ACTIONS(421), + [anon_sym_LT_LPAREN] = ACTIONS(423), + [anon_sym_GT_LPAREN] = ACTIONS(423), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(425), + [sym_test_operator] = ACTIONS(427), }, [612] = { - [sym_compound_statement] = STATE(1083), - [anon_sym_LBRACE] = ACTIONS(511), - [sym_comment] = ACTIONS(53), + [sym__expression] = STATE(1082), + [sym_binary_expression] = STATE(1082), + [sym_unary_expression] = STATE(1082), + [sym_postfix_expression] = STATE(1082), + [sym_parenthesized_expression] = STATE(1082), + [sym_concatenation] = STATE(1082), + [sym_string] = STATE(223), + [sym_simple_expansion] = STATE(223), + [sym_string_expansion] = STATE(223), + [sym_expansion] = STATE(223), + [sym_command_substitution] = STATE(223), + [sym_process_substitution] = STATE(223), + [sym_regex] = ACTIONS(2243), + [anon_sym_LPAREN] = ACTIONS(405), + [anon_sym_BANG] = ACTIONS(407), + [sym__special_characters] = ACTIONS(409), + [anon_sym_DQUOTE] = ACTIONS(411), + [anon_sym_DOLLAR] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), + [anon_sym_BQUOTE] = ACTIONS(421), + [anon_sym_LT_LPAREN] = ACTIONS(423), + [anon_sym_GT_LPAREN] = ACTIONS(423), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(425), + [sym_test_operator] = ACTIONS(427), }, [613] = { - [sym__simple_heredoc_body] = ACTIONS(2323), - [sym__heredoc_body_beginning] = ACTIONS(2323), - [sym_file_descriptor] = ACTIONS(2323), - [ts_builtin_sym_end] = ACTIONS(2323), - [anon_sym_SEMI] = ACTIONS(2325), - [anon_sym_esac] = ACTIONS(2323), - [anon_sym_PIPE] = ACTIONS(2325), - [anon_sym_RPAREN] = ACTIONS(2323), - [anon_sym_SEMI_SEMI] = ACTIONS(2323), - [anon_sym_PIPE_AMP] = ACTIONS(2323), - [anon_sym_AMP_AMP] = ACTIONS(2323), - [anon_sym_PIPE_PIPE] = ACTIONS(2323), - [anon_sym_LT] = ACTIONS(2325), - [anon_sym_GT] = ACTIONS(2325), - [anon_sym_GT_GT] = ACTIONS(2323), - [anon_sym_AMP_GT] = ACTIONS(2325), - [anon_sym_AMP_GT_GT] = ACTIONS(2323), - [anon_sym_LT_AMP] = ACTIONS(2323), - [anon_sym_GT_AMP] = ACTIONS(2323), - [anon_sym_LT_LT] = ACTIONS(2325), - [anon_sym_LT_LT_DASH] = ACTIONS(2323), - [anon_sym_LT_LT_LT] = ACTIONS(2323), - [anon_sym_BQUOTE] = ACTIONS(2323), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(2323), - [anon_sym_AMP] = ACTIONS(2325), + [anon_sym_SEMI] = ACTIONS(1318), + [anon_sym_SEMI_SEMI] = ACTIONS(1316), + [anon_sym_AMP_AMP] = ACTIONS(1316), + [anon_sym_PIPE_PIPE] = ACTIONS(1316), + [anon_sym_EQ_TILDE] = ACTIONS(1316), + [anon_sym_EQ_EQ] = ACTIONS(1316), + [anon_sym_EQ] = ACTIONS(1318), + [anon_sym_PLUS_EQ] = ACTIONS(1316), + [anon_sym_LT] = ACTIONS(1318), + [anon_sym_GT] = ACTIONS(1318), + [anon_sym_BANG_EQ] = ACTIONS(1316), + [anon_sym_PLUS] = ACTIONS(1318), + [anon_sym_DASH] = ACTIONS(1318), + [anon_sym_DASH_EQ] = ACTIONS(1316), + [anon_sym_LT_EQ] = ACTIONS(1316), + [anon_sym_GT_EQ] = ACTIONS(1316), + [anon_sym_PLUS_PLUS] = ACTIONS(1316), + [anon_sym_DASH_DASH] = ACTIONS(1316), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(1316), + [anon_sym_LF] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1318), }, [614] = { - [sym__terminated_statement] = STATE(1085), - [sym_for_statement] = STATE(521), - [sym_c_style_for_statement] = STATE(521), - [sym_while_statement] = STATE(521), - [sym_if_statement] = STATE(521), - [sym_case_statement] = STATE(521), - [sym_function_definition] = STATE(521), - [sym_subshell] = STATE(521), - [sym_pipeline] = STATE(521), - [sym_list] = STATE(521), - [sym_negated_command] = STATE(521), - [sym_test_command] = STATE(521), - [sym_declaration_command] = STATE(521), - [sym_unset_command] = STATE(521), - [sym_command] = STATE(521), - [sym_command_name] = STATE(51), - [sym_variable_assignment] = STATE(522), - [sym_subscript] = STATE(53), - [sym_file_redirect] = STATE(54), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(47), - [sym_simple_expansion] = STATE(47), - [sym_string_expansion] = STATE(47), - [sym_expansion] = STATE(47), - [sym_command_substitution] = STATE(47), - [sym_process_substitution] = STATE(47), - [aux_sym__statements_repeat1] = STATE(1085), - [aux_sym_command_repeat1] = STATE(54), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(69), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(71), - [anon_sym_done] = ACTIONS(2327), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(73), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(75), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_LBRACK_LBRACK] = ACTIONS(79), - [anon_sym_declare] = ACTIONS(81), - [anon_sym_typeset] = ACTIONS(81), - [anon_sym_export] = ACTIONS(81), - [anon_sym_readonly] = ACTIONS(81), - [anon_sym_local] = ACTIONS(81), - [anon_sym_unset] = ACTIONS(83), - [anon_sym_unsetenv] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(87), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(89), + [aux_sym_concatenation_repeat1] = STATE(1085), + [sym__concat] = ACTIONS(2245), + [anon_sym_SEMI] = ACTIONS(2107), + [anon_sym_SEMI_SEMI] = ACTIONS(2105), + [sym__special_characters] = ACTIONS(2105), + [anon_sym_DQUOTE] = ACTIONS(2105), + [anon_sym_DOLLAR] = ACTIONS(2107), + [sym_raw_string] = ACTIONS(2105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2105), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2105), + [anon_sym_BQUOTE] = ACTIONS(2105), + [anon_sym_LT_LPAREN] = ACTIONS(2105), + [anon_sym_GT_LPAREN] = ACTIONS(2105), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(2107), + [anon_sym_LF] = ACTIONS(2105), + [anon_sym_AMP] = ACTIONS(2105), }, [615] = { - [ts_builtin_sym_end] = ACTIONS(2329), - [anon_sym_SEMI] = ACTIONS(2331), - [anon_sym_esac] = ACTIONS(2329), - [anon_sym_PIPE] = ACTIONS(2331), - [anon_sym_RPAREN] = ACTIONS(2329), - [anon_sym_SEMI_SEMI] = ACTIONS(2329), - [anon_sym_PIPE_AMP] = ACTIONS(2329), - [anon_sym_AMP_AMP] = ACTIONS(2329), - [anon_sym_PIPE_PIPE] = ACTIONS(2329), - [anon_sym_BQUOTE] = ACTIONS(2329), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(2329), - [anon_sym_AMP] = ACTIONS(2331), + [sym_simple_expansion] = STATE(148), + [sym_expansion] = STATE(148), + [sym_command_substitution] = STATE(148), + [aux_sym_string_repeat1] = STATE(1088), + [anon_sym_DQUOTE] = ACTIONS(2247), + [anon_sym_DOLLAR] = ACTIONS(2249), + [sym__string_content] = ACTIONS(273), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(277), + [anon_sym_BQUOTE] = ACTIONS(279), + [sym_comment] = ACTIONS(281), }, [616] = { - [sym_file_redirect] = STATE(517), - [sym_heredoc_redirect] = STATE(517), - [sym_heredoc_body] = STATE(1086), - [sym_herestring_redirect] = STATE(517), - [aux_sym_while_statement_repeat1] = STATE(517), - [sym__simple_heredoc_body] = ACTIONS(321), - [sym__heredoc_body_beginning] = ACTIONS(323), - [sym_file_descriptor] = ACTIONS(325), - [ts_builtin_sym_end] = ACTIONS(2329), - [anon_sym_SEMI] = ACTIONS(2331), - [anon_sym_PIPE] = ACTIONS(2331), - [anon_sym_SEMI_SEMI] = ACTIONS(2329), - [anon_sym_PIPE_AMP] = ACTIONS(2329), - [anon_sym_AMP_AMP] = ACTIONS(2329), - [anon_sym_PIPE_PIPE] = ACTIONS(2329), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), - [anon_sym_AMP_GT] = ACTIONS(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(335), - [anon_sym_GT_AMP] = ACTIONS(335), - [anon_sym_LT_LT] = ACTIONS(337), - [anon_sym_LT_LT_DASH] = ACTIONS(339), - [anon_sym_LT_LT_LT] = ACTIONS(341), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(2329), - [anon_sym_AMP] = ACTIONS(2331), + [sym_string] = STATE(1090), + [anon_sym_DASH] = ACTIONS(2251), + [anon_sym_DQUOTE] = ACTIONS(1198), + [anon_sym_DOLLAR] = ACTIONS(2251), + [sym_raw_string] = ACTIONS(2253), + [anon_sym_POUND] = ACTIONS(2251), + [sym_comment] = ACTIONS(281), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2255), + [anon_sym_STAR] = ACTIONS(2257), + [anon_sym_AT] = ACTIONS(2257), + [anon_sym_QMARK] = ACTIONS(2257), + [anon_sym_0] = ACTIONS(2255), + [anon_sym__] = ACTIONS(2255), }, [617] = { - [anon_sym_SEMI] = ACTIONS(1930), - [anon_sym_PIPE] = ACTIONS(445), - [anon_sym_SEMI_SEMI] = ACTIONS(1928), - [anon_sym_PIPE_AMP] = ACTIONS(449), - [anon_sym_AMP_AMP] = ACTIONS(1928), - [anon_sym_PIPE_PIPE] = ACTIONS(1928), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1928), - [anon_sym_AMP] = ACTIONS(1930), + [aux_sym_concatenation_repeat1] = STATE(1085), + [sym__concat] = ACTIONS(2245), + [anon_sym_SEMI] = ACTIONS(2123), + [anon_sym_SEMI_SEMI] = ACTIONS(2121), + [sym__special_characters] = ACTIONS(2121), + [anon_sym_DQUOTE] = ACTIONS(2121), + [anon_sym_DOLLAR] = ACTIONS(2123), + [sym_raw_string] = ACTIONS(2121), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2121), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2121), + [anon_sym_BQUOTE] = ACTIONS(2121), + [anon_sym_LT_LPAREN] = ACTIONS(2121), + [anon_sym_GT_LPAREN] = ACTIONS(2121), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(2123), + [anon_sym_LF] = ACTIONS(2121), + [anon_sym_AMP] = ACTIONS(2121), }, [618] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(1930), - [anon_sym_PIPE] = ACTIONS(445), - [anon_sym_SEMI_SEMI] = ACTIONS(1928), - [anon_sym_PIPE_AMP] = ACTIONS(449), - [anon_sym_AMP_AMP] = ACTIONS(1928), - [anon_sym_PIPE_PIPE] = ACTIONS(1928), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(1928), - [anon_sym_AMP] = ACTIONS(1930), + [sym_subscript] = STATE(1095), + [sym_variable_name] = ACTIONS(2259), + [anon_sym_BANG] = ACTIONS(2261), + [anon_sym_DASH] = ACTIONS(2263), + [anon_sym_DOLLAR] = ACTIONS(2263), + [anon_sym_POUND] = ACTIONS(2261), + [sym_comment] = ACTIONS(281), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2265), + [anon_sym_STAR] = ACTIONS(2267), + [anon_sym_AT] = ACTIONS(2267), + [anon_sym_QMARK] = ACTIONS(2267), + [anon_sym_0] = ACTIONS(2265), + [anon_sym__] = ACTIONS(2265), }, [619] = { - [sym_concatenation] = STATE(945), - [sym_string] = STATE(1088), - [sym_simple_expansion] = STATE(1088), - [sym_string_expansion] = STATE(1088), - [sym_expansion] = STATE(1088), - [sym_command_substitution] = STATE(1088), - [sym_process_substitution] = STATE(1088), - [sym__special_characters] = ACTIONS(2333), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2335), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2335), + [sym__terminated_statement] = STATE(1098), + [sym_for_statement] = STATE(1096), + [sym_c_style_for_statement] = STATE(1096), + [sym_while_statement] = STATE(1096), + [sym_if_statement] = STATE(1096), + [sym_case_statement] = STATE(1096), + [sym_function_definition] = STATE(1096), + [sym_subshell] = STATE(1096), + [sym_pipeline] = STATE(1096), + [sym_list] = STATE(1096), + [sym_negated_command] = STATE(1096), + [sym_test_command] = STATE(1096), + [sym_declaration_command] = STATE(1096), + [sym_unset_command] = STATE(1096), + [sym_command] = STATE(1096), + [sym_command_name] = STATE(92), + [sym_variable_assignment] = STATE(1097), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(96), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), + [aux_sym__statements_repeat1] = STATE(1098), + [aux_sym_command_repeat1] = STATE(96), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(137), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(149), + [anon_sym_declare] = ACTIONS(151), + [anon_sym_typeset] = ACTIONS(151), + [anon_sym_export] = ACTIONS(151), + [anon_sym_readonly] = ACTIONS(151), + [anon_sym_local] = ACTIONS(151), + [anon_sym_unset] = ACTIONS(153), + [anon_sym_unsetenv] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(159), }, [620] = { - [aux_sym_concatenation_repeat1] = STATE(236), - [sym__simple_heredoc_body] = ACTIONS(1960), - [sym__heredoc_body_beginning] = ACTIONS(1960), - [sym_file_descriptor] = ACTIONS(1960), - [sym__concat] = ACTIONS(249), - [anon_sym_SEMI] = ACTIONS(1962), - [anon_sym_PIPE] = ACTIONS(1962), - [anon_sym_SEMI_SEMI] = ACTIONS(1960), - [anon_sym_PIPE_AMP] = ACTIONS(1960), - [anon_sym_AMP_AMP] = ACTIONS(1960), - [anon_sym_PIPE_PIPE] = ACTIONS(1960), - [anon_sym_EQ_TILDE] = ACTIONS(1962), - [anon_sym_EQ_EQ] = ACTIONS(1962), - [anon_sym_LT] = ACTIONS(1962), - [anon_sym_GT] = ACTIONS(1962), - [anon_sym_GT_GT] = ACTIONS(1960), - [anon_sym_AMP_GT] = ACTIONS(1962), - [anon_sym_AMP_GT_GT] = ACTIONS(1960), - [anon_sym_LT_AMP] = ACTIONS(1960), - [anon_sym_GT_AMP] = ACTIONS(1960), - [anon_sym_LT_LT] = ACTIONS(1962), - [anon_sym_LT_LT_DASH] = ACTIONS(1960), - [anon_sym_LT_LT_LT] = ACTIONS(1960), - [sym__special_characters] = ACTIONS(1960), - [anon_sym_DQUOTE] = ACTIONS(1960), - [anon_sym_DOLLAR] = ACTIONS(1962), - [sym_raw_string] = ACTIONS(1960), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1960), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), - [anon_sym_BQUOTE] = ACTIONS(1960), - [anon_sym_LT_LPAREN] = ACTIONS(1960), - [anon_sym_GT_LPAREN] = ACTIONS(1960), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1962), - [anon_sym_LF] = ACTIONS(1960), - [anon_sym_AMP] = ACTIONS(1962), + [sym__terminated_statement] = STATE(1101), + [sym_for_statement] = STATE(1099), + [sym_c_style_for_statement] = STATE(1099), + [sym_while_statement] = STATE(1099), + [sym_if_statement] = STATE(1099), + [sym_case_statement] = STATE(1099), + [sym_function_definition] = STATE(1099), + [sym_subshell] = STATE(1099), + [sym_pipeline] = STATE(1099), + [sym_list] = STATE(1099), + [sym_negated_command] = STATE(1099), + [sym_test_command] = STATE(1099), + [sym_declaration_command] = STATE(1099), + [sym_unset_command] = STATE(1099), + [sym_command] = STATE(1099), + [sym_command_name] = STATE(173), + [sym_variable_assignment] = STATE(1100), + [sym_subscript] = STATE(66), + [sym_file_redirect] = STATE(176), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(60), + [sym_simple_expansion] = STATE(60), + [sym_string_expansion] = STATE(60), + [sym_expansion] = STATE(60), + [sym_command_substitution] = STATE(60), + [sym_process_substitution] = STATE(60), + [aux_sym__statements_repeat1] = STATE(1101), + [aux_sym_command_repeat1] = STATE(176), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(95), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(305), + [anon_sym_while] = ACTIONS(307), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(311), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(315), + [anon_sym_declare] = ACTIONS(317), + [anon_sym_typeset] = ACTIONS(317), + [anon_sym_export] = ACTIONS(317), + [anon_sym_readonly] = ACTIONS(317), + [anon_sym_local] = ACTIONS(317), + [anon_sym_unset] = ACTIONS(319), + [anon_sym_unsetenv] = ACTIONS(319), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(115), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(321), }, [621] = { - [aux_sym_concatenation_repeat1] = STATE(236), - [sym__simple_heredoc_body] = ACTIONS(1964), - [sym__heredoc_body_beginning] = ACTIONS(1964), - [sym_file_descriptor] = ACTIONS(1964), - [sym__concat] = ACTIONS(249), - [anon_sym_SEMI] = ACTIONS(1966), - [anon_sym_PIPE] = ACTIONS(1966), - [anon_sym_SEMI_SEMI] = ACTIONS(1964), - [anon_sym_PIPE_AMP] = ACTIONS(1964), - [anon_sym_AMP_AMP] = ACTIONS(1964), - [anon_sym_PIPE_PIPE] = ACTIONS(1964), - [anon_sym_EQ_TILDE] = ACTIONS(1966), - [anon_sym_EQ_EQ] = ACTIONS(1966), - [anon_sym_LT] = ACTIONS(1966), - [anon_sym_GT] = ACTIONS(1966), - [anon_sym_GT_GT] = ACTIONS(1964), - [anon_sym_AMP_GT] = ACTIONS(1966), - [anon_sym_AMP_GT_GT] = ACTIONS(1964), - [anon_sym_LT_AMP] = ACTIONS(1964), - [anon_sym_GT_AMP] = ACTIONS(1964), - [anon_sym_LT_LT] = ACTIONS(1966), - [anon_sym_LT_LT_DASH] = ACTIONS(1964), - [anon_sym_LT_LT_LT] = ACTIONS(1964), - [sym__special_characters] = ACTIONS(1964), - [anon_sym_DQUOTE] = ACTIONS(1964), - [anon_sym_DOLLAR] = ACTIONS(1966), - [sym_raw_string] = ACTIONS(1964), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1964), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1964), - [anon_sym_LT_LPAREN] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1964), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1966), - [anon_sym_LF] = ACTIONS(1964), - [anon_sym_AMP] = ACTIONS(1966), + [sym__terminated_statement] = STATE(1104), + [sym_for_statement] = STATE(1102), + [sym_c_style_for_statement] = STATE(1102), + [sym_while_statement] = STATE(1102), + [sym_if_statement] = STATE(1102), + [sym_case_statement] = STATE(1102), + [sym_function_definition] = STATE(1102), + [sym_subshell] = STATE(1102), + [sym_pipeline] = STATE(1102), + [sym_list] = STATE(1102), + [sym_negated_command] = STATE(1102), + [sym_test_command] = STATE(1102), + [sym_declaration_command] = STATE(1102), + [sym_unset_command] = STATE(1102), + [sym_command] = STATE(1102), + [sym_command_name] = STATE(92), + [sym_variable_assignment] = STATE(1103), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(96), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), + [aux_sym__statements_repeat1] = STATE(1104), + [aux_sym_command_repeat1] = STATE(96), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(137), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(149), + [anon_sym_declare] = ACTIONS(151), + [anon_sym_typeset] = ACTIONS(151), + [anon_sym_export] = ACTIONS(151), + [anon_sym_readonly] = ACTIONS(151), + [anon_sym_local] = ACTIONS(151), + [anon_sym_unset] = ACTIONS(153), + [anon_sym_unsetenv] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(159), }, [622] = { - [aux_sym_concatenation_repeat1] = STATE(1089), - [sym__simple_heredoc_body] = ACTIONS(731), - [sym__heredoc_body_beginning] = ACTIONS(731), - [sym_file_descriptor] = ACTIONS(731), - [sym__concat] = ACTIONS(249), - [anon_sym_SEMI] = ACTIONS(735), - [anon_sym_PIPE] = ACTIONS(735), - [anon_sym_SEMI_SEMI] = ACTIONS(731), - [anon_sym_PIPE_AMP] = ACTIONS(731), - [anon_sym_AMP_AMP] = ACTIONS(731), - [anon_sym_PIPE_PIPE] = ACTIONS(731), - [anon_sym_LT] = ACTIONS(735), - [anon_sym_GT] = ACTIONS(735), - [anon_sym_GT_GT] = ACTIONS(731), - [anon_sym_AMP_GT] = ACTIONS(735), - [anon_sym_AMP_GT_GT] = ACTIONS(731), - [anon_sym_LT_AMP] = ACTIONS(731), - [anon_sym_GT_AMP] = ACTIONS(731), - [anon_sym_LT_LT] = ACTIONS(735), - [anon_sym_LT_LT_DASH] = ACTIONS(731), - [anon_sym_LT_LT_LT] = ACTIONS(731), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(731), - [anon_sym_AMP] = ACTIONS(735), + [sym_concatenation] = STATE(1106), + [sym_string] = STATE(617), + [sym_simple_expansion] = STATE(617), + [sym_string_expansion] = STATE(617), + [sym_expansion] = STATE(617), + [sym_command_substitution] = STATE(617), + [sym_process_substitution] = STATE(617), + [aux_sym_for_statement_repeat1] = STATE(1106), + [anon_sym_SEMI] = ACTIONS(2269), + [anon_sym_SEMI_SEMI] = ACTIONS(2271), + [sym__special_characters] = ACTIONS(1196), + [anon_sym_DQUOTE] = ACTIONS(1198), + [anon_sym_DOLLAR] = ACTIONS(1200), + [sym_raw_string] = ACTIONS(1202), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1204), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1206), + [anon_sym_BQUOTE] = ACTIONS(1208), + [anon_sym_LT_LPAREN] = ACTIONS(1210), + [anon_sym_GT_LPAREN] = ACTIONS(1210), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(2273), + [anon_sym_LF] = ACTIONS(2271), + [anon_sym_AMP] = ACTIONS(2271), }, [623] = { - [aux_sym_concatenation_repeat1] = STATE(1089), - [sym__simple_heredoc_body] = ACTIONS(749), - [sym__heredoc_body_beginning] = ACTIONS(749), - [sym_file_descriptor] = ACTIONS(749), - [sym__concat] = ACTIONS(249), - [anon_sym_SEMI] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(751), - [anon_sym_SEMI_SEMI] = ACTIONS(749), - [anon_sym_PIPE_AMP] = ACTIONS(749), - [anon_sym_AMP_AMP] = ACTIONS(749), - [anon_sym_PIPE_PIPE] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(751), - [anon_sym_GT] = ACTIONS(751), - [anon_sym_GT_GT] = ACTIONS(749), - [anon_sym_AMP_GT] = ACTIONS(751), - [anon_sym_AMP_GT_GT] = ACTIONS(749), - [anon_sym_LT_AMP] = ACTIONS(749), - [anon_sym_GT_AMP] = ACTIONS(749), - [anon_sym_LT_LT] = ACTIONS(751), - [anon_sym_LT_LT_DASH] = ACTIONS(749), - [anon_sym_LT_LT_LT] = ACTIONS(749), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(749), - [anon_sym_AMP] = ACTIONS(751), + [sym__terminated_statement] = STATE(1108), + [sym_for_statement] = STATE(545), + [sym_c_style_for_statement] = STATE(545), + [sym_while_statement] = STATE(545), + [sym_if_statement] = STATE(545), + [sym_case_statement] = STATE(545), + [sym_function_definition] = STATE(545), + [sym_subshell] = STATE(545), + [sym_pipeline] = STATE(545), + [sym_list] = STATE(545), + [sym_negated_command] = STATE(545), + [sym_test_command] = STATE(545), + [sym_declaration_command] = STATE(545), + [sym_unset_command] = STATE(545), + [sym_command] = STATE(545), + [sym_command_name] = STATE(64), + [sym_variable_assignment] = STATE(546), + [sym_subscript] = STATE(66), + [sym_file_redirect] = STATE(67), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(60), + [sym_simple_expansion] = STATE(60), + [sym_string_expansion] = STATE(60), + [sym_expansion] = STATE(60), + [sym_command_substitution] = STATE(60), + [sym_process_substitution] = STATE(60), + [aux_sym__statements_repeat1] = STATE(1108), + [aux_sym_command_repeat1] = STATE(67), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(95), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(97), + [anon_sym_while] = ACTIONS(99), + [anon_sym_done] = ACTIONS(2275), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(101), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_LBRACK] = ACTIONS(107), + [anon_sym_declare] = ACTIONS(109), + [anon_sym_typeset] = ACTIONS(109), + [anon_sym_export] = ACTIONS(109), + [anon_sym_readonly] = ACTIONS(109), + [anon_sym_local] = ACTIONS(109), + [anon_sym_unset] = ACTIONS(111), + [anon_sym_unsetenv] = ACTIONS(111), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(115), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(117), }, [624] = { - [aux_sym_concatenation_repeat1] = STATE(1089), - [sym__simple_heredoc_body] = ACTIONS(1972), - [sym__heredoc_body_beginning] = ACTIONS(1972), - [sym_file_descriptor] = ACTIONS(1972), - [sym__concat] = ACTIONS(249), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_PIPE] = ACTIONS(1974), - [anon_sym_SEMI_SEMI] = ACTIONS(1972), - [anon_sym_PIPE_AMP] = ACTIONS(1972), - [anon_sym_AMP_AMP] = ACTIONS(1972), - [anon_sym_PIPE_PIPE] = ACTIONS(1972), - [anon_sym_LT] = ACTIONS(1974), - [anon_sym_GT] = ACTIONS(1974), - [anon_sym_GT_GT] = ACTIONS(1972), - [anon_sym_AMP_GT] = ACTIONS(1974), - [anon_sym_AMP_GT_GT] = ACTIONS(1972), - [anon_sym_LT_AMP] = ACTIONS(1972), - [anon_sym_GT_AMP] = ACTIONS(1972), - [anon_sym_LT_LT] = ACTIONS(1974), - [anon_sym_LT_LT_DASH] = ACTIONS(1972), - [anon_sym_LT_LT_LT] = ACTIONS(1972), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1972), - [anon_sym_AMP] = ACTIONS(1974), + [ts_builtin_sym_end] = ACTIONS(2277), + [anon_sym_SEMI] = ACTIONS(2279), + [anon_sym_esac] = ACTIONS(2277), + [anon_sym_PIPE] = ACTIONS(2279), + [anon_sym_RPAREN] = ACTIONS(2277), + [anon_sym_SEMI_SEMI] = ACTIONS(2277), + [anon_sym_PIPE_AMP] = ACTIONS(2277), + [anon_sym_AMP_AMP] = ACTIONS(2277), + [anon_sym_PIPE_PIPE] = ACTIONS(2277), + [anon_sym_BQUOTE] = ACTIONS(2277), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2277), + [anon_sym_AMP] = ACTIONS(2279), }, [625] = { - [aux_sym_concatenation_repeat1] = STATE(1089), - [sym__simple_heredoc_body] = ACTIONS(1976), - [sym__heredoc_body_beginning] = ACTIONS(1976), - [sym_file_descriptor] = ACTIONS(1976), - [sym__concat] = ACTIONS(249), - [anon_sym_SEMI] = ACTIONS(1978), - [anon_sym_PIPE] = ACTIONS(1978), - [anon_sym_SEMI_SEMI] = ACTIONS(1976), - [anon_sym_PIPE_AMP] = ACTIONS(1976), - [anon_sym_AMP_AMP] = ACTIONS(1976), - [anon_sym_PIPE_PIPE] = ACTIONS(1976), - [anon_sym_LT] = ACTIONS(1978), - [anon_sym_GT] = ACTIONS(1978), - [anon_sym_GT_GT] = ACTIONS(1976), - [anon_sym_AMP_GT] = ACTIONS(1978), - [anon_sym_AMP_GT_GT] = ACTIONS(1976), - [anon_sym_LT_AMP] = ACTIONS(1976), - [anon_sym_GT_AMP] = ACTIONS(1976), - [anon_sym_LT_LT] = ACTIONS(1978), - [anon_sym_LT_LT_DASH] = ACTIONS(1976), - [anon_sym_LT_LT_LT] = ACTIONS(1976), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1978), + [anon_sym_RPAREN] = ACTIONS(2281), + [anon_sym_AMP_AMP] = ACTIONS(1240), + [anon_sym_PIPE_PIPE] = ACTIONS(1240), + [anon_sym_EQ_TILDE] = ACTIONS(1242), + [anon_sym_EQ_EQ] = ACTIONS(1242), + [anon_sym_EQ] = ACTIONS(1244), + [anon_sym_PLUS_EQ] = ACTIONS(1240), + [anon_sym_LT] = ACTIONS(1244), + [anon_sym_GT] = ACTIONS(1244), + [anon_sym_BANG_EQ] = ACTIONS(1240), + [anon_sym_PLUS] = ACTIONS(1244), + [anon_sym_DASH] = ACTIONS(1244), + [anon_sym_DASH_EQ] = ACTIONS(1240), + [anon_sym_LT_EQ] = ACTIONS(1240), + [anon_sym_GT_EQ] = ACTIONS(1240), + [anon_sym_PLUS_PLUS] = ACTIONS(1246), + [anon_sym_DASH_DASH] = ACTIONS(1246), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(1240), }, [626] = { - [sym_file_redirect] = STATE(626), - [sym_heredoc_redirect] = STATE(626), - [sym_herestring_redirect] = STATE(626), - [aux_sym_while_statement_repeat1] = STATE(626), - [sym__simple_heredoc_body] = ACTIONS(1984), - [sym__heredoc_body_beginning] = ACTIONS(1984), - [sym_file_descriptor] = ACTIONS(2337), - [anon_sym_SEMI] = ACTIONS(1989), - [anon_sym_PIPE] = ACTIONS(1989), - [anon_sym_SEMI_SEMI] = ACTIONS(1984), - [anon_sym_PIPE_AMP] = ACTIONS(1984), - [anon_sym_AMP_AMP] = ACTIONS(1984), - [anon_sym_PIPE_PIPE] = ACTIONS(1984), - [anon_sym_LT] = ACTIONS(2340), - [anon_sym_GT] = ACTIONS(2340), - [anon_sym_GT_GT] = ACTIONS(2343), - [anon_sym_AMP_GT] = ACTIONS(2340), - [anon_sym_AMP_GT_GT] = ACTIONS(2343), - [anon_sym_LT_AMP] = ACTIONS(2343), - [anon_sym_GT_AMP] = ACTIONS(2343), - [anon_sym_LT_LT] = ACTIONS(1997), - [anon_sym_LT_LT_DASH] = ACTIONS(2000), - [anon_sym_LT_LT_LT] = ACTIONS(2346), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1984), - [anon_sym_AMP] = ACTIONS(1989), + [anon_sym_RPAREN] = ACTIONS(1248), + [anon_sym_AMP_AMP] = ACTIONS(1240), + [anon_sym_PIPE_PIPE] = ACTIONS(1240), + [anon_sym_EQ_TILDE] = ACTIONS(1242), + [anon_sym_EQ_EQ] = ACTIONS(1242), + [anon_sym_EQ] = ACTIONS(1244), + [anon_sym_PLUS_EQ] = ACTIONS(1240), + [anon_sym_LT] = ACTIONS(1244), + [anon_sym_GT] = ACTIONS(1244), + [anon_sym_BANG_EQ] = ACTIONS(1240), + [anon_sym_PLUS] = ACTIONS(1244), + [anon_sym_DASH] = ACTIONS(1244), + [anon_sym_DASH_EQ] = ACTIONS(1240), + [anon_sym_LT_EQ] = ACTIONS(1240), + [anon_sym_GT_EQ] = ACTIONS(1240), + [anon_sym_PLUS_PLUS] = ACTIONS(1246), + [anon_sym_DASH_DASH] = ACTIONS(1246), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(1240), }, [627] = { - [sym_file_redirect] = STATE(626), - [sym_heredoc_redirect] = STATE(626), - [sym_heredoc_body] = STATE(947), - [sym_herestring_redirect] = STATE(626), - [aux_sym_while_statement_repeat1] = STATE(626), - [sym__simple_heredoc_body] = ACTIONS(321), - [sym__heredoc_body_beginning] = ACTIONS(323), - [sym_file_descriptor] = ACTIONS(453), - [anon_sym_SEMI] = ACTIONS(1982), - [anon_sym_PIPE] = ACTIONS(1982), - [anon_sym_SEMI_SEMI] = ACTIONS(1980), - [anon_sym_PIPE_AMP] = ACTIONS(1980), - [anon_sym_AMP_AMP] = ACTIONS(1980), - [anon_sym_PIPE_PIPE] = ACTIONS(1980), - [anon_sym_LT] = ACTIONS(457), - [anon_sym_GT] = ACTIONS(457), - [anon_sym_GT_GT] = ACTIONS(459), - [anon_sym_AMP_GT] = ACTIONS(457), - [anon_sym_AMP_GT_GT] = ACTIONS(459), - [anon_sym_LT_AMP] = ACTIONS(459), - [anon_sym_GT_AMP] = ACTIONS(459), - [anon_sym_LT_LT] = ACTIONS(337), - [anon_sym_LT_LT_DASH] = ACTIONS(339), - [anon_sym_LT_LT_LT] = ACTIONS(461), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1980), - [anon_sym_AMP] = ACTIONS(1982), + [sym_string] = STATE(1110), + [sym_simple_expansion] = STATE(1110), + [sym_string_expansion] = STATE(1110), + [sym_expansion] = STATE(1110), + [sym_command_substitution] = STATE(1110), + [sym_process_substitution] = STATE(1110), + [sym__special_characters] = ACTIONS(2283), + [anon_sym_DQUOTE] = ACTIONS(441), + [anon_sym_DOLLAR] = ACTIONS(443), + [sym_raw_string] = ACTIONS(2283), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(447), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(449), + [anon_sym_BQUOTE] = ACTIONS(451), + [anon_sym_LT_LPAREN] = ACTIONS(453), + [anon_sym_GT_LPAREN] = ACTIONS(453), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(2283), }, [628] = { - [sym_concatenation] = STATE(628), - [sym_string] = STATE(248), - [sym_simple_expansion] = STATE(248), - [sym_string_expansion] = STATE(248), - [sym_expansion] = STATE(248), - [sym_command_substitution] = STATE(248), - [sym_process_substitution] = STATE(248), - [aux_sym_command_repeat2] = STATE(628), - [sym__simple_heredoc_body] = ACTIONS(1964), - [sym__heredoc_body_beginning] = ACTIONS(1964), - [sym_file_descriptor] = ACTIONS(1964), - [anon_sym_SEMI] = ACTIONS(1966), - [anon_sym_PIPE] = ACTIONS(1966), - [anon_sym_SEMI_SEMI] = ACTIONS(1964), - [anon_sym_PIPE_AMP] = ACTIONS(1964), - [anon_sym_AMP_AMP] = ACTIONS(1964), - [anon_sym_PIPE_PIPE] = ACTIONS(1964), - [anon_sym_EQ_TILDE] = ACTIONS(2349), - [anon_sym_EQ_EQ] = ACTIONS(2349), - [anon_sym_LT] = ACTIONS(1966), - [anon_sym_GT] = ACTIONS(1966), - [anon_sym_GT_GT] = ACTIONS(1964), - [anon_sym_AMP_GT] = ACTIONS(1966), - [anon_sym_AMP_GT_GT] = ACTIONS(1964), - [anon_sym_LT_AMP] = ACTIONS(1964), - [anon_sym_GT_AMP] = ACTIONS(1964), - [anon_sym_LT_LT] = ACTIONS(1966), - [anon_sym_LT_LT_DASH] = ACTIONS(1964), - [anon_sym_LT_LT_LT] = ACTIONS(1964), - [sym__special_characters] = ACTIONS(2352), - [anon_sym_DQUOTE] = ACTIONS(2012), - [anon_sym_DOLLAR] = ACTIONS(2015), - [sym_raw_string] = ACTIONS(2355), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2021), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2024), - [anon_sym_BQUOTE] = ACTIONS(2027), - [anon_sym_LT_LPAREN] = ACTIONS(2030), - [anon_sym_GT_LPAREN] = ACTIONS(2030), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2358), - [anon_sym_LF] = ACTIONS(1964), - [anon_sym_AMP] = ACTIONS(1966), + [aux_sym_concatenation_repeat1] = STATE(1111), + [sym__concat] = ACTIONS(1214), + [anon_sym_RPAREN] = ACTIONS(807), + [anon_sym_AMP_AMP] = ACTIONS(807), + [anon_sym_PIPE_PIPE] = ACTIONS(807), + [anon_sym_EQ_TILDE] = ACTIONS(807), + [anon_sym_EQ_EQ] = ACTIONS(807), + [anon_sym_EQ] = ACTIONS(809), + [anon_sym_PLUS_EQ] = ACTIONS(807), + [anon_sym_LT] = ACTIONS(809), + [anon_sym_GT] = ACTIONS(809), + [anon_sym_BANG_EQ] = ACTIONS(807), + [anon_sym_PLUS] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(809), + [anon_sym_DASH_EQ] = ACTIONS(807), + [anon_sym_LT_EQ] = ACTIONS(807), + [anon_sym_GT_EQ] = ACTIONS(807), + [anon_sym_PLUS_PLUS] = ACTIONS(807), + [anon_sym_DASH_DASH] = ACTIONS(807), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(807), }, [629] = { - [sym_file_redirect] = STATE(1090), - [sym_heredoc_redirect] = STATE(1090), - [sym_heredoc_body] = STATE(947), - [sym_herestring_redirect] = STATE(1090), - [sym_concatenation] = STATE(628), - [sym_string] = STATE(248), - [sym_simple_expansion] = STATE(248), - [sym_string_expansion] = STATE(248), - [sym_expansion] = STATE(248), - [sym_command_substitution] = STATE(248), - [sym_process_substitution] = STATE(248), - [aux_sym_while_statement_repeat1] = STATE(1090), - [aux_sym_command_repeat2] = STATE(628), - [sym__simple_heredoc_body] = ACTIONS(321), - [sym__heredoc_body_beginning] = ACTIONS(323), - [sym_file_descriptor] = ACTIONS(453), - [anon_sym_SEMI] = ACTIONS(1982), - [anon_sym_PIPE] = ACTIONS(1982), - [anon_sym_SEMI_SEMI] = ACTIONS(1980), - [anon_sym_PIPE_AMP] = ACTIONS(1980), - [anon_sym_AMP_AMP] = ACTIONS(1980), - [anon_sym_PIPE_PIPE] = ACTIONS(1980), - [anon_sym_EQ_TILDE] = ACTIONS(455), - [anon_sym_EQ_EQ] = ACTIONS(455), - [anon_sym_LT] = ACTIONS(457), - [anon_sym_GT] = ACTIONS(457), - [anon_sym_GT_GT] = ACTIONS(459), - [anon_sym_AMP_GT] = ACTIONS(457), - [anon_sym_AMP_GT_GT] = ACTIONS(459), - [anon_sym_LT_AMP] = ACTIONS(459), - [anon_sym_GT_AMP] = ACTIONS(459), - [anon_sym_LT_LT] = ACTIONS(337), - [anon_sym_LT_LT_DASH] = ACTIONS(339), - [anon_sym_LT_LT_LT] = ACTIONS(461), - [sym__special_characters] = ACTIONS(463), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(465), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(467), - [anon_sym_LF] = ACTIONS(1980), - [anon_sym_AMP] = ACTIONS(1982), + [sym__concat] = ACTIONS(811), + [anon_sym_PIPE] = ACTIONS(813), + [anon_sym_RPAREN] = ACTIONS(811), + [anon_sym_AMP_AMP] = ACTIONS(811), + [anon_sym_PIPE_PIPE] = ACTIONS(811), + [anon_sym_EQ_TILDE] = ACTIONS(811), + [anon_sym_EQ_EQ] = ACTIONS(811), + [anon_sym_EQ] = ACTIONS(813), + [anon_sym_PLUS_EQ] = ACTIONS(811), + [anon_sym_LT] = ACTIONS(813), + [anon_sym_GT] = ACTIONS(813), + [anon_sym_BANG_EQ] = ACTIONS(811), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_DASH_EQ] = ACTIONS(811), + [anon_sym_LT_EQ] = ACTIONS(811), + [anon_sym_GT_EQ] = ACTIONS(811), + [anon_sym_PLUS_PLUS] = ACTIONS(811), + [anon_sym_DASH_DASH] = ACTIONS(811), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(811), }, [630] = { - [ts_builtin_sym_end] = ACTIONS(2361), - [anon_sym_SEMI] = ACTIONS(2363), - [anon_sym_esac] = ACTIONS(2361), - [anon_sym_PIPE] = ACTIONS(2363), - [anon_sym_RPAREN] = ACTIONS(2361), - [anon_sym_SEMI_SEMI] = ACTIONS(2361), - [anon_sym_PIPE_AMP] = ACTIONS(2361), - [anon_sym_AMP_AMP] = ACTIONS(2361), - [anon_sym_PIPE_PIPE] = ACTIONS(2361), - [anon_sym_BQUOTE] = ACTIONS(2361), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(2361), - [anon_sym_AMP] = ACTIONS(2363), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_DQUOTE] = ACTIONS(2285), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym__string_content] = ACTIONS(821), + [anon_sym_POUND] = ACTIONS(815), + [sym_comment] = ACTIONS(281), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(823), + [anon_sym_STAR] = ACTIONS(825), + [anon_sym_AT] = ACTIONS(825), + [anon_sym_QMARK] = ACTIONS(825), + [anon_sym_0] = ACTIONS(823), + [anon_sym__] = ACTIONS(823), }, [631] = { - [sym__terminated_statement] = STATE(1091), - [sym_for_statement] = STATE(50), - [sym_c_style_for_statement] = STATE(50), - [sym_while_statement] = STATE(50), - [sym_if_statement] = STATE(50), - [sym_case_statement] = STATE(50), - [sym_function_definition] = STATE(50), - [sym_subshell] = STATE(50), - [sym_pipeline] = STATE(50), - [sym_list] = STATE(50), - [sym_negated_command] = STATE(50), - [sym_test_command] = STATE(50), - [sym_declaration_command] = STATE(50), - [sym_unset_command] = STATE(50), - [sym_command] = STATE(50), - [sym_command_name] = STATE(51), - [sym_variable_assignment] = STATE(52), - [sym_subscript] = STATE(53), - [sym_file_redirect] = STATE(54), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(47), - [sym_simple_expansion] = STATE(47), - [sym_string_expansion] = STATE(47), - [sym_expansion] = STATE(47), - [sym_command_substitution] = STATE(47), - [sym_process_substitution] = STATE(47), - [aux_sym_command_repeat1] = STATE(54), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(69), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(71), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(73), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(75), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_LBRACK_LBRACK] = ACTIONS(79), - [anon_sym_declare] = ACTIONS(81), - [anon_sym_typeset] = ACTIONS(81), - [anon_sym_export] = ACTIONS(81), - [anon_sym_readonly] = ACTIONS(81), - [anon_sym_local] = ACTIONS(81), - [anon_sym_unset] = ACTIONS(83), - [anon_sym_unsetenv] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(87), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(89), + [sym_simple_expansion] = STATE(148), + [sym_expansion] = STATE(148), + [sym_command_substitution] = STATE(148), + [aux_sym_string_repeat1] = STATE(473), + [anon_sym_DQUOTE] = ACTIONS(2285), + [anon_sym_DOLLAR] = ACTIONS(2287), + [sym__string_content] = ACTIONS(273), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(277), + [anon_sym_BQUOTE] = ACTIONS(279), + [sym_comment] = ACTIONS(281), }, [632] = { - [sym__terminated_statement] = STATE(1092), - [sym_for_statement] = STATE(521), - [sym_c_style_for_statement] = STATE(521), - [sym_while_statement] = STATE(521), - [sym_if_statement] = STATE(521), - [sym_case_statement] = STATE(521), - [sym_function_definition] = STATE(521), - [sym_subshell] = STATE(521), - [sym_pipeline] = STATE(521), - [sym_list] = STATE(521), - [sym_negated_command] = STATE(521), - [sym_test_command] = STATE(521), - [sym_declaration_command] = STATE(521), - [sym_unset_command] = STATE(521), - [sym_command] = STATE(521), - [sym_command_name] = STATE(51), - [sym_variable_assignment] = STATE(522), - [sym_subscript] = STATE(53), - [sym_file_redirect] = STATE(54), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(47), - [sym_simple_expansion] = STATE(47), - [sym_string_expansion] = STATE(47), - [sym_expansion] = STATE(47), - [sym_command_substitution] = STATE(47), - [sym_process_substitution] = STATE(47), - [aux_sym__statements_repeat1] = STATE(1092), - [aux_sym_command_repeat1] = STATE(54), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(69), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(71), - [anon_sym_if] = ACTIONS(15), - [anon_sym_fi] = ACTIONS(2365), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(73), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(75), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_LBRACK_LBRACK] = ACTIONS(79), - [anon_sym_declare] = ACTIONS(81), - [anon_sym_typeset] = ACTIONS(81), - [anon_sym_export] = ACTIONS(81), - [anon_sym_readonly] = ACTIONS(81), - [anon_sym_local] = ACTIONS(81), - [anon_sym_unset] = ACTIONS(83), - [anon_sym_unsetenv] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(87), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(89), + [sym__concat] = ACTIONS(845), + [anon_sym_PIPE] = ACTIONS(847), + [anon_sym_RPAREN] = ACTIONS(845), + [anon_sym_AMP_AMP] = ACTIONS(845), + [anon_sym_PIPE_PIPE] = ACTIONS(845), + [anon_sym_EQ_TILDE] = ACTIONS(845), + [anon_sym_EQ_EQ] = ACTIONS(845), + [anon_sym_EQ] = ACTIONS(847), + [anon_sym_PLUS_EQ] = ACTIONS(845), + [anon_sym_LT] = ACTIONS(847), + [anon_sym_GT] = ACTIONS(847), + [anon_sym_BANG_EQ] = ACTIONS(845), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_DASH_EQ] = ACTIONS(845), + [anon_sym_LT_EQ] = ACTIONS(845), + [anon_sym_GT_EQ] = ACTIONS(845), + [anon_sym_PLUS_PLUS] = ACTIONS(845), + [anon_sym_DASH_DASH] = ACTIONS(845), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(845), }, [633] = { - [anon_sym_fi] = ACTIONS(2367), - [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(849), + [anon_sym_PIPE] = ACTIONS(851), + [anon_sym_RPAREN] = ACTIONS(849), + [anon_sym_AMP_AMP] = ACTIONS(849), + [anon_sym_PIPE_PIPE] = ACTIONS(849), + [anon_sym_EQ_TILDE] = ACTIONS(849), + [anon_sym_EQ_EQ] = ACTIONS(849), + [anon_sym_EQ] = ACTIONS(851), + [anon_sym_PLUS_EQ] = ACTIONS(849), + [anon_sym_LT] = ACTIONS(851), + [anon_sym_GT] = ACTIONS(851), + [anon_sym_BANG_EQ] = ACTIONS(849), + [anon_sym_PLUS] = ACTIONS(851), + [anon_sym_DASH] = ACTIONS(851), + [anon_sym_DASH_EQ] = ACTIONS(849), + [anon_sym_LT_EQ] = ACTIONS(849), + [anon_sym_GT_EQ] = ACTIONS(849), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(849), }, [634] = { - [sym__terminated_statement] = STATE(1095), - [sym_for_statement] = STATE(521), - [sym_c_style_for_statement] = STATE(521), - [sym_while_statement] = STATE(521), - [sym_if_statement] = STATE(521), - [sym_elif_clause] = STATE(1096), - [sym_else_clause] = STATE(1094), - [sym_case_statement] = STATE(521), - [sym_function_definition] = STATE(521), - [sym_subshell] = STATE(521), - [sym_pipeline] = STATE(521), - [sym_list] = STATE(521), - [sym_negated_command] = STATE(521), - [sym_test_command] = STATE(521), - [sym_declaration_command] = STATE(521), - [sym_unset_command] = STATE(521), - [sym_command] = STATE(521), - [sym_command_name] = STATE(51), - [sym_variable_assignment] = STATE(522), - [sym_subscript] = STATE(53), - [sym_file_redirect] = STATE(54), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(47), - [sym_simple_expansion] = STATE(47), - [sym_string_expansion] = STATE(47), - [sym_expansion] = STATE(47), - [sym_command_substitution] = STATE(47), - [sym_process_substitution] = STATE(47), - [aux_sym__statements_repeat1] = STATE(1095), - [aux_sym_if_statement_repeat1] = STATE(1096), - [aux_sym_command_repeat1] = STATE(54), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(69), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(71), - [anon_sym_if] = ACTIONS(15), - [anon_sym_fi] = ACTIONS(2369), - [anon_sym_elif] = ACTIONS(1217), - [anon_sym_else] = ACTIONS(1219), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(73), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(75), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_LBRACK_LBRACK] = ACTIONS(79), - [anon_sym_declare] = ACTIONS(81), - [anon_sym_typeset] = ACTIONS(81), - [anon_sym_export] = ACTIONS(81), - [anon_sym_readonly] = ACTIONS(81), - [anon_sym_local] = ACTIONS(81), - [anon_sym_unset] = ACTIONS(83), - [anon_sym_unsetenv] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(87), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(89), + [sym__concat] = ACTIONS(853), + [anon_sym_PIPE] = ACTIONS(855), + [anon_sym_RPAREN] = ACTIONS(853), + [anon_sym_AMP_AMP] = ACTIONS(853), + [anon_sym_PIPE_PIPE] = ACTIONS(853), + [anon_sym_EQ_TILDE] = ACTIONS(853), + [anon_sym_EQ_EQ] = ACTIONS(853), + [anon_sym_EQ] = ACTIONS(855), + [anon_sym_PLUS_EQ] = ACTIONS(853), + [anon_sym_LT] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_BANG_EQ] = ACTIONS(853), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_DASH_EQ] = ACTIONS(853), + [anon_sym_LT_EQ] = ACTIONS(853), + [anon_sym_GT_EQ] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(853), + [anon_sym_DASH_DASH] = ACTIONS(853), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(853), }, [635] = { - [sym_elif_clause] = STATE(1097), - [sym_else_clause] = STATE(1094), - [aux_sym_if_statement_repeat1] = STATE(1097), - [anon_sym_fi] = ACTIONS(2367), - [anon_sym_elif] = ACTIONS(2371), - [anon_sym_else] = ACTIONS(2373), - [sym_comment] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(857), + [anon_sym_EQ] = ACTIONS(2289), + [sym_comment] = ACTIONS(55), }, [636] = { - [sym__concat] = ACTIONS(1724), - [anon_sym_in] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_SEMI_SEMI] = ACTIONS(1724), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1724), + [sym_subscript] = STATE(1117), + [sym_variable_name] = ACTIONS(2291), + [anon_sym_DASH] = ACTIONS(2293), + [anon_sym_DOLLAR] = ACTIONS(2293), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2295), + [anon_sym_STAR] = ACTIONS(2297), + [anon_sym_AT] = ACTIONS(2297), + [anon_sym_QMARK] = ACTIONS(2297), + [anon_sym_0] = ACTIONS(2295), + [anon_sym__] = ACTIONS(2295), }, [637] = { - [sym_case_item] = STATE(1103), - [sym_last_case_item] = STATE(1101), - [sym_concatenation] = STATE(1102), - [sym_string] = STATE(1100), - [sym_simple_expansion] = STATE(1100), - [sym_string_expansion] = STATE(1100), - [sym_expansion] = STATE(1100), - [sym_command_substitution] = STATE(1100), - [sym_process_substitution] = STATE(1100), - [aux_sym_case_statement_repeat1] = STATE(1103), - [anon_sym_esac] = ACTIONS(2375), - [sym__special_characters] = ACTIONS(2377), - [anon_sym_DQUOTE] = ACTIONS(163), - [anon_sym_DOLLAR] = ACTIONS(165), - [sym_raw_string] = ACTIONS(2379), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(169), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(171), - [anon_sym_BQUOTE] = ACTIONS(173), - [anon_sym_LT_LPAREN] = ACTIONS(175), - [anon_sym_GT_LPAREN] = ACTIONS(175), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2381), + [sym_concatenation] = STATE(1120), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1120), + [anon_sym_RBRACE] = ACTIONS(2299), + [anon_sym_EQ] = ACTIONS(2301), + [anon_sym_DASH] = ACTIONS(2301), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(2303), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(2305), + [anon_sym_COLON] = ACTIONS(2301), + [anon_sym_COLON_QMARK] = ACTIONS(2301), + [anon_sym_COLON_DASH] = ACTIONS(2301), + [anon_sym_PERCENT] = ACTIONS(2301), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [638] = { - [anon_sym_SEMI] = ACTIONS(2383), - [anon_sym_SEMI_SEMI] = ACTIONS(2385), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(2385), - [anon_sym_AMP] = ACTIONS(2385), + [sym_concatenation] = STATE(1123), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1123), + [anon_sym_RBRACE] = ACTIONS(2307), + [anon_sym_EQ] = ACTIONS(2309), + [anon_sym_DASH] = ACTIONS(2309), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(2311), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(2313), + [anon_sym_COLON] = ACTIONS(2309), + [anon_sym_COLON_QMARK] = ACTIONS(2309), + [anon_sym_COLON_DASH] = ACTIONS(2309), + [anon_sym_PERCENT] = ACTIONS(2309), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [639] = { - [aux_sym_concatenation_repeat1] = STATE(639), - [sym__concat] = ACTIONS(2387), - [anon_sym_in] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_SEMI_SEMI] = ACTIONS(1724), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1724), + [anon_sym_SEMI] = ACTIONS(2315), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(2317), + [anon_sym_SEMI_SEMI] = ACTIONS(2319), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2319), + [anon_sym_AMP] = ACTIONS(2315), }, [640] = { - [sym__concat] = ACTIONS(1731), - [anon_sym_in] = ACTIONS(1731), - [anon_sym_SEMI] = ACTIONS(1733), - [anon_sym_SEMI_SEMI] = ACTIONS(1731), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1731), - [anon_sym_AMP] = ACTIONS(1731), + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(2315), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(2317), + [anon_sym_SEMI_SEMI] = ACTIONS(2319), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(2319), + [anon_sym_AMP] = ACTIONS(2315), }, [641] = { - [anon_sym_DQUOTE] = ACTIONS(2390), - [anon_sym_DOLLAR] = ACTIONS(775), - [sym__string_content] = ACTIONS(777), - [anon_sym_POUND] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(781), - [anon_sym_STAR] = ACTIONS(783), - [anon_sym_AT] = ACTIONS(783), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_0] = ACTIONS(781), - [anon_sym__] = ACTIONS(781), + [sym__terminated_statement] = STATE(198), + [sym_for_statement] = STATE(1126), + [sym_c_style_for_statement] = STATE(1126), + [sym_while_statement] = STATE(1126), + [sym_if_statement] = STATE(1126), + [sym_case_statement] = STATE(1126), + [sym_function_definition] = STATE(1126), + [sym_subshell] = STATE(1126), + [sym_pipeline] = STATE(1126), + [sym_list] = STATE(1126), + [sym_negated_command] = STATE(1126), + [sym_test_command] = STATE(1126), + [sym_declaration_command] = STATE(1126), + [sym_unset_command] = STATE(1126), + [sym_command] = STATE(1126), + [sym_command_name] = STATE(92), + [sym_variable_assignment] = STATE(1127), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(96), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), + [aux_sym__statements_repeat1] = STATE(198), + [aux_sym_command_repeat1] = STATE(96), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(137), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(149), + [anon_sym_declare] = ACTIONS(151), + [anon_sym_typeset] = ACTIONS(151), + [anon_sym_export] = ACTIONS(151), + [anon_sym_readonly] = ACTIONS(151), + [anon_sym_local] = ACTIONS(151), + [anon_sym_unset] = ACTIONS(153), + [anon_sym_unsetenv] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(159), }, [642] = { - [sym_case_item] = STATE(1108), - [sym_last_case_item] = STATE(1107), - [sym_concatenation] = STATE(1102), - [sym_string] = STATE(1100), - [sym_simple_expansion] = STATE(1100), - [sym_string_expansion] = STATE(1100), - [sym_expansion] = STATE(1100), - [sym_command_substitution] = STATE(1100), - [sym_process_substitution] = STATE(1100), - [aux_sym_case_statement_repeat1] = STATE(1108), - [anon_sym_esac] = ACTIONS(2392), - [sym__special_characters] = ACTIONS(2377), - [anon_sym_DQUOTE] = ACTIONS(163), - [anon_sym_DOLLAR] = ACTIONS(165), - [sym_raw_string] = ACTIONS(2379), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(169), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(171), - [anon_sym_BQUOTE] = ACTIONS(173), - [anon_sym_LT_LPAREN] = ACTIONS(175), - [anon_sym_GT_LPAREN] = ACTIONS(175), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2381), + [anon_sym_SEMI] = ACTIONS(2321), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_SEMI_SEMI] = ACTIONS(2323), + [anon_sym_PIPE_AMP] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_BQUOTE] = ACTIONS(2317), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2323), + [anon_sym_AMP] = ACTIONS(2321), }, [643] = { - [anon_sym_SEMI] = ACTIONS(2394), - [anon_sym_SEMI_SEMI] = ACTIONS(2396), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(2396), - [anon_sym_AMP] = ACTIONS(2396), + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(2321), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_SEMI_SEMI] = ACTIONS(2323), + [anon_sym_PIPE_AMP] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(2317), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(2323), + [anon_sym_AMP] = ACTIONS(2321), }, [644] = { - [sym_concatenation] = STATE(1113), - [sym_string] = STATE(1112), - [sym_simple_expansion] = STATE(1112), - [sym_string_expansion] = STATE(1112), - [sym_expansion] = STATE(1112), - [sym_command_substitution] = STATE(1112), - [sym_process_substitution] = STATE(1112), - [anon_sym_RBRACE] = ACTIONS(2398), - [sym__special_characters] = ACTIONS(2400), - [anon_sym_DQUOTE] = ACTIONS(1802), - [anon_sym_DOLLAR] = ACTIONS(1804), - [sym_raw_string] = ACTIONS(2402), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1808), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1810), - [anon_sym_BQUOTE] = ACTIONS(1812), - [anon_sym_LT_LPAREN] = ACTIONS(1814), - [anon_sym_GT_LPAREN] = ACTIONS(1814), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2402), + [sym__terminated_statement] = STATE(198), + [sym_for_statement] = STATE(1129), + [sym_c_style_for_statement] = STATE(1129), + [sym_while_statement] = STATE(1129), + [sym_if_statement] = STATE(1129), + [sym_case_statement] = STATE(1129), + [sym_function_definition] = STATE(1129), + [sym_subshell] = STATE(1129), + [sym_pipeline] = STATE(1129), + [sym_list] = STATE(1129), + [sym_negated_command] = STATE(1129), + [sym_test_command] = STATE(1129), + [sym_declaration_command] = STATE(1129), + [sym_unset_command] = STATE(1129), + [sym_command] = STATE(1129), + [sym_command_name] = STATE(173), + [sym_variable_assignment] = STATE(1130), + [sym_subscript] = STATE(66), + [sym_file_redirect] = STATE(176), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(60), + [sym_simple_expansion] = STATE(60), + [sym_string_expansion] = STATE(60), + [sym_expansion] = STATE(60), + [sym_command_substitution] = STATE(60), + [sym_process_substitution] = STATE(60), + [aux_sym__statements_repeat1] = STATE(198), + [aux_sym_command_repeat1] = STATE(176), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(95), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(305), + [anon_sym_while] = ACTIONS(307), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(311), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(315), + [anon_sym_declare] = ACTIONS(317), + [anon_sym_typeset] = ACTIONS(317), + [anon_sym_export] = ACTIONS(317), + [anon_sym_readonly] = ACTIONS(317), + [anon_sym_local] = ACTIONS(317), + [anon_sym_unset] = ACTIONS(319), + [anon_sym_unsetenv] = ACTIONS(319), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(115), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(321), }, [645] = { - [anon_sym_LBRACK] = ACTIONS(815), - [anon_sym_EQ] = ACTIONS(2404), - [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(2325), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(2327), + [anon_sym_SEMI_SEMI] = ACTIONS(2329), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2329), + [anon_sym_AMP] = ACTIONS(2325), }, [646] = { - [sym_concatenation] = STATE(1117), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(1117), - [anon_sym_RBRACE] = ACTIONS(2406), - [anon_sym_EQ] = ACTIONS(2408), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(2410), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(2412), - [anon_sym_COLON] = ACTIONS(2408), - [anon_sym_COLON_QMARK] = ACTIONS(2408), - [anon_sym_COLON_DASH] = ACTIONS(2408), - [anon_sym_PERCENT] = ACTIONS(2408), - [anon_sym_DASH] = ACTIONS(2408), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(2325), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(2327), + [anon_sym_SEMI_SEMI] = ACTIONS(2329), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(2329), + [anon_sym_AMP] = ACTIONS(2325), }, [647] = { - [sym_concatenation] = STATE(1119), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(1119), - [anon_sym_RBRACE] = ACTIONS(2398), - [anon_sym_EQ] = ACTIONS(2414), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(2416), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(2418), - [anon_sym_COLON] = ACTIONS(2414), - [anon_sym_COLON_QMARK] = ACTIONS(2414), - [anon_sym_COLON_DASH] = ACTIONS(2414), - [anon_sym_PERCENT] = ACTIONS(2414), - [anon_sym_DASH] = ACTIONS(2414), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym__terminated_statement] = STATE(198), + [sym_for_statement] = STATE(1133), + [sym_c_style_for_statement] = STATE(1133), + [sym_while_statement] = STATE(1133), + [sym_if_statement] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_function_definition] = STATE(1133), + [sym_subshell] = STATE(1133), + [sym_pipeline] = STATE(1133), + [sym_list] = STATE(1133), + [sym_negated_command] = STATE(1133), + [sym_test_command] = STATE(1133), + [sym_declaration_command] = STATE(1133), + [sym_unset_command] = STATE(1133), + [sym_command] = STATE(1133), + [sym_command_name] = STATE(92), + [sym_variable_assignment] = STATE(1134), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(96), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), + [aux_sym__statements_repeat1] = STATE(198), + [aux_sym_command_repeat1] = STATE(96), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(137), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(149), + [anon_sym_declare] = ACTIONS(151), + [anon_sym_typeset] = ACTIONS(151), + [anon_sym_export] = ACTIONS(151), + [anon_sym_readonly] = ACTIONS(151), + [anon_sym_local] = ACTIONS(151), + [anon_sym_unset] = ACTIONS(153), + [anon_sym_unsetenv] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(159), }, [648] = { - [sym__concat] = ACTIONS(1832), - [anon_sym_in] = ACTIONS(1832), - [anon_sym_SEMI] = ACTIONS(1834), - [anon_sym_SEMI_SEMI] = ACTIONS(1832), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1832), - [anon_sym_AMP] = ACTIONS(1832), + [anon_sym_RPAREN_RPAREN] = ACTIONS(2331), + [anon_sym_AMP_AMP] = ACTIONS(2331), + [anon_sym_PIPE_PIPE] = ACTIONS(2331), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2331), + [anon_sym_EQ_TILDE] = ACTIONS(2331), + [anon_sym_EQ_EQ] = ACTIONS(2331), + [anon_sym_EQ] = ACTIONS(2333), + [anon_sym_PLUS_EQ] = ACTIONS(2331), + [anon_sym_LT] = ACTIONS(2333), + [anon_sym_GT] = ACTIONS(2333), + [anon_sym_BANG_EQ] = ACTIONS(2331), + [anon_sym_PLUS] = ACTIONS(2333), + [anon_sym_DASH] = ACTIONS(2333), + [anon_sym_DASH_EQ] = ACTIONS(2331), + [anon_sym_LT_EQ] = ACTIONS(2331), + [anon_sym_GT_EQ] = ACTIONS(2331), + [anon_sym_PLUS_PLUS] = ACTIONS(2331), + [anon_sym_DASH_DASH] = ACTIONS(2331), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(2331), }, [649] = { - [sym_comment] = ACTIONS(265), - [sym_regex_without_right_brace] = ACTIONS(2420), + [sym__expression] = STATE(1135), + [sym_binary_expression] = STATE(1135), + [sym_unary_expression] = STATE(1135), + [sym_postfix_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(1135), + [sym_concatenation] = STATE(1135), + [sym_string] = STATE(236), + [sym_simple_expansion] = STATE(236), + [sym_string_expansion] = STATE(236), + [sym_expansion] = STATE(236), + [sym_command_substitution] = STATE(236), + [sym_process_substitution] = STATE(236), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_BANG] = ACTIONS(437), + [sym__special_characters] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(441), + [anon_sym_DOLLAR] = ACTIONS(443), + [sym_raw_string] = ACTIONS(445), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(447), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(449), + [anon_sym_BQUOTE] = ACTIONS(451), + [anon_sym_LT_LPAREN] = ACTIONS(453), + [anon_sym_GT_LPAREN] = ACTIONS(453), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(455), + [sym_test_operator] = ACTIONS(457), }, [650] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(2422), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym__expression] = STATE(1135), + [sym_binary_expression] = STATE(1135), + [sym_unary_expression] = STATE(1135), + [sym_postfix_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(1135), + [sym_concatenation] = STATE(1135), + [sym_string] = STATE(236), + [sym_simple_expansion] = STATE(236), + [sym_string_expansion] = STATE(236), + [sym_expansion] = STATE(236), + [sym_command_substitution] = STATE(236), + [sym_process_substitution] = STATE(236), + [sym_regex] = ACTIONS(2335), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_BANG] = ACTIONS(437), + [sym__special_characters] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(441), + [anon_sym_DOLLAR] = ACTIONS(443), + [sym_raw_string] = ACTIONS(445), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(447), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(449), + [anon_sym_BQUOTE] = ACTIONS(451), + [anon_sym_LT_LPAREN] = ACTIONS(453), + [anon_sym_GT_LPAREN] = ACTIONS(453), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(455), + [sym_test_operator] = ACTIONS(457), }, [651] = { - [sym__concat] = ACTIONS(1876), - [anon_sym_in] = ACTIONS(1876), - [anon_sym_SEMI] = ACTIONS(1878), - [anon_sym_SEMI_SEMI] = ACTIONS(1876), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1876), - [anon_sym_AMP] = ACTIONS(1876), + [anon_sym_RPAREN] = ACTIONS(1316), + [anon_sym_AMP_AMP] = ACTIONS(1316), + [anon_sym_PIPE_PIPE] = ACTIONS(1316), + [anon_sym_EQ_TILDE] = ACTIONS(1316), + [anon_sym_EQ_EQ] = ACTIONS(1316), + [anon_sym_EQ] = ACTIONS(1318), + [anon_sym_PLUS_EQ] = ACTIONS(1316), + [anon_sym_LT] = ACTIONS(1318), + [anon_sym_GT] = ACTIONS(1318), + [anon_sym_BANG_EQ] = ACTIONS(1316), + [anon_sym_PLUS] = ACTIONS(1318), + [anon_sym_DASH] = ACTIONS(1318), + [anon_sym_DASH_EQ] = ACTIONS(1316), + [anon_sym_LT_EQ] = ACTIONS(1316), + [anon_sym_GT_EQ] = ACTIONS(1316), + [anon_sym_PLUS_PLUS] = ACTIONS(1316), + [anon_sym_DASH_DASH] = ACTIONS(1316), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(1316), }, [652] = { - [sym_comment] = ACTIONS(265), - [sym_regex_without_right_brace] = ACTIONS(2424), + [sym__concat] = ACTIONS(1763), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1763), + [anon_sym_AMP_AMP] = ACTIONS(1763), + [anon_sym_PIPE_PIPE] = ACTIONS(1763), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1763), + [anon_sym_EQ_TILDE] = ACTIONS(1763), + [anon_sym_EQ_EQ] = ACTIONS(1763), + [anon_sym_EQ] = ACTIONS(1765), + [anon_sym_PLUS_EQ] = ACTIONS(1763), + [anon_sym_LT] = ACTIONS(1765), + [anon_sym_GT] = ACTIONS(1765), + [anon_sym_BANG_EQ] = ACTIONS(1763), + [anon_sym_PLUS] = ACTIONS(1765), + [anon_sym_DASH] = ACTIONS(1765), + [anon_sym_DASH_EQ] = ACTIONS(1763), + [anon_sym_LT_EQ] = ACTIONS(1763), + [anon_sym_GT_EQ] = ACTIONS(1763), + [anon_sym_PLUS_PLUS] = ACTIONS(1763), + [anon_sym_DASH_DASH] = ACTIONS(1763), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(1763), }, [653] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(2398), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [aux_sym_concatenation_repeat1] = STATE(653), + [sym__concat] = ACTIONS(2337), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1763), + [anon_sym_AMP_AMP] = ACTIONS(1763), + [anon_sym_PIPE_PIPE] = ACTIONS(1763), + [anon_sym_EQ_TILDE] = ACTIONS(1763), + [anon_sym_EQ_EQ] = ACTIONS(1763), + [anon_sym_EQ] = ACTIONS(1765), + [anon_sym_PLUS_EQ] = ACTIONS(1763), + [anon_sym_LT] = ACTIONS(1765), + [anon_sym_GT] = ACTIONS(1765), + [anon_sym_BANG_EQ] = ACTIONS(1763), + [anon_sym_PLUS] = ACTIONS(1765), + [anon_sym_DASH] = ACTIONS(1765), + [anon_sym_DASH_EQ] = ACTIONS(1763), + [anon_sym_LT_EQ] = ACTIONS(1763), + [anon_sym_GT_EQ] = ACTIONS(1763), + [anon_sym_PLUS_PLUS] = ACTIONS(1763), + [anon_sym_DASH_DASH] = ACTIONS(1763), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(1763), }, [654] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(2426), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(901), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), + [sym__concat] = ACTIONS(1770), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1770), + [anon_sym_EQ_TILDE] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ] = ACTIONS(1772), + [anon_sym_PLUS_EQ] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1772), + [anon_sym_GT] = ACTIONS(1772), + [anon_sym_BANG_EQ] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1772), + [anon_sym_DASH] = ACTIONS(1772), + [anon_sym_DASH_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(1770), }, [655] = { - [sym__concat] = ACTIONS(1884), - [anon_sym_in] = ACTIONS(1884), - [anon_sym_SEMI] = ACTIONS(1886), - [anon_sym_SEMI_SEMI] = ACTIONS(1884), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1884), - [anon_sym_AMP] = ACTIONS(1884), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_DQUOTE] = ACTIONS(2340), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym__string_content] = ACTIONS(821), + [anon_sym_POUND] = ACTIONS(815), + [sym_comment] = ACTIONS(281), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(823), + [anon_sym_STAR] = ACTIONS(825), + [anon_sym_AT] = ACTIONS(825), + [anon_sym_QMARK] = ACTIONS(825), + [anon_sym_0] = ACTIONS(823), + [anon_sym__] = ACTIONS(823), }, [656] = { - [anon_sym_SEMI] = ACTIONS(2428), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(2426), - [anon_sym_SEMI_SEMI] = ACTIONS(2430), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(2430), - [anon_sym_AMP] = ACTIONS(2428), + [sym_concatenation] = STATE(1141), + [sym_string] = STATE(1140), + [sym_simple_expansion] = STATE(1140), + [sym_string_expansion] = STATE(1140), + [sym_expansion] = STATE(1140), + [sym_command_substitution] = STATE(1140), + [sym_process_substitution] = STATE(1140), + [anon_sym_RBRACE] = ACTIONS(2342), + [sym__special_characters] = ACTIONS(2344), + [anon_sym_DQUOTE] = ACTIONS(1841), + [anon_sym_DOLLAR] = ACTIONS(1843), + [sym_raw_string] = ACTIONS(2346), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1849), + [anon_sym_BQUOTE] = ACTIONS(1851), + [anon_sym_LT_LPAREN] = ACTIONS(1853), + [anon_sym_GT_LPAREN] = ACTIONS(1853), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(2346), }, [657] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(2428), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(2426), - [anon_sym_SEMI_SEMI] = ACTIONS(2430), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(2430), - [anon_sym_AMP] = ACTIONS(2428), + [anon_sym_LBRACK] = ACTIONS(857), + [anon_sym_EQ] = ACTIONS(2348), + [sym_comment] = ACTIONS(55), }, [658] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(2426), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), + [sym_concatenation] = STATE(1145), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1145), + [anon_sym_RBRACE] = ACTIONS(2350), + [anon_sym_EQ] = ACTIONS(2352), + [anon_sym_DASH] = ACTIONS(2352), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(2354), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(2356), + [anon_sym_COLON] = ACTIONS(2352), + [anon_sym_COLON_QMARK] = ACTIONS(2352), + [anon_sym_COLON_DASH] = ACTIONS(2352), + [anon_sym_PERCENT] = ACTIONS(2352), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [659] = { - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_SEMI_SEMI] = ACTIONS(2434), - [anon_sym_PIPE_AMP] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(883), - [anon_sym_PIPE_PIPE] = ACTIONS(883), - [anon_sym_BQUOTE] = ACTIONS(2426), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(2434), - [anon_sym_AMP] = ACTIONS(2432), + [sym_concatenation] = STATE(1147), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1147), + [anon_sym_RBRACE] = ACTIONS(2342), + [anon_sym_EQ] = ACTIONS(2358), + [anon_sym_DASH] = ACTIONS(2358), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(2360), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(2362), + [anon_sym_COLON] = ACTIONS(2358), + [anon_sym_COLON_QMARK] = ACTIONS(2358), + [anon_sym_COLON_DASH] = ACTIONS(2358), + [anon_sym_PERCENT] = ACTIONS(2358), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [660] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_SEMI_SEMI] = ACTIONS(2434), - [anon_sym_PIPE_AMP] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(883), - [anon_sym_PIPE_PIPE] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(2426), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(2434), - [anon_sym_AMP] = ACTIONS(2432), + [sym__concat] = ACTIONS(1871), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1871), + [anon_sym_AMP_AMP] = ACTIONS(1871), + [anon_sym_PIPE_PIPE] = ACTIONS(1871), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1871), + [anon_sym_EQ_TILDE] = ACTIONS(1871), + [anon_sym_EQ_EQ] = ACTIONS(1871), + [anon_sym_EQ] = ACTIONS(1873), + [anon_sym_PLUS_EQ] = ACTIONS(1871), + [anon_sym_LT] = ACTIONS(1873), + [anon_sym_GT] = ACTIONS(1873), + [anon_sym_BANG_EQ] = ACTIONS(1871), + [anon_sym_PLUS] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1873), + [anon_sym_DASH_EQ] = ACTIONS(1871), + [anon_sym_LT_EQ] = ACTIONS(1871), + [anon_sym_GT_EQ] = ACTIONS(1871), + [anon_sym_PLUS_PLUS] = ACTIONS(1871), + [anon_sym_DASH_DASH] = ACTIONS(1871), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(1871), }, [661] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(2436), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(901), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), + [sym_concatenation] = STATE(1150), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1150), + [sym_regex] = ACTIONS(2364), + [anon_sym_RBRACE] = ACTIONS(2366), + [anon_sym_EQ] = ACTIONS(2368), + [anon_sym_DASH] = ACTIONS(2368), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(2370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(2368), + [anon_sym_COLON_QMARK] = ACTIONS(2368), + [anon_sym_COLON_DASH] = ACTIONS(2368), + [anon_sym_PERCENT] = ACTIONS(2368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [662] = { - [sym__concat] = ACTIONS(1916), - [anon_sym_in] = ACTIONS(1916), - [anon_sym_SEMI] = ACTIONS(1918), - [anon_sym_SEMI_SEMI] = ACTIONS(1916), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1916), - [anon_sym_AMP] = ACTIONS(1916), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(2366), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [663] = { - [anon_sym_SEMI] = ACTIONS(2438), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(2436), - [anon_sym_SEMI_SEMI] = ACTIONS(2440), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(2440), - [anon_sym_AMP] = ACTIONS(2438), + [sym__concat] = ACTIONS(1919), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1919), + [anon_sym_AMP_AMP] = ACTIONS(1919), + [anon_sym_PIPE_PIPE] = ACTIONS(1919), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1919), + [anon_sym_EQ_TILDE] = ACTIONS(1919), + [anon_sym_EQ_EQ] = ACTIONS(1919), + [anon_sym_EQ] = ACTIONS(1921), + [anon_sym_PLUS_EQ] = ACTIONS(1919), + [anon_sym_LT] = ACTIONS(1921), + [anon_sym_GT] = ACTIONS(1921), + [anon_sym_BANG_EQ] = ACTIONS(1919), + [anon_sym_PLUS] = ACTIONS(1921), + [anon_sym_DASH] = ACTIONS(1921), + [anon_sym_DASH_EQ] = ACTIONS(1919), + [anon_sym_LT_EQ] = ACTIONS(1919), + [anon_sym_GT_EQ] = ACTIONS(1919), + [anon_sym_PLUS_PLUS] = ACTIONS(1919), + [anon_sym_DASH_DASH] = ACTIONS(1919), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(1919), }, [664] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(2438), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(2436), - [anon_sym_SEMI_SEMI] = ACTIONS(2440), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(2440), - [anon_sym_AMP] = ACTIONS(2438), + [sym_concatenation] = STATE(1147), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1147), + [sym_regex] = ACTIONS(2372), + [anon_sym_RBRACE] = ACTIONS(2342), + [anon_sym_EQ] = ACTIONS(2358), + [anon_sym_DASH] = ACTIONS(2358), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(2360), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(2358), + [anon_sym_COLON_QMARK] = ACTIONS(2358), + [anon_sym_COLON_DASH] = ACTIONS(2358), + [anon_sym_PERCENT] = ACTIONS(2358), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [665] = { - [sym_compound_statement] = STATE(1128), - [anon_sym_LBRACE] = ACTIONS(511), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(2342), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [666] = { - [sym_file_descriptor] = ACTIONS(2442), - [ts_builtin_sym_end] = ACTIONS(2442), - [anon_sym_SEMI] = ACTIONS(2444), - [anon_sym_esac] = ACTIONS(2442), - [anon_sym_PIPE] = ACTIONS(2444), - [anon_sym_RPAREN] = ACTIONS(2442), - [anon_sym_SEMI_SEMI] = ACTIONS(2442), - [anon_sym_PIPE_AMP] = ACTIONS(2442), - [anon_sym_AMP_AMP] = ACTIONS(2442), - [anon_sym_PIPE_PIPE] = ACTIONS(2442), - [anon_sym_LT] = ACTIONS(2444), - [anon_sym_GT] = ACTIONS(2444), - [anon_sym_GT_GT] = ACTIONS(2442), - [anon_sym_AMP_GT] = ACTIONS(2444), - [anon_sym_AMP_GT_GT] = ACTIONS(2442), - [anon_sym_LT_AMP] = ACTIONS(2442), - [anon_sym_GT_AMP] = ACTIONS(2442), - [anon_sym_BQUOTE] = ACTIONS(2442), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(2442), - [anon_sym_AMP] = ACTIONS(2444), + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(2374), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), }, [667] = { - [anon_sym_SEMI] = ACTIONS(2446), - [anon_sym_PIPE] = ACTIONS(445), - [anon_sym_SEMI_SEMI] = ACTIONS(2448), - [anon_sym_PIPE_AMP] = ACTIONS(449), - [anon_sym_AMP_AMP] = ACTIONS(451), - [anon_sym_PIPE_PIPE] = ACTIONS(451), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(2448), - [anon_sym_AMP] = ACTIONS(2446), + [sym__concat] = ACTIONS(1927), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1927), + [anon_sym_AMP_AMP] = ACTIONS(1927), + [anon_sym_PIPE_PIPE] = ACTIONS(1927), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1927), + [anon_sym_EQ_TILDE] = ACTIONS(1927), + [anon_sym_EQ_EQ] = ACTIONS(1927), + [anon_sym_EQ] = ACTIONS(1929), + [anon_sym_PLUS_EQ] = ACTIONS(1927), + [anon_sym_LT] = ACTIONS(1929), + [anon_sym_GT] = ACTIONS(1929), + [anon_sym_BANG_EQ] = ACTIONS(1927), + [anon_sym_PLUS] = ACTIONS(1929), + [anon_sym_DASH] = ACTIONS(1929), + [anon_sym_DASH_EQ] = ACTIONS(1927), + [anon_sym_LT_EQ] = ACTIONS(1927), + [anon_sym_GT_EQ] = ACTIONS(1927), + [anon_sym_PLUS_PLUS] = ACTIONS(1927), + [anon_sym_DASH_DASH] = ACTIONS(1927), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(1927), }, [668] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(2446), - [anon_sym_PIPE] = ACTIONS(445), - [anon_sym_SEMI_SEMI] = ACTIONS(2448), - [anon_sym_PIPE_AMP] = ACTIONS(449), - [anon_sym_AMP_AMP] = ACTIONS(451), - [anon_sym_PIPE_PIPE] = ACTIONS(451), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(2448), - [anon_sym_AMP] = ACTIONS(2446), + [anon_sym_SEMI] = ACTIONS(2376), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(2374), + [anon_sym_SEMI_SEMI] = ACTIONS(2378), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2378), + [anon_sym_AMP] = ACTIONS(2376), }, [669] = { - [sym__terminated_statement] = STATE(1131), - [sym_for_statement] = STATE(667), - [sym_c_style_for_statement] = STATE(667), - [sym_while_statement] = STATE(667), - [sym_if_statement] = STATE(667), - [sym_case_statement] = STATE(667), - [sym_function_definition] = STATE(667), - [sym_subshell] = STATE(667), - [sym_pipeline] = STATE(667), - [sym_list] = STATE(667), - [sym_negated_command] = STATE(667), - [sym_test_command] = STATE(667), - [sym_declaration_command] = STATE(667), - [sym_unset_command] = STATE(667), - [sym_command] = STATE(667), - [sym_command_name] = STATE(51), - [sym_variable_assignment] = STATE(668), - [sym_subscript] = STATE(53), - [sym_file_redirect] = STATE(54), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(47), - [sym_simple_expansion] = STATE(47), - [sym_string_expansion] = STATE(47), - [sym_expansion] = STATE(47), - [sym_command_substitution] = STATE(47), - [sym_process_substitution] = STATE(47), - [aux_sym__statements_repeat1] = STATE(1131), - [aux_sym_command_repeat1] = STATE(54), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(69), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(71), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(73), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_RBRACE] = ACTIONS(2450), - [anon_sym_BANG] = ACTIONS(75), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_LBRACK_LBRACK] = ACTIONS(79), - [anon_sym_declare] = ACTIONS(81), - [anon_sym_typeset] = ACTIONS(81), - [anon_sym_export] = ACTIONS(81), - [anon_sym_readonly] = ACTIONS(81), - [anon_sym_local] = ACTIONS(81), - [anon_sym_unset] = ACTIONS(83), - [anon_sym_unsetenv] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(87), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(89), + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(2376), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(2374), + [anon_sym_SEMI_SEMI] = ACTIONS(2378), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(2378), + [anon_sym_AMP] = ACTIONS(2376), }, [670] = { - [anon_sym_LT] = ACTIONS(2452), - [anon_sym_GT] = ACTIONS(2452), - [anon_sym_GT_GT] = ACTIONS(2454), - [anon_sym_AMP_GT] = ACTIONS(2452), - [anon_sym_AMP_GT_GT] = ACTIONS(2454), - [anon_sym_LT_AMP] = ACTIONS(2454), - [anon_sym_GT_AMP] = ACTIONS(2454), - [sym_comment] = ACTIONS(53), + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(2374), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), }, [671] = { - [sym_concatenation] = STATE(1135), - [sym_string] = STATE(1134), - [sym_simple_expansion] = STATE(1134), - [sym_string_expansion] = STATE(1134), - [sym_expansion] = STATE(1134), - [sym_command_substitution] = STATE(1134), - [sym_process_substitution] = STATE(1134), - [sym__special_characters] = ACTIONS(2456), - [anon_sym_DQUOTE] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(215), - [sym_raw_string] = ACTIONS(2458), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(219), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(221), - [anon_sym_BQUOTE] = ACTIONS(223), - [anon_sym_LT_LPAREN] = ACTIONS(225), - [anon_sym_GT_LPAREN] = ACTIONS(225), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2458), + [anon_sym_SEMI] = ACTIONS(2380), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_SEMI_SEMI] = ACTIONS(2382), + [anon_sym_PIPE_AMP] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_BQUOTE] = ACTIONS(2374), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2382), + [anon_sym_AMP] = ACTIONS(2380), }, [672] = { - [ts_builtin_sym_end] = ACTIONS(2460), - [anon_sym_SEMI] = ACTIONS(2462), - [anon_sym_esac] = ACTIONS(2460), - [anon_sym_PIPE] = ACTIONS(2462), - [anon_sym_RPAREN] = ACTIONS(2460), - [anon_sym_SEMI_SEMI] = ACTIONS(2460), - [anon_sym_PIPE_AMP] = ACTIONS(2460), - [anon_sym_AMP_AMP] = ACTIONS(2460), - [anon_sym_PIPE_PIPE] = ACTIONS(2460), - [anon_sym_BQUOTE] = ACTIONS(2460), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(2460), - [anon_sym_AMP] = ACTIONS(2462), + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(2380), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_SEMI_SEMI] = ACTIONS(2382), + [anon_sym_PIPE_AMP] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(2374), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(2382), + [anon_sym_AMP] = ACTIONS(2380), }, [673] = { - [aux_sym_concatenation_repeat1] = STATE(1136), - [sym_file_descriptor] = ACTIONS(1093), - [sym__concat] = ACTIONS(1095), - [sym_variable_name] = ACTIONS(1093), - [anon_sym_SEMI] = ACTIONS(1097), - [anon_sym_PIPE] = ACTIONS(1097), - [anon_sym_RPAREN] = ACTIONS(1093), - [anon_sym_SEMI_SEMI] = ACTIONS(1093), - [anon_sym_PIPE_AMP] = ACTIONS(1093), - [anon_sym_AMP_AMP] = ACTIONS(1093), - [anon_sym_PIPE_PIPE] = ACTIONS(1093), - [anon_sym_LT] = ACTIONS(1097), - [anon_sym_GT] = ACTIONS(1097), - [anon_sym_GT_GT] = ACTIONS(1093), - [anon_sym_AMP_GT] = ACTIONS(1097), - [anon_sym_AMP_GT_GT] = ACTIONS(1093), - [anon_sym_LT_AMP] = ACTIONS(1093), - [anon_sym_GT_AMP] = ACTIONS(1093), - [sym__special_characters] = ACTIONS(1093), - [anon_sym_DQUOTE] = ACTIONS(1093), - [anon_sym_DOLLAR] = ACTIONS(1097), - [sym_raw_string] = ACTIONS(1093), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1093), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1093), - [anon_sym_BQUOTE] = ACTIONS(1093), - [anon_sym_LT_LPAREN] = ACTIONS(1093), - [anon_sym_GT_LPAREN] = ACTIONS(1093), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1097), - [anon_sym_LF] = ACTIONS(1093), - [anon_sym_AMP] = ACTIONS(1097), + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(2384), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), }, [674] = { - [aux_sym_concatenation_repeat1] = STATE(1136), - [sym_file_descriptor] = ACTIONS(1071), - [sym__concat] = ACTIONS(1095), - [sym_variable_name] = ACTIONS(1071), - [anon_sym_SEMI] = ACTIONS(1073), - [anon_sym_PIPE] = ACTIONS(1073), - [anon_sym_RPAREN] = ACTIONS(1071), - [anon_sym_SEMI_SEMI] = ACTIONS(1071), - [anon_sym_PIPE_AMP] = ACTIONS(1071), - [anon_sym_AMP_AMP] = ACTIONS(1071), - [anon_sym_PIPE_PIPE] = ACTIONS(1071), - [anon_sym_LT] = ACTIONS(1073), - [anon_sym_GT] = ACTIONS(1073), - [anon_sym_GT_GT] = ACTIONS(1071), - [anon_sym_AMP_GT] = ACTIONS(1073), - [anon_sym_AMP_GT_GT] = ACTIONS(1071), - [anon_sym_LT_AMP] = ACTIONS(1071), - [anon_sym_GT_AMP] = ACTIONS(1071), - [sym__special_characters] = ACTIONS(1071), - [anon_sym_DQUOTE] = ACTIONS(1071), - [anon_sym_DOLLAR] = ACTIONS(1073), - [sym_raw_string] = ACTIONS(1071), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1071), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1071), - [anon_sym_BQUOTE] = ACTIONS(1071), - [anon_sym_LT_LPAREN] = ACTIONS(1071), - [anon_sym_GT_LPAREN] = ACTIONS(1071), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1073), - [anon_sym_LF] = ACTIONS(1071), - [anon_sym_AMP] = ACTIONS(1073), + [sym__concat] = ACTIONS(1959), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1959), + [anon_sym_AMP_AMP] = ACTIONS(1959), + [anon_sym_PIPE_PIPE] = ACTIONS(1959), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1959), + [anon_sym_EQ_TILDE] = ACTIONS(1959), + [anon_sym_EQ_EQ] = ACTIONS(1959), + [anon_sym_EQ] = ACTIONS(1961), + [anon_sym_PLUS_EQ] = ACTIONS(1959), + [anon_sym_LT] = ACTIONS(1961), + [anon_sym_GT] = ACTIONS(1961), + [anon_sym_BANG_EQ] = ACTIONS(1959), + [anon_sym_PLUS] = ACTIONS(1961), + [anon_sym_DASH] = ACTIONS(1961), + [anon_sym_DASH_EQ] = ACTIONS(1959), + [anon_sym_LT_EQ] = ACTIONS(1959), + [anon_sym_GT_EQ] = ACTIONS(1959), + [anon_sym_PLUS_PLUS] = ACTIONS(1959), + [anon_sym_DASH_DASH] = ACTIONS(1959), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(1959), }, [675] = { - [sym_file_redirect] = STATE(1137), - [sym_heredoc_redirect] = STATE(1137), - [sym_heredoc_body] = STATE(615), - [sym_herestring_redirect] = STATE(1137), - [aux_sym_while_statement_repeat1] = STATE(1137), - [sym__simple_heredoc_body] = ACTIONS(321), - [sym__heredoc_body_beginning] = ACTIONS(323), - [sym_file_descriptor] = ACTIONS(549), - [anon_sym_SEMI] = ACTIONS(1197), - [anon_sym_PIPE] = ACTIONS(1197), - [anon_sym_RPAREN] = ACTIONS(1195), - [anon_sym_SEMI_SEMI] = ACTIONS(1195), - [anon_sym_PIPE_AMP] = ACTIONS(1195), - [anon_sym_AMP_AMP] = ACTIONS(1195), - [anon_sym_PIPE_PIPE] = ACTIONS(1195), - [anon_sym_LT] = ACTIONS(553), - [anon_sym_GT] = ACTIONS(553), - [anon_sym_GT_GT] = ACTIONS(555), - [anon_sym_AMP_GT] = ACTIONS(553), - [anon_sym_AMP_GT_GT] = ACTIONS(555), - [anon_sym_LT_AMP] = ACTIONS(555), - [anon_sym_GT_AMP] = ACTIONS(555), - [anon_sym_LT_LT] = ACTIONS(337), - [anon_sym_LT_LT_DASH] = ACTIONS(339), - [anon_sym_LT_LT_LT] = ACTIONS(557), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1195), - [anon_sym_AMP] = ACTIONS(1197), + [anon_sym_SEMI] = ACTIONS(2386), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(2384), + [anon_sym_SEMI_SEMI] = ACTIONS(2388), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2388), + [anon_sym_AMP] = ACTIONS(2386), }, [676] = { - [anon_sym_RPAREN] = ACTIONS(2464), - [sym_comment] = ACTIONS(53), + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(2386), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(2384), + [anon_sym_SEMI_SEMI] = ACTIONS(2388), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(2388), + [anon_sym_AMP] = ACTIONS(2386), }, [677] = { - [sym_file_redirect] = STATE(672), - [sym_file_descriptor] = ACTIONS(2466), - [anon_sym_SEMI] = ACTIONS(1289), - [anon_sym_PIPE] = ACTIONS(1289), - [anon_sym_RPAREN] = ACTIONS(1287), - [anon_sym_SEMI_SEMI] = ACTIONS(1287), - [anon_sym_PIPE_AMP] = ACTIONS(1287), - [anon_sym_AMP_AMP] = ACTIONS(1287), - [anon_sym_PIPE_PIPE] = ACTIONS(1287), - [anon_sym_LT] = ACTIONS(2468), - [anon_sym_GT] = ACTIONS(2468), - [anon_sym_GT_GT] = ACTIONS(2470), - [anon_sym_AMP_GT] = ACTIONS(2468), - [anon_sym_AMP_GT_GT] = ACTIONS(2470), - [anon_sym_LT_AMP] = ACTIONS(2470), - [anon_sym_GT_AMP] = ACTIONS(2470), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1287), - [anon_sym_AMP] = ACTIONS(1289), + [anon_sym_LT] = ACTIONS(2390), + [anon_sym_GT] = ACTIONS(2390), + [anon_sym_GT_GT] = ACTIONS(2392), + [anon_sym_AMP_GT] = ACTIONS(2390), + [anon_sym_AMP_GT_GT] = ACTIONS(2392), + [anon_sym_LT_AMP] = ACTIONS(2392), + [anon_sym_GT_AMP] = ACTIONS(2392), + [sym_comment] = ACTIONS(55), }, [678] = { - [sym_file_redirect] = STATE(1144), - [sym_heredoc_redirect] = STATE(1144), - [sym_herestring_redirect] = STATE(1144), - [aux_sym_while_statement_repeat1] = STATE(1144), - [sym_file_descriptor] = ACTIONS(2472), - [anon_sym_SEMI] = ACTIONS(1407), - [anon_sym_PIPE] = ACTIONS(1407), - [anon_sym_RPAREN] = ACTIONS(1405), - [anon_sym_SEMI_SEMI] = ACTIONS(1405), - [anon_sym_PIPE_AMP] = ACTIONS(1405), - [anon_sym_AMP_AMP] = ACTIONS(1405), - [anon_sym_PIPE_PIPE] = ACTIONS(1405), - [anon_sym_LT] = ACTIONS(2474), - [anon_sym_GT] = ACTIONS(2474), - [anon_sym_GT_GT] = ACTIONS(2476), - [anon_sym_AMP_GT] = ACTIONS(2474), - [anon_sym_AMP_GT_GT] = ACTIONS(2476), - [anon_sym_LT_AMP] = ACTIONS(2476), - [anon_sym_GT_AMP] = ACTIONS(2476), - [anon_sym_LT_LT] = ACTIONS(1413), - [anon_sym_LT_LT_DASH] = ACTIONS(1415), - [anon_sym_LT_LT_LT] = ACTIONS(2478), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1405), - [anon_sym_AMP] = ACTIONS(1407), - }, - [679] = { - [sym_concatenation] = STATE(770), - [sym_string] = STATE(1146), - [sym_array] = STATE(770), - [sym_simple_expansion] = STATE(1146), - [sym_string_expansion] = STATE(1146), - [sym_expansion] = STATE(1146), - [sym_command_substitution] = STATE(1146), - [sym_process_substitution] = STATE(1146), - [sym__empty_value] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1503), - [sym__special_characters] = ACTIONS(2480), - [anon_sym_DQUOTE] = ACTIONS(189), - [anon_sym_DOLLAR] = ACTIONS(191), - [sym_raw_string] = ACTIONS(2482), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(195), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(197), - [anon_sym_BQUOTE] = ACTIONS(199), - [anon_sym_LT_LPAREN] = ACTIONS(201), - [anon_sym_GT_LPAREN] = ACTIONS(201), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2482), - }, - [680] = { - [aux_sym_concatenation_repeat1] = STATE(1147), - [sym__concat] = ACTIONS(655), - [sym_variable_name] = ACTIONS(765), - [anon_sym_SEMI] = ACTIONS(767), - [anon_sym_PIPE] = ACTIONS(767), - [anon_sym_RPAREN] = ACTIONS(765), - [anon_sym_SEMI_SEMI] = ACTIONS(765), - [anon_sym_PIPE_AMP] = ACTIONS(765), - [anon_sym_AMP_AMP] = ACTIONS(765), - [anon_sym_PIPE_PIPE] = ACTIONS(765), - [sym__special_characters] = ACTIONS(765), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_DOLLAR] = ACTIONS(767), - [sym_raw_string] = ACTIONS(765), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(765), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(765), - [anon_sym_BQUOTE] = ACTIONS(765), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(767), - [sym_word] = ACTIONS(767), - [anon_sym_LF] = ACTIONS(765), - [anon_sym_AMP] = ACTIONS(767), - }, - [681] = { - [sym_variable_assignment] = STATE(681), - [sym_subscript] = STATE(289), - [sym_concatenation] = STATE(681), - [sym_string] = STATE(288), - [sym_simple_expansion] = STATE(288), - [sym_string_expansion] = STATE(288), - [sym_expansion] = STATE(288), - [sym_command_substitution] = STATE(288), - [sym_process_substitution] = STATE(288), - [aux_sym_declaration_command_repeat1] = STATE(681), - [sym_variable_name] = ACTIONS(2484), - [anon_sym_SEMI] = ACTIONS(1562), - [anon_sym_PIPE] = ACTIONS(1562), - [anon_sym_RPAREN] = ACTIONS(1560), - [anon_sym_SEMI_SEMI] = ACTIONS(1560), - [anon_sym_PIPE_AMP] = ACTIONS(1560), - [anon_sym_AMP_AMP] = ACTIONS(1560), - [anon_sym_PIPE_PIPE] = ACTIONS(1560), - [sym__special_characters] = ACTIONS(2487), - [anon_sym_DQUOTE] = ACTIONS(1567), - [anon_sym_DOLLAR] = ACTIONS(1570), - [sym_raw_string] = ACTIONS(2490), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1576), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1579), - [anon_sym_BQUOTE] = ACTIONS(1582), - [anon_sym_LT_LPAREN] = ACTIONS(1585), - [anon_sym_GT_LPAREN] = ACTIONS(1585), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2493), - [sym_word] = ACTIONS(2496), - [anon_sym_LF] = ACTIONS(1560), - [anon_sym_AMP] = ACTIONS(1562), - }, - [682] = { - [aux_sym_concatenation_repeat1] = STATE(1148), - [sym__concat] = ACTIONS(693), - [anon_sym_SEMI] = ACTIONS(767), - [anon_sym_PIPE] = ACTIONS(767), - [anon_sym_RPAREN] = ACTIONS(765), - [anon_sym_SEMI_SEMI] = ACTIONS(765), - [anon_sym_PIPE_AMP] = ACTIONS(765), - [anon_sym_AMP_AMP] = ACTIONS(765), - [anon_sym_PIPE_PIPE] = ACTIONS(765), - [sym__special_characters] = ACTIONS(765), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_DOLLAR] = ACTIONS(767), - [sym_raw_string] = ACTIONS(765), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(765), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(765), - [anon_sym_BQUOTE] = ACTIONS(765), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(767), - [sym_word] = ACTIONS(767), - [anon_sym_LF] = ACTIONS(765), - [anon_sym_AMP] = ACTIONS(767), - }, - [683] = { - [sym_concatenation] = STATE(683), - [sym_string] = STATE(292), - [sym_simple_expansion] = STATE(292), - [sym_string_expansion] = STATE(292), - [sym_expansion] = STATE(292), - [sym_command_substitution] = STATE(292), - [sym_process_substitution] = STATE(292), - [aux_sym_unset_command_repeat1] = STATE(683), - [anon_sym_SEMI] = ACTIONS(1644), - [anon_sym_PIPE] = ACTIONS(1644), - [anon_sym_RPAREN] = ACTIONS(1642), - [anon_sym_SEMI_SEMI] = ACTIONS(1642), - [anon_sym_PIPE_AMP] = ACTIONS(1642), - [anon_sym_AMP_AMP] = ACTIONS(1642), - [anon_sym_PIPE_PIPE] = ACTIONS(1642), - [sym__special_characters] = ACTIONS(2499), - [anon_sym_DQUOTE] = ACTIONS(1649), - [anon_sym_DOLLAR] = ACTIONS(1652), - [sym_raw_string] = ACTIONS(2502), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1658), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1661), - [anon_sym_BQUOTE] = ACTIONS(1664), - [anon_sym_LT_LPAREN] = ACTIONS(1667), - [anon_sym_GT_LPAREN] = ACTIONS(1667), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2505), - [sym_word] = ACTIONS(2508), - [anon_sym_LF] = ACTIONS(1642), - [anon_sym_AMP] = ACTIONS(1644), - }, - [684] = { - [aux_sym_concatenation_repeat1] = STATE(684), - [sym__simple_heredoc_body] = ACTIONS(1724), - [sym__heredoc_body_beginning] = ACTIONS(1724), - [sym_file_descriptor] = ACTIONS(1724), - [sym__concat] = ACTIONS(1728), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(1726), - [anon_sym_RPAREN] = ACTIONS(1724), - [anon_sym_SEMI_SEMI] = ACTIONS(1724), - [anon_sym_PIPE_AMP] = ACTIONS(1724), - [anon_sym_AMP_AMP] = ACTIONS(1724), - [anon_sym_PIPE_PIPE] = ACTIONS(1724), - [anon_sym_EQ_TILDE] = ACTIONS(1726), - [anon_sym_EQ_EQ] = ACTIONS(1726), - [anon_sym_LT] = ACTIONS(1726), - [anon_sym_GT] = ACTIONS(1726), - [anon_sym_GT_GT] = ACTIONS(1724), - [anon_sym_AMP_GT] = ACTIONS(1726), - [anon_sym_AMP_GT_GT] = ACTIONS(1724), - [anon_sym_LT_AMP] = ACTIONS(1724), - [anon_sym_GT_AMP] = ACTIONS(1724), - [anon_sym_LT_LT] = ACTIONS(1726), - [anon_sym_LT_LT_DASH] = ACTIONS(1724), - [anon_sym_LT_LT_LT] = ACTIONS(1724), - [sym__special_characters] = ACTIONS(1724), - [anon_sym_DQUOTE] = ACTIONS(1724), - [anon_sym_DOLLAR] = ACTIONS(1726), - [sym_raw_string] = ACTIONS(1724), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1724), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1724), - [anon_sym_BQUOTE] = ACTIONS(1724), - [anon_sym_LT_LPAREN] = ACTIONS(1724), - [anon_sym_GT_LPAREN] = ACTIONS(1724), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1726), - [anon_sym_LF] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1726), - }, - [685] = { - [sym_compound_statement] = STATE(1149), - [anon_sym_LBRACE] = ACTIONS(511), - [sym_comment] = ACTIONS(53), - }, - [686] = { - [ts_builtin_sym_end] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_esac] = ACTIONS(2511), - [anon_sym_PIPE] = ACTIONS(2513), - [anon_sym_RPAREN] = ACTIONS(2511), - [anon_sym_SEMI_SEMI] = ACTIONS(2511), - [anon_sym_PIPE_AMP] = ACTIONS(2511), - [anon_sym_AMP_AMP] = ACTIONS(2511), - [anon_sym_PIPE_PIPE] = ACTIONS(2511), - [anon_sym_BQUOTE] = ACTIONS(2511), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(2511), - [anon_sym_AMP] = ACTIONS(2513), - }, - [687] = { - [anon_sym_SEMI] = ACTIONS(1930), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(1928), - [anon_sym_SEMI_SEMI] = ACTIONS(1928), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(1928), - [anon_sym_PIPE_PIPE] = ACTIONS(1928), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1928), - [anon_sym_AMP] = ACTIONS(1930), - }, - [688] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(1930), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(1928), - [anon_sym_SEMI_SEMI] = ACTIONS(1928), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(1928), - [anon_sym_PIPE_PIPE] = ACTIONS(1928), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(1928), - [anon_sym_AMP] = ACTIONS(1930), - }, - [689] = { - [sym_concatenation] = STATE(945), - [sym_string] = STATE(1151), - [sym_simple_expansion] = STATE(1151), - [sym_string_expansion] = STATE(1151), - [sym_expansion] = STATE(1151), - [sym_command_substitution] = STATE(1151), - [sym_process_substitution] = STATE(1151), - [sym__special_characters] = ACTIONS(2515), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(2517), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2517), - }, - [690] = { - [aux_sym_concatenation_repeat1] = STATE(294), - [sym__simple_heredoc_body] = ACTIONS(1960), - [sym__heredoc_body_beginning] = ACTIONS(1960), - [sym_file_descriptor] = ACTIONS(1960), - [sym__concat] = ACTIONS(249), - [anon_sym_SEMI] = ACTIONS(1962), - [anon_sym_PIPE] = ACTIONS(1962), - [anon_sym_RPAREN] = ACTIONS(1960), - [anon_sym_SEMI_SEMI] = ACTIONS(1960), - [anon_sym_PIPE_AMP] = ACTIONS(1960), - [anon_sym_AMP_AMP] = ACTIONS(1960), - [anon_sym_PIPE_PIPE] = ACTIONS(1960), - [anon_sym_EQ_TILDE] = ACTIONS(1962), - [anon_sym_EQ_EQ] = ACTIONS(1962), - [anon_sym_LT] = ACTIONS(1962), - [anon_sym_GT] = ACTIONS(1962), - [anon_sym_GT_GT] = ACTIONS(1960), - [anon_sym_AMP_GT] = ACTIONS(1962), - [anon_sym_AMP_GT_GT] = ACTIONS(1960), - [anon_sym_LT_AMP] = ACTIONS(1960), - [anon_sym_GT_AMP] = ACTIONS(1960), - [anon_sym_LT_LT] = ACTIONS(1962), - [anon_sym_LT_LT_DASH] = ACTIONS(1960), - [anon_sym_LT_LT_LT] = ACTIONS(1960), - [sym__special_characters] = ACTIONS(1960), - [anon_sym_DQUOTE] = ACTIONS(1960), - [anon_sym_DOLLAR] = ACTIONS(1962), - [sym_raw_string] = ACTIONS(1960), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1960), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), - [anon_sym_BQUOTE] = ACTIONS(1960), - [anon_sym_LT_LPAREN] = ACTIONS(1960), - [anon_sym_GT_LPAREN] = ACTIONS(1960), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1962), - [anon_sym_LF] = ACTIONS(1960), - [anon_sym_AMP] = ACTIONS(1962), - }, - [691] = { - [aux_sym_concatenation_repeat1] = STATE(294), - [sym__simple_heredoc_body] = ACTIONS(1964), - [sym__heredoc_body_beginning] = ACTIONS(1964), - [sym_file_descriptor] = ACTIONS(1964), - [sym__concat] = ACTIONS(249), - [anon_sym_SEMI] = ACTIONS(1966), - [anon_sym_PIPE] = ACTIONS(1966), - [anon_sym_RPAREN] = ACTIONS(1964), - [anon_sym_SEMI_SEMI] = ACTIONS(1964), - [anon_sym_PIPE_AMP] = ACTIONS(1964), - [anon_sym_AMP_AMP] = ACTIONS(1964), - [anon_sym_PIPE_PIPE] = ACTIONS(1964), - [anon_sym_EQ_TILDE] = ACTIONS(1966), - [anon_sym_EQ_EQ] = ACTIONS(1966), - [anon_sym_LT] = ACTIONS(1966), - [anon_sym_GT] = ACTIONS(1966), - [anon_sym_GT_GT] = ACTIONS(1964), - [anon_sym_AMP_GT] = ACTIONS(1966), - [anon_sym_AMP_GT_GT] = ACTIONS(1964), - [anon_sym_LT_AMP] = ACTIONS(1964), - [anon_sym_GT_AMP] = ACTIONS(1964), - [anon_sym_LT_LT] = ACTIONS(1966), - [anon_sym_LT_LT_DASH] = ACTIONS(1964), - [anon_sym_LT_LT_LT] = ACTIONS(1964), - [sym__special_characters] = ACTIONS(1964), - [anon_sym_DQUOTE] = ACTIONS(1964), - [anon_sym_DOLLAR] = ACTIONS(1966), - [sym_raw_string] = ACTIONS(1964), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1964), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1964), - [anon_sym_LT_LPAREN] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1964), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1966), - [anon_sym_LF] = ACTIONS(1964), - [anon_sym_AMP] = ACTIONS(1966), - }, - [692] = { - [aux_sym_concatenation_repeat1] = STATE(1152), - [sym__simple_heredoc_body] = ACTIONS(731), - [sym__heredoc_body_beginning] = ACTIONS(731), - [sym_file_descriptor] = ACTIONS(731), - [sym__concat] = ACTIONS(249), - [anon_sym_SEMI] = ACTIONS(735), - [anon_sym_PIPE] = ACTIONS(735), - [anon_sym_RPAREN] = ACTIONS(731), - [anon_sym_SEMI_SEMI] = ACTIONS(731), - [anon_sym_PIPE_AMP] = ACTIONS(731), - [anon_sym_AMP_AMP] = ACTIONS(731), - [anon_sym_PIPE_PIPE] = ACTIONS(731), - [anon_sym_LT] = ACTIONS(735), - [anon_sym_GT] = ACTIONS(735), - [anon_sym_GT_GT] = ACTIONS(731), - [anon_sym_AMP_GT] = ACTIONS(735), - [anon_sym_AMP_GT_GT] = ACTIONS(731), - [anon_sym_LT_AMP] = ACTIONS(731), - [anon_sym_GT_AMP] = ACTIONS(731), - [anon_sym_LT_LT] = ACTIONS(735), - [anon_sym_LT_LT_DASH] = ACTIONS(731), - [anon_sym_LT_LT_LT] = ACTIONS(731), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(731), - [anon_sym_AMP] = ACTIONS(735), - }, - [693] = { - [aux_sym_concatenation_repeat1] = STATE(1152), - [sym__simple_heredoc_body] = ACTIONS(749), - [sym__heredoc_body_beginning] = ACTIONS(749), - [sym_file_descriptor] = ACTIONS(749), - [sym__concat] = ACTIONS(249), - [anon_sym_SEMI] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(751), - [anon_sym_RPAREN] = ACTIONS(749), - [anon_sym_SEMI_SEMI] = ACTIONS(749), - [anon_sym_PIPE_AMP] = ACTIONS(749), - [anon_sym_AMP_AMP] = ACTIONS(749), - [anon_sym_PIPE_PIPE] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(751), - [anon_sym_GT] = ACTIONS(751), - [anon_sym_GT_GT] = ACTIONS(749), - [anon_sym_AMP_GT] = ACTIONS(751), - [anon_sym_AMP_GT_GT] = ACTIONS(749), - [anon_sym_LT_AMP] = ACTIONS(749), - [anon_sym_GT_AMP] = ACTIONS(749), - [anon_sym_LT_LT] = ACTIONS(751), - [anon_sym_LT_LT_DASH] = ACTIONS(749), - [anon_sym_LT_LT_LT] = ACTIONS(749), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(749), - [anon_sym_AMP] = ACTIONS(751), - }, - [694] = { - [aux_sym_concatenation_repeat1] = STATE(1152), - [sym__simple_heredoc_body] = ACTIONS(1972), - [sym__heredoc_body_beginning] = ACTIONS(1972), - [sym_file_descriptor] = ACTIONS(1972), - [sym__concat] = ACTIONS(249), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_PIPE] = ACTIONS(1974), - [anon_sym_RPAREN] = ACTIONS(1972), - [anon_sym_SEMI_SEMI] = ACTIONS(1972), - [anon_sym_PIPE_AMP] = ACTIONS(1972), - [anon_sym_AMP_AMP] = ACTIONS(1972), - [anon_sym_PIPE_PIPE] = ACTIONS(1972), - [anon_sym_LT] = ACTIONS(1974), - [anon_sym_GT] = ACTIONS(1974), - [anon_sym_GT_GT] = ACTIONS(1972), - [anon_sym_AMP_GT] = ACTIONS(1974), - [anon_sym_AMP_GT_GT] = ACTIONS(1972), - [anon_sym_LT_AMP] = ACTIONS(1972), - [anon_sym_GT_AMP] = ACTIONS(1972), - [anon_sym_LT_LT] = ACTIONS(1974), - [anon_sym_LT_LT_DASH] = ACTIONS(1972), - [anon_sym_LT_LT_LT] = ACTIONS(1972), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1972), - [anon_sym_AMP] = ACTIONS(1974), - }, - [695] = { - [aux_sym_concatenation_repeat1] = STATE(1152), - [sym__simple_heredoc_body] = ACTIONS(1976), - [sym__heredoc_body_beginning] = ACTIONS(1976), - [sym_file_descriptor] = ACTIONS(1976), - [sym__concat] = ACTIONS(249), - [anon_sym_SEMI] = ACTIONS(1978), - [anon_sym_PIPE] = ACTIONS(1978), - [anon_sym_RPAREN] = ACTIONS(1976), - [anon_sym_SEMI_SEMI] = ACTIONS(1976), - [anon_sym_PIPE_AMP] = ACTIONS(1976), - [anon_sym_AMP_AMP] = ACTIONS(1976), - [anon_sym_PIPE_PIPE] = ACTIONS(1976), - [anon_sym_LT] = ACTIONS(1978), - [anon_sym_GT] = ACTIONS(1978), - [anon_sym_GT_GT] = ACTIONS(1976), - [anon_sym_AMP_GT] = ACTIONS(1978), - [anon_sym_AMP_GT_GT] = ACTIONS(1976), - [anon_sym_LT_AMP] = ACTIONS(1976), - [anon_sym_GT_AMP] = ACTIONS(1976), - [anon_sym_LT_LT] = ACTIONS(1978), - [anon_sym_LT_LT_DASH] = ACTIONS(1976), - [anon_sym_LT_LT_LT] = ACTIONS(1976), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1978), - }, - [696] = { - [sym_file_redirect] = STATE(696), - [sym_heredoc_redirect] = STATE(696), - [sym_herestring_redirect] = STATE(696), - [aux_sym_while_statement_repeat1] = STATE(696), - [sym__simple_heredoc_body] = ACTIONS(1984), - [sym__heredoc_body_beginning] = ACTIONS(1984), - [sym_file_descriptor] = ACTIONS(2519), - [anon_sym_SEMI] = ACTIONS(1989), - [anon_sym_PIPE] = ACTIONS(1989), - [anon_sym_RPAREN] = ACTIONS(1984), - [anon_sym_SEMI_SEMI] = ACTIONS(1984), - [anon_sym_PIPE_AMP] = ACTIONS(1984), - [anon_sym_AMP_AMP] = ACTIONS(1984), - [anon_sym_PIPE_PIPE] = ACTIONS(1984), - [anon_sym_LT] = ACTIONS(2522), - [anon_sym_GT] = ACTIONS(2522), - [anon_sym_GT_GT] = ACTIONS(2525), - [anon_sym_AMP_GT] = ACTIONS(2522), - [anon_sym_AMP_GT_GT] = ACTIONS(2525), - [anon_sym_LT_AMP] = ACTIONS(2525), - [anon_sym_GT_AMP] = ACTIONS(2525), - [anon_sym_LT_LT] = ACTIONS(1997), - [anon_sym_LT_LT_DASH] = ACTIONS(2000), - [anon_sym_LT_LT_LT] = ACTIONS(2528), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1984), - [anon_sym_AMP] = ACTIONS(1989), - }, - [697] = { - [sym_file_redirect] = STATE(696), - [sym_heredoc_redirect] = STATE(696), - [sym_heredoc_body] = STATE(947), - [sym_herestring_redirect] = STATE(696), - [aux_sym_while_statement_repeat1] = STATE(696), - [sym__simple_heredoc_body] = ACTIONS(321), - [sym__heredoc_body_beginning] = ACTIONS(323), - [sym_file_descriptor] = ACTIONS(549), - [anon_sym_SEMI] = ACTIONS(1982), - [anon_sym_PIPE] = ACTIONS(1982), - [anon_sym_RPAREN] = ACTIONS(1980), - [anon_sym_SEMI_SEMI] = ACTIONS(1980), - [anon_sym_PIPE_AMP] = ACTIONS(1980), - [anon_sym_AMP_AMP] = ACTIONS(1980), - [anon_sym_PIPE_PIPE] = ACTIONS(1980), - [anon_sym_LT] = ACTIONS(553), - [anon_sym_GT] = ACTIONS(553), - [anon_sym_GT_GT] = ACTIONS(555), - [anon_sym_AMP_GT] = ACTIONS(553), - [anon_sym_AMP_GT_GT] = ACTIONS(555), - [anon_sym_LT_AMP] = ACTIONS(555), - [anon_sym_GT_AMP] = ACTIONS(555), - [anon_sym_LT_LT] = ACTIONS(337), - [anon_sym_LT_LT_DASH] = ACTIONS(339), - [anon_sym_LT_LT_LT] = ACTIONS(557), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1980), - [anon_sym_AMP] = ACTIONS(1982), - }, - [698] = { - [sym_concatenation] = STATE(698), - [sym_string] = STATE(305), - [sym_simple_expansion] = STATE(305), - [sym_string_expansion] = STATE(305), - [sym_expansion] = STATE(305), - [sym_command_substitution] = STATE(305), - [sym_process_substitution] = STATE(305), - [aux_sym_command_repeat2] = STATE(698), - [sym__simple_heredoc_body] = ACTIONS(1964), - [sym__heredoc_body_beginning] = ACTIONS(1964), - [sym_file_descriptor] = ACTIONS(1964), - [anon_sym_SEMI] = ACTIONS(1966), - [anon_sym_PIPE] = ACTIONS(1966), - [anon_sym_RPAREN] = ACTIONS(1964), - [anon_sym_SEMI_SEMI] = ACTIONS(1964), - [anon_sym_PIPE_AMP] = ACTIONS(1964), - [anon_sym_AMP_AMP] = ACTIONS(1964), - [anon_sym_PIPE_PIPE] = ACTIONS(1964), - [anon_sym_EQ_TILDE] = ACTIONS(2531), - [anon_sym_EQ_EQ] = ACTIONS(2531), - [anon_sym_LT] = ACTIONS(1966), - [anon_sym_GT] = ACTIONS(1966), - [anon_sym_GT_GT] = ACTIONS(1964), - [anon_sym_AMP_GT] = ACTIONS(1966), - [anon_sym_AMP_GT_GT] = ACTIONS(1964), - [anon_sym_LT_AMP] = ACTIONS(1964), - [anon_sym_GT_AMP] = ACTIONS(1964), - [anon_sym_LT_LT] = ACTIONS(1966), - [anon_sym_LT_LT_DASH] = ACTIONS(1964), - [anon_sym_LT_LT_LT] = ACTIONS(1964), - [sym__special_characters] = ACTIONS(2534), - [anon_sym_DQUOTE] = ACTIONS(2012), - [anon_sym_DOLLAR] = ACTIONS(2015), - [sym_raw_string] = ACTIONS(2537), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2021), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2024), - [anon_sym_BQUOTE] = ACTIONS(2027), - [anon_sym_LT_LPAREN] = ACTIONS(2030), - [anon_sym_GT_LPAREN] = ACTIONS(2030), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2540), - [anon_sym_LF] = ACTIONS(1964), - [anon_sym_AMP] = ACTIONS(1966), - }, - [699] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(2543), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(901), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), - }, - [700] = { - [sym_file_redirect] = STATE(1154), - [sym_heredoc_redirect] = STATE(1154), - [sym_heredoc_body] = STATE(947), - [sym_herestring_redirect] = STATE(1154), - [sym_concatenation] = STATE(698), - [sym_string] = STATE(305), - [sym_simple_expansion] = STATE(305), - [sym_string_expansion] = STATE(305), - [sym_expansion] = STATE(305), - [sym_command_substitution] = STATE(305), - [sym_process_substitution] = STATE(305), - [aux_sym_while_statement_repeat1] = STATE(1154), - [aux_sym_command_repeat2] = STATE(698), - [sym__simple_heredoc_body] = ACTIONS(321), - [sym__heredoc_body_beginning] = ACTIONS(323), - [sym_file_descriptor] = ACTIONS(549), - [anon_sym_SEMI] = ACTIONS(1982), - [anon_sym_PIPE] = ACTIONS(1982), - [anon_sym_RPAREN] = ACTIONS(1980), - [anon_sym_SEMI_SEMI] = ACTIONS(1980), - [anon_sym_PIPE_AMP] = ACTIONS(1980), - [anon_sym_AMP_AMP] = ACTIONS(1980), - [anon_sym_PIPE_PIPE] = ACTIONS(1980), - [anon_sym_EQ_TILDE] = ACTIONS(551), - [anon_sym_EQ_EQ] = ACTIONS(551), - [anon_sym_LT] = ACTIONS(553), - [anon_sym_GT] = ACTIONS(553), - [anon_sym_GT_GT] = ACTIONS(555), - [anon_sym_AMP_GT] = ACTIONS(553), - [anon_sym_AMP_GT_GT] = ACTIONS(555), - [anon_sym_LT_AMP] = ACTIONS(555), - [anon_sym_GT_AMP] = ACTIONS(555), - [anon_sym_LT_LT] = ACTIONS(337), - [anon_sym_LT_LT_DASH] = ACTIONS(339), - [anon_sym_LT_LT_LT] = ACTIONS(557), - [sym__special_characters] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(561), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(563), - [anon_sym_LF] = ACTIONS(1980), - [anon_sym_AMP] = ACTIONS(1982), - }, - [701] = { - [sym_file_descriptor] = ACTIONS(1071), - [sym_variable_name] = ACTIONS(1071), - [anon_sym_LT] = ACTIONS(1073), - [anon_sym_GT] = ACTIONS(1073), - [anon_sym_GT_GT] = ACTIONS(1071), - [anon_sym_AMP_GT] = ACTIONS(1073), - [anon_sym_AMP_GT_GT] = ACTIONS(1071), - [anon_sym_LT_AMP] = ACTIONS(1071), - [anon_sym_GT_AMP] = ACTIONS(1071), - [sym__special_characters] = ACTIONS(1071), - [anon_sym_DQUOTE] = ACTIONS(1071), - [anon_sym_DOLLAR] = ACTIONS(1073), - [sym_raw_string] = ACTIONS(1071), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1071), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1071), - [anon_sym_BQUOTE] = ACTIONS(1071), - [anon_sym_LT_LPAREN] = ACTIONS(1071), - [anon_sym_GT_LPAREN] = ACTIONS(1071), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1071), - }, - [702] = { - [sym_concatenation] = STATE(1156), - [sym_string] = STATE(534), - [sym_simple_expansion] = STATE(534), - [sym_string_expansion] = STATE(534), - [sym_expansion] = STATE(534), - [sym_command_substitution] = STATE(534), - [sym_process_substitution] = STATE(534), - [aux_sym_for_statement_repeat1] = STATE(1156), - [anon_sym_RPAREN] = ACTIONS(2545), - [sym__special_characters] = ACTIONS(1077), - [anon_sym_DQUOTE] = ACTIONS(1079), - [anon_sym_DOLLAR] = ACTIONS(1081), - [sym_raw_string] = ACTIONS(1083), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1085), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1087), - [anon_sym_BQUOTE] = ACTIONS(1089), - [anon_sym_LT_LPAREN] = ACTIONS(1091), - [anon_sym_GT_LPAREN] = ACTIONS(1091), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1083), - }, - [703] = { - [aux_sym_concatenation_repeat1] = STATE(412), - [sym_file_descriptor] = ACTIONS(1093), - [sym__concat] = ACTIONS(733), - [sym_variable_name] = ACTIONS(1093), - [anon_sym_LT] = ACTIONS(1097), - [anon_sym_GT] = ACTIONS(1097), - [anon_sym_GT_GT] = ACTIONS(1093), - [anon_sym_AMP_GT] = ACTIONS(1097), - [anon_sym_AMP_GT_GT] = ACTIONS(1093), - [anon_sym_LT_AMP] = ACTIONS(1093), - [anon_sym_GT_AMP] = ACTIONS(1093), - [sym__special_characters] = ACTIONS(1093), - [anon_sym_DQUOTE] = ACTIONS(1093), - [anon_sym_DOLLAR] = ACTIONS(1097), - [sym_raw_string] = ACTIONS(1093), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1093), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1093), - [anon_sym_BQUOTE] = ACTIONS(1093), - [anon_sym_LT_LPAREN] = ACTIONS(1093), - [anon_sym_GT_LPAREN] = ACTIONS(1093), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1093), - }, - [704] = { - [aux_sym_concatenation_repeat1] = STATE(412), - [sym_file_descriptor] = ACTIONS(1071), - [sym__concat] = ACTIONS(733), - [sym_variable_name] = ACTIONS(1071), - [anon_sym_LT] = ACTIONS(1073), - [anon_sym_GT] = ACTIONS(1073), - [anon_sym_GT_GT] = ACTIONS(1071), - [anon_sym_AMP_GT] = ACTIONS(1073), - [anon_sym_AMP_GT_GT] = ACTIONS(1071), - [anon_sym_LT_AMP] = ACTIONS(1071), - [anon_sym_GT_AMP] = ACTIONS(1071), - [sym__special_characters] = ACTIONS(1071), - [anon_sym_DQUOTE] = ACTIONS(1071), - [anon_sym_DOLLAR] = ACTIONS(1073), - [sym_raw_string] = ACTIONS(1071), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1071), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1071), - [anon_sym_BQUOTE] = ACTIONS(1071), - [anon_sym_LT_LPAREN] = ACTIONS(1071), - [anon_sym_GT_LPAREN] = ACTIONS(1071), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1071), - }, - [705] = { - [anon_sym_RPAREN] = ACTIONS(1353), - [anon_sym_AMP_AMP] = ACTIONS(1347), - [anon_sym_PIPE_PIPE] = ACTIONS(1347), - [anon_sym_EQ_TILDE] = ACTIONS(1349), - [anon_sym_EQ_EQ] = ACTIONS(1349), - [anon_sym_EQ] = ACTIONS(1351), - [anon_sym_LT] = ACTIONS(1347), - [anon_sym_GT] = ACTIONS(1347), - [anon_sym_BANG_EQ] = ACTIONS(1347), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1347), - }, - [706] = { - [aux_sym_concatenation_repeat1] = STATE(1157), - [sym__concat] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(765), - [anon_sym_AMP_AMP] = ACTIONS(765), - [anon_sym_PIPE_PIPE] = ACTIONS(765), - [anon_sym_EQ_TILDE] = ACTIONS(765), - [anon_sym_EQ_EQ] = ACTIONS(765), - [anon_sym_EQ] = ACTIONS(767), - [anon_sym_LT] = ACTIONS(765), - [anon_sym_GT] = ACTIONS(765), - [anon_sym_BANG_EQ] = ACTIONS(765), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(765), - }, - [707] = { - [anon_sym_AMP_AMP] = ACTIONS(2547), - [anon_sym_PIPE_PIPE] = ACTIONS(2547), - [anon_sym_RBRACK] = ACTIONS(2547), - [anon_sym_EQ_TILDE] = ACTIONS(2547), - [anon_sym_EQ_EQ] = ACTIONS(2547), - [anon_sym_EQ] = ACTIONS(2549), - [anon_sym_LT] = ACTIONS(2547), - [anon_sym_GT] = ACTIONS(2547), - [anon_sym_BANG_EQ] = ACTIONS(2547), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2547), - }, - [708] = { - [sym__expression] = STATE(768), - [sym_binary_expression] = STATE(768), - [sym_unary_expression] = STATE(768), - [sym_parenthesized_expression] = STATE(768), - [sym_concatenation] = STATE(768), - [sym_string] = STATE(314), - [sym_simple_expansion] = STATE(314), - [sym_string_expansion] = STATE(314), - [sym_expansion] = STATE(314), - [sym_command_substitution] = STATE(314), - [sym_process_substitution] = STATE(314), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_BANG] = ACTIONS(573), - [sym__special_characters] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(163), - [anon_sym_DOLLAR] = ACTIONS(165), - [sym_raw_string] = ACTIONS(577), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(169), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(171), - [anon_sym_BQUOTE] = ACTIONS(173), - [anon_sym_LT_LPAREN] = ACTIONS(175), - [anon_sym_GT_LPAREN] = ACTIONS(175), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(579), - [sym_test_operator] = ACTIONS(581), - }, - [709] = { - [sym__expression] = STATE(768), - [sym_binary_expression] = STATE(768), - [sym_unary_expression] = STATE(768), - [sym_parenthesized_expression] = STATE(768), - [sym_concatenation] = STATE(768), - [sym_string] = STATE(314), - [sym_simple_expansion] = STATE(314), - [sym_string_expansion] = STATE(314), - [sym_expansion] = STATE(314), - [sym_command_substitution] = STATE(314), - [sym_process_substitution] = STATE(314), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_BANG] = ACTIONS(573), - [sym__special_characters] = ACTIONS(2551), - [anon_sym_DQUOTE] = ACTIONS(1489), - [anon_sym_DOLLAR] = ACTIONS(165), - [sym_raw_string] = ACTIONS(579), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1491), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1493), - [anon_sym_BQUOTE] = ACTIONS(1495), - [anon_sym_LT_LPAREN] = ACTIONS(1497), - [anon_sym_GT_LPAREN] = ACTIONS(1497), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(579), - [sym_test_operator] = ACTIONS(573), - [sym_regex] = ACTIONS(1499), - }, - [710] = { - [sym__concat] = ACTIONS(1724), - [anon_sym_AMP_AMP] = ACTIONS(1724), - [anon_sym_PIPE_PIPE] = ACTIONS(1724), - [anon_sym_RBRACK] = ACTIONS(1724), - [anon_sym_EQ_TILDE] = ACTIONS(1724), - [anon_sym_EQ_EQ] = ACTIONS(1724), - [anon_sym_EQ] = ACTIONS(1726), - [anon_sym_LT] = ACTIONS(1724), - [anon_sym_GT] = ACTIONS(1724), - [anon_sym_BANG_EQ] = ACTIONS(1724), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1724), - }, - [711] = { - [aux_sym_concatenation_repeat1] = STATE(711), - [sym__concat] = ACTIONS(2553), - [anon_sym_AMP_AMP] = ACTIONS(1724), - [anon_sym_PIPE_PIPE] = ACTIONS(1724), - [anon_sym_RBRACK] = ACTIONS(1724), - [anon_sym_EQ_TILDE] = ACTIONS(1724), - [anon_sym_EQ_EQ] = ACTIONS(1724), - [anon_sym_EQ] = ACTIONS(1726), - [anon_sym_LT] = ACTIONS(1724), - [anon_sym_GT] = ACTIONS(1724), - [anon_sym_BANG_EQ] = ACTIONS(1724), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1724), - }, - [712] = { - [sym__concat] = ACTIONS(1731), - [anon_sym_AMP_AMP] = ACTIONS(1731), - [anon_sym_PIPE_PIPE] = ACTIONS(1731), - [anon_sym_RBRACK] = ACTIONS(1731), - [anon_sym_EQ_TILDE] = ACTIONS(1731), - [anon_sym_EQ_EQ] = ACTIONS(1731), - [anon_sym_EQ] = ACTIONS(1733), - [anon_sym_LT] = ACTIONS(1731), - [anon_sym_GT] = ACTIONS(1731), - [anon_sym_BANG_EQ] = ACTIONS(1731), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1731), - }, - [713] = { - [anon_sym_DQUOTE] = ACTIONS(2556), - [anon_sym_DOLLAR] = ACTIONS(775), - [sym__string_content] = ACTIONS(777), - [anon_sym_POUND] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(781), - [anon_sym_STAR] = ACTIONS(783), - [anon_sym_AT] = ACTIONS(783), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_0] = ACTIONS(781), - [anon_sym__] = ACTIONS(781), - }, - [714] = { - [sym_concatenation] = STATE(1162), + [sym_concatenation] = STATE(1166), [sym_string] = STATE(1161), [sym_simple_expansion] = STATE(1161), [sym_string_expansion] = STATE(1161), [sym_expansion] = STATE(1161), [sym_command_substitution] = STATE(1161), [sym_process_substitution] = STATE(1161), - [anon_sym_RBRACE] = ACTIONS(2558), - [sym__special_characters] = ACTIONS(2560), - [anon_sym_DQUOTE] = ACTIONS(1802), - [anon_sym_DOLLAR] = ACTIONS(1804), - [sym_raw_string] = ACTIONS(2562), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1808), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1810), - [anon_sym_BQUOTE] = ACTIONS(1812), - [anon_sym_LT_LPAREN] = ACTIONS(1814), - [anon_sym_GT_LPAREN] = ACTIONS(1814), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2562), + [sym__special_characters] = ACTIONS(2394), + [anon_sym_DQUOTE] = ACTIONS(2396), + [anon_sym_DOLLAR] = ACTIONS(2398), + [sym_raw_string] = ACTIONS(2400), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2402), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2404), + [anon_sym_BQUOTE] = ACTIONS(2406), + [anon_sym_LT_LPAREN] = ACTIONS(2408), + [anon_sym_GT_LPAREN] = ACTIONS(2408), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(2400), + }, + [679] = { + [sym_heredoc_start] = ACTIONS(2410), + [sym_comment] = ACTIONS(55), + }, + [680] = { + [sym_concatenation] = STATE(1170), + [sym_string] = STATE(1169), + [sym_simple_expansion] = STATE(1169), + [sym_string_expansion] = STATE(1169), + [sym_expansion] = STATE(1169), + [sym_command_substitution] = STATE(1169), + [sym_process_substitution] = STATE(1169), + [sym__special_characters] = ACTIONS(2412), + [anon_sym_DQUOTE] = ACTIONS(2396), + [anon_sym_DOLLAR] = ACTIONS(2398), + [sym_raw_string] = ACTIONS(2414), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2402), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2404), + [anon_sym_BQUOTE] = ACTIONS(2406), + [anon_sym_LT_LPAREN] = ACTIONS(2408), + [anon_sym_GT_LPAREN] = ACTIONS(2408), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(2414), + }, + [681] = { + [sym_file_redirect] = STATE(1171), + [sym_heredoc_redirect] = STATE(1171), + [sym_herestring_redirect] = STATE(1171), + [aux_sym_while_statement_repeat1] = STATE(1171), + [sym_file_descriptor] = ACTIONS(1298), + [ts_builtin_sym_end] = ACTIONS(2416), + [anon_sym_SEMI] = ACTIONS(2418), + [anon_sym_PIPE] = ACTIONS(2418), + [anon_sym_SEMI_SEMI] = ACTIONS(2416), + [anon_sym_PIPE_AMP] = ACTIONS(2416), + [anon_sym_AMP_AMP] = ACTIONS(2416), + [anon_sym_PIPE_PIPE] = ACTIONS(2416), + [anon_sym_LT] = ACTIONS(1304), + [anon_sym_GT] = ACTIONS(1304), + [anon_sym_GT_GT] = ACTIONS(1306), + [anon_sym_AMP_GT] = ACTIONS(1304), + [anon_sym_AMP_GT_GT] = ACTIONS(1306), + [anon_sym_LT_AMP] = ACTIONS(1306), + [anon_sym_GT_AMP] = ACTIONS(1306), + [anon_sym_LT_LT] = ACTIONS(1308), + [anon_sym_LT_LT_DASH] = ACTIONS(1310), + [anon_sym_LT_LT_LT] = ACTIONS(1312), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2416), + [anon_sym_AMP] = ACTIONS(2418), + }, + [682] = { + [anon_sym_RPAREN_RPAREN] = ACTIONS(2420), + [anon_sym_AMP_AMP] = ACTIONS(2420), + [anon_sym_PIPE_PIPE] = ACTIONS(2420), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2420), + [anon_sym_EQ_TILDE] = ACTIONS(2420), + [anon_sym_EQ_EQ] = ACTIONS(2420), + [anon_sym_EQ] = ACTIONS(2422), + [anon_sym_PLUS_EQ] = ACTIONS(2420), + [anon_sym_LT] = ACTIONS(2422), + [anon_sym_GT] = ACTIONS(2422), + [anon_sym_BANG_EQ] = ACTIONS(2420), + [anon_sym_PLUS] = ACTIONS(2422), + [anon_sym_DASH] = ACTIONS(2422), + [anon_sym_DASH_EQ] = ACTIONS(2420), + [anon_sym_LT_EQ] = ACTIONS(2420), + [anon_sym_GT_EQ] = ACTIONS(2420), + [anon_sym_PLUS_PLUS] = ACTIONS(2420), + [anon_sym_DASH_DASH] = ACTIONS(2420), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(2420), + }, + [683] = { + [anon_sym_RPAREN_RPAREN] = ACTIONS(2420), + [anon_sym_AMP_AMP] = ACTIONS(2420), + [anon_sym_PIPE_PIPE] = ACTIONS(2420), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2420), + [anon_sym_EQ_TILDE] = ACTIONS(2420), + [anon_sym_EQ_EQ] = ACTIONS(2420), + [anon_sym_EQ] = ACTIONS(2422), + [anon_sym_PLUS_EQ] = ACTIONS(2420), + [anon_sym_LT] = ACTIONS(2422), + [anon_sym_GT] = ACTIONS(2422), + [anon_sym_BANG_EQ] = ACTIONS(2420), + [anon_sym_PLUS] = ACTIONS(2422), + [anon_sym_DASH] = ACTIONS(2422), + [anon_sym_DASH_EQ] = ACTIONS(2420), + [anon_sym_LT_EQ] = ACTIONS(2420), + [anon_sym_GT_EQ] = ACTIONS(2420), + [anon_sym_PLUS_PLUS] = ACTIONS(2420), + [anon_sym_DASH_DASH] = ACTIONS(2420), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(2420), + }, + [684] = { + [aux_sym_concatenation_repeat1] = STATE(1172), + [sym_file_descriptor] = ACTIONS(1128), + [sym__concat] = ACTIONS(1130), + [sym_variable_name] = ACTIONS(1128), + [anon_sym_SEMI] = ACTIONS(1132), + [anon_sym_PIPE] = ACTIONS(1132), + [anon_sym_SEMI_SEMI] = ACTIONS(1128), + [anon_sym_PIPE_AMP] = ACTIONS(1128), + [anon_sym_AMP_AMP] = ACTIONS(1128), + [anon_sym_PIPE_PIPE] = ACTIONS(1128), + [anon_sym_LT] = ACTIONS(1132), + [anon_sym_GT] = ACTIONS(1132), + [anon_sym_GT_GT] = ACTIONS(1128), + [anon_sym_AMP_GT] = ACTIONS(1132), + [anon_sym_AMP_GT_GT] = ACTIONS(1128), + [anon_sym_LT_AMP] = ACTIONS(1128), + [anon_sym_GT_AMP] = ACTIONS(1128), + [sym__special_characters] = ACTIONS(1128), + [anon_sym_DQUOTE] = ACTIONS(1128), + [anon_sym_DOLLAR] = ACTIONS(1132), + [sym_raw_string] = ACTIONS(1128), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1128), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1128), + [anon_sym_BQUOTE] = ACTIONS(1128), + [anon_sym_LT_LPAREN] = ACTIONS(1128), + [anon_sym_GT_LPAREN] = ACTIONS(1128), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1132), + [anon_sym_LF] = ACTIONS(1128), + [anon_sym_AMP] = ACTIONS(1132), + }, + [685] = { + [aux_sym_concatenation_repeat1] = STATE(1172), + [sym_file_descriptor] = ACTIONS(1106), + [sym__concat] = ACTIONS(1130), + [sym_variable_name] = ACTIONS(1106), + [anon_sym_SEMI] = ACTIONS(1108), + [anon_sym_PIPE] = ACTIONS(1108), + [anon_sym_SEMI_SEMI] = ACTIONS(1106), + [anon_sym_PIPE_AMP] = ACTIONS(1106), + [anon_sym_AMP_AMP] = ACTIONS(1106), + [anon_sym_PIPE_PIPE] = ACTIONS(1106), + [anon_sym_LT] = ACTIONS(1108), + [anon_sym_GT] = ACTIONS(1108), + [anon_sym_GT_GT] = ACTIONS(1106), + [anon_sym_AMP_GT] = ACTIONS(1108), + [anon_sym_AMP_GT_GT] = ACTIONS(1106), + [anon_sym_LT_AMP] = ACTIONS(1106), + [anon_sym_GT_AMP] = ACTIONS(1106), + [sym__special_characters] = ACTIONS(1106), + [anon_sym_DQUOTE] = ACTIONS(1106), + [anon_sym_DOLLAR] = ACTIONS(1108), + [sym_raw_string] = ACTIONS(1106), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1106), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1106), + [anon_sym_BQUOTE] = ACTIONS(1106), + [anon_sym_LT_LPAREN] = ACTIONS(1106), + [anon_sym_GT_LPAREN] = ACTIONS(1106), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1108), + [anon_sym_LF] = ACTIONS(1106), + [anon_sym_AMP] = ACTIONS(1108), + }, + [686] = { + [sym_file_redirect] = STATE(1176), + [sym_heredoc_redirect] = STATE(1176), + [sym_herestring_redirect] = STATE(1176), + [aux_sym_while_statement_repeat1] = STATE(1176), + [sym_file_descriptor] = ACTIONS(2424), + [anon_sym_SEMI] = ACTIONS(1302), + [anon_sym_PIPE] = ACTIONS(1302), + [anon_sym_SEMI_SEMI] = ACTIONS(1300), + [anon_sym_PIPE_AMP] = ACTIONS(1300), + [anon_sym_AMP_AMP] = ACTIONS(1300), + [anon_sym_PIPE_PIPE] = ACTIONS(1300), + [anon_sym_LT] = ACTIONS(2426), + [anon_sym_GT] = ACTIONS(2426), + [anon_sym_GT_GT] = ACTIONS(2428), + [anon_sym_AMP_GT] = ACTIONS(2426), + [anon_sym_AMP_GT_GT] = ACTIONS(2428), + [anon_sym_LT_AMP] = ACTIONS(2428), + [anon_sym_GT_AMP] = ACTIONS(2428), + [anon_sym_LT_LT] = ACTIONS(1308), + [anon_sym_LT_LT_DASH] = ACTIONS(1310), + [anon_sym_LT_LT_LT] = ACTIONS(2430), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1302), + }, + [687] = { + [sym_file_redirect] = STATE(1177), + [sym_heredoc_redirect] = STATE(1177), + [sym_heredoc_body] = STATE(699), + [sym_herestring_redirect] = STATE(1177), + [aux_sym_while_statement_repeat1] = STATE(1177), + [sym__simple_heredoc_body] = ACTIONS(339), + [sym__heredoc_body_beginning] = ACTIONS(341), + [sym_file_descriptor] = ACTIONS(537), + [anon_sym_SEMI] = ACTIONS(1340), + [anon_sym_PIPE] = ACTIONS(1340), + [anon_sym_SEMI_SEMI] = ACTIONS(1338), + [anon_sym_PIPE_AMP] = ACTIONS(1338), + [anon_sym_AMP_AMP] = ACTIONS(1338), + [anon_sym_PIPE_PIPE] = ACTIONS(1338), + [anon_sym_LT] = ACTIONS(541), + [anon_sym_GT] = ACTIONS(541), + [anon_sym_GT_GT] = ACTIONS(543), + [anon_sym_AMP_GT] = ACTIONS(541), + [anon_sym_AMP_GT_GT] = ACTIONS(543), + [anon_sym_LT_AMP] = ACTIONS(543), + [anon_sym_GT_AMP] = ACTIONS(543), + [anon_sym_LT_LT] = ACTIONS(355), + [anon_sym_LT_LT_DASH] = ACTIONS(357), + [anon_sym_LT_LT_LT] = ACTIONS(545), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1338), + [anon_sym_AMP] = ACTIONS(1340), + }, + [688] = { + [anon_sym_RPAREN] = ACTIONS(2432), + [sym_comment] = ACTIONS(55), + }, + [689] = { + [sym_file_redirect] = STATE(756), + [sym_file_descriptor] = ACTIONS(2434), + [anon_sym_SEMI] = ACTIONS(1432), + [anon_sym_PIPE] = ACTIONS(1432), + [anon_sym_SEMI_SEMI] = ACTIONS(1430), + [anon_sym_PIPE_AMP] = ACTIONS(1430), + [anon_sym_AMP_AMP] = ACTIONS(1430), + [anon_sym_PIPE_PIPE] = ACTIONS(1430), + [anon_sym_LT] = ACTIONS(2436), + [anon_sym_GT] = ACTIONS(2436), + [anon_sym_GT_GT] = ACTIONS(2438), + [anon_sym_AMP_GT] = ACTIONS(2436), + [anon_sym_AMP_GT_GT] = ACTIONS(2438), + [anon_sym_LT_AMP] = ACTIONS(2438), + [anon_sym_GT_AMP] = ACTIONS(2438), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1430), + [anon_sym_AMP] = ACTIONS(1432), + }, + [690] = { + [sym_concatenation] = STATE(818), + [sym_string] = STATE(1182), + [sym_array] = STATE(818), + [sym_simple_expansion] = STATE(1182), + [sym_string_expansion] = STATE(1182), + [sym_expansion] = STATE(1182), + [sym_command_substitution] = STATE(1182), + [sym_process_substitution] = STATE(1182), + [sym__empty_value] = ACTIONS(1540), + [anon_sym_LPAREN] = ACTIONS(1542), + [sym__special_characters] = ACTIONS(2440), + [anon_sym_DQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR] = ACTIONS(207), + [sym_raw_string] = ACTIONS(2442), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_LT_LPAREN] = ACTIONS(217), + [anon_sym_GT_LPAREN] = ACTIONS(217), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(2442), + }, + [691] = { + [aux_sym_concatenation_repeat1] = STATE(1183), + [sym__concat] = ACTIONS(697), + [sym_variable_name] = ACTIONS(807), + [anon_sym_SEMI] = ACTIONS(809), + [anon_sym_PIPE] = ACTIONS(809), + [anon_sym_SEMI_SEMI] = ACTIONS(807), + [anon_sym_PIPE_AMP] = ACTIONS(807), + [anon_sym_AMP_AMP] = ACTIONS(807), + [anon_sym_PIPE_PIPE] = ACTIONS(807), + [sym__special_characters] = ACTIONS(807), + [anon_sym_DQUOTE] = ACTIONS(807), + [anon_sym_DOLLAR] = ACTIONS(809), + [sym_raw_string] = ACTIONS(807), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(807), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(807), + [anon_sym_BQUOTE] = ACTIONS(807), + [anon_sym_LT_LPAREN] = ACTIONS(807), + [anon_sym_GT_LPAREN] = ACTIONS(807), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(809), + [sym_word] = ACTIONS(809), + [anon_sym_LF] = ACTIONS(807), + [anon_sym_AMP] = ACTIONS(809), + }, + [692] = { + [sym_variable_assignment] = STATE(692), + [sym_subscript] = STATE(277), + [sym_concatenation] = STATE(692), + [sym_string] = STATE(276), + [sym_simple_expansion] = STATE(276), + [sym_string_expansion] = STATE(276), + [sym_expansion] = STATE(276), + [sym_command_substitution] = STATE(276), + [sym_process_substitution] = STATE(276), + [aux_sym_declaration_command_repeat1] = STATE(692), + [sym_variable_name] = ACTIONS(2444), + [anon_sym_SEMI] = ACTIONS(1601), + [anon_sym_PIPE] = ACTIONS(1601), + [anon_sym_SEMI_SEMI] = ACTIONS(1599), + [anon_sym_PIPE_AMP] = ACTIONS(1599), + [anon_sym_AMP_AMP] = ACTIONS(1599), + [anon_sym_PIPE_PIPE] = ACTIONS(1599), + [sym__special_characters] = ACTIONS(2447), + [anon_sym_DQUOTE] = ACTIONS(1606), + [anon_sym_DOLLAR] = ACTIONS(1609), + [sym_raw_string] = ACTIONS(2450), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1615), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1618), + [anon_sym_BQUOTE] = ACTIONS(1621), + [anon_sym_LT_LPAREN] = ACTIONS(1624), + [anon_sym_GT_LPAREN] = ACTIONS(1624), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2453), + [sym_word] = ACTIONS(2456), + [anon_sym_LF] = ACTIONS(1599), + [anon_sym_AMP] = ACTIONS(1601), + }, + [693] = { + [aux_sym_concatenation_repeat1] = STATE(1184), + [sym__concat] = ACTIONS(735), + [anon_sym_SEMI] = ACTIONS(809), + [anon_sym_PIPE] = ACTIONS(809), + [anon_sym_SEMI_SEMI] = ACTIONS(807), + [anon_sym_PIPE_AMP] = ACTIONS(807), + [anon_sym_AMP_AMP] = ACTIONS(807), + [anon_sym_PIPE_PIPE] = ACTIONS(807), + [sym__special_characters] = ACTIONS(807), + [anon_sym_DQUOTE] = ACTIONS(807), + [anon_sym_DOLLAR] = ACTIONS(809), + [sym_raw_string] = ACTIONS(807), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(807), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(807), + [anon_sym_BQUOTE] = ACTIONS(807), + [anon_sym_LT_LPAREN] = ACTIONS(807), + [anon_sym_GT_LPAREN] = ACTIONS(807), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(809), + [sym_word] = ACTIONS(809), + [anon_sym_LF] = ACTIONS(807), + [anon_sym_AMP] = ACTIONS(809), + }, + [694] = { + [sym_concatenation] = STATE(694), + [sym_string] = STATE(280), + [sym_simple_expansion] = STATE(280), + [sym_string_expansion] = STATE(280), + [sym_expansion] = STATE(280), + [sym_command_substitution] = STATE(280), + [sym_process_substitution] = STATE(280), + [aux_sym_unset_command_repeat1] = STATE(694), + [anon_sym_SEMI] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1683), + [anon_sym_SEMI_SEMI] = ACTIONS(1681), + [anon_sym_PIPE_AMP] = ACTIONS(1681), + [anon_sym_AMP_AMP] = ACTIONS(1681), + [anon_sym_PIPE_PIPE] = ACTIONS(1681), + [sym__special_characters] = ACTIONS(2459), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_DOLLAR] = ACTIONS(1691), + [sym_raw_string] = ACTIONS(2462), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1697), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1700), + [anon_sym_BQUOTE] = ACTIONS(1703), + [anon_sym_LT_LPAREN] = ACTIONS(1706), + [anon_sym_GT_LPAREN] = ACTIONS(1706), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2465), + [sym_word] = ACTIONS(2468), + [anon_sym_LF] = ACTIONS(1681), + [anon_sym_AMP] = ACTIONS(1683), + }, + [695] = { + [aux_sym_concatenation_repeat1] = STATE(695), + [sym__simple_heredoc_body] = ACTIONS(1763), + [sym__heredoc_body_beginning] = ACTIONS(1763), + [sym_file_descriptor] = ACTIONS(1763), + [sym__concat] = ACTIONS(1767), + [anon_sym_SEMI] = ACTIONS(1765), + [anon_sym_PIPE] = ACTIONS(1765), + [anon_sym_SEMI_SEMI] = ACTIONS(1763), + [anon_sym_PIPE_AMP] = ACTIONS(1763), + [anon_sym_AMP_AMP] = ACTIONS(1763), + [anon_sym_PIPE_PIPE] = ACTIONS(1763), + [anon_sym_EQ_TILDE] = ACTIONS(1765), + [anon_sym_EQ_EQ] = ACTIONS(1765), + [anon_sym_LT] = ACTIONS(1765), + [anon_sym_GT] = ACTIONS(1765), + [anon_sym_GT_GT] = ACTIONS(1763), + [anon_sym_AMP_GT] = ACTIONS(1765), + [anon_sym_AMP_GT_GT] = ACTIONS(1763), + [anon_sym_LT_AMP] = ACTIONS(1763), + [anon_sym_GT_AMP] = ACTIONS(1763), + [anon_sym_LT_LT] = ACTIONS(1765), + [anon_sym_LT_LT_DASH] = ACTIONS(1763), + [anon_sym_LT_LT_LT] = ACTIONS(1763), + [sym__special_characters] = ACTIONS(1763), + [anon_sym_DQUOTE] = ACTIONS(1763), + [anon_sym_DOLLAR] = ACTIONS(1765), + [sym_raw_string] = ACTIONS(1763), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1763), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1763), + [anon_sym_BQUOTE] = ACTIONS(1763), + [anon_sym_LT_LPAREN] = ACTIONS(1763), + [anon_sym_GT_LPAREN] = ACTIONS(1763), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1765), + [anon_sym_LF] = ACTIONS(1763), + [anon_sym_AMP] = ACTIONS(1765), + }, + [696] = { + [sym_compound_statement] = STATE(1185), + [anon_sym_LBRACE] = ACTIONS(595), + [sym_comment] = ACTIONS(55), + }, + [697] = { + [sym__simple_heredoc_body] = ACTIONS(2471), + [sym__heredoc_body_beginning] = ACTIONS(2471), + [sym_file_descriptor] = ACTIONS(2471), + [ts_builtin_sym_end] = ACTIONS(2471), + [anon_sym_SEMI] = ACTIONS(2473), + [anon_sym_esac] = ACTIONS(2471), + [anon_sym_PIPE] = ACTIONS(2473), + [anon_sym_RPAREN] = ACTIONS(2471), + [anon_sym_SEMI_SEMI] = ACTIONS(2471), + [anon_sym_PIPE_AMP] = ACTIONS(2471), + [anon_sym_AMP_AMP] = ACTIONS(2471), + [anon_sym_PIPE_PIPE] = ACTIONS(2471), + [anon_sym_LT] = ACTIONS(2473), + [anon_sym_GT] = ACTIONS(2473), + [anon_sym_GT_GT] = ACTIONS(2471), + [anon_sym_AMP_GT] = ACTIONS(2473), + [anon_sym_AMP_GT_GT] = ACTIONS(2471), + [anon_sym_LT_AMP] = ACTIONS(2471), + [anon_sym_GT_AMP] = ACTIONS(2471), + [anon_sym_LT_LT] = ACTIONS(2473), + [anon_sym_LT_LT_DASH] = ACTIONS(2471), + [anon_sym_LT_LT_LT] = ACTIONS(2471), + [anon_sym_BQUOTE] = ACTIONS(2471), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2471), + [anon_sym_AMP] = ACTIONS(2473), + }, + [698] = { + [sym__terminated_statement] = STATE(1187), + [sym_for_statement] = STATE(545), + [sym_c_style_for_statement] = STATE(545), + [sym_while_statement] = STATE(545), + [sym_if_statement] = STATE(545), + [sym_case_statement] = STATE(545), + [sym_function_definition] = STATE(545), + [sym_subshell] = STATE(545), + [sym_pipeline] = STATE(545), + [sym_list] = STATE(545), + [sym_negated_command] = STATE(545), + [sym_test_command] = STATE(545), + [sym_declaration_command] = STATE(545), + [sym_unset_command] = STATE(545), + [sym_command] = STATE(545), + [sym_command_name] = STATE(64), + [sym_variable_assignment] = STATE(546), + [sym_subscript] = STATE(66), + [sym_file_redirect] = STATE(67), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(60), + [sym_simple_expansion] = STATE(60), + [sym_string_expansion] = STATE(60), + [sym_expansion] = STATE(60), + [sym_command_substitution] = STATE(60), + [sym_process_substitution] = STATE(60), + [aux_sym__statements_repeat1] = STATE(1187), + [aux_sym_command_repeat1] = STATE(67), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(95), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(97), + [anon_sym_while] = ACTIONS(99), + [anon_sym_done] = ACTIONS(2475), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(101), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_LBRACK] = ACTIONS(107), + [anon_sym_declare] = ACTIONS(109), + [anon_sym_typeset] = ACTIONS(109), + [anon_sym_export] = ACTIONS(109), + [anon_sym_readonly] = ACTIONS(109), + [anon_sym_local] = ACTIONS(109), + [anon_sym_unset] = ACTIONS(111), + [anon_sym_unsetenv] = ACTIONS(111), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(115), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(117), + }, + [699] = { + [ts_builtin_sym_end] = ACTIONS(2477), + [anon_sym_SEMI] = ACTIONS(2479), + [anon_sym_esac] = ACTIONS(2477), + [anon_sym_PIPE] = ACTIONS(2479), + [anon_sym_RPAREN] = ACTIONS(2477), + [anon_sym_SEMI_SEMI] = ACTIONS(2477), + [anon_sym_PIPE_AMP] = ACTIONS(2477), + [anon_sym_AMP_AMP] = ACTIONS(2477), + [anon_sym_PIPE_PIPE] = ACTIONS(2477), + [anon_sym_BQUOTE] = ACTIONS(2477), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2477), + [anon_sym_AMP] = ACTIONS(2479), + }, + [700] = { + [sym_file_redirect] = STATE(541), + [sym_heredoc_redirect] = STATE(541), + [sym_heredoc_body] = STATE(1188), + [sym_herestring_redirect] = STATE(541), + [aux_sym_while_statement_repeat1] = STATE(541), + [sym__simple_heredoc_body] = ACTIONS(339), + [sym__heredoc_body_beginning] = ACTIONS(341), + [sym_file_descriptor] = ACTIONS(343), + [ts_builtin_sym_end] = ACTIONS(2477), + [anon_sym_SEMI] = ACTIONS(2479), + [anon_sym_PIPE] = ACTIONS(2479), + [anon_sym_SEMI_SEMI] = ACTIONS(2477), + [anon_sym_PIPE_AMP] = ACTIONS(2477), + [anon_sym_AMP_AMP] = ACTIONS(2477), + [anon_sym_PIPE_PIPE] = ACTIONS(2477), + [anon_sym_LT] = ACTIONS(351), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_GT_GT] = ACTIONS(353), + [anon_sym_AMP_GT] = ACTIONS(351), + [anon_sym_AMP_GT_GT] = ACTIONS(353), + [anon_sym_LT_AMP] = ACTIONS(353), + [anon_sym_GT_AMP] = ACTIONS(353), + [anon_sym_LT_LT] = ACTIONS(355), + [anon_sym_LT_LT_DASH] = ACTIONS(357), + [anon_sym_LT_LT_LT] = ACTIONS(359), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2477), + [anon_sym_AMP] = ACTIONS(2479), + }, + [701] = { + [anon_sym_SEMI] = ACTIONS(1973), + [anon_sym_PIPE] = ACTIONS(529), + [anon_sym_SEMI_SEMI] = ACTIONS(1971), + [anon_sym_PIPE_AMP] = ACTIONS(533), + [anon_sym_AMP_AMP] = ACTIONS(1971), + [anon_sym_PIPE_PIPE] = ACTIONS(1971), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1971), + [anon_sym_AMP] = ACTIONS(1973), + }, + [702] = { + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(1973), + [anon_sym_PIPE] = ACTIONS(529), + [anon_sym_SEMI_SEMI] = ACTIONS(1971), + [anon_sym_PIPE_AMP] = ACTIONS(533), + [anon_sym_AMP_AMP] = ACTIONS(1971), + [anon_sym_PIPE_PIPE] = ACTIONS(1971), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(1971), + [anon_sym_AMP] = ACTIONS(1973), + }, + [703] = { + [sym_concatenation] = STATE(994), + [sym_string] = STATE(1190), + [sym_simple_expansion] = STATE(1190), + [sym_string_expansion] = STATE(1190), + [sym_expansion] = STATE(1190), + [sym_command_substitution] = STATE(1190), + [sym_process_substitution] = STATE(1190), + [sym__special_characters] = ACTIONS(2481), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(2483), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(2483), + }, + [704] = { + [aux_sym_concatenation_repeat1] = STATE(282), + [sym__simple_heredoc_body] = ACTIONS(2007), + [sym__heredoc_body_beginning] = ACTIONS(2007), + [sym_file_descriptor] = ACTIONS(2007), + [sym__concat] = ACTIONS(265), + [anon_sym_SEMI] = ACTIONS(2009), + [anon_sym_PIPE] = ACTIONS(2009), + [anon_sym_SEMI_SEMI] = ACTIONS(2007), + [anon_sym_PIPE_AMP] = ACTIONS(2007), + [anon_sym_AMP_AMP] = ACTIONS(2007), + [anon_sym_PIPE_PIPE] = ACTIONS(2007), + [anon_sym_EQ_TILDE] = ACTIONS(2009), + [anon_sym_EQ_EQ] = ACTIONS(2009), + [anon_sym_LT] = ACTIONS(2009), + [anon_sym_GT] = ACTIONS(2009), + [anon_sym_GT_GT] = ACTIONS(2007), + [anon_sym_AMP_GT] = ACTIONS(2009), + [anon_sym_AMP_GT_GT] = ACTIONS(2007), + [anon_sym_LT_AMP] = ACTIONS(2007), + [anon_sym_GT_AMP] = ACTIONS(2007), + [anon_sym_LT_LT] = ACTIONS(2009), + [anon_sym_LT_LT_DASH] = ACTIONS(2007), + [anon_sym_LT_LT_LT] = ACTIONS(2007), + [sym__special_characters] = ACTIONS(2007), + [anon_sym_DQUOTE] = ACTIONS(2007), + [anon_sym_DOLLAR] = ACTIONS(2009), + [sym_raw_string] = ACTIONS(2007), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2007), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2007), + [anon_sym_BQUOTE] = ACTIONS(2007), + [anon_sym_LT_LPAREN] = ACTIONS(2007), + [anon_sym_GT_LPAREN] = ACTIONS(2007), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(2009), + [anon_sym_LF] = ACTIONS(2007), + [anon_sym_AMP] = ACTIONS(2009), + }, + [705] = { + [aux_sym_concatenation_repeat1] = STATE(282), + [sym__simple_heredoc_body] = ACTIONS(2003), + [sym__heredoc_body_beginning] = ACTIONS(2003), + [sym_file_descriptor] = ACTIONS(2003), + [sym__concat] = ACTIONS(265), + [anon_sym_SEMI] = ACTIONS(2005), + [anon_sym_PIPE] = ACTIONS(2005), + [anon_sym_SEMI_SEMI] = ACTIONS(2003), + [anon_sym_PIPE_AMP] = ACTIONS(2003), + [anon_sym_AMP_AMP] = ACTIONS(2003), + [anon_sym_PIPE_PIPE] = ACTIONS(2003), + [anon_sym_EQ_TILDE] = ACTIONS(2005), + [anon_sym_EQ_EQ] = ACTIONS(2005), + [anon_sym_LT] = ACTIONS(2005), + [anon_sym_GT] = ACTIONS(2005), + [anon_sym_GT_GT] = ACTIONS(2003), + [anon_sym_AMP_GT] = ACTIONS(2005), + [anon_sym_AMP_GT_GT] = ACTIONS(2003), + [anon_sym_LT_AMP] = ACTIONS(2003), + [anon_sym_GT_AMP] = ACTIONS(2003), + [anon_sym_LT_LT] = ACTIONS(2005), + [anon_sym_LT_LT_DASH] = ACTIONS(2003), + [anon_sym_LT_LT_LT] = ACTIONS(2003), + [sym__special_characters] = ACTIONS(2003), + [anon_sym_DQUOTE] = ACTIONS(2003), + [anon_sym_DOLLAR] = ACTIONS(2005), + [sym_raw_string] = ACTIONS(2003), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2003), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2003), + [anon_sym_BQUOTE] = ACTIONS(2003), + [anon_sym_LT_LPAREN] = ACTIONS(2003), + [anon_sym_GT_LPAREN] = ACTIONS(2003), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(2005), + [anon_sym_LF] = ACTIONS(2003), + [anon_sym_AMP] = ACTIONS(2005), + }, + [706] = { + [aux_sym_concatenation_repeat1] = STATE(1191), + [sym__simple_heredoc_body] = ACTIONS(773), + [sym__heredoc_body_beginning] = ACTIONS(773), + [sym_file_descriptor] = ACTIONS(773), + [sym__concat] = ACTIONS(265), + [anon_sym_SEMI] = ACTIONS(777), + [anon_sym_PIPE] = ACTIONS(777), + [anon_sym_SEMI_SEMI] = ACTIONS(773), + [anon_sym_PIPE_AMP] = ACTIONS(773), + [anon_sym_AMP_AMP] = ACTIONS(773), + [anon_sym_PIPE_PIPE] = ACTIONS(773), + [anon_sym_LT] = ACTIONS(777), + [anon_sym_GT] = ACTIONS(777), + [anon_sym_GT_GT] = ACTIONS(773), + [anon_sym_AMP_GT] = ACTIONS(777), + [anon_sym_AMP_GT_GT] = ACTIONS(773), + [anon_sym_LT_AMP] = ACTIONS(773), + [anon_sym_GT_AMP] = ACTIONS(773), + [anon_sym_LT_LT] = ACTIONS(777), + [anon_sym_LT_LT_DASH] = ACTIONS(773), + [anon_sym_LT_LT_LT] = ACTIONS(773), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(773), + [anon_sym_AMP] = ACTIONS(777), + }, + [707] = { + [aux_sym_concatenation_repeat1] = STATE(1191), + [sym__simple_heredoc_body] = ACTIONS(791), + [sym__heredoc_body_beginning] = ACTIONS(791), + [sym_file_descriptor] = ACTIONS(791), + [sym__concat] = ACTIONS(265), + [anon_sym_SEMI] = ACTIONS(793), + [anon_sym_PIPE] = ACTIONS(793), + [anon_sym_SEMI_SEMI] = ACTIONS(791), + [anon_sym_PIPE_AMP] = ACTIONS(791), + [anon_sym_AMP_AMP] = ACTIONS(791), + [anon_sym_PIPE_PIPE] = ACTIONS(791), + [anon_sym_LT] = ACTIONS(793), + [anon_sym_GT] = ACTIONS(793), + [anon_sym_GT_GT] = ACTIONS(791), + [anon_sym_AMP_GT] = ACTIONS(793), + [anon_sym_AMP_GT_GT] = ACTIONS(791), + [anon_sym_LT_AMP] = ACTIONS(791), + [anon_sym_GT_AMP] = ACTIONS(791), + [anon_sym_LT_LT] = ACTIONS(793), + [anon_sym_LT_LT_DASH] = ACTIONS(791), + [anon_sym_LT_LT_LT] = ACTIONS(791), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(791), + [anon_sym_AMP] = ACTIONS(793), + }, + [708] = { + [aux_sym_concatenation_repeat1] = STATE(1191), + [sym__simple_heredoc_body] = ACTIONS(2015), + [sym__heredoc_body_beginning] = ACTIONS(2015), + [sym_file_descriptor] = ACTIONS(2015), + [sym__concat] = ACTIONS(265), + [anon_sym_SEMI] = ACTIONS(2017), + [anon_sym_PIPE] = ACTIONS(2017), + [anon_sym_SEMI_SEMI] = ACTIONS(2015), + [anon_sym_PIPE_AMP] = ACTIONS(2015), + [anon_sym_AMP_AMP] = ACTIONS(2015), + [anon_sym_PIPE_PIPE] = ACTIONS(2015), + [anon_sym_LT] = ACTIONS(2017), + [anon_sym_GT] = ACTIONS(2017), + [anon_sym_GT_GT] = ACTIONS(2015), + [anon_sym_AMP_GT] = ACTIONS(2017), + [anon_sym_AMP_GT_GT] = ACTIONS(2015), + [anon_sym_LT_AMP] = ACTIONS(2015), + [anon_sym_GT_AMP] = ACTIONS(2015), + [anon_sym_LT_LT] = ACTIONS(2017), + [anon_sym_LT_LT_DASH] = ACTIONS(2015), + [anon_sym_LT_LT_LT] = ACTIONS(2015), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2017), + }, + [709] = { + [aux_sym_concatenation_repeat1] = STATE(1191), + [sym__simple_heredoc_body] = ACTIONS(2019), + [sym__heredoc_body_beginning] = ACTIONS(2019), + [sym_file_descriptor] = ACTIONS(2019), + [sym__concat] = ACTIONS(265), + [anon_sym_SEMI] = ACTIONS(2021), + [anon_sym_PIPE] = ACTIONS(2021), + [anon_sym_SEMI_SEMI] = ACTIONS(2019), + [anon_sym_PIPE_AMP] = ACTIONS(2019), + [anon_sym_AMP_AMP] = ACTIONS(2019), + [anon_sym_PIPE_PIPE] = ACTIONS(2019), + [anon_sym_LT] = ACTIONS(2021), + [anon_sym_GT] = ACTIONS(2021), + [anon_sym_GT_GT] = ACTIONS(2019), + [anon_sym_AMP_GT] = ACTIONS(2021), + [anon_sym_AMP_GT_GT] = ACTIONS(2019), + [anon_sym_LT_AMP] = ACTIONS(2019), + [anon_sym_GT_AMP] = ACTIONS(2019), + [anon_sym_LT_LT] = ACTIONS(2021), + [anon_sym_LT_LT_DASH] = ACTIONS(2019), + [anon_sym_LT_LT_LT] = ACTIONS(2019), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2019), + [anon_sym_AMP] = ACTIONS(2021), + }, + [710] = { + [sym_file_redirect] = STATE(710), + [sym_heredoc_redirect] = STATE(710), + [sym_herestring_redirect] = STATE(710), + [aux_sym_while_statement_repeat1] = STATE(710), + [sym__simple_heredoc_body] = ACTIONS(2027), + [sym__heredoc_body_beginning] = ACTIONS(2027), + [sym_file_descriptor] = ACTIONS(2485), + [anon_sym_SEMI] = ACTIONS(2032), + [anon_sym_PIPE] = ACTIONS(2032), + [anon_sym_SEMI_SEMI] = ACTIONS(2027), + [anon_sym_PIPE_AMP] = ACTIONS(2027), + [anon_sym_AMP_AMP] = ACTIONS(2027), + [anon_sym_PIPE_PIPE] = ACTIONS(2027), + [anon_sym_LT] = ACTIONS(2488), + [anon_sym_GT] = ACTIONS(2488), + [anon_sym_GT_GT] = ACTIONS(2491), + [anon_sym_AMP_GT] = ACTIONS(2488), + [anon_sym_AMP_GT_GT] = ACTIONS(2491), + [anon_sym_LT_AMP] = ACTIONS(2491), + [anon_sym_GT_AMP] = ACTIONS(2491), + [anon_sym_LT_LT] = ACTIONS(2040), + [anon_sym_LT_LT_DASH] = ACTIONS(2043), + [anon_sym_LT_LT_LT] = ACTIONS(2494), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2027), + [anon_sym_AMP] = ACTIONS(2032), + }, + [711] = { + [sym_file_redirect] = STATE(710), + [sym_heredoc_redirect] = STATE(710), + [sym_heredoc_body] = STATE(996), + [sym_herestring_redirect] = STATE(710), + [aux_sym_while_statement_repeat1] = STATE(710), + [sym__simple_heredoc_body] = ACTIONS(339), + [sym__heredoc_body_beginning] = ACTIONS(341), + [sym_file_descriptor] = ACTIONS(537), + [anon_sym_SEMI] = ACTIONS(2025), + [anon_sym_PIPE] = ACTIONS(2025), + [anon_sym_SEMI_SEMI] = ACTIONS(2023), + [anon_sym_PIPE_AMP] = ACTIONS(2023), + [anon_sym_AMP_AMP] = ACTIONS(2023), + [anon_sym_PIPE_PIPE] = ACTIONS(2023), + [anon_sym_LT] = ACTIONS(541), + [anon_sym_GT] = ACTIONS(541), + [anon_sym_GT_GT] = ACTIONS(543), + [anon_sym_AMP_GT] = ACTIONS(541), + [anon_sym_AMP_GT_GT] = ACTIONS(543), + [anon_sym_LT_AMP] = ACTIONS(543), + [anon_sym_GT_AMP] = ACTIONS(543), + [anon_sym_LT_LT] = ACTIONS(355), + [anon_sym_LT_LT_DASH] = ACTIONS(357), + [anon_sym_LT_LT_LT] = ACTIONS(545), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2023), + [anon_sym_AMP] = ACTIONS(2025), + }, + [712] = { + [sym_concatenation] = STATE(712), + [sym_string] = STATE(294), + [sym_simple_expansion] = STATE(294), + [sym_string_expansion] = STATE(294), + [sym_expansion] = STATE(294), + [sym_command_substitution] = STATE(294), + [sym_process_substitution] = STATE(294), + [aux_sym_command_repeat2] = STATE(712), + [sym__simple_heredoc_body] = ACTIONS(2003), + [sym__heredoc_body_beginning] = ACTIONS(2003), + [sym_file_descriptor] = ACTIONS(2003), + [anon_sym_SEMI] = ACTIONS(2005), + [anon_sym_PIPE] = ACTIONS(2005), + [anon_sym_SEMI_SEMI] = ACTIONS(2003), + [anon_sym_PIPE_AMP] = ACTIONS(2003), + [anon_sym_AMP_AMP] = ACTIONS(2003), + [anon_sym_PIPE_PIPE] = ACTIONS(2003), + [anon_sym_EQ_TILDE] = ACTIONS(2497), + [anon_sym_EQ_EQ] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2005), + [anon_sym_GT] = ACTIONS(2005), + [anon_sym_GT_GT] = ACTIONS(2003), + [anon_sym_AMP_GT] = ACTIONS(2005), + [anon_sym_AMP_GT_GT] = ACTIONS(2003), + [anon_sym_LT_AMP] = ACTIONS(2003), + [anon_sym_GT_AMP] = ACTIONS(2003), + [anon_sym_LT_LT] = ACTIONS(2005), + [anon_sym_LT_LT_DASH] = ACTIONS(2003), + [anon_sym_LT_LT_LT] = ACTIONS(2003), + [sym__special_characters] = ACTIONS(2500), + [anon_sym_DQUOTE] = ACTIONS(2055), + [anon_sym_DOLLAR] = ACTIONS(2058), + [sym_raw_string] = ACTIONS(2503), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2064), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2067), + [anon_sym_BQUOTE] = ACTIONS(2070), + [anon_sym_LT_LPAREN] = ACTIONS(2073), + [anon_sym_GT_LPAREN] = ACTIONS(2073), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(2506), + [anon_sym_LF] = ACTIONS(2003), + [anon_sym_AMP] = ACTIONS(2005), + }, + [713] = { + [sym_file_redirect] = STATE(1192), + [sym_heredoc_redirect] = STATE(1192), + [sym_heredoc_body] = STATE(996), + [sym_herestring_redirect] = STATE(1192), + [sym_concatenation] = STATE(712), + [sym_string] = STATE(294), + [sym_simple_expansion] = STATE(294), + [sym_string_expansion] = STATE(294), + [sym_expansion] = STATE(294), + [sym_command_substitution] = STATE(294), + [sym_process_substitution] = STATE(294), + [aux_sym_while_statement_repeat1] = STATE(1192), + [aux_sym_command_repeat2] = STATE(712), + [sym__simple_heredoc_body] = ACTIONS(339), + [sym__heredoc_body_beginning] = ACTIONS(341), + [sym_file_descriptor] = ACTIONS(537), + [anon_sym_SEMI] = ACTIONS(2025), + [anon_sym_PIPE] = ACTIONS(2025), + [anon_sym_SEMI_SEMI] = ACTIONS(2023), + [anon_sym_PIPE_AMP] = ACTIONS(2023), + [anon_sym_AMP_AMP] = ACTIONS(2023), + [anon_sym_PIPE_PIPE] = ACTIONS(2023), + [anon_sym_EQ_TILDE] = ACTIONS(539), + [anon_sym_EQ_EQ] = ACTIONS(539), + [anon_sym_LT] = ACTIONS(541), + [anon_sym_GT] = ACTIONS(541), + [anon_sym_GT_GT] = ACTIONS(543), + [anon_sym_AMP_GT] = ACTIONS(541), + [anon_sym_AMP_GT_GT] = ACTIONS(543), + [anon_sym_LT_AMP] = ACTIONS(543), + [anon_sym_GT_AMP] = ACTIONS(543), + [anon_sym_LT_LT] = ACTIONS(355), + [anon_sym_LT_LT_DASH] = ACTIONS(357), + [anon_sym_LT_LT_LT] = ACTIONS(545), + [sym__special_characters] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(549), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(551), + [anon_sym_LF] = ACTIONS(2023), + [anon_sym_AMP] = ACTIONS(2025), + }, + [714] = { + [ts_builtin_sym_end] = ACTIONS(2509), + [anon_sym_SEMI] = ACTIONS(2511), + [anon_sym_esac] = ACTIONS(2509), + [anon_sym_PIPE] = ACTIONS(2511), + [anon_sym_RPAREN] = ACTIONS(2509), + [anon_sym_SEMI_SEMI] = ACTIONS(2509), + [anon_sym_PIPE_AMP] = ACTIONS(2509), + [anon_sym_AMP_AMP] = ACTIONS(2509), + [anon_sym_PIPE_PIPE] = ACTIONS(2509), + [anon_sym_BQUOTE] = ACTIONS(2509), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2509), + [anon_sym_AMP] = ACTIONS(2511), }, [715] = { - [anon_sym_LBRACK] = ACTIONS(815), - [anon_sym_EQ] = ACTIONS(2564), - [sym_comment] = ACTIONS(53), + [sym__terminated_statement] = STATE(1193), + [sym_for_statement] = STATE(63), + [sym_c_style_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_if_statement] = STATE(63), + [sym_case_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_subshell] = STATE(63), + [sym_pipeline] = STATE(63), + [sym_list] = STATE(63), + [sym_negated_command] = STATE(63), + [sym_test_command] = STATE(63), + [sym_declaration_command] = STATE(63), + [sym_unset_command] = STATE(63), + [sym_command] = STATE(63), + [sym_command_name] = STATE(64), + [sym_variable_assignment] = STATE(65), + [sym_subscript] = STATE(66), + [sym_file_redirect] = STATE(67), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(60), + [sym_simple_expansion] = STATE(60), + [sym_string_expansion] = STATE(60), + [sym_expansion] = STATE(60), + [sym_command_substitution] = STATE(60), + [sym_process_substitution] = STATE(60), + [aux_sym_command_repeat1] = STATE(67), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(95), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(97), + [anon_sym_while] = ACTIONS(99), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(101), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_LBRACK] = ACTIONS(107), + [anon_sym_declare] = ACTIONS(109), + [anon_sym_typeset] = ACTIONS(109), + [anon_sym_export] = ACTIONS(109), + [anon_sym_readonly] = ACTIONS(109), + [anon_sym_local] = ACTIONS(109), + [anon_sym_unset] = ACTIONS(111), + [anon_sym_unsetenv] = ACTIONS(111), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(115), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(117), }, [716] = { - [sym_concatenation] = STATE(1166), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(1166), - [anon_sym_RBRACE] = ACTIONS(2566), - [anon_sym_EQ] = ACTIONS(2568), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(2570), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(2572), - [anon_sym_COLON] = ACTIONS(2568), - [anon_sym_COLON_QMARK] = ACTIONS(2568), - [anon_sym_COLON_DASH] = ACTIONS(2568), - [anon_sym_PERCENT] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym__terminated_statement] = STATE(1194), + [sym_for_statement] = STATE(545), + [sym_c_style_for_statement] = STATE(545), + [sym_while_statement] = STATE(545), + [sym_if_statement] = STATE(545), + [sym_case_statement] = STATE(545), + [sym_function_definition] = STATE(545), + [sym_subshell] = STATE(545), + [sym_pipeline] = STATE(545), + [sym_list] = STATE(545), + [sym_negated_command] = STATE(545), + [sym_test_command] = STATE(545), + [sym_declaration_command] = STATE(545), + [sym_unset_command] = STATE(545), + [sym_command] = STATE(545), + [sym_command_name] = STATE(64), + [sym_variable_assignment] = STATE(546), + [sym_subscript] = STATE(66), + [sym_file_redirect] = STATE(67), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(60), + [sym_simple_expansion] = STATE(60), + [sym_string_expansion] = STATE(60), + [sym_expansion] = STATE(60), + [sym_command_substitution] = STATE(60), + [sym_process_substitution] = STATE(60), + [aux_sym__statements_repeat1] = STATE(1194), + [aux_sym_command_repeat1] = STATE(67), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(95), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(97), + [anon_sym_while] = ACTIONS(99), + [anon_sym_if] = ACTIONS(17), + [anon_sym_fi] = ACTIONS(2513), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(101), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_LBRACK] = ACTIONS(107), + [anon_sym_declare] = ACTIONS(109), + [anon_sym_typeset] = ACTIONS(109), + [anon_sym_export] = ACTIONS(109), + [anon_sym_readonly] = ACTIONS(109), + [anon_sym_local] = ACTIONS(109), + [anon_sym_unset] = ACTIONS(111), + [anon_sym_unsetenv] = ACTIONS(111), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(115), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(117), }, [717] = { - [sym_concatenation] = STATE(1168), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(1168), - [anon_sym_RBRACE] = ACTIONS(2558), - [anon_sym_EQ] = ACTIONS(2574), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(2576), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(2578), - [anon_sym_COLON] = ACTIONS(2574), - [anon_sym_COLON_QMARK] = ACTIONS(2574), - [anon_sym_COLON_DASH] = ACTIONS(2574), - [anon_sym_PERCENT] = ACTIONS(2574), - [anon_sym_DASH] = ACTIONS(2574), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [anon_sym_fi] = ACTIONS(2515), + [sym_comment] = ACTIONS(55), }, [718] = { - [sym__concat] = ACTIONS(1832), - [anon_sym_AMP_AMP] = ACTIONS(1832), - [anon_sym_PIPE_PIPE] = ACTIONS(1832), - [anon_sym_RBRACK] = ACTIONS(1832), - [anon_sym_EQ_TILDE] = ACTIONS(1832), - [anon_sym_EQ_EQ] = ACTIONS(1832), - [anon_sym_EQ] = ACTIONS(1834), - [anon_sym_LT] = ACTIONS(1832), - [anon_sym_GT] = ACTIONS(1832), - [anon_sym_BANG_EQ] = ACTIONS(1832), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1832), + [sym__terminated_statement] = STATE(1197), + [sym_for_statement] = STATE(545), + [sym_c_style_for_statement] = STATE(545), + [sym_while_statement] = STATE(545), + [sym_if_statement] = STATE(545), + [sym_elif_clause] = STATE(1198), + [sym_else_clause] = STATE(1196), + [sym_case_statement] = STATE(545), + [sym_function_definition] = STATE(545), + [sym_subshell] = STATE(545), + [sym_pipeline] = STATE(545), + [sym_list] = STATE(545), + [sym_negated_command] = STATE(545), + [sym_test_command] = STATE(545), + [sym_declaration_command] = STATE(545), + [sym_unset_command] = STATE(545), + [sym_command] = STATE(545), + [sym_command_name] = STATE(64), + [sym_variable_assignment] = STATE(546), + [sym_subscript] = STATE(66), + [sym_file_redirect] = STATE(67), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(60), + [sym_simple_expansion] = STATE(60), + [sym_string_expansion] = STATE(60), + [sym_expansion] = STATE(60), + [sym_command_substitution] = STATE(60), + [sym_process_substitution] = STATE(60), + [aux_sym__statements_repeat1] = STATE(1197), + [aux_sym_if_statement_repeat1] = STATE(1198), + [aux_sym_command_repeat1] = STATE(67), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(95), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(97), + [anon_sym_while] = ACTIONS(99), + [anon_sym_if] = ACTIONS(17), + [anon_sym_fi] = ACTIONS(2517), + [anon_sym_elif] = ACTIONS(1360), + [anon_sym_else] = ACTIONS(1362), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(101), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_LBRACK] = ACTIONS(107), + [anon_sym_declare] = ACTIONS(109), + [anon_sym_typeset] = ACTIONS(109), + [anon_sym_export] = ACTIONS(109), + [anon_sym_readonly] = ACTIONS(109), + [anon_sym_local] = ACTIONS(109), + [anon_sym_unset] = ACTIONS(111), + [anon_sym_unsetenv] = ACTIONS(111), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(115), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(117), }, [719] = { - [sym_comment] = ACTIONS(265), - [sym_regex_without_right_brace] = ACTIONS(2580), + [sym_elif_clause] = STATE(1199), + [sym_else_clause] = STATE(1196), + [aux_sym_if_statement_repeat1] = STATE(1199), + [anon_sym_fi] = ACTIONS(2515), + [anon_sym_elif] = ACTIONS(2519), + [anon_sym_else] = ACTIONS(2521), + [sym_comment] = ACTIONS(55), }, [720] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(2582), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym__concat] = ACTIONS(1763), + [anon_sym_in] = ACTIONS(1763), + [anon_sym_SEMI] = ACTIONS(1765), + [anon_sym_SEMI_SEMI] = ACTIONS(1763), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1763), + [anon_sym_AMP] = ACTIONS(1763), }, [721] = { - [sym__concat] = ACTIONS(1876), - [anon_sym_AMP_AMP] = ACTIONS(1876), - [anon_sym_PIPE_PIPE] = ACTIONS(1876), - [anon_sym_RBRACK] = ACTIONS(1876), - [anon_sym_EQ_TILDE] = ACTIONS(1876), - [anon_sym_EQ_EQ] = ACTIONS(1876), - [anon_sym_EQ] = ACTIONS(1878), - [anon_sym_LT] = ACTIONS(1876), - [anon_sym_GT] = ACTIONS(1876), - [anon_sym_BANG_EQ] = ACTIONS(1876), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1876), + [sym_case_item] = STATE(1205), + [sym_last_case_item] = STATE(1203), + [sym_concatenation] = STATE(1204), + [sym_string] = STATE(1202), + [sym_simple_expansion] = STATE(1202), + [sym_string_expansion] = STATE(1202), + [sym_expansion] = STATE(1202), + [sym_command_substitution] = STATE(1202), + [sym_process_substitution] = STATE(1202), + [aux_sym_case_statement_repeat1] = STATE(1205), + [anon_sym_esac] = ACTIONS(2523), + [sym__special_characters] = ACTIONS(2525), + [anon_sym_DQUOTE] = ACTIONS(441), + [anon_sym_DOLLAR] = ACTIONS(443), + [sym_raw_string] = ACTIONS(2527), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(447), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(449), + [anon_sym_BQUOTE] = ACTIONS(451), + [anon_sym_LT_LPAREN] = ACTIONS(453), + [anon_sym_GT_LPAREN] = ACTIONS(453), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(2529), }, [722] = { - [sym_comment] = ACTIONS(265), - [sym_regex_without_right_brace] = ACTIONS(2584), + [anon_sym_SEMI] = ACTIONS(2531), + [anon_sym_SEMI_SEMI] = ACTIONS(2533), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2533), + [anon_sym_AMP] = ACTIONS(2533), }, [723] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(2558), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [aux_sym_concatenation_repeat1] = STATE(723), + [sym__concat] = ACTIONS(2535), + [anon_sym_in] = ACTIONS(1763), + [anon_sym_SEMI] = ACTIONS(1765), + [anon_sym_SEMI_SEMI] = ACTIONS(1763), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1763), + [anon_sym_AMP] = ACTIONS(1763), }, [724] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(2586), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(901), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), + [sym__concat] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(1772), + [anon_sym_SEMI_SEMI] = ACTIONS(1770), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1770), + [anon_sym_AMP] = ACTIONS(1770), }, [725] = { - [sym__concat] = ACTIONS(1884), - [anon_sym_AMP_AMP] = ACTIONS(1884), - [anon_sym_PIPE_PIPE] = ACTIONS(1884), - [anon_sym_RBRACK] = ACTIONS(1884), - [anon_sym_EQ_TILDE] = ACTIONS(1884), - [anon_sym_EQ_EQ] = ACTIONS(1884), - [anon_sym_EQ] = ACTIONS(1886), - [anon_sym_LT] = ACTIONS(1884), - [anon_sym_GT] = ACTIONS(1884), - [anon_sym_BANG_EQ] = ACTIONS(1884), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1884), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_DQUOTE] = ACTIONS(2538), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym__string_content] = ACTIONS(821), + [anon_sym_POUND] = ACTIONS(815), + [sym_comment] = ACTIONS(281), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(823), + [anon_sym_STAR] = ACTIONS(825), + [anon_sym_AT] = ACTIONS(825), + [anon_sym_QMARK] = ACTIONS(825), + [anon_sym_0] = ACTIONS(823), + [anon_sym__] = ACTIONS(823), }, [726] = { - [anon_sym_SEMI] = ACTIONS(2588), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(2586), - [anon_sym_SEMI_SEMI] = ACTIONS(2590), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(2590), - [anon_sym_AMP] = ACTIONS(2588), + [sym_case_item] = STATE(1210), + [sym_last_case_item] = STATE(1209), + [sym_concatenation] = STATE(1204), + [sym_string] = STATE(1202), + [sym_simple_expansion] = STATE(1202), + [sym_string_expansion] = STATE(1202), + [sym_expansion] = STATE(1202), + [sym_command_substitution] = STATE(1202), + [sym_process_substitution] = STATE(1202), + [aux_sym_case_statement_repeat1] = STATE(1210), + [anon_sym_esac] = ACTIONS(2540), + [sym__special_characters] = ACTIONS(2525), + [anon_sym_DQUOTE] = ACTIONS(441), + [anon_sym_DOLLAR] = ACTIONS(443), + [sym_raw_string] = ACTIONS(2527), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(447), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(449), + [anon_sym_BQUOTE] = ACTIONS(451), + [anon_sym_LT_LPAREN] = ACTIONS(453), + [anon_sym_GT_LPAREN] = ACTIONS(453), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(2529), }, [727] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(2588), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(2586), - [anon_sym_SEMI_SEMI] = ACTIONS(2590), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(2590), - [anon_sym_AMP] = ACTIONS(2588), + [anon_sym_SEMI] = ACTIONS(2542), + [anon_sym_SEMI_SEMI] = ACTIONS(2544), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2544), + [anon_sym_AMP] = ACTIONS(2544), }, [728] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(2586), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), + [sym_concatenation] = STATE(1215), + [sym_string] = STATE(1214), + [sym_simple_expansion] = STATE(1214), + [sym_string_expansion] = STATE(1214), + [sym_expansion] = STATE(1214), + [sym_command_substitution] = STATE(1214), + [sym_process_substitution] = STATE(1214), + [anon_sym_RBRACE] = ACTIONS(2546), + [sym__special_characters] = ACTIONS(2548), + [anon_sym_DQUOTE] = ACTIONS(1841), + [anon_sym_DOLLAR] = ACTIONS(1843), + [sym_raw_string] = ACTIONS(2550), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1849), + [anon_sym_BQUOTE] = ACTIONS(1851), + [anon_sym_LT_LPAREN] = ACTIONS(1853), + [anon_sym_GT_LPAREN] = ACTIONS(1853), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(2550), }, [729] = { - [anon_sym_SEMI] = ACTIONS(2592), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_SEMI_SEMI] = ACTIONS(2594), - [anon_sym_PIPE_AMP] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(883), - [anon_sym_PIPE_PIPE] = ACTIONS(883), - [anon_sym_BQUOTE] = ACTIONS(2586), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(2594), - [anon_sym_AMP] = ACTIONS(2592), + [anon_sym_LBRACK] = ACTIONS(857), + [anon_sym_EQ] = ACTIONS(2552), + [sym_comment] = ACTIONS(55), }, [730] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(2592), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_SEMI_SEMI] = ACTIONS(2594), - [anon_sym_PIPE_AMP] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(883), - [anon_sym_PIPE_PIPE] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(2586), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(2594), - [anon_sym_AMP] = ACTIONS(2592), + [sym_concatenation] = STATE(1219), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1219), + [anon_sym_RBRACE] = ACTIONS(2554), + [anon_sym_EQ] = ACTIONS(2556), + [anon_sym_DASH] = ACTIONS(2556), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(2558), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(2560), + [anon_sym_COLON] = ACTIONS(2556), + [anon_sym_COLON_QMARK] = ACTIONS(2556), + [anon_sym_COLON_DASH] = ACTIONS(2556), + [anon_sym_PERCENT] = ACTIONS(2556), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [731] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(2596), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(901), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), + [sym_concatenation] = STATE(1221), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1221), + [anon_sym_RBRACE] = ACTIONS(2546), + [anon_sym_EQ] = ACTIONS(2562), + [anon_sym_DASH] = ACTIONS(2562), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(2566), + [anon_sym_COLON] = ACTIONS(2562), + [anon_sym_COLON_QMARK] = ACTIONS(2562), + [anon_sym_COLON_DASH] = ACTIONS(2562), + [anon_sym_PERCENT] = ACTIONS(2562), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [732] = { - [sym__concat] = ACTIONS(1916), - [anon_sym_AMP_AMP] = ACTIONS(1916), - [anon_sym_PIPE_PIPE] = ACTIONS(1916), - [anon_sym_RBRACK] = ACTIONS(1916), - [anon_sym_EQ_TILDE] = ACTIONS(1916), - [anon_sym_EQ_EQ] = ACTIONS(1916), - [anon_sym_EQ] = ACTIONS(1918), - [anon_sym_LT] = ACTIONS(1916), - [anon_sym_GT] = ACTIONS(1916), - [anon_sym_BANG_EQ] = ACTIONS(1916), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1916), + [sym__concat] = ACTIONS(1871), + [anon_sym_in] = ACTIONS(1871), + [anon_sym_SEMI] = ACTIONS(1873), + [anon_sym_SEMI_SEMI] = ACTIONS(1871), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1871), + [anon_sym_AMP] = ACTIONS(1871), }, [733] = { - [anon_sym_SEMI] = ACTIONS(2598), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(2596), - [anon_sym_SEMI_SEMI] = ACTIONS(2600), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(2600), - [anon_sym_AMP] = ACTIONS(2598), + [sym_concatenation] = STATE(1224), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1224), + [sym_regex] = ACTIONS(2568), + [anon_sym_RBRACE] = ACTIONS(2570), + [anon_sym_EQ] = ACTIONS(2572), + [anon_sym_DASH] = ACTIONS(2572), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(2574), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(2572), + [anon_sym_COLON_QMARK] = ACTIONS(2572), + [anon_sym_COLON_DASH] = ACTIONS(2572), + [anon_sym_PERCENT] = ACTIONS(2572), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [734] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(2570), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [735] = { + [sym__concat] = ACTIONS(1919), + [anon_sym_in] = ACTIONS(1919), + [anon_sym_SEMI] = ACTIONS(1921), + [anon_sym_SEMI_SEMI] = ACTIONS(1919), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1919), + [anon_sym_AMP] = ACTIONS(1919), + }, + [736] = { + [sym_concatenation] = STATE(1221), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1221), + [sym_regex] = ACTIONS(2576), + [anon_sym_RBRACE] = ACTIONS(2546), + [anon_sym_EQ] = ACTIONS(2562), + [anon_sym_DASH] = ACTIONS(2562), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(2562), + [anon_sym_COLON_QMARK] = ACTIONS(2562), + [anon_sym_COLON_DASH] = ACTIONS(2562), + [anon_sym_PERCENT] = ACTIONS(2562), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [737] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(2546), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [738] = { + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(2578), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), + }, + [739] = { + [sym__concat] = ACTIONS(1927), + [anon_sym_in] = ACTIONS(1927), + [anon_sym_SEMI] = ACTIONS(1929), + [anon_sym_SEMI_SEMI] = ACTIONS(1927), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1927), + }, + [740] = { + [anon_sym_SEMI] = ACTIONS(2580), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(2578), + [anon_sym_SEMI_SEMI] = ACTIONS(2582), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2582), + [anon_sym_AMP] = ACTIONS(2580), + }, + [741] = { + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(2580), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(2578), + [anon_sym_SEMI_SEMI] = ACTIONS(2582), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(2582), + [anon_sym_AMP] = ACTIONS(2580), + }, + [742] = { + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(2578), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), + }, + [743] = { + [anon_sym_SEMI] = ACTIONS(2584), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_SEMI_SEMI] = ACTIONS(2586), + [anon_sym_PIPE_AMP] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_BQUOTE] = ACTIONS(2578), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2586), + [anon_sym_AMP] = ACTIONS(2584), + }, + [744] = { + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(2584), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_SEMI_SEMI] = ACTIONS(2586), + [anon_sym_PIPE_AMP] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(2578), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(2586), + [anon_sym_AMP] = ACTIONS(2584), + }, + [745] = { + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(2588), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), + }, + [746] = { + [sym__concat] = ACTIONS(1959), + [anon_sym_in] = ACTIONS(1959), + [anon_sym_SEMI] = ACTIONS(1961), + [anon_sym_SEMI_SEMI] = ACTIONS(1959), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1959), + [anon_sym_AMP] = ACTIONS(1959), + }, + [747] = { + [anon_sym_SEMI] = ACTIONS(2590), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(2588), + [anon_sym_SEMI_SEMI] = ACTIONS(2592), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2592), + [anon_sym_AMP] = ACTIONS(2590), + }, + [748] = { + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(2590), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(2588), + [anon_sym_SEMI_SEMI] = ACTIONS(2592), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(2592), + [anon_sym_AMP] = ACTIONS(2590), + }, + [749] = { + [sym_compound_statement] = STATE(1231), + [anon_sym_LBRACE] = ACTIONS(595), + [sym_comment] = ACTIONS(55), + }, + [750] = { + [sym_file_descriptor] = ACTIONS(2594), + [ts_builtin_sym_end] = ACTIONS(2594), + [anon_sym_SEMI] = ACTIONS(2596), + [anon_sym_esac] = ACTIONS(2594), + [anon_sym_PIPE] = ACTIONS(2596), + [anon_sym_RPAREN] = ACTIONS(2594), + [anon_sym_SEMI_SEMI] = ACTIONS(2594), + [anon_sym_PIPE_AMP] = ACTIONS(2594), + [anon_sym_AMP_AMP] = ACTIONS(2594), + [anon_sym_PIPE_PIPE] = ACTIONS(2594), + [anon_sym_LT] = ACTIONS(2596), + [anon_sym_GT] = ACTIONS(2596), + [anon_sym_GT_GT] = ACTIONS(2594), + [anon_sym_AMP_GT] = ACTIONS(2596), + [anon_sym_AMP_GT_GT] = ACTIONS(2594), + [anon_sym_LT_AMP] = ACTIONS(2594), + [anon_sym_GT_AMP] = ACTIONS(2594), + [anon_sym_BQUOTE] = ACTIONS(2594), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2594), + [anon_sym_AMP] = ACTIONS(2596), + }, + [751] = { [anon_sym_SEMI] = ACTIONS(2598), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(2596), + [anon_sym_PIPE] = ACTIONS(529), [anon_sym_SEMI_SEMI] = ACTIONS(2600), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), + [anon_sym_PIPE_AMP] = ACTIONS(533), + [anon_sym_AMP_AMP] = ACTIONS(535), + [anon_sym_PIPE_PIPE] = ACTIONS(535), + [sym_comment] = ACTIONS(55), [anon_sym_LF] = ACTIONS(2600), [anon_sym_AMP] = ACTIONS(2598), }, - [735] = { - [anon_sym_AMP_AMP] = ACTIONS(2602), - [anon_sym_PIPE_PIPE] = ACTIONS(2602), - [anon_sym_RBRACK] = ACTIONS(2602), - [anon_sym_EQ_TILDE] = ACTIONS(2602), - [anon_sym_EQ_EQ] = ACTIONS(2602), - [anon_sym_EQ] = ACTIONS(2604), - [anon_sym_LT] = ACTIONS(2602), - [anon_sym_GT] = ACTIONS(2602), - [anon_sym_BANG_EQ] = ACTIONS(2602), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2602), - }, - [736] = { - [anon_sym_LT] = ACTIONS(2606), - [anon_sym_GT] = ACTIONS(2606), - [anon_sym_GT_GT] = ACTIONS(2608), - [anon_sym_AMP_GT] = ACTIONS(2606), - [anon_sym_AMP_GT_GT] = ACTIONS(2608), - [anon_sym_LT_AMP] = ACTIONS(2608), - [anon_sym_GT_AMP] = ACTIONS(2608), - [sym_comment] = ACTIONS(53), - }, - [737] = { - [sym_concatenation] = STATE(1186), - [sym_string] = STATE(1181), - [sym_simple_expansion] = STATE(1181), - [sym_string_expansion] = STATE(1181), - [sym_expansion] = STATE(1181), - [sym_command_substitution] = STATE(1181), - [sym_process_substitution] = STATE(1181), - [sym__special_characters] = ACTIONS(2610), - [anon_sym_DQUOTE] = ACTIONS(2612), - [anon_sym_DOLLAR] = ACTIONS(2614), - [sym_raw_string] = ACTIONS(2616), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2618), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2620), - [anon_sym_BQUOTE] = ACTIONS(2622), - [anon_sym_LT_LPAREN] = ACTIONS(2624), - [anon_sym_GT_LPAREN] = ACTIONS(2624), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2616), - }, - [738] = { - [sym_heredoc_start] = ACTIONS(2626), - [sym_comment] = ACTIONS(53), - }, - [739] = { - [sym_concatenation] = STATE(1190), - [sym_string] = STATE(1189), - [sym_simple_expansion] = STATE(1189), - [sym_string_expansion] = STATE(1189), - [sym_expansion] = STATE(1189), - [sym_command_substitution] = STATE(1189), - [sym_process_substitution] = STATE(1189), - [sym__special_characters] = ACTIONS(2628), - [anon_sym_DQUOTE] = ACTIONS(2612), - [anon_sym_DOLLAR] = ACTIONS(2614), - [sym_raw_string] = ACTIONS(2630), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2618), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2620), - [anon_sym_BQUOTE] = ACTIONS(2622), - [anon_sym_LT_LPAREN] = ACTIONS(2624), - [anon_sym_GT_LPAREN] = ACTIONS(2624), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2630), - }, - [740] = { - [sym_file_redirect] = STATE(1191), - [sym_heredoc_redirect] = STATE(1191), - [sym_herestring_redirect] = STATE(1191), - [aux_sym_while_statement_repeat1] = STATE(1191), - [sym_file_descriptor] = ACTIONS(1403), - [ts_builtin_sym_end] = ACTIONS(2632), - [anon_sym_SEMI] = ACTIONS(2634), - [anon_sym_PIPE] = ACTIONS(2634), - [anon_sym_SEMI_SEMI] = ACTIONS(2632), - [anon_sym_PIPE_AMP] = ACTIONS(2632), - [anon_sym_AMP_AMP] = ACTIONS(2632), - [anon_sym_PIPE_PIPE] = ACTIONS(2632), - [anon_sym_LT] = ACTIONS(1409), - [anon_sym_GT] = ACTIONS(1409), - [anon_sym_GT_GT] = ACTIONS(1411), - [anon_sym_AMP_GT] = ACTIONS(1409), - [anon_sym_AMP_GT_GT] = ACTIONS(1411), - [anon_sym_LT_AMP] = ACTIONS(1411), - [anon_sym_GT_AMP] = ACTIONS(1411), - [anon_sym_LT_LT] = ACTIONS(1413), - [anon_sym_LT_LT_DASH] = ACTIONS(1415), - [anon_sym_LT_LT_LT] = ACTIONS(1417), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(2632), - [anon_sym_AMP] = ACTIONS(2634), - }, - [741] = { - [anon_sym_AMP_AMP] = ACTIONS(2602), - [anon_sym_PIPE_PIPE] = ACTIONS(2602), - [anon_sym_RBRACK] = ACTIONS(2602), - [anon_sym_EQ_TILDE] = ACTIONS(2602), - [anon_sym_EQ_EQ] = ACTIONS(2602), - [anon_sym_EQ] = ACTIONS(2604), - [anon_sym_LT] = ACTIONS(2602), - [anon_sym_GT] = ACTIONS(2602), - [anon_sym_BANG_EQ] = ACTIONS(2602), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2602), - }, - [742] = { - [anon_sym_RPAREN] = ACTIONS(2547), - [anon_sym_AMP_AMP] = ACTIONS(2547), - [anon_sym_PIPE_PIPE] = ACTIONS(2547), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2547), - [anon_sym_EQ_TILDE] = ACTIONS(2547), - [anon_sym_EQ_EQ] = ACTIONS(2547), - [anon_sym_EQ] = ACTIONS(2549), - [anon_sym_LT] = ACTIONS(2547), - [anon_sym_GT] = ACTIONS(2547), - [anon_sym_BANG_EQ] = ACTIONS(2547), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2547), - }, - [743] = { - [sym__concat] = ACTIONS(1724), - [anon_sym_PIPE] = ACTIONS(1726), - [anon_sym_RPAREN] = ACTIONS(1724), - [anon_sym_AMP_AMP] = ACTIONS(1724), - [anon_sym_PIPE_PIPE] = ACTIONS(1724), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1724), - [anon_sym_EQ_TILDE] = ACTIONS(1724), - [anon_sym_EQ_EQ] = ACTIONS(1724), - [anon_sym_EQ] = ACTIONS(1726), - [anon_sym_LT] = ACTIONS(1724), - [anon_sym_GT] = ACTIONS(1724), - [anon_sym_BANG_EQ] = ACTIONS(1724), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1724), - }, - [744] = { - [aux_sym_concatenation_repeat1] = STATE(744), - [sym__concat] = ACTIONS(2636), - [anon_sym_AMP_AMP] = ACTIONS(1724), - [anon_sym_PIPE_PIPE] = ACTIONS(1724), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1724), - [anon_sym_EQ_TILDE] = ACTIONS(1724), - [anon_sym_EQ_EQ] = ACTIONS(1724), - [anon_sym_EQ] = ACTIONS(1726), - [anon_sym_LT] = ACTIONS(1724), - [anon_sym_GT] = ACTIONS(1724), - [anon_sym_BANG_EQ] = ACTIONS(1724), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1724), - }, - [745] = { - [sym__concat] = ACTIONS(1731), - [anon_sym_PIPE] = ACTIONS(1733), - [anon_sym_RPAREN] = ACTIONS(1731), - [anon_sym_AMP_AMP] = ACTIONS(1731), - [anon_sym_PIPE_PIPE] = ACTIONS(1731), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1731), - [anon_sym_EQ_TILDE] = ACTIONS(1731), - [anon_sym_EQ_EQ] = ACTIONS(1731), - [anon_sym_EQ] = ACTIONS(1733), - [anon_sym_LT] = ACTIONS(1731), - [anon_sym_GT] = ACTIONS(1731), - [anon_sym_BANG_EQ] = ACTIONS(1731), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1731), - }, - [746] = { - [anon_sym_DQUOTE] = ACTIONS(2639), - [anon_sym_DOLLAR] = ACTIONS(775), - [sym__string_content] = ACTIONS(777), - [anon_sym_POUND] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(781), - [anon_sym_STAR] = ACTIONS(783), - [anon_sym_AT] = ACTIONS(783), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_0] = ACTIONS(781), - [anon_sym__] = ACTIONS(781), - }, - [747] = { - [sym_concatenation] = STATE(1196), - [sym_string] = STATE(1195), - [sym_simple_expansion] = STATE(1195), - [sym_string_expansion] = STATE(1195), - [sym_expansion] = STATE(1195), - [sym_command_substitution] = STATE(1195), - [sym_process_substitution] = STATE(1195), - [anon_sym_RBRACE] = ACTIONS(2641), - [sym__special_characters] = ACTIONS(2643), - [anon_sym_DQUOTE] = ACTIONS(1802), - [anon_sym_DOLLAR] = ACTIONS(1804), - [sym_raw_string] = ACTIONS(2645), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1808), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1810), - [anon_sym_BQUOTE] = ACTIONS(1812), - [anon_sym_LT_LPAREN] = ACTIONS(1814), - [anon_sym_GT_LPAREN] = ACTIONS(1814), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2645), - }, - [748] = { - [anon_sym_LBRACK] = ACTIONS(815), - [anon_sym_EQ] = ACTIONS(2647), - [sym_comment] = ACTIONS(53), - }, - [749] = { - [sym_concatenation] = STATE(1200), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(1200), - [anon_sym_RBRACE] = ACTIONS(2649), - [anon_sym_EQ] = ACTIONS(2651), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(2653), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(2655), - [anon_sym_COLON] = ACTIONS(2651), - [anon_sym_COLON_QMARK] = ACTIONS(2651), - [anon_sym_COLON_DASH] = ACTIONS(2651), - [anon_sym_PERCENT] = ACTIONS(2651), - [anon_sym_DASH] = ACTIONS(2651), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [750] = { - [sym_concatenation] = STATE(1202), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(1202), - [anon_sym_RBRACE] = ACTIONS(2641), - [anon_sym_EQ] = ACTIONS(2657), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(2659), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(2661), - [anon_sym_COLON] = ACTIONS(2657), - [anon_sym_COLON_QMARK] = ACTIONS(2657), - [anon_sym_COLON_DASH] = ACTIONS(2657), - [anon_sym_PERCENT] = ACTIONS(2657), - [anon_sym_DASH] = ACTIONS(2657), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [751] = { - [sym__concat] = ACTIONS(1832), - [anon_sym_PIPE] = ACTIONS(1834), - [anon_sym_RPAREN] = ACTIONS(1832), - [anon_sym_AMP_AMP] = ACTIONS(1832), - [anon_sym_PIPE_PIPE] = ACTIONS(1832), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1832), - [anon_sym_EQ_TILDE] = ACTIONS(1832), - [anon_sym_EQ_EQ] = ACTIONS(1832), - [anon_sym_EQ] = ACTIONS(1834), - [anon_sym_LT] = ACTIONS(1832), - [anon_sym_GT] = ACTIONS(1832), - [anon_sym_BANG_EQ] = ACTIONS(1832), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1832), - }, [752] = { - [sym_comment] = ACTIONS(265), - [sym_regex_without_right_brace] = ACTIONS(2663), + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(2598), + [anon_sym_PIPE] = ACTIONS(529), + [anon_sym_SEMI_SEMI] = ACTIONS(2600), + [anon_sym_PIPE_AMP] = ACTIONS(533), + [anon_sym_AMP_AMP] = ACTIONS(535), + [anon_sym_PIPE_PIPE] = ACTIONS(535), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(2600), + [anon_sym_AMP] = ACTIONS(2598), }, [753] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(2665), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym__terminated_statement] = STATE(1234), + [sym_for_statement] = STATE(751), + [sym_c_style_for_statement] = STATE(751), + [sym_while_statement] = STATE(751), + [sym_if_statement] = STATE(751), + [sym_case_statement] = STATE(751), + [sym_function_definition] = STATE(751), + [sym_subshell] = STATE(751), + [sym_pipeline] = STATE(751), + [sym_list] = STATE(751), + [sym_negated_command] = STATE(751), + [sym_test_command] = STATE(751), + [sym_declaration_command] = STATE(751), + [sym_unset_command] = STATE(751), + [sym_command] = STATE(751), + [sym_command_name] = STATE(64), + [sym_variable_assignment] = STATE(752), + [sym_subscript] = STATE(66), + [sym_file_redirect] = STATE(67), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(60), + [sym_simple_expansion] = STATE(60), + [sym_string_expansion] = STATE(60), + [sym_expansion] = STATE(60), + [sym_command_substitution] = STATE(60), + [sym_process_substitution] = STATE(60), + [aux_sym__statements_repeat1] = STATE(1234), + [aux_sym_command_repeat1] = STATE(67), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(95), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(97), + [anon_sym_while] = ACTIONS(99), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(101), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(2602), + [anon_sym_BANG] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_LBRACK] = ACTIONS(107), + [anon_sym_declare] = ACTIONS(109), + [anon_sym_typeset] = ACTIONS(109), + [anon_sym_export] = ACTIONS(109), + [anon_sym_readonly] = ACTIONS(109), + [anon_sym_local] = ACTIONS(109), + [anon_sym_unset] = ACTIONS(111), + [anon_sym_unsetenv] = ACTIONS(111), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(115), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(117), }, [754] = { - [sym__concat] = ACTIONS(1876), - [anon_sym_PIPE] = ACTIONS(1878), - [anon_sym_RPAREN] = ACTIONS(1876), - [anon_sym_AMP_AMP] = ACTIONS(1876), - [anon_sym_PIPE_PIPE] = ACTIONS(1876), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1876), - [anon_sym_EQ_TILDE] = ACTIONS(1876), - [anon_sym_EQ_EQ] = ACTIONS(1876), - [anon_sym_EQ] = ACTIONS(1878), - [anon_sym_LT] = ACTIONS(1876), - [anon_sym_GT] = ACTIONS(1876), - [anon_sym_BANG_EQ] = ACTIONS(1876), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1876), + [anon_sym_LT] = ACTIONS(2604), + [anon_sym_GT] = ACTIONS(2604), + [anon_sym_GT_GT] = ACTIONS(2606), + [anon_sym_AMP_GT] = ACTIONS(2604), + [anon_sym_AMP_GT_GT] = ACTIONS(2606), + [anon_sym_LT_AMP] = ACTIONS(2606), + [anon_sym_GT_AMP] = ACTIONS(2606), + [sym_comment] = ACTIONS(55), }, [755] = { - [sym_comment] = ACTIONS(265), - [sym_regex_without_right_brace] = ACTIONS(2667), + [sym_concatenation] = STATE(1238), + [sym_string] = STATE(1237), + [sym_simple_expansion] = STATE(1237), + [sym_string_expansion] = STATE(1237), + [sym_expansion] = STATE(1237), + [sym_command_substitution] = STATE(1237), + [sym_process_substitution] = STATE(1237), + [sym__special_characters] = ACTIONS(2608), + [anon_sym_DQUOTE] = ACTIONS(229), + [anon_sym_DOLLAR] = ACTIONS(231), + [sym_raw_string] = ACTIONS(2610), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), + [anon_sym_BQUOTE] = ACTIONS(239), + [anon_sym_LT_LPAREN] = ACTIONS(241), + [anon_sym_GT_LPAREN] = ACTIONS(241), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(2610), }, [756] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(2641), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [ts_builtin_sym_end] = ACTIONS(2612), + [anon_sym_SEMI] = ACTIONS(2614), + [anon_sym_esac] = ACTIONS(2612), + [anon_sym_PIPE] = ACTIONS(2614), + [anon_sym_RPAREN] = ACTIONS(2612), + [anon_sym_SEMI_SEMI] = ACTIONS(2612), + [anon_sym_PIPE_AMP] = ACTIONS(2612), + [anon_sym_AMP_AMP] = ACTIONS(2612), + [anon_sym_PIPE_PIPE] = ACTIONS(2612), + [anon_sym_BQUOTE] = ACTIONS(2612), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2612), + [anon_sym_AMP] = ACTIONS(2614), }, [757] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(2669), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(901), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), + [aux_sym_concatenation_repeat1] = STATE(1239), + [sym_file_descriptor] = ACTIONS(1128), + [sym__concat] = ACTIONS(1130), + [sym_variable_name] = ACTIONS(1128), + [anon_sym_SEMI] = ACTIONS(1132), + [anon_sym_PIPE] = ACTIONS(1132), + [anon_sym_RPAREN] = ACTIONS(1128), + [anon_sym_SEMI_SEMI] = ACTIONS(1128), + [anon_sym_PIPE_AMP] = ACTIONS(1128), + [anon_sym_AMP_AMP] = ACTIONS(1128), + [anon_sym_PIPE_PIPE] = ACTIONS(1128), + [anon_sym_LT] = ACTIONS(1132), + [anon_sym_GT] = ACTIONS(1132), + [anon_sym_GT_GT] = ACTIONS(1128), + [anon_sym_AMP_GT] = ACTIONS(1132), + [anon_sym_AMP_GT_GT] = ACTIONS(1128), + [anon_sym_LT_AMP] = ACTIONS(1128), + [anon_sym_GT_AMP] = ACTIONS(1128), + [sym__special_characters] = ACTIONS(1128), + [anon_sym_DQUOTE] = ACTIONS(1128), + [anon_sym_DOLLAR] = ACTIONS(1132), + [sym_raw_string] = ACTIONS(1128), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1128), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1128), + [anon_sym_BQUOTE] = ACTIONS(1128), + [anon_sym_LT_LPAREN] = ACTIONS(1128), + [anon_sym_GT_LPAREN] = ACTIONS(1128), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1132), + [anon_sym_LF] = ACTIONS(1128), + [anon_sym_AMP] = ACTIONS(1132), }, [758] = { - [sym__concat] = ACTIONS(1884), - [anon_sym_PIPE] = ACTIONS(1886), - [anon_sym_RPAREN] = ACTIONS(1884), - [anon_sym_AMP_AMP] = ACTIONS(1884), - [anon_sym_PIPE_PIPE] = ACTIONS(1884), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1884), - [anon_sym_EQ_TILDE] = ACTIONS(1884), - [anon_sym_EQ_EQ] = ACTIONS(1884), - [anon_sym_EQ] = ACTIONS(1886), - [anon_sym_LT] = ACTIONS(1884), - [anon_sym_GT] = ACTIONS(1884), - [anon_sym_BANG_EQ] = ACTIONS(1884), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1884), + [aux_sym_concatenation_repeat1] = STATE(1239), + [sym_file_descriptor] = ACTIONS(1106), + [sym__concat] = ACTIONS(1130), + [sym_variable_name] = ACTIONS(1106), + [anon_sym_SEMI] = ACTIONS(1108), + [anon_sym_PIPE] = ACTIONS(1108), + [anon_sym_RPAREN] = ACTIONS(1106), + [anon_sym_SEMI_SEMI] = ACTIONS(1106), + [anon_sym_PIPE_AMP] = ACTIONS(1106), + [anon_sym_AMP_AMP] = ACTIONS(1106), + [anon_sym_PIPE_PIPE] = ACTIONS(1106), + [anon_sym_LT] = ACTIONS(1108), + [anon_sym_GT] = ACTIONS(1108), + [anon_sym_GT_GT] = ACTIONS(1106), + [anon_sym_AMP_GT] = ACTIONS(1108), + [anon_sym_AMP_GT_GT] = ACTIONS(1106), + [anon_sym_LT_AMP] = ACTIONS(1106), + [anon_sym_GT_AMP] = ACTIONS(1106), + [sym__special_characters] = ACTIONS(1106), + [anon_sym_DQUOTE] = ACTIONS(1106), + [anon_sym_DOLLAR] = ACTIONS(1108), + [sym_raw_string] = ACTIONS(1106), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1106), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1106), + [anon_sym_BQUOTE] = ACTIONS(1106), + [anon_sym_LT_LPAREN] = ACTIONS(1106), + [anon_sym_GT_LPAREN] = ACTIONS(1106), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1108), + [anon_sym_LF] = ACTIONS(1106), + [anon_sym_AMP] = ACTIONS(1108), }, [759] = { - [anon_sym_SEMI] = ACTIONS(2671), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(2669), - [anon_sym_SEMI_SEMI] = ACTIONS(2673), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(2673), - [anon_sym_AMP] = ACTIONS(2671), + [sym_file_redirect] = STATE(1243), + [sym_heredoc_redirect] = STATE(1243), + [sym_herestring_redirect] = STATE(1243), + [aux_sym_while_statement_repeat1] = STATE(1243), + [sym_file_descriptor] = ACTIONS(2616), + [anon_sym_SEMI] = ACTIONS(1302), + [anon_sym_PIPE] = ACTIONS(1302), + [anon_sym_RPAREN] = ACTIONS(1300), + [anon_sym_SEMI_SEMI] = ACTIONS(1300), + [anon_sym_PIPE_AMP] = ACTIONS(1300), + [anon_sym_AMP_AMP] = ACTIONS(1300), + [anon_sym_PIPE_PIPE] = ACTIONS(1300), + [anon_sym_LT] = ACTIONS(2618), + [anon_sym_GT] = ACTIONS(2618), + [anon_sym_GT_GT] = ACTIONS(2620), + [anon_sym_AMP_GT] = ACTIONS(2618), + [anon_sym_AMP_GT_GT] = ACTIONS(2620), + [anon_sym_LT_AMP] = ACTIONS(2620), + [anon_sym_GT_AMP] = ACTIONS(2620), + [anon_sym_LT_LT] = ACTIONS(1308), + [anon_sym_LT_LT_DASH] = ACTIONS(1310), + [anon_sym_LT_LT_LT] = ACTIONS(2622), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1302), }, [760] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(2671), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(2669), - [anon_sym_SEMI_SEMI] = ACTIONS(2673), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(2673), - [anon_sym_AMP] = ACTIONS(2671), + [sym_file_redirect] = STATE(1244), + [sym_heredoc_redirect] = STATE(1244), + [sym_heredoc_body] = STATE(699), + [sym_herestring_redirect] = STATE(1244), + [aux_sym_while_statement_repeat1] = STATE(1244), + [sym__simple_heredoc_body] = ACTIONS(339), + [sym__heredoc_body_beginning] = ACTIONS(341), + [sym_file_descriptor] = ACTIONS(633), + [anon_sym_SEMI] = ACTIONS(1340), + [anon_sym_PIPE] = ACTIONS(1340), + [anon_sym_RPAREN] = ACTIONS(1338), + [anon_sym_SEMI_SEMI] = ACTIONS(1338), + [anon_sym_PIPE_AMP] = ACTIONS(1338), + [anon_sym_AMP_AMP] = ACTIONS(1338), + [anon_sym_PIPE_PIPE] = ACTIONS(1338), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_GT] = ACTIONS(637), + [anon_sym_GT_GT] = ACTIONS(639), + [anon_sym_AMP_GT] = ACTIONS(637), + [anon_sym_AMP_GT_GT] = ACTIONS(639), + [anon_sym_LT_AMP] = ACTIONS(639), + [anon_sym_GT_AMP] = ACTIONS(639), + [anon_sym_LT_LT] = ACTIONS(355), + [anon_sym_LT_LT_DASH] = ACTIONS(357), + [anon_sym_LT_LT_LT] = ACTIONS(641), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1338), + [anon_sym_AMP] = ACTIONS(1340), }, [761] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(2669), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), + [anon_sym_RPAREN] = ACTIONS(2624), + [sym_comment] = ACTIONS(55), }, [762] = { - [anon_sym_SEMI] = ACTIONS(2675), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_SEMI_SEMI] = ACTIONS(2677), - [anon_sym_PIPE_AMP] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(883), - [anon_sym_PIPE_PIPE] = ACTIONS(883), - [anon_sym_BQUOTE] = ACTIONS(2669), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(2677), - [anon_sym_AMP] = ACTIONS(2675), + [sym_file_redirect] = STATE(756), + [sym_file_descriptor] = ACTIONS(2626), + [anon_sym_SEMI] = ACTIONS(1432), + [anon_sym_PIPE] = ACTIONS(1432), + [anon_sym_RPAREN] = ACTIONS(1430), + [anon_sym_SEMI_SEMI] = ACTIONS(1430), + [anon_sym_PIPE_AMP] = ACTIONS(1430), + [anon_sym_AMP_AMP] = ACTIONS(1430), + [anon_sym_PIPE_PIPE] = ACTIONS(1430), + [anon_sym_LT] = ACTIONS(2628), + [anon_sym_GT] = ACTIONS(2628), + [anon_sym_GT_GT] = ACTIONS(2630), + [anon_sym_AMP_GT] = ACTIONS(2628), + [anon_sym_AMP_GT_GT] = ACTIONS(2630), + [anon_sym_LT_AMP] = ACTIONS(2630), + [anon_sym_GT_AMP] = ACTIONS(2630), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1430), + [anon_sym_AMP] = ACTIONS(1432), }, [763] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(2675), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_SEMI_SEMI] = ACTIONS(2677), - [anon_sym_PIPE_AMP] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(883), - [anon_sym_PIPE_PIPE] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(2669), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(2677), - [anon_sym_AMP] = ACTIONS(2675), + [sym_concatenation] = STATE(818), + [sym_string] = STATE(1249), + [sym_array] = STATE(818), + [sym_simple_expansion] = STATE(1249), + [sym_string_expansion] = STATE(1249), + [sym_expansion] = STATE(1249), + [sym_command_substitution] = STATE(1249), + [sym_process_substitution] = STATE(1249), + [sym__empty_value] = ACTIONS(1540), + [anon_sym_LPAREN] = ACTIONS(1542), + [sym__special_characters] = ACTIONS(2632), + [anon_sym_DQUOTE] = ACTIONS(205), + [anon_sym_DOLLAR] = ACTIONS(207), + [sym_raw_string] = ACTIONS(2634), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_LT_LPAREN] = ACTIONS(217), + [anon_sym_GT_LPAREN] = ACTIONS(217), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(2634), }, [764] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(2679), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(901), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), + [aux_sym_concatenation_repeat1] = STATE(1250), + [sym__concat] = ACTIONS(697), + [sym_variable_name] = ACTIONS(807), + [anon_sym_SEMI] = ACTIONS(809), + [anon_sym_PIPE] = ACTIONS(809), + [anon_sym_RPAREN] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(807), + [anon_sym_PIPE_AMP] = ACTIONS(807), + [anon_sym_AMP_AMP] = ACTIONS(807), + [anon_sym_PIPE_PIPE] = ACTIONS(807), + [sym__special_characters] = ACTIONS(807), + [anon_sym_DQUOTE] = ACTIONS(807), + [anon_sym_DOLLAR] = ACTIONS(809), + [sym_raw_string] = ACTIONS(807), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(807), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(807), + [anon_sym_BQUOTE] = ACTIONS(807), + [anon_sym_LT_LPAREN] = ACTIONS(807), + [anon_sym_GT_LPAREN] = ACTIONS(807), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(809), + [sym_word] = ACTIONS(809), + [anon_sym_LF] = ACTIONS(807), + [anon_sym_AMP] = ACTIONS(809), }, [765] = { - [sym__concat] = ACTIONS(1916), - [anon_sym_PIPE] = ACTIONS(1918), - [anon_sym_RPAREN] = ACTIONS(1916), - [anon_sym_AMP_AMP] = ACTIONS(1916), - [anon_sym_PIPE_PIPE] = ACTIONS(1916), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1916), - [anon_sym_EQ_TILDE] = ACTIONS(1916), - [anon_sym_EQ_EQ] = ACTIONS(1916), - [anon_sym_EQ] = ACTIONS(1918), - [anon_sym_LT] = ACTIONS(1916), - [anon_sym_GT] = ACTIONS(1916), - [anon_sym_BANG_EQ] = ACTIONS(1916), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1916), + [sym_variable_assignment] = STATE(765), + [sym_subscript] = STATE(336), + [sym_concatenation] = STATE(765), + [sym_string] = STATE(335), + [sym_simple_expansion] = STATE(335), + [sym_string_expansion] = STATE(335), + [sym_expansion] = STATE(335), + [sym_command_substitution] = STATE(335), + [sym_process_substitution] = STATE(335), + [aux_sym_declaration_command_repeat1] = STATE(765), + [sym_variable_name] = ACTIONS(2636), + [anon_sym_SEMI] = ACTIONS(1601), + [anon_sym_PIPE] = ACTIONS(1601), + [anon_sym_RPAREN] = ACTIONS(1599), + [anon_sym_SEMI_SEMI] = ACTIONS(1599), + [anon_sym_PIPE_AMP] = ACTIONS(1599), + [anon_sym_AMP_AMP] = ACTIONS(1599), + [anon_sym_PIPE_PIPE] = ACTIONS(1599), + [sym__special_characters] = ACTIONS(2639), + [anon_sym_DQUOTE] = ACTIONS(1606), + [anon_sym_DOLLAR] = ACTIONS(1609), + [sym_raw_string] = ACTIONS(2642), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1615), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1618), + [anon_sym_BQUOTE] = ACTIONS(1621), + [anon_sym_LT_LPAREN] = ACTIONS(1624), + [anon_sym_GT_LPAREN] = ACTIONS(1624), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2645), + [sym_word] = ACTIONS(2648), + [anon_sym_LF] = ACTIONS(1599), + [anon_sym_AMP] = ACTIONS(1601), }, [766] = { - [anon_sym_SEMI] = ACTIONS(2681), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(2679), - [anon_sym_SEMI_SEMI] = ACTIONS(2683), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(2683), - [anon_sym_AMP] = ACTIONS(2681), + [aux_sym_concatenation_repeat1] = STATE(1251), + [sym__concat] = ACTIONS(735), + [anon_sym_SEMI] = ACTIONS(809), + [anon_sym_PIPE] = ACTIONS(809), + [anon_sym_RPAREN] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(807), + [anon_sym_PIPE_AMP] = ACTIONS(807), + [anon_sym_AMP_AMP] = ACTIONS(807), + [anon_sym_PIPE_PIPE] = ACTIONS(807), + [sym__special_characters] = ACTIONS(807), + [anon_sym_DQUOTE] = ACTIONS(807), + [anon_sym_DOLLAR] = ACTIONS(809), + [sym_raw_string] = ACTIONS(807), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(807), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(807), + [anon_sym_BQUOTE] = ACTIONS(807), + [anon_sym_LT_LPAREN] = ACTIONS(807), + [anon_sym_GT_LPAREN] = ACTIONS(807), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(809), + [sym_word] = ACTIONS(809), + [anon_sym_LF] = ACTIONS(807), + [anon_sym_AMP] = ACTIONS(809), }, [767] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(2681), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(2679), - [anon_sym_SEMI_SEMI] = ACTIONS(2683), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(2683), - [anon_sym_AMP] = ACTIONS(2681), + [sym_concatenation] = STATE(767), + [sym_string] = STATE(339), + [sym_simple_expansion] = STATE(339), + [sym_string_expansion] = STATE(339), + [sym_expansion] = STATE(339), + [sym_command_substitution] = STATE(339), + [sym_process_substitution] = STATE(339), + [aux_sym_unset_command_repeat1] = STATE(767), + [anon_sym_SEMI] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1683), + [anon_sym_RPAREN] = ACTIONS(1681), + [anon_sym_SEMI_SEMI] = ACTIONS(1681), + [anon_sym_PIPE_AMP] = ACTIONS(1681), + [anon_sym_AMP_AMP] = ACTIONS(1681), + [anon_sym_PIPE_PIPE] = ACTIONS(1681), + [sym__special_characters] = ACTIONS(2651), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_DOLLAR] = ACTIONS(1691), + [sym_raw_string] = ACTIONS(2654), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1697), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1700), + [anon_sym_BQUOTE] = ACTIONS(1703), + [anon_sym_LT_LPAREN] = ACTIONS(1706), + [anon_sym_GT_LPAREN] = ACTIONS(1706), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2657), + [sym_word] = ACTIONS(2660), + [anon_sym_LF] = ACTIONS(1681), + [anon_sym_AMP] = ACTIONS(1683), }, [768] = { - [anon_sym_RPAREN] = ACTIONS(2602), - [anon_sym_AMP_AMP] = ACTIONS(2602), - [anon_sym_PIPE_PIPE] = ACTIONS(2602), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2602), - [anon_sym_EQ_TILDE] = ACTIONS(2602), - [anon_sym_EQ_EQ] = ACTIONS(2602), - [anon_sym_EQ] = ACTIONS(2604), - [anon_sym_LT] = ACTIONS(2602), - [anon_sym_GT] = ACTIONS(2602), - [anon_sym_BANG_EQ] = ACTIONS(2602), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2602), + [aux_sym_concatenation_repeat1] = STATE(768), + [sym__simple_heredoc_body] = ACTIONS(1763), + [sym__heredoc_body_beginning] = ACTIONS(1763), + [sym_file_descriptor] = ACTIONS(1763), + [sym__concat] = ACTIONS(1767), + [anon_sym_SEMI] = ACTIONS(1765), + [anon_sym_PIPE] = ACTIONS(1765), + [anon_sym_RPAREN] = ACTIONS(1763), + [anon_sym_SEMI_SEMI] = ACTIONS(1763), + [anon_sym_PIPE_AMP] = ACTIONS(1763), + [anon_sym_AMP_AMP] = ACTIONS(1763), + [anon_sym_PIPE_PIPE] = ACTIONS(1763), + [anon_sym_EQ_TILDE] = ACTIONS(1765), + [anon_sym_EQ_EQ] = ACTIONS(1765), + [anon_sym_LT] = ACTIONS(1765), + [anon_sym_GT] = ACTIONS(1765), + [anon_sym_GT_GT] = ACTIONS(1763), + [anon_sym_AMP_GT] = ACTIONS(1765), + [anon_sym_AMP_GT_GT] = ACTIONS(1763), + [anon_sym_LT_AMP] = ACTIONS(1763), + [anon_sym_GT_AMP] = ACTIONS(1763), + [anon_sym_LT_LT] = ACTIONS(1765), + [anon_sym_LT_LT_DASH] = ACTIONS(1763), + [anon_sym_LT_LT_LT] = ACTIONS(1763), + [sym__special_characters] = ACTIONS(1763), + [anon_sym_DQUOTE] = ACTIONS(1763), + [anon_sym_DOLLAR] = ACTIONS(1765), + [sym_raw_string] = ACTIONS(1763), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1763), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1763), + [anon_sym_BQUOTE] = ACTIONS(1763), + [anon_sym_LT_LPAREN] = ACTIONS(1763), + [anon_sym_GT_LPAREN] = ACTIONS(1763), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1765), + [anon_sym_LF] = ACTIONS(1763), + [anon_sym_AMP] = ACTIONS(1765), }, [769] = { - [anon_sym_RPAREN] = ACTIONS(2602), - [anon_sym_AMP_AMP] = ACTIONS(2602), - [anon_sym_PIPE_PIPE] = ACTIONS(2602), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2602), - [anon_sym_EQ_TILDE] = ACTIONS(2602), - [anon_sym_EQ_EQ] = ACTIONS(2602), - [anon_sym_EQ] = ACTIONS(2604), - [anon_sym_LT] = ACTIONS(2602), - [anon_sym_GT] = ACTIONS(2602), - [anon_sym_BANG_EQ] = ACTIONS(2602), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2602), + [sym_compound_statement] = STATE(1252), + [anon_sym_LBRACE] = ACTIONS(595), + [sym_comment] = ACTIONS(55), }, [770] = { - [sym_variable_name] = ACTIONS(1071), - [ts_builtin_sym_end] = ACTIONS(1071), - [anon_sym_SEMI] = ACTIONS(1073), - [anon_sym_PIPE] = ACTIONS(1073), - [anon_sym_RPAREN] = ACTIONS(1071), - [anon_sym_SEMI_SEMI] = ACTIONS(1071), - [anon_sym_PIPE_AMP] = ACTIONS(1071), - [anon_sym_AMP_AMP] = ACTIONS(1071), - [anon_sym_PIPE_PIPE] = ACTIONS(1071), - [sym__special_characters] = ACTIONS(1071), - [anon_sym_DQUOTE] = ACTIONS(1071), - [anon_sym_DOLLAR] = ACTIONS(1073), - [sym_raw_string] = ACTIONS(1071), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1071), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1071), - [anon_sym_BQUOTE] = ACTIONS(1071), - [anon_sym_LT_LPAREN] = ACTIONS(1071), - [anon_sym_GT_LPAREN] = ACTIONS(1071), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1073), - [sym_word] = ACTIONS(1073), - [anon_sym_LF] = ACTIONS(1071), - [anon_sym_AMP] = ACTIONS(1073), + [ts_builtin_sym_end] = ACTIONS(2663), + [anon_sym_SEMI] = ACTIONS(2665), + [anon_sym_esac] = ACTIONS(2663), + [anon_sym_PIPE] = ACTIONS(2665), + [anon_sym_RPAREN] = ACTIONS(2663), + [anon_sym_SEMI_SEMI] = ACTIONS(2663), + [anon_sym_PIPE_AMP] = ACTIONS(2663), + [anon_sym_AMP_AMP] = ACTIONS(2663), + [anon_sym_PIPE_PIPE] = ACTIONS(2663), + [anon_sym_BQUOTE] = ACTIONS(2663), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2663), + [anon_sym_AMP] = ACTIONS(2665), }, [771] = { - [sym_concatenation] = STATE(1212), - [sym_string] = STATE(534), - [sym_simple_expansion] = STATE(534), - [sym_string_expansion] = STATE(534), - [sym_expansion] = STATE(534), - [sym_command_substitution] = STATE(534), - [sym_process_substitution] = STATE(534), - [aux_sym_for_statement_repeat1] = STATE(1212), - [anon_sym_RPAREN] = ACTIONS(2685), - [sym__special_characters] = ACTIONS(1077), - [anon_sym_DQUOTE] = ACTIONS(1079), - [anon_sym_DOLLAR] = ACTIONS(1081), - [sym_raw_string] = ACTIONS(1083), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1085), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1087), - [anon_sym_BQUOTE] = ACTIONS(1089), - [anon_sym_LT_LPAREN] = ACTIONS(1091), - [anon_sym_GT_LPAREN] = ACTIONS(1091), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1083), + [anon_sym_SEMI] = ACTIONS(1973), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(1971), + [anon_sym_SEMI_SEMI] = ACTIONS(1971), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(1971), + [anon_sym_PIPE_PIPE] = ACTIONS(1971), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1971), + [anon_sym_AMP] = ACTIONS(1973), }, [772] = { - [aux_sym_concatenation_repeat1] = STATE(368), - [sym__concat] = ACTIONS(655), - [sym_variable_name] = ACTIONS(1093), - [ts_builtin_sym_end] = ACTIONS(1093), - [anon_sym_SEMI] = ACTIONS(1097), - [anon_sym_PIPE] = ACTIONS(1097), - [anon_sym_SEMI_SEMI] = ACTIONS(1093), - [anon_sym_PIPE_AMP] = ACTIONS(1093), - [anon_sym_AMP_AMP] = ACTIONS(1093), - [anon_sym_PIPE_PIPE] = ACTIONS(1093), - [sym__special_characters] = ACTIONS(1093), - [anon_sym_DQUOTE] = ACTIONS(1093), - [anon_sym_DOLLAR] = ACTIONS(1097), - [sym_raw_string] = ACTIONS(1093), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1093), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1093), - [anon_sym_BQUOTE] = ACTIONS(1093), - [anon_sym_LT_LPAREN] = ACTIONS(1093), - [anon_sym_GT_LPAREN] = ACTIONS(1093), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1097), - [sym_word] = ACTIONS(1097), - [anon_sym_LF] = ACTIONS(1093), - [anon_sym_AMP] = ACTIONS(1097), + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(1973), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(1971), + [anon_sym_SEMI_SEMI] = ACTIONS(1971), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(1971), + [anon_sym_PIPE_PIPE] = ACTIONS(1971), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(1971), + [anon_sym_AMP] = ACTIONS(1973), }, [773] = { - [aux_sym_concatenation_repeat1] = STATE(368), - [sym__concat] = ACTIONS(655), - [sym_variable_name] = ACTIONS(1071), - [ts_builtin_sym_end] = ACTIONS(1071), - [anon_sym_SEMI] = ACTIONS(1073), - [anon_sym_PIPE] = ACTIONS(1073), - [anon_sym_SEMI_SEMI] = ACTIONS(1071), - [anon_sym_PIPE_AMP] = ACTIONS(1071), - [anon_sym_AMP_AMP] = ACTIONS(1071), - [anon_sym_PIPE_PIPE] = ACTIONS(1071), - [sym__special_characters] = ACTIONS(1071), - [anon_sym_DQUOTE] = ACTIONS(1071), - [anon_sym_DOLLAR] = ACTIONS(1073), - [sym_raw_string] = ACTIONS(1071), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1071), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1071), - [anon_sym_BQUOTE] = ACTIONS(1071), - [anon_sym_LT_LPAREN] = ACTIONS(1071), - [anon_sym_GT_LPAREN] = ACTIONS(1071), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1073), - [sym_word] = ACTIONS(1073), - [anon_sym_LF] = ACTIONS(1071), - [anon_sym_AMP] = ACTIONS(1073), - }, - [774] = { - [sym__concat] = ACTIONS(1724), - [sym_variable_name] = ACTIONS(1724), - [ts_builtin_sym_end] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(1726), - [anon_sym_RPAREN] = ACTIONS(1724), - [anon_sym_SEMI_SEMI] = ACTIONS(1724), - [anon_sym_PIPE_AMP] = ACTIONS(1724), - [anon_sym_AMP_AMP] = ACTIONS(1724), - [anon_sym_PIPE_PIPE] = ACTIONS(1724), - [sym__special_characters] = ACTIONS(1724), - [anon_sym_DQUOTE] = ACTIONS(1724), - [anon_sym_DOLLAR] = ACTIONS(1726), - [sym_raw_string] = ACTIONS(1724), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1724), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1724), - [anon_sym_BQUOTE] = ACTIONS(1724), - [anon_sym_LT_LPAREN] = ACTIONS(1724), - [anon_sym_GT_LPAREN] = ACTIONS(1724), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1726), - [sym_word] = ACTIONS(1726), - [anon_sym_LF] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1726), - }, - [775] = { - [aux_sym_concatenation_repeat1] = STATE(775), - [sym__concat] = ACTIONS(2687), - [sym_variable_name] = ACTIONS(1724), - [ts_builtin_sym_end] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(1726), - [anon_sym_SEMI_SEMI] = ACTIONS(1724), - [anon_sym_PIPE_AMP] = ACTIONS(1724), - [anon_sym_AMP_AMP] = ACTIONS(1724), - [anon_sym_PIPE_PIPE] = ACTIONS(1724), - [sym__special_characters] = ACTIONS(1724), - [anon_sym_DQUOTE] = ACTIONS(1724), - [anon_sym_DOLLAR] = ACTIONS(1726), - [sym_raw_string] = ACTIONS(1724), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1724), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1724), - [anon_sym_BQUOTE] = ACTIONS(1724), - [anon_sym_LT_LPAREN] = ACTIONS(1724), - [anon_sym_GT_LPAREN] = ACTIONS(1724), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1726), - [sym_word] = ACTIONS(1726), - [anon_sym_LF] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1726), - }, - [776] = { - [sym__concat] = ACTIONS(1731), - [sym_variable_name] = ACTIONS(1731), - [ts_builtin_sym_end] = ACTIONS(1731), - [anon_sym_SEMI] = ACTIONS(1733), - [anon_sym_PIPE] = ACTIONS(1733), - [anon_sym_RPAREN] = ACTIONS(1731), - [anon_sym_SEMI_SEMI] = ACTIONS(1731), - [anon_sym_PIPE_AMP] = ACTIONS(1731), - [anon_sym_AMP_AMP] = ACTIONS(1731), - [anon_sym_PIPE_PIPE] = ACTIONS(1731), - [sym__special_characters] = ACTIONS(1731), - [anon_sym_DQUOTE] = ACTIONS(1731), - [anon_sym_DOLLAR] = ACTIONS(1733), - [sym_raw_string] = ACTIONS(1731), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1731), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1731), - [anon_sym_BQUOTE] = ACTIONS(1731), - [anon_sym_LT_LPAREN] = ACTIONS(1731), - [anon_sym_GT_LPAREN] = ACTIONS(1731), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1733), - [sym_word] = ACTIONS(1733), - [anon_sym_LF] = ACTIONS(1731), - [anon_sym_AMP] = ACTIONS(1733), - }, - [777] = { - [anon_sym_DQUOTE] = ACTIONS(2690), - [anon_sym_DOLLAR] = ACTIONS(775), - [sym__string_content] = ACTIONS(777), - [anon_sym_POUND] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(781), - [anon_sym_STAR] = ACTIONS(783), - [anon_sym_AT] = ACTIONS(783), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_0] = ACTIONS(781), - [anon_sym__] = ACTIONS(781), - }, - [778] = { - [sym_concatenation] = STATE(1217), - [sym_string] = STATE(1216), - [sym_simple_expansion] = STATE(1216), - [sym_string_expansion] = STATE(1216), - [sym_expansion] = STATE(1216), - [sym_command_substitution] = STATE(1216), - [sym_process_substitution] = STATE(1216), - [anon_sym_RBRACE] = ACTIONS(2692), - [sym__special_characters] = ACTIONS(2694), - [anon_sym_DQUOTE] = ACTIONS(1802), - [anon_sym_DOLLAR] = ACTIONS(1804), - [sym_raw_string] = ACTIONS(2696), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1808), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1810), - [anon_sym_BQUOTE] = ACTIONS(1812), - [anon_sym_LT_LPAREN] = ACTIONS(1814), - [anon_sym_GT_LPAREN] = ACTIONS(1814), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2696), - }, - [779] = { - [anon_sym_LBRACK] = ACTIONS(815), - [anon_sym_EQ] = ACTIONS(2698), - [sym_comment] = ACTIONS(53), - }, - [780] = { - [sym_concatenation] = STATE(1221), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(1221), - [anon_sym_RBRACE] = ACTIONS(2700), - [anon_sym_EQ] = ACTIONS(2702), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(2704), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(2706), - [anon_sym_COLON] = ACTIONS(2702), - [anon_sym_COLON_QMARK] = ACTIONS(2702), - [anon_sym_COLON_DASH] = ACTIONS(2702), - [anon_sym_PERCENT] = ACTIONS(2702), - [anon_sym_DASH] = ACTIONS(2702), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [781] = { - [sym_concatenation] = STATE(1223), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(1223), - [anon_sym_RBRACE] = ACTIONS(2692), - [anon_sym_EQ] = ACTIONS(2708), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(2710), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(2712), - [anon_sym_COLON] = ACTIONS(2708), - [anon_sym_COLON_QMARK] = ACTIONS(2708), - [anon_sym_COLON_DASH] = ACTIONS(2708), - [anon_sym_PERCENT] = ACTIONS(2708), - [anon_sym_DASH] = ACTIONS(2708), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [782] = { - [sym__concat] = ACTIONS(1832), - [sym_variable_name] = ACTIONS(1832), - [ts_builtin_sym_end] = ACTIONS(1832), - [anon_sym_SEMI] = ACTIONS(1834), - [anon_sym_PIPE] = ACTIONS(1834), - [anon_sym_RPAREN] = ACTIONS(1832), - [anon_sym_SEMI_SEMI] = ACTIONS(1832), - [anon_sym_PIPE_AMP] = ACTIONS(1832), - [anon_sym_AMP_AMP] = ACTIONS(1832), - [anon_sym_PIPE_PIPE] = ACTIONS(1832), - [sym__special_characters] = ACTIONS(1832), - [anon_sym_DQUOTE] = ACTIONS(1832), - [anon_sym_DOLLAR] = ACTIONS(1834), - [sym_raw_string] = ACTIONS(1832), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1832), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1832), - [anon_sym_BQUOTE] = ACTIONS(1832), - [anon_sym_LT_LPAREN] = ACTIONS(1832), - [anon_sym_GT_LPAREN] = ACTIONS(1832), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1834), - [sym_word] = ACTIONS(1834), - [anon_sym_LF] = ACTIONS(1832), - [anon_sym_AMP] = ACTIONS(1834), - }, - [783] = { - [sym_comment] = ACTIONS(265), - [sym_regex_without_right_brace] = ACTIONS(2714), - }, - [784] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(2716), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [785] = { - [sym__concat] = ACTIONS(1876), - [sym_variable_name] = ACTIONS(1876), - [ts_builtin_sym_end] = ACTIONS(1876), - [anon_sym_SEMI] = ACTIONS(1878), - [anon_sym_PIPE] = ACTIONS(1878), - [anon_sym_RPAREN] = ACTIONS(1876), - [anon_sym_SEMI_SEMI] = ACTIONS(1876), - [anon_sym_PIPE_AMP] = ACTIONS(1876), - [anon_sym_AMP_AMP] = ACTIONS(1876), - [anon_sym_PIPE_PIPE] = ACTIONS(1876), - [sym__special_characters] = ACTIONS(1876), - [anon_sym_DQUOTE] = ACTIONS(1876), - [anon_sym_DOLLAR] = ACTIONS(1878), - [sym_raw_string] = ACTIONS(1876), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1876), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1876), - [anon_sym_BQUOTE] = ACTIONS(1876), - [anon_sym_LT_LPAREN] = ACTIONS(1876), - [anon_sym_GT_LPAREN] = ACTIONS(1876), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1878), - [sym_word] = ACTIONS(1878), - [anon_sym_LF] = ACTIONS(1876), - [anon_sym_AMP] = ACTIONS(1878), - }, - [786] = { - [sym_comment] = ACTIONS(265), - [sym_regex_without_right_brace] = ACTIONS(2718), - }, - [787] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(2692), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [788] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(2720), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(901), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), - }, - [789] = { - [sym__concat] = ACTIONS(1884), - [sym_variable_name] = ACTIONS(1884), - [ts_builtin_sym_end] = ACTIONS(1884), - [anon_sym_SEMI] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(1886), - [anon_sym_RPAREN] = ACTIONS(1884), - [anon_sym_SEMI_SEMI] = ACTIONS(1884), - [anon_sym_PIPE_AMP] = ACTIONS(1884), - [anon_sym_AMP_AMP] = ACTIONS(1884), - [anon_sym_PIPE_PIPE] = ACTIONS(1884), - [sym__special_characters] = ACTIONS(1884), - [anon_sym_DQUOTE] = ACTIONS(1884), - [anon_sym_DOLLAR] = ACTIONS(1886), - [sym_raw_string] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1884), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1884), - [anon_sym_BQUOTE] = ACTIONS(1884), - [anon_sym_LT_LPAREN] = ACTIONS(1884), - [anon_sym_GT_LPAREN] = ACTIONS(1884), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1886), - [sym_word] = ACTIONS(1886), - [anon_sym_LF] = ACTIONS(1884), - [anon_sym_AMP] = ACTIONS(1886), - }, - [790] = { - [anon_sym_SEMI] = ACTIONS(2722), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(2720), - [anon_sym_SEMI_SEMI] = ACTIONS(2724), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(2724), - [anon_sym_AMP] = ACTIONS(2722), - }, - [791] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(2722), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(2720), - [anon_sym_SEMI_SEMI] = ACTIONS(2724), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(2724), - [anon_sym_AMP] = ACTIONS(2722), - }, - [792] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(2720), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), - }, - [793] = { - [anon_sym_SEMI] = ACTIONS(2726), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_SEMI_SEMI] = ACTIONS(2728), - [anon_sym_PIPE_AMP] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(883), - [anon_sym_PIPE_PIPE] = ACTIONS(883), - [anon_sym_BQUOTE] = ACTIONS(2720), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(2728), - [anon_sym_AMP] = ACTIONS(2726), - }, - [794] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(2726), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_SEMI_SEMI] = ACTIONS(2728), - [anon_sym_PIPE_AMP] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(883), - [anon_sym_PIPE_PIPE] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(2720), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(2728), - [anon_sym_AMP] = ACTIONS(2726), - }, - [795] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(2730), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(901), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), - }, - [796] = { - [sym__concat] = ACTIONS(1916), - [sym_variable_name] = ACTIONS(1916), - [ts_builtin_sym_end] = ACTIONS(1916), - [anon_sym_SEMI] = ACTIONS(1918), - [anon_sym_PIPE] = ACTIONS(1918), - [anon_sym_RPAREN] = ACTIONS(1916), - [anon_sym_SEMI_SEMI] = ACTIONS(1916), - [anon_sym_PIPE_AMP] = ACTIONS(1916), - [anon_sym_AMP_AMP] = ACTIONS(1916), - [anon_sym_PIPE_PIPE] = ACTIONS(1916), - [sym__special_characters] = ACTIONS(1916), - [anon_sym_DQUOTE] = ACTIONS(1916), - [anon_sym_DOLLAR] = ACTIONS(1918), - [sym_raw_string] = ACTIONS(1916), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1916), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1916), - [anon_sym_BQUOTE] = ACTIONS(1916), - [anon_sym_LT_LPAREN] = ACTIONS(1916), - [anon_sym_GT_LPAREN] = ACTIONS(1916), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1918), - [sym_word] = ACTIONS(1918), - [anon_sym_LF] = ACTIONS(1916), - [anon_sym_AMP] = ACTIONS(1918), - }, - [797] = { - [anon_sym_SEMI] = ACTIONS(2732), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(2730), - [anon_sym_SEMI_SEMI] = ACTIONS(2734), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(2734), - [anon_sym_AMP] = ACTIONS(2732), - }, - [798] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(2732), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(2730), - [anon_sym_SEMI_SEMI] = ACTIONS(2734), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(2734), - [anon_sym_AMP] = ACTIONS(2732), - }, - [799] = { - [sym__concat] = ACTIONS(1724), - [ts_builtin_sym_end] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(1726), - [anon_sym_RPAREN] = ACTIONS(1724), - [anon_sym_SEMI_SEMI] = ACTIONS(1724), - [anon_sym_PIPE_AMP] = ACTIONS(1724), - [anon_sym_AMP_AMP] = ACTIONS(1724), - [anon_sym_PIPE_PIPE] = ACTIONS(1724), - [sym__special_characters] = ACTIONS(1724), - [anon_sym_DQUOTE] = ACTIONS(1724), - [anon_sym_DOLLAR] = ACTIONS(1726), - [sym_raw_string] = ACTIONS(1724), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1724), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1724), - [anon_sym_BQUOTE] = ACTIONS(1724), - [anon_sym_LT_LPAREN] = ACTIONS(1724), - [anon_sym_GT_LPAREN] = ACTIONS(1724), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1726), - [sym_word] = ACTIONS(1726), - [anon_sym_LF] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1726), - }, - [800] = { - [aux_sym_concatenation_repeat1] = STATE(800), - [sym__concat] = ACTIONS(2736), - [ts_builtin_sym_end] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(1726), - [anon_sym_SEMI_SEMI] = ACTIONS(1724), - [anon_sym_PIPE_AMP] = ACTIONS(1724), - [anon_sym_AMP_AMP] = ACTIONS(1724), - [anon_sym_PIPE_PIPE] = ACTIONS(1724), - [sym__special_characters] = ACTIONS(1724), - [anon_sym_DQUOTE] = ACTIONS(1724), - [anon_sym_DOLLAR] = ACTIONS(1726), - [sym_raw_string] = ACTIONS(1724), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1724), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1724), - [anon_sym_BQUOTE] = ACTIONS(1724), - [anon_sym_LT_LPAREN] = ACTIONS(1724), - [anon_sym_GT_LPAREN] = ACTIONS(1724), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1726), - [sym_word] = ACTIONS(1726), - [anon_sym_LF] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1726), - }, - [801] = { - [sym__concat] = ACTIONS(1731), - [ts_builtin_sym_end] = ACTIONS(1731), - [anon_sym_SEMI] = ACTIONS(1733), - [anon_sym_PIPE] = ACTIONS(1733), - [anon_sym_RPAREN] = ACTIONS(1731), - [anon_sym_SEMI_SEMI] = ACTIONS(1731), - [anon_sym_PIPE_AMP] = ACTIONS(1731), - [anon_sym_AMP_AMP] = ACTIONS(1731), - [anon_sym_PIPE_PIPE] = ACTIONS(1731), - [sym__special_characters] = ACTIONS(1731), - [anon_sym_DQUOTE] = ACTIONS(1731), - [anon_sym_DOLLAR] = ACTIONS(1733), - [sym_raw_string] = ACTIONS(1731), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1731), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1731), - [anon_sym_BQUOTE] = ACTIONS(1731), - [anon_sym_LT_LPAREN] = ACTIONS(1731), - [anon_sym_GT_LPAREN] = ACTIONS(1731), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1733), - [sym_word] = ACTIONS(1733), - [anon_sym_LF] = ACTIONS(1731), - [anon_sym_AMP] = ACTIONS(1733), - }, - [802] = { - [anon_sym_DQUOTE] = ACTIONS(2739), - [anon_sym_DOLLAR] = ACTIONS(775), - [sym__string_content] = ACTIONS(777), - [anon_sym_POUND] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(781), - [anon_sym_STAR] = ACTIONS(783), - [anon_sym_AT] = ACTIONS(783), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_0] = ACTIONS(781), - [anon_sym__] = ACTIONS(781), - }, - [803] = { - [sym_concatenation] = STATE(1236), - [sym_string] = STATE(1235), - [sym_simple_expansion] = STATE(1235), - [sym_string_expansion] = STATE(1235), - [sym_expansion] = STATE(1235), - [sym_command_substitution] = STATE(1235), - [sym_process_substitution] = STATE(1235), - [anon_sym_RBRACE] = ACTIONS(2741), - [sym__special_characters] = ACTIONS(2743), - [anon_sym_DQUOTE] = ACTIONS(1802), - [anon_sym_DOLLAR] = ACTIONS(1804), - [sym_raw_string] = ACTIONS(2745), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1808), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1810), - [anon_sym_BQUOTE] = ACTIONS(1812), - [anon_sym_LT_LPAREN] = ACTIONS(1814), - [anon_sym_GT_LPAREN] = ACTIONS(1814), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2745), - }, - [804] = { - [anon_sym_LBRACK] = ACTIONS(815), - [anon_sym_EQ] = ACTIONS(2747), - [sym_comment] = ACTIONS(53), - }, - [805] = { - [sym_concatenation] = STATE(1240), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(1240), - [anon_sym_RBRACE] = ACTIONS(2749), - [anon_sym_EQ] = ACTIONS(2751), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(2753), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(2755), - [anon_sym_COLON] = ACTIONS(2751), - [anon_sym_COLON_QMARK] = ACTIONS(2751), - [anon_sym_COLON_DASH] = ACTIONS(2751), - [anon_sym_PERCENT] = ACTIONS(2751), - [anon_sym_DASH] = ACTIONS(2751), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [806] = { - [sym_concatenation] = STATE(1242), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(1242), - [anon_sym_RBRACE] = ACTIONS(2741), - [anon_sym_EQ] = ACTIONS(2757), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(2759), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(2761), - [anon_sym_COLON] = ACTIONS(2757), - [anon_sym_COLON_QMARK] = ACTIONS(2757), - [anon_sym_COLON_DASH] = ACTIONS(2757), - [anon_sym_PERCENT] = ACTIONS(2757), - [anon_sym_DASH] = ACTIONS(2757), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [807] = { - [sym__concat] = ACTIONS(1832), - [ts_builtin_sym_end] = ACTIONS(1832), - [anon_sym_SEMI] = ACTIONS(1834), - [anon_sym_PIPE] = ACTIONS(1834), - [anon_sym_RPAREN] = ACTIONS(1832), - [anon_sym_SEMI_SEMI] = ACTIONS(1832), - [anon_sym_PIPE_AMP] = ACTIONS(1832), - [anon_sym_AMP_AMP] = ACTIONS(1832), - [anon_sym_PIPE_PIPE] = ACTIONS(1832), - [sym__special_characters] = ACTIONS(1832), - [anon_sym_DQUOTE] = ACTIONS(1832), - [anon_sym_DOLLAR] = ACTIONS(1834), - [sym_raw_string] = ACTIONS(1832), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1832), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1832), - [anon_sym_BQUOTE] = ACTIONS(1832), - [anon_sym_LT_LPAREN] = ACTIONS(1832), - [anon_sym_GT_LPAREN] = ACTIONS(1832), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1834), - [sym_word] = ACTIONS(1834), - [anon_sym_LF] = ACTIONS(1832), - [anon_sym_AMP] = ACTIONS(1834), - }, - [808] = { - [sym_comment] = ACTIONS(265), - [sym_regex_without_right_brace] = ACTIONS(2763), - }, - [809] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(2765), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [810] = { - [sym__concat] = ACTIONS(1876), - [ts_builtin_sym_end] = ACTIONS(1876), - [anon_sym_SEMI] = ACTIONS(1878), - [anon_sym_PIPE] = ACTIONS(1878), - [anon_sym_RPAREN] = ACTIONS(1876), - [anon_sym_SEMI_SEMI] = ACTIONS(1876), - [anon_sym_PIPE_AMP] = ACTIONS(1876), - [anon_sym_AMP_AMP] = ACTIONS(1876), - [anon_sym_PIPE_PIPE] = ACTIONS(1876), - [sym__special_characters] = ACTIONS(1876), - [anon_sym_DQUOTE] = ACTIONS(1876), - [anon_sym_DOLLAR] = ACTIONS(1878), - [sym_raw_string] = ACTIONS(1876), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1876), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1876), - [anon_sym_BQUOTE] = ACTIONS(1876), - [anon_sym_LT_LPAREN] = ACTIONS(1876), - [anon_sym_GT_LPAREN] = ACTIONS(1876), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1878), - [sym_word] = ACTIONS(1878), - [anon_sym_LF] = ACTIONS(1876), - [anon_sym_AMP] = ACTIONS(1878), - }, - [811] = { - [sym_comment] = ACTIONS(265), - [sym_regex_without_right_brace] = ACTIONS(2767), - }, - [812] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(2741), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [813] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(2769), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(901), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), - }, - [814] = { - [sym__concat] = ACTIONS(1884), - [ts_builtin_sym_end] = ACTIONS(1884), - [anon_sym_SEMI] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(1886), - [anon_sym_RPAREN] = ACTIONS(1884), - [anon_sym_SEMI_SEMI] = ACTIONS(1884), - [anon_sym_PIPE_AMP] = ACTIONS(1884), - [anon_sym_AMP_AMP] = ACTIONS(1884), - [anon_sym_PIPE_PIPE] = ACTIONS(1884), - [sym__special_characters] = ACTIONS(1884), - [anon_sym_DQUOTE] = ACTIONS(1884), - [anon_sym_DOLLAR] = ACTIONS(1886), - [sym_raw_string] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1884), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1884), - [anon_sym_BQUOTE] = ACTIONS(1884), - [anon_sym_LT_LPAREN] = ACTIONS(1884), - [anon_sym_GT_LPAREN] = ACTIONS(1884), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1886), - [sym_word] = ACTIONS(1886), - [anon_sym_LF] = ACTIONS(1884), - [anon_sym_AMP] = ACTIONS(1886), - }, - [815] = { - [anon_sym_SEMI] = ACTIONS(2771), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(2769), - [anon_sym_SEMI_SEMI] = ACTIONS(2773), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(2773), - [anon_sym_AMP] = ACTIONS(2771), - }, - [816] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(2771), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(2769), - [anon_sym_SEMI_SEMI] = ACTIONS(2773), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(2773), - [anon_sym_AMP] = ACTIONS(2771), - }, - [817] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(2769), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), - }, - [818] = { - [anon_sym_SEMI] = ACTIONS(2775), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_SEMI_SEMI] = ACTIONS(2777), - [anon_sym_PIPE_AMP] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(883), - [anon_sym_PIPE_PIPE] = ACTIONS(883), - [anon_sym_BQUOTE] = ACTIONS(2769), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(2777), - [anon_sym_AMP] = ACTIONS(2775), - }, - [819] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(2775), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_SEMI_SEMI] = ACTIONS(2777), - [anon_sym_PIPE_AMP] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(883), - [anon_sym_PIPE_PIPE] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(2769), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(2777), - [anon_sym_AMP] = ACTIONS(2775), - }, - [820] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(2779), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(901), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), - }, - [821] = { - [sym__concat] = ACTIONS(1916), - [ts_builtin_sym_end] = ACTIONS(1916), - [anon_sym_SEMI] = ACTIONS(1918), - [anon_sym_PIPE] = ACTIONS(1918), - [anon_sym_RPAREN] = ACTIONS(1916), - [anon_sym_SEMI_SEMI] = ACTIONS(1916), - [anon_sym_PIPE_AMP] = ACTIONS(1916), - [anon_sym_AMP_AMP] = ACTIONS(1916), - [anon_sym_PIPE_PIPE] = ACTIONS(1916), - [sym__special_characters] = ACTIONS(1916), - [anon_sym_DQUOTE] = ACTIONS(1916), - [anon_sym_DOLLAR] = ACTIONS(1918), - [sym_raw_string] = ACTIONS(1916), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1916), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1916), - [anon_sym_BQUOTE] = ACTIONS(1916), - [anon_sym_LT_LPAREN] = ACTIONS(1916), - [anon_sym_GT_LPAREN] = ACTIONS(1916), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1918), - [sym_word] = ACTIONS(1918), - [anon_sym_LF] = ACTIONS(1916), - [anon_sym_AMP] = ACTIONS(1918), - }, - [822] = { - [anon_sym_SEMI] = ACTIONS(2781), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(2779), - [anon_sym_SEMI_SEMI] = ACTIONS(2783), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(2783), - [anon_sym_AMP] = ACTIONS(2781), - }, - [823] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(2781), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(2779), - [anon_sym_SEMI_SEMI] = ACTIONS(2783), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(2783), - [anon_sym_AMP] = ACTIONS(2781), - }, - [824] = { - [sym_file_descriptor] = ACTIONS(1724), - [sym__concat] = ACTIONS(1724), - [sym_variable_name] = ACTIONS(1724), - [anon_sym_LT] = ACTIONS(1726), - [anon_sym_GT] = ACTIONS(1726), - [anon_sym_GT_GT] = ACTIONS(1724), - [anon_sym_AMP_GT] = ACTIONS(1726), - [anon_sym_AMP_GT_GT] = ACTIONS(1724), - [anon_sym_LT_AMP] = ACTIONS(1724), - [anon_sym_GT_AMP] = ACTIONS(1724), - [sym__special_characters] = ACTIONS(1724), - [anon_sym_DQUOTE] = ACTIONS(1724), - [anon_sym_DOLLAR] = ACTIONS(1726), - [sym_raw_string] = ACTIONS(1724), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1724), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1724), - [anon_sym_BQUOTE] = ACTIONS(1724), - [anon_sym_LT_LPAREN] = ACTIONS(1724), - [anon_sym_GT_LPAREN] = ACTIONS(1724), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1724), - }, - [825] = { - [aux_sym_concatenation_repeat1] = STATE(825), - [sym_file_descriptor] = ACTIONS(1724), - [sym__concat] = ACTIONS(2785), - [sym_variable_name] = ACTIONS(1724), - [anon_sym_LT] = ACTIONS(1726), - [anon_sym_GT] = ACTIONS(1726), - [anon_sym_GT_GT] = ACTIONS(1724), - [anon_sym_AMP_GT] = ACTIONS(1726), - [anon_sym_AMP_GT_GT] = ACTIONS(1724), - [anon_sym_LT_AMP] = ACTIONS(1724), - [anon_sym_GT_AMP] = ACTIONS(1724), - [sym__special_characters] = ACTIONS(1724), - [anon_sym_DQUOTE] = ACTIONS(1724), - [anon_sym_DOLLAR] = ACTIONS(1726), - [sym_raw_string] = ACTIONS(1724), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1724), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1724), - [anon_sym_BQUOTE] = ACTIONS(1724), - [anon_sym_LT_LPAREN] = ACTIONS(1724), - [anon_sym_GT_LPAREN] = ACTIONS(1724), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1724), - }, - [826] = { - [sym_file_descriptor] = ACTIONS(1731), - [sym__concat] = ACTIONS(1731), - [sym_variable_name] = ACTIONS(1731), - [anon_sym_LT] = ACTIONS(1733), - [anon_sym_GT] = ACTIONS(1733), - [anon_sym_GT_GT] = ACTIONS(1731), - [anon_sym_AMP_GT] = ACTIONS(1733), - [anon_sym_AMP_GT_GT] = ACTIONS(1731), - [anon_sym_LT_AMP] = ACTIONS(1731), - [anon_sym_GT_AMP] = ACTIONS(1731), - [sym__special_characters] = ACTIONS(1731), - [anon_sym_DQUOTE] = ACTIONS(1731), - [anon_sym_DOLLAR] = ACTIONS(1733), - [sym_raw_string] = ACTIONS(1731), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1731), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1731), - [anon_sym_BQUOTE] = ACTIONS(1731), - [anon_sym_LT_LPAREN] = ACTIONS(1731), - [anon_sym_GT_LPAREN] = ACTIONS(1731), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1731), - }, - [827] = { - [anon_sym_DQUOTE] = ACTIONS(2788), - [anon_sym_DOLLAR] = ACTIONS(775), - [sym__string_content] = ACTIONS(777), - [anon_sym_POUND] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(781), - [anon_sym_STAR] = ACTIONS(783), - [anon_sym_AT] = ACTIONS(783), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_0] = ACTIONS(781), - [anon_sym__] = ACTIONS(781), - }, - [828] = { - [sym_concatenation] = STATE(1255), + [sym_concatenation] = STATE(994), [sym_string] = STATE(1254), [sym_simple_expansion] = STATE(1254), [sym_string_expansion] = STATE(1254), [sym_expansion] = STATE(1254), [sym_command_substitution] = STATE(1254), [sym_process_substitution] = STATE(1254), - [anon_sym_RBRACE] = ACTIONS(2790), - [sym__special_characters] = ACTIONS(2792), - [anon_sym_DQUOTE] = ACTIONS(1802), - [anon_sym_DOLLAR] = ACTIONS(1804), - [sym_raw_string] = ACTIONS(2794), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1808), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1810), - [anon_sym_BQUOTE] = ACTIONS(1812), - [anon_sym_LT_LPAREN] = ACTIONS(1814), - [anon_sym_GT_LPAREN] = ACTIONS(1814), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2794), + [sym__special_characters] = ACTIONS(2667), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(2669), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(2669), + }, + [774] = { + [aux_sym_concatenation_repeat1] = STATE(341), + [sym__simple_heredoc_body] = ACTIONS(2007), + [sym__heredoc_body_beginning] = ACTIONS(2007), + [sym_file_descriptor] = ACTIONS(2007), + [sym__concat] = ACTIONS(265), + [anon_sym_SEMI] = ACTIONS(2009), + [anon_sym_PIPE] = ACTIONS(2009), + [anon_sym_RPAREN] = ACTIONS(2007), + [anon_sym_SEMI_SEMI] = ACTIONS(2007), + [anon_sym_PIPE_AMP] = ACTIONS(2007), + [anon_sym_AMP_AMP] = ACTIONS(2007), + [anon_sym_PIPE_PIPE] = ACTIONS(2007), + [anon_sym_EQ_TILDE] = ACTIONS(2009), + [anon_sym_EQ_EQ] = ACTIONS(2009), + [anon_sym_LT] = ACTIONS(2009), + [anon_sym_GT] = ACTIONS(2009), + [anon_sym_GT_GT] = ACTIONS(2007), + [anon_sym_AMP_GT] = ACTIONS(2009), + [anon_sym_AMP_GT_GT] = ACTIONS(2007), + [anon_sym_LT_AMP] = ACTIONS(2007), + [anon_sym_GT_AMP] = ACTIONS(2007), + [anon_sym_LT_LT] = ACTIONS(2009), + [anon_sym_LT_LT_DASH] = ACTIONS(2007), + [anon_sym_LT_LT_LT] = ACTIONS(2007), + [sym__special_characters] = ACTIONS(2007), + [anon_sym_DQUOTE] = ACTIONS(2007), + [anon_sym_DOLLAR] = ACTIONS(2009), + [sym_raw_string] = ACTIONS(2007), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2007), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2007), + [anon_sym_BQUOTE] = ACTIONS(2007), + [anon_sym_LT_LPAREN] = ACTIONS(2007), + [anon_sym_GT_LPAREN] = ACTIONS(2007), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(2009), + [anon_sym_LF] = ACTIONS(2007), + [anon_sym_AMP] = ACTIONS(2009), + }, + [775] = { + [aux_sym_concatenation_repeat1] = STATE(341), + [sym__simple_heredoc_body] = ACTIONS(2003), + [sym__heredoc_body_beginning] = ACTIONS(2003), + [sym_file_descriptor] = ACTIONS(2003), + [sym__concat] = ACTIONS(265), + [anon_sym_SEMI] = ACTIONS(2005), + [anon_sym_PIPE] = ACTIONS(2005), + [anon_sym_RPAREN] = ACTIONS(2003), + [anon_sym_SEMI_SEMI] = ACTIONS(2003), + [anon_sym_PIPE_AMP] = ACTIONS(2003), + [anon_sym_AMP_AMP] = ACTIONS(2003), + [anon_sym_PIPE_PIPE] = ACTIONS(2003), + [anon_sym_EQ_TILDE] = ACTIONS(2005), + [anon_sym_EQ_EQ] = ACTIONS(2005), + [anon_sym_LT] = ACTIONS(2005), + [anon_sym_GT] = ACTIONS(2005), + [anon_sym_GT_GT] = ACTIONS(2003), + [anon_sym_AMP_GT] = ACTIONS(2005), + [anon_sym_AMP_GT_GT] = ACTIONS(2003), + [anon_sym_LT_AMP] = ACTIONS(2003), + [anon_sym_GT_AMP] = ACTIONS(2003), + [anon_sym_LT_LT] = ACTIONS(2005), + [anon_sym_LT_LT_DASH] = ACTIONS(2003), + [anon_sym_LT_LT_LT] = ACTIONS(2003), + [sym__special_characters] = ACTIONS(2003), + [anon_sym_DQUOTE] = ACTIONS(2003), + [anon_sym_DOLLAR] = ACTIONS(2005), + [sym_raw_string] = ACTIONS(2003), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2003), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2003), + [anon_sym_BQUOTE] = ACTIONS(2003), + [anon_sym_LT_LPAREN] = ACTIONS(2003), + [anon_sym_GT_LPAREN] = ACTIONS(2003), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(2005), + [anon_sym_LF] = ACTIONS(2003), + [anon_sym_AMP] = ACTIONS(2005), + }, + [776] = { + [aux_sym_concatenation_repeat1] = STATE(1255), + [sym__simple_heredoc_body] = ACTIONS(773), + [sym__heredoc_body_beginning] = ACTIONS(773), + [sym_file_descriptor] = ACTIONS(773), + [sym__concat] = ACTIONS(265), + [anon_sym_SEMI] = ACTIONS(777), + [anon_sym_PIPE] = ACTIONS(777), + [anon_sym_RPAREN] = ACTIONS(773), + [anon_sym_SEMI_SEMI] = ACTIONS(773), + [anon_sym_PIPE_AMP] = ACTIONS(773), + [anon_sym_AMP_AMP] = ACTIONS(773), + [anon_sym_PIPE_PIPE] = ACTIONS(773), + [anon_sym_LT] = ACTIONS(777), + [anon_sym_GT] = ACTIONS(777), + [anon_sym_GT_GT] = ACTIONS(773), + [anon_sym_AMP_GT] = ACTIONS(777), + [anon_sym_AMP_GT_GT] = ACTIONS(773), + [anon_sym_LT_AMP] = ACTIONS(773), + [anon_sym_GT_AMP] = ACTIONS(773), + [anon_sym_LT_LT] = ACTIONS(777), + [anon_sym_LT_LT_DASH] = ACTIONS(773), + [anon_sym_LT_LT_LT] = ACTIONS(773), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(773), + [anon_sym_AMP] = ACTIONS(777), + }, + [777] = { + [aux_sym_concatenation_repeat1] = STATE(1255), + [sym__simple_heredoc_body] = ACTIONS(791), + [sym__heredoc_body_beginning] = ACTIONS(791), + [sym_file_descriptor] = ACTIONS(791), + [sym__concat] = ACTIONS(265), + [anon_sym_SEMI] = ACTIONS(793), + [anon_sym_PIPE] = ACTIONS(793), + [anon_sym_RPAREN] = ACTIONS(791), + [anon_sym_SEMI_SEMI] = ACTIONS(791), + [anon_sym_PIPE_AMP] = ACTIONS(791), + [anon_sym_AMP_AMP] = ACTIONS(791), + [anon_sym_PIPE_PIPE] = ACTIONS(791), + [anon_sym_LT] = ACTIONS(793), + [anon_sym_GT] = ACTIONS(793), + [anon_sym_GT_GT] = ACTIONS(791), + [anon_sym_AMP_GT] = ACTIONS(793), + [anon_sym_AMP_GT_GT] = ACTIONS(791), + [anon_sym_LT_AMP] = ACTIONS(791), + [anon_sym_GT_AMP] = ACTIONS(791), + [anon_sym_LT_LT] = ACTIONS(793), + [anon_sym_LT_LT_DASH] = ACTIONS(791), + [anon_sym_LT_LT_LT] = ACTIONS(791), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(791), + [anon_sym_AMP] = ACTIONS(793), + }, + [778] = { + [aux_sym_concatenation_repeat1] = STATE(1255), + [sym__simple_heredoc_body] = ACTIONS(2015), + [sym__heredoc_body_beginning] = ACTIONS(2015), + [sym_file_descriptor] = ACTIONS(2015), + [sym__concat] = ACTIONS(265), + [anon_sym_SEMI] = ACTIONS(2017), + [anon_sym_PIPE] = ACTIONS(2017), + [anon_sym_RPAREN] = ACTIONS(2015), + [anon_sym_SEMI_SEMI] = ACTIONS(2015), + [anon_sym_PIPE_AMP] = ACTIONS(2015), + [anon_sym_AMP_AMP] = ACTIONS(2015), + [anon_sym_PIPE_PIPE] = ACTIONS(2015), + [anon_sym_LT] = ACTIONS(2017), + [anon_sym_GT] = ACTIONS(2017), + [anon_sym_GT_GT] = ACTIONS(2015), + [anon_sym_AMP_GT] = ACTIONS(2017), + [anon_sym_AMP_GT_GT] = ACTIONS(2015), + [anon_sym_LT_AMP] = ACTIONS(2015), + [anon_sym_GT_AMP] = ACTIONS(2015), + [anon_sym_LT_LT] = ACTIONS(2017), + [anon_sym_LT_LT_DASH] = ACTIONS(2015), + [anon_sym_LT_LT_LT] = ACTIONS(2015), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2017), + }, + [779] = { + [aux_sym_concatenation_repeat1] = STATE(1255), + [sym__simple_heredoc_body] = ACTIONS(2019), + [sym__heredoc_body_beginning] = ACTIONS(2019), + [sym_file_descriptor] = ACTIONS(2019), + [sym__concat] = ACTIONS(265), + [anon_sym_SEMI] = ACTIONS(2021), + [anon_sym_PIPE] = ACTIONS(2021), + [anon_sym_RPAREN] = ACTIONS(2019), + [anon_sym_SEMI_SEMI] = ACTIONS(2019), + [anon_sym_PIPE_AMP] = ACTIONS(2019), + [anon_sym_AMP_AMP] = ACTIONS(2019), + [anon_sym_PIPE_PIPE] = ACTIONS(2019), + [anon_sym_LT] = ACTIONS(2021), + [anon_sym_GT] = ACTIONS(2021), + [anon_sym_GT_GT] = ACTIONS(2019), + [anon_sym_AMP_GT] = ACTIONS(2021), + [anon_sym_AMP_GT_GT] = ACTIONS(2019), + [anon_sym_LT_AMP] = ACTIONS(2019), + [anon_sym_GT_AMP] = ACTIONS(2019), + [anon_sym_LT_LT] = ACTIONS(2021), + [anon_sym_LT_LT_DASH] = ACTIONS(2019), + [anon_sym_LT_LT_LT] = ACTIONS(2019), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2019), + [anon_sym_AMP] = ACTIONS(2021), + }, + [780] = { + [sym_file_redirect] = STATE(780), + [sym_heredoc_redirect] = STATE(780), + [sym_herestring_redirect] = STATE(780), + [aux_sym_while_statement_repeat1] = STATE(780), + [sym__simple_heredoc_body] = ACTIONS(2027), + [sym__heredoc_body_beginning] = ACTIONS(2027), + [sym_file_descriptor] = ACTIONS(2671), + [anon_sym_SEMI] = ACTIONS(2032), + [anon_sym_PIPE] = ACTIONS(2032), + [anon_sym_RPAREN] = ACTIONS(2027), + [anon_sym_SEMI_SEMI] = ACTIONS(2027), + [anon_sym_PIPE_AMP] = ACTIONS(2027), + [anon_sym_AMP_AMP] = ACTIONS(2027), + [anon_sym_PIPE_PIPE] = ACTIONS(2027), + [anon_sym_LT] = ACTIONS(2674), + [anon_sym_GT] = ACTIONS(2674), + [anon_sym_GT_GT] = ACTIONS(2677), + [anon_sym_AMP_GT] = ACTIONS(2674), + [anon_sym_AMP_GT_GT] = ACTIONS(2677), + [anon_sym_LT_AMP] = ACTIONS(2677), + [anon_sym_GT_AMP] = ACTIONS(2677), + [anon_sym_LT_LT] = ACTIONS(2040), + [anon_sym_LT_LT_DASH] = ACTIONS(2043), + [anon_sym_LT_LT_LT] = ACTIONS(2680), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2027), + [anon_sym_AMP] = ACTIONS(2032), + }, + [781] = { + [sym_file_redirect] = STATE(780), + [sym_heredoc_redirect] = STATE(780), + [sym_heredoc_body] = STATE(996), + [sym_herestring_redirect] = STATE(780), + [aux_sym_while_statement_repeat1] = STATE(780), + [sym__simple_heredoc_body] = ACTIONS(339), + [sym__heredoc_body_beginning] = ACTIONS(341), + [sym_file_descriptor] = ACTIONS(633), + [anon_sym_SEMI] = ACTIONS(2025), + [anon_sym_PIPE] = ACTIONS(2025), + [anon_sym_RPAREN] = ACTIONS(2023), + [anon_sym_SEMI_SEMI] = ACTIONS(2023), + [anon_sym_PIPE_AMP] = ACTIONS(2023), + [anon_sym_AMP_AMP] = ACTIONS(2023), + [anon_sym_PIPE_PIPE] = ACTIONS(2023), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_GT] = ACTIONS(637), + [anon_sym_GT_GT] = ACTIONS(639), + [anon_sym_AMP_GT] = ACTIONS(637), + [anon_sym_AMP_GT_GT] = ACTIONS(639), + [anon_sym_LT_AMP] = ACTIONS(639), + [anon_sym_GT_AMP] = ACTIONS(639), + [anon_sym_LT_LT] = ACTIONS(355), + [anon_sym_LT_LT_DASH] = ACTIONS(357), + [anon_sym_LT_LT_LT] = ACTIONS(641), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2023), + [anon_sym_AMP] = ACTIONS(2025), + }, + [782] = { + [sym_concatenation] = STATE(782), + [sym_string] = STATE(352), + [sym_simple_expansion] = STATE(352), + [sym_string_expansion] = STATE(352), + [sym_expansion] = STATE(352), + [sym_command_substitution] = STATE(352), + [sym_process_substitution] = STATE(352), + [aux_sym_command_repeat2] = STATE(782), + [sym__simple_heredoc_body] = ACTIONS(2003), + [sym__heredoc_body_beginning] = ACTIONS(2003), + [sym_file_descriptor] = ACTIONS(2003), + [anon_sym_SEMI] = ACTIONS(2005), + [anon_sym_PIPE] = ACTIONS(2005), + [anon_sym_RPAREN] = ACTIONS(2003), + [anon_sym_SEMI_SEMI] = ACTIONS(2003), + [anon_sym_PIPE_AMP] = ACTIONS(2003), + [anon_sym_AMP_AMP] = ACTIONS(2003), + [anon_sym_PIPE_PIPE] = ACTIONS(2003), + [anon_sym_EQ_TILDE] = ACTIONS(2683), + [anon_sym_EQ_EQ] = ACTIONS(2683), + [anon_sym_LT] = ACTIONS(2005), + [anon_sym_GT] = ACTIONS(2005), + [anon_sym_GT_GT] = ACTIONS(2003), + [anon_sym_AMP_GT] = ACTIONS(2005), + [anon_sym_AMP_GT_GT] = ACTIONS(2003), + [anon_sym_LT_AMP] = ACTIONS(2003), + [anon_sym_GT_AMP] = ACTIONS(2003), + [anon_sym_LT_LT] = ACTIONS(2005), + [anon_sym_LT_LT_DASH] = ACTIONS(2003), + [anon_sym_LT_LT_LT] = ACTIONS(2003), + [sym__special_characters] = ACTIONS(2686), + [anon_sym_DQUOTE] = ACTIONS(2055), + [anon_sym_DOLLAR] = ACTIONS(2058), + [sym_raw_string] = ACTIONS(2689), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2064), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2067), + [anon_sym_BQUOTE] = ACTIONS(2070), + [anon_sym_LT_LPAREN] = ACTIONS(2073), + [anon_sym_GT_LPAREN] = ACTIONS(2073), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(2692), + [anon_sym_LF] = ACTIONS(2003), + [anon_sym_AMP] = ACTIONS(2005), + }, + [783] = { + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(2695), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), + }, + [784] = { + [sym_file_redirect] = STATE(1257), + [sym_heredoc_redirect] = STATE(1257), + [sym_heredoc_body] = STATE(996), + [sym_herestring_redirect] = STATE(1257), + [sym_concatenation] = STATE(782), + [sym_string] = STATE(352), + [sym_simple_expansion] = STATE(352), + [sym_string_expansion] = STATE(352), + [sym_expansion] = STATE(352), + [sym_command_substitution] = STATE(352), + [sym_process_substitution] = STATE(352), + [aux_sym_while_statement_repeat1] = STATE(1257), + [aux_sym_command_repeat2] = STATE(782), + [sym__simple_heredoc_body] = ACTIONS(339), + [sym__heredoc_body_beginning] = ACTIONS(341), + [sym_file_descriptor] = ACTIONS(633), + [anon_sym_SEMI] = ACTIONS(2025), + [anon_sym_PIPE] = ACTIONS(2025), + [anon_sym_RPAREN] = ACTIONS(2023), + [anon_sym_SEMI_SEMI] = ACTIONS(2023), + [anon_sym_PIPE_AMP] = ACTIONS(2023), + [anon_sym_AMP_AMP] = ACTIONS(2023), + [anon_sym_PIPE_PIPE] = ACTIONS(2023), + [anon_sym_EQ_TILDE] = ACTIONS(635), + [anon_sym_EQ_EQ] = ACTIONS(635), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_GT] = ACTIONS(637), + [anon_sym_GT_GT] = ACTIONS(639), + [anon_sym_AMP_GT] = ACTIONS(637), + [anon_sym_AMP_GT_GT] = ACTIONS(639), + [anon_sym_LT_AMP] = ACTIONS(639), + [anon_sym_GT_AMP] = ACTIONS(639), + [anon_sym_LT_LT] = ACTIONS(355), + [anon_sym_LT_LT_DASH] = ACTIONS(357), + [anon_sym_LT_LT_LT] = ACTIONS(641), + [sym__special_characters] = ACTIONS(643), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(645), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(647), + [anon_sym_LF] = ACTIONS(2023), + [anon_sym_AMP] = ACTIONS(2025), + }, + [785] = { + [sym_file_descriptor] = ACTIONS(1106), + [sym_variable_name] = ACTIONS(1106), + [anon_sym_LT] = ACTIONS(1108), + [anon_sym_GT] = ACTIONS(1108), + [anon_sym_GT_GT] = ACTIONS(1106), + [anon_sym_AMP_GT] = ACTIONS(1108), + [anon_sym_AMP_GT_GT] = ACTIONS(1106), + [anon_sym_LT_AMP] = ACTIONS(1106), + [anon_sym_GT_AMP] = ACTIONS(1106), + [sym__special_characters] = ACTIONS(1106), + [anon_sym_DQUOTE] = ACTIONS(1106), + [anon_sym_DOLLAR] = ACTIONS(1108), + [sym_raw_string] = ACTIONS(1106), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1106), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1106), + [anon_sym_BQUOTE] = ACTIONS(1106), + [anon_sym_LT_LPAREN] = ACTIONS(1106), + [anon_sym_GT_LPAREN] = ACTIONS(1106), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1106), + }, + [786] = { + [sym_concatenation] = STATE(1259), + [sym_string] = STATE(558), + [sym_simple_expansion] = STATE(558), + [sym_string_expansion] = STATE(558), + [sym_expansion] = STATE(558), + [sym_command_substitution] = STATE(558), + [sym_process_substitution] = STATE(558), + [aux_sym_for_statement_repeat1] = STATE(1259), + [anon_sym_RPAREN] = ACTIONS(2697), + [sym__special_characters] = ACTIONS(1112), + [anon_sym_DQUOTE] = ACTIONS(1114), + [anon_sym_DOLLAR] = ACTIONS(1116), + [sym_raw_string] = ACTIONS(1118), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1120), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1122), + [anon_sym_BQUOTE] = ACTIONS(1124), + [anon_sym_LT_LPAREN] = ACTIONS(1126), + [anon_sym_GT_LPAREN] = ACTIONS(1126), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1118), + }, + [787] = { + [aux_sym_concatenation_repeat1] = STATE(435), + [sym_file_descriptor] = ACTIONS(1128), + [sym__concat] = ACTIONS(775), + [sym_variable_name] = ACTIONS(1128), + [anon_sym_LT] = ACTIONS(1132), + [anon_sym_GT] = ACTIONS(1132), + [anon_sym_GT_GT] = ACTIONS(1128), + [anon_sym_AMP_GT] = ACTIONS(1132), + [anon_sym_AMP_GT_GT] = ACTIONS(1128), + [anon_sym_LT_AMP] = ACTIONS(1128), + [anon_sym_GT_AMP] = ACTIONS(1128), + [sym__special_characters] = ACTIONS(1128), + [anon_sym_DQUOTE] = ACTIONS(1128), + [anon_sym_DOLLAR] = ACTIONS(1132), + [sym_raw_string] = ACTIONS(1128), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1128), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1128), + [anon_sym_BQUOTE] = ACTIONS(1128), + [anon_sym_LT_LPAREN] = ACTIONS(1128), + [anon_sym_GT_LPAREN] = ACTIONS(1128), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1128), + }, + [788] = { + [aux_sym_concatenation_repeat1] = STATE(435), + [sym_file_descriptor] = ACTIONS(1106), + [sym__concat] = ACTIONS(775), + [sym_variable_name] = ACTIONS(1106), + [anon_sym_LT] = ACTIONS(1108), + [anon_sym_GT] = ACTIONS(1108), + [anon_sym_GT_GT] = ACTIONS(1106), + [anon_sym_AMP_GT] = ACTIONS(1108), + [anon_sym_AMP_GT_GT] = ACTIONS(1106), + [anon_sym_LT_AMP] = ACTIONS(1106), + [anon_sym_GT_AMP] = ACTIONS(1106), + [sym__special_characters] = ACTIONS(1106), + [anon_sym_DQUOTE] = ACTIONS(1106), + [anon_sym_DOLLAR] = ACTIONS(1108), + [sym_raw_string] = ACTIONS(1106), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1106), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1106), + [anon_sym_BQUOTE] = ACTIONS(1106), + [anon_sym_LT_LPAREN] = ACTIONS(1106), + [anon_sym_GT_LPAREN] = ACTIONS(1106), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1106), + }, + [789] = { + [anon_sym_AMP_AMP] = ACTIONS(2331), + [anon_sym_PIPE_PIPE] = ACTIONS(2331), + [anon_sym_RBRACK] = ACTIONS(2331), + [anon_sym_EQ_TILDE] = ACTIONS(2331), + [anon_sym_EQ_EQ] = ACTIONS(2331), + [anon_sym_EQ] = ACTIONS(2333), + [anon_sym_PLUS_EQ] = ACTIONS(2331), + [anon_sym_LT] = ACTIONS(2333), + [anon_sym_GT] = ACTIONS(2333), + [anon_sym_BANG_EQ] = ACTIONS(2331), + [anon_sym_PLUS] = ACTIONS(2333), + [anon_sym_DASH] = ACTIONS(2333), + [anon_sym_DASH_EQ] = ACTIONS(2331), + [anon_sym_LT_EQ] = ACTIONS(2331), + [anon_sym_GT_EQ] = ACTIONS(2331), + [anon_sym_PLUS_PLUS] = ACTIONS(2331), + [anon_sym_DASH_DASH] = ACTIONS(2331), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(2331), + }, + [790] = { + [sym__concat] = ACTIONS(1763), + [anon_sym_AMP_AMP] = ACTIONS(1763), + [anon_sym_PIPE_PIPE] = ACTIONS(1763), + [anon_sym_RBRACK] = ACTIONS(1763), + [anon_sym_EQ_TILDE] = ACTIONS(1763), + [anon_sym_EQ_EQ] = ACTIONS(1763), + [anon_sym_EQ] = ACTIONS(1765), + [anon_sym_PLUS_EQ] = ACTIONS(1763), + [anon_sym_LT] = ACTIONS(1765), + [anon_sym_GT] = ACTIONS(1765), + [anon_sym_BANG_EQ] = ACTIONS(1763), + [anon_sym_PLUS] = ACTIONS(1765), + [anon_sym_DASH] = ACTIONS(1765), + [anon_sym_DASH_EQ] = ACTIONS(1763), + [anon_sym_LT_EQ] = ACTIONS(1763), + [anon_sym_GT_EQ] = ACTIONS(1763), + [anon_sym_PLUS_PLUS] = ACTIONS(1763), + [anon_sym_DASH_DASH] = ACTIONS(1763), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(1763), + }, + [791] = { + [aux_sym_concatenation_repeat1] = STATE(791), + [sym__concat] = ACTIONS(2699), + [anon_sym_AMP_AMP] = ACTIONS(1763), + [anon_sym_PIPE_PIPE] = ACTIONS(1763), + [anon_sym_RBRACK] = ACTIONS(1763), + [anon_sym_EQ_TILDE] = ACTIONS(1763), + [anon_sym_EQ_EQ] = ACTIONS(1763), + [anon_sym_EQ] = ACTIONS(1765), + [anon_sym_PLUS_EQ] = ACTIONS(1763), + [anon_sym_LT] = ACTIONS(1765), + [anon_sym_GT] = ACTIONS(1765), + [anon_sym_BANG_EQ] = ACTIONS(1763), + [anon_sym_PLUS] = ACTIONS(1765), + [anon_sym_DASH] = ACTIONS(1765), + [anon_sym_DASH_EQ] = ACTIONS(1763), + [anon_sym_LT_EQ] = ACTIONS(1763), + [anon_sym_GT_EQ] = ACTIONS(1763), + [anon_sym_PLUS_PLUS] = ACTIONS(1763), + [anon_sym_DASH_DASH] = ACTIONS(1763), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(1763), + }, + [792] = { + [sym__concat] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_RBRACK] = ACTIONS(1770), + [anon_sym_EQ_TILDE] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ] = ACTIONS(1772), + [anon_sym_PLUS_EQ] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1772), + [anon_sym_GT] = ACTIONS(1772), + [anon_sym_BANG_EQ] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1772), + [anon_sym_DASH] = ACTIONS(1772), + [anon_sym_DASH_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(1770), + }, + [793] = { + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_DQUOTE] = ACTIONS(2702), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym__string_content] = ACTIONS(821), + [anon_sym_POUND] = ACTIONS(815), + [sym_comment] = ACTIONS(281), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(823), + [anon_sym_STAR] = ACTIONS(825), + [anon_sym_AT] = ACTIONS(825), + [anon_sym_QMARK] = ACTIONS(825), + [anon_sym_0] = ACTIONS(823), + [anon_sym__] = ACTIONS(823), + }, + [794] = { + [sym_concatenation] = STATE(1264), + [sym_string] = STATE(1263), + [sym_simple_expansion] = STATE(1263), + [sym_string_expansion] = STATE(1263), + [sym_expansion] = STATE(1263), + [sym_command_substitution] = STATE(1263), + [sym_process_substitution] = STATE(1263), + [anon_sym_RBRACE] = ACTIONS(2704), + [sym__special_characters] = ACTIONS(2706), + [anon_sym_DQUOTE] = ACTIONS(1841), + [anon_sym_DOLLAR] = ACTIONS(1843), + [sym_raw_string] = ACTIONS(2708), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1849), + [anon_sym_BQUOTE] = ACTIONS(1851), + [anon_sym_LT_LPAREN] = ACTIONS(1853), + [anon_sym_GT_LPAREN] = ACTIONS(1853), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(2708), + }, + [795] = { + [anon_sym_LBRACK] = ACTIONS(857), + [anon_sym_EQ] = ACTIONS(2710), + [sym_comment] = ACTIONS(55), + }, + [796] = { + [sym_concatenation] = STATE(1268), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1268), + [anon_sym_RBRACE] = ACTIONS(2712), + [anon_sym_EQ] = ACTIONS(2714), + [anon_sym_DASH] = ACTIONS(2714), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(2716), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(2718), + [anon_sym_COLON] = ACTIONS(2714), + [anon_sym_COLON_QMARK] = ACTIONS(2714), + [anon_sym_COLON_DASH] = ACTIONS(2714), + [anon_sym_PERCENT] = ACTIONS(2714), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [797] = { + [sym_concatenation] = STATE(1270), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1270), + [anon_sym_RBRACE] = ACTIONS(2704), + [anon_sym_EQ] = ACTIONS(2720), + [anon_sym_DASH] = ACTIONS(2720), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(2722), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(2724), + [anon_sym_COLON] = ACTIONS(2720), + [anon_sym_COLON_QMARK] = ACTIONS(2720), + [anon_sym_COLON_DASH] = ACTIONS(2720), + [anon_sym_PERCENT] = ACTIONS(2720), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [798] = { + [sym__concat] = ACTIONS(1871), + [anon_sym_AMP_AMP] = ACTIONS(1871), + [anon_sym_PIPE_PIPE] = ACTIONS(1871), + [anon_sym_RBRACK] = ACTIONS(1871), + [anon_sym_EQ_TILDE] = ACTIONS(1871), + [anon_sym_EQ_EQ] = ACTIONS(1871), + [anon_sym_EQ] = ACTIONS(1873), + [anon_sym_PLUS_EQ] = ACTIONS(1871), + [anon_sym_LT] = ACTIONS(1873), + [anon_sym_GT] = ACTIONS(1873), + [anon_sym_BANG_EQ] = ACTIONS(1871), + [anon_sym_PLUS] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1873), + [anon_sym_DASH_EQ] = ACTIONS(1871), + [anon_sym_LT_EQ] = ACTIONS(1871), + [anon_sym_GT_EQ] = ACTIONS(1871), + [anon_sym_PLUS_PLUS] = ACTIONS(1871), + [anon_sym_DASH_DASH] = ACTIONS(1871), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(1871), + }, + [799] = { + [sym_concatenation] = STATE(1273), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1273), + [sym_regex] = ACTIONS(2726), + [anon_sym_RBRACE] = ACTIONS(2728), + [anon_sym_EQ] = ACTIONS(2730), + [anon_sym_DASH] = ACTIONS(2730), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(2732), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(2730), + [anon_sym_COLON_QMARK] = ACTIONS(2730), + [anon_sym_COLON_DASH] = ACTIONS(2730), + [anon_sym_PERCENT] = ACTIONS(2730), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [800] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(2728), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [801] = { + [sym__concat] = ACTIONS(1919), + [anon_sym_AMP_AMP] = ACTIONS(1919), + [anon_sym_PIPE_PIPE] = ACTIONS(1919), + [anon_sym_RBRACK] = ACTIONS(1919), + [anon_sym_EQ_TILDE] = ACTIONS(1919), + [anon_sym_EQ_EQ] = ACTIONS(1919), + [anon_sym_EQ] = ACTIONS(1921), + [anon_sym_PLUS_EQ] = ACTIONS(1919), + [anon_sym_LT] = ACTIONS(1921), + [anon_sym_GT] = ACTIONS(1921), + [anon_sym_BANG_EQ] = ACTIONS(1919), + [anon_sym_PLUS] = ACTIONS(1921), + [anon_sym_DASH] = ACTIONS(1921), + [anon_sym_DASH_EQ] = ACTIONS(1919), + [anon_sym_LT_EQ] = ACTIONS(1919), + [anon_sym_GT_EQ] = ACTIONS(1919), + [anon_sym_PLUS_PLUS] = ACTIONS(1919), + [anon_sym_DASH_DASH] = ACTIONS(1919), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(1919), + }, + [802] = { + [sym_concatenation] = STATE(1270), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1270), + [sym_regex] = ACTIONS(2734), + [anon_sym_RBRACE] = ACTIONS(2704), + [anon_sym_EQ] = ACTIONS(2720), + [anon_sym_DASH] = ACTIONS(2720), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(2722), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(2720), + [anon_sym_COLON_QMARK] = ACTIONS(2720), + [anon_sym_COLON_DASH] = ACTIONS(2720), + [anon_sym_PERCENT] = ACTIONS(2720), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [803] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(2704), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [804] = { + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(2736), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), + }, + [805] = { + [sym__concat] = ACTIONS(1927), + [anon_sym_AMP_AMP] = ACTIONS(1927), + [anon_sym_PIPE_PIPE] = ACTIONS(1927), + [anon_sym_RBRACK] = ACTIONS(1927), + [anon_sym_EQ_TILDE] = ACTIONS(1927), + [anon_sym_EQ_EQ] = ACTIONS(1927), + [anon_sym_EQ] = ACTIONS(1929), + [anon_sym_PLUS_EQ] = ACTIONS(1927), + [anon_sym_LT] = ACTIONS(1929), + [anon_sym_GT] = ACTIONS(1929), + [anon_sym_BANG_EQ] = ACTIONS(1927), + [anon_sym_PLUS] = ACTIONS(1929), + [anon_sym_DASH] = ACTIONS(1929), + [anon_sym_DASH_EQ] = ACTIONS(1927), + [anon_sym_LT_EQ] = ACTIONS(1927), + [anon_sym_GT_EQ] = ACTIONS(1927), + [anon_sym_PLUS_PLUS] = ACTIONS(1927), + [anon_sym_DASH_DASH] = ACTIONS(1927), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(1927), + }, + [806] = { + [anon_sym_SEMI] = ACTIONS(2738), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(2736), + [anon_sym_SEMI_SEMI] = ACTIONS(2740), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2740), + [anon_sym_AMP] = ACTIONS(2738), + }, + [807] = { + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(2738), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(2736), + [anon_sym_SEMI_SEMI] = ACTIONS(2740), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(2740), + [anon_sym_AMP] = ACTIONS(2738), + }, + [808] = { + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(2736), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), + }, + [809] = { + [anon_sym_SEMI] = ACTIONS(2742), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_SEMI_SEMI] = ACTIONS(2744), + [anon_sym_PIPE_AMP] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_BQUOTE] = ACTIONS(2736), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2744), + [anon_sym_AMP] = ACTIONS(2742), + }, + [810] = { + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(2742), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_SEMI_SEMI] = ACTIONS(2744), + [anon_sym_PIPE_AMP] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(2736), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(2744), + [anon_sym_AMP] = ACTIONS(2742), + }, + [811] = { + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(2746), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), + }, + [812] = { + [sym__concat] = ACTIONS(1959), + [anon_sym_AMP_AMP] = ACTIONS(1959), + [anon_sym_PIPE_PIPE] = ACTIONS(1959), + [anon_sym_RBRACK] = ACTIONS(1959), + [anon_sym_EQ_TILDE] = ACTIONS(1959), + [anon_sym_EQ_EQ] = ACTIONS(1959), + [anon_sym_EQ] = ACTIONS(1961), + [anon_sym_PLUS_EQ] = ACTIONS(1959), + [anon_sym_LT] = ACTIONS(1961), + [anon_sym_GT] = ACTIONS(1961), + [anon_sym_BANG_EQ] = ACTIONS(1959), + [anon_sym_PLUS] = ACTIONS(1961), + [anon_sym_DASH] = ACTIONS(1961), + [anon_sym_DASH_EQ] = ACTIONS(1959), + [anon_sym_LT_EQ] = ACTIONS(1959), + [anon_sym_GT_EQ] = ACTIONS(1959), + [anon_sym_PLUS_PLUS] = ACTIONS(1959), + [anon_sym_DASH_DASH] = ACTIONS(1959), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(1959), + }, + [813] = { + [anon_sym_SEMI] = ACTIONS(2748), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(2746), + [anon_sym_SEMI_SEMI] = ACTIONS(2750), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2750), + [anon_sym_AMP] = ACTIONS(2748), + }, + [814] = { + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(2748), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(2746), + [anon_sym_SEMI_SEMI] = ACTIONS(2750), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(2750), + [anon_sym_AMP] = ACTIONS(2748), + }, + [815] = { + [anon_sym_AMP_AMP] = ACTIONS(2420), + [anon_sym_PIPE_PIPE] = ACTIONS(2420), + [anon_sym_RBRACK] = ACTIONS(2420), + [anon_sym_EQ_TILDE] = ACTIONS(2420), + [anon_sym_EQ_EQ] = ACTIONS(2420), + [anon_sym_EQ] = ACTIONS(2422), + [anon_sym_PLUS_EQ] = ACTIONS(2420), + [anon_sym_LT] = ACTIONS(2422), + [anon_sym_GT] = ACTIONS(2422), + [anon_sym_BANG_EQ] = ACTIONS(2420), + [anon_sym_PLUS] = ACTIONS(2422), + [anon_sym_DASH] = ACTIONS(2422), + [anon_sym_DASH_EQ] = ACTIONS(2420), + [anon_sym_LT_EQ] = ACTIONS(2420), + [anon_sym_GT_EQ] = ACTIONS(2420), + [anon_sym_PLUS_PLUS] = ACTIONS(2420), + [anon_sym_DASH_DASH] = ACTIONS(2420), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(2420), + }, + [816] = { + [anon_sym_AMP_AMP] = ACTIONS(2420), + [anon_sym_PIPE_PIPE] = ACTIONS(2420), + [anon_sym_RBRACK] = ACTIONS(2420), + [anon_sym_EQ_TILDE] = ACTIONS(2420), + [anon_sym_EQ_EQ] = ACTIONS(2420), + [anon_sym_EQ] = ACTIONS(2422), + [anon_sym_PLUS_EQ] = ACTIONS(2420), + [anon_sym_LT] = ACTIONS(2422), + [anon_sym_GT] = ACTIONS(2422), + [anon_sym_BANG_EQ] = ACTIONS(2420), + [anon_sym_PLUS] = ACTIONS(2422), + [anon_sym_DASH] = ACTIONS(2422), + [anon_sym_DASH_EQ] = ACTIONS(2420), + [anon_sym_LT_EQ] = ACTIONS(2420), + [anon_sym_GT_EQ] = ACTIONS(2420), + [anon_sym_PLUS_PLUS] = ACTIONS(2420), + [anon_sym_DASH_DASH] = ACTIONS(2420), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(2420), + }, + [817] = { + [aux_sym_concatenation_repeat1] = STATE(817), + [sym__concat] = ACTIONS(2337), + [anon_sym_AMP_AMP] = ACTIONS(1763), + [anon_sym_PIPE_PIPE] = ACTIONS(1763), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1763), + [anon_sym_EQ_TILDE] = ACTIONS(1763), + [anon_sym_EQ_EQ] = ACTIONS(1763), + [anon_sym_EQ] = ACTIONS(1765), + [anon_sym_PLUS_EQ] = ACTIONS(1763), + [anon_sym_LT] = ACTIONS(1765), + [anon_sym_GT] = ACTIONS(1765), + [anon_sym_BANG_EQ] = ACTIONS(1763), + [anon_sym_PLUS] = ACTIONS(1765), + [anon_sym_DASH] = ACTIONS(1765), + [anon_sym_DASH_EQ] = ACTIONS(1763), + [anon_sym_LT_EQ] = ACTIONS(1763), + [anon_sym_GT_EQ] = ACTIONS(1763), + [anon_sym_PLUS_PLUS] = ACTIONS(1763), + [anon_sym_DASH_DASH] = ACTIONS(1763), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(1763), + }, + [818] = { + [sym_variable_name] = ACTIONS(1106), + [ts_builtin_sym_end] = ACTIONS(1106), + [anon_sym_SEMI] = ACTIONS(1108), + [anon_sym_PIPE] = ACTIONS(1108), + [anon_sym_RPAREN] = ACTIONS(1106), + [anon_sym_SEMI_SEMI] = ACTIONS(1106), + [anon_sym_PIPE_AMP] = ACTIONS(1106), + [anon_sym_AMP_AMP] = ACTIONS(1106), + [anon_sym_PIPE_PIPE] = ACTIONS(1106), + [sym__special_characters] = ACTIONS(1106), + [anon_sym_DQUOTE] = ACTIONS(1106), + [anon_sym_DOLLAR] = ACTIONS(1108), + [sym_raw_string] = ACTIONS(1106), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1106), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1106), + [anon_sym_BQUOTE] = ACTIONS(1106), + [anon_sym_LT_LPAREN] = ACTIONS(1106), + [anon_sym_GT_LPAREN] = ACTIONS(1106), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1108), + [sym_word] = ACTIONS(1108), + [anon_sym_LF] = ACTIONS(1106), + [anon_sym_AMP] = ACTIONS(1108), + }, + [819] = { + [sym_concatenation] = STATE(1281), + [sym_string] = STATE(558), + [sym_simple_expansion] = STATE(558), + [sym_string_expansion] = STATE(558), + [sym_expansion] = STATE(558), + [sym_command_substitution] = STATE(558), + [sym_process_substitution] = STATE(558), + [aux_sym_for_statement_repeat1] = STATE(1281), + [anon_sym_RPAREN] = ACTIONS(2752), + [sym__special_characters] = ACTIONS(1112), + [anon_sym_DQUOTE] = ACTIONS(1114), + [anon_sym_DOLLAR] = ACTIONS(1116), + [sym_raw_string] = ACTIONS(1118), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1120), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1122), + [anon_sym_BQUOTE] = ACTIONS(1124), + [anon_sym_LT_LPAREN] = ACTIONS(1126), + [anon_sym_GT_LPAREN] = ACTIONS(1126), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1118), + }, + [820] = { + [aux_sym_concatenation_repeat1] = STATE(391), + [sym__concat] = ACTIONS(697), + [sym_variable_name] = ACTIONS(1128), + [ts_builtin_sym_end] = ACTIONS(1128), + [anon_sym_SEMI] = ACTIONS(1132), + [anon_sym_PIPE] = ACTIONS(1132), + [anon_sym_SEMI_SEMI] = ACTIONS(1128), + [anon_sym_PIPE_AMP] = ACTIONS(1128), + [anon_sym_AMP_AMP] = ACTIONS(1128), + [anon_sym_PIPE_PIPE] = ACTIONS(1128), + [sym__special_characters] = ACTIONS(1128), + [anon_sym_DQUOTE] = ACTIONS(1128), + [anon_sym_DOLLAR] = ACTIONS(1132), + [sym_raw_string] = ACTIONS(1128), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1128), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1128), + [anon_sym_BQUOTE] = ACTIONS(1128), + [anon_sym_LT_LPAREN] = ACTIONS(1128), + [anon_sym_GT_LPAREN] = ACTIONS(1128), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1132), + [sym_word] = ACTIONS(1132), + [anon_sym_LF] = ACTIONS(1128), + [anon_sym_AMP] = ACTIONS(1132), + }, + [821] = { + [aux_sym_concatenation_repeat1] = STATE(391), + [sym__concat] = ACTIONS(697), + [sym_variable_name] = ACTIONS(1106), + [ts_builtin_sym_end] = ACTIONS(1106), + [anon_sym_SEMI] = ACTIONS(1108), + [anon_sym_PIPE] = ACTIONS(1108), + [anon_sym_SEMI_SEMI] = ACTIONS(1106), + [anon_sym_PIPE_AMP] = ACTIONS(1106), + [anon_sym_AMP_AMP] = ACTIONS(1106), + [anon_sym_PIPE_PIPE] = ACTIONS(1106), + [sym__special_characters] = ACTIONS(1106), + [anon_sym_DQUOTE] = ACTIONS(1106), + [anon_sym_DOLLAR] = ACTIONS(1108), + [sym_raw_string] = ACTIONS(1106), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1106), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1106), + [anon_sym_BQUOTE] = ACTIONS(1106), + [anon_sym_LT_LPAREN] = ACTIONS(1106), + [anon_sym_GT_LPAREN] = ACTIONS(1106), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1108), + [sym_word] = ACTIONS(1108), + [anon_sym_LF] = ACTIONS(1106), + [anon_sym_AMP] = ACTIONS(1108), + }, + [822] = { + [sym__concat] = ACTIONS(1763), + [sym_variable_name] = ACTIONS(1763), + [ts_builtin_sym_end] = ACTIONS(1763), + [anon_sym_SEMI] = ACTIONS(1765), + [anon_sym_PIPE] = ACTIONS(1765), + [anon_sym_RPAREN] = ACTIONS(1763), + [anon_sym_SEMI_SEMI] = ACTIONS(1763), + [anon_sym_PIPE_AMP] = ACTIONS(1763), + [anon_sym_AMP_AMP] = ACTIONS(1763), + [anon_sym_PIPE_PIPE] = ACTIONS(1763), + [sym__special_characters] = ACTIONS(1763), + [anon_sym_DQUOTE] = ACTIONS(1763), + [anon_sym_DOLLAR] = ACTIONS(1765), + [sym_raw_string] = ACTIONS(1763), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1763), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1763), + [anon_sym_BQUOTE] = ACTIONS(1763), + [anon_sym_LT_LPAREN] = ACTIONS(1763), + [anon_sym_GT_LPAREN] = ACTIONS(1763), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1765), + [sym_word] = ACTIONS(1765), + [anon_sym_LF] = ACTIONS(1763), + [anon_sym_AMP] = ACTIONS(1765), + }, + [823] = { + [aux_sym_concatenation_repeat1] = STATE(823), + [sym__concat] = ACTIONS(2754), + [sym_variable_name] = ACTIONS(1763), + [ts_builtin_sym_end] = ACTIONS(1763), + [anon_sym_SEMI] = ACTIONS(1765), + [anon_sym_PIPE] = ACTIONS(1765), + [anon_sym_SEMI_SEMI] = ACTIONS(1763), + [anon_sym_PIPE_AMP] = ACTIONS(1763), + [anon_sym_AMP_AMP] = ACTIONS(1763), + [anon_sym_PIPE_PIPE] = ACTIONS(1763), + [sym__special_characters] = ACTIONS(1763), + [anon_sym_DQUOTE] = ACTIONS(1763), + [anon_sym_DOLLAR] = ACTIONS(1765), + [sym_raw_string] = ACTIONS(1763), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1763), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1763), + [anon_sym_BQUOTE] = ACTIONS(1763), + [anon_sym_LT_LPAREN] = ACTIONS(1763), + [anon_sym_GT_LPAREN] = ACTIONS(1763), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1765), + [sym_word] = ACTIONS(1765), + [anon_sym_LF] = ACTIONS(1763), + [anon_sym_AMP] = ACTIONS(1765), + }, + [824] = { + [sym__concat] = ACTIONS(1770), + [sym_variable_name] = ACTIONS(1770), + [ts_builtin_sym_end] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(1772), + [anon_sym_PIPE] = ACTIONS(1772), + [anon_sym_RPAREN] = ACTIONS(1770), + [anon_sym_SEMI_SEMI] = ACTIONS(1770), + [anon_sym_PIPE_AMP] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(1770), + [anon_sym_DQUOTE] = ACTIONS(1770), + [anon_sym_DOLLAR] = ACTIONS(1772), + [sym_raw_string] = ACTIONS(1770), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1770), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1770), + [anon_sym_BQUOTE] = ACTIONS(1770), + [anon_sym_LT_LPAREN] = ACTIONS(1770), + [anon_sym_GT_LPAREN] = ACTIONS(1770), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1772), + [sym_word] = ACTIONS(1772), + [anon_sym_LF] = ACTIONS(1770), + [anon_sym_AMP] = ACTIONS(1772), + }, + [825] = { + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_DQUOTE] = ACTIONS(2757), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym__string_content] = ACTIONS(821), + [anon_sym_POUND] = ACTIONS(815), + [sym_comment] = ACTIONS(281), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(823), + [anon_sym_STAR] = ACTIONS(825), + [anon_sym_AT] = ACTIONS(825), + [anon_sym_QMARK] = ACTIONS(825), + [anon_sym_0] = ACTIONS(823), + [anon_sym__] = ACTIONS(823), + }, + [826] = { + [sym_concatenation] = STATE(1286), + [sym_string] = STATE(1285), + [sym_simple_expansion] = STATE(1285), + [sym_string_expansion] = STATE(1285), + [sym_expansion] = STATE(1285), + [sym_command_substitution] = STATE(1285), + [sym_process_substitution] = STATE(1285), + [anon_sym_RBRACE] = ACTIONS(2759), + [sym__special_characters] = ACTIONS(2761), + [anon_sym_DQUOTE] = ACTIONS(1841), + [anon_sym_DOLLAR] = ACTIONS(1843), + [sym_raw_string] = ACTIONS(2763), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1849), + [anon_sym_BQUOTE] = ACTIONS(1851), + [anon_sym_LT_LPAREN] = ACTIONS(1853), + [anon_sym_GT_LPAREN] = ACTIONS(1853), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(2763), + }, + [827] = { + [anon_sym_LBRACK] = ACTIONS(857), + [anon_sym_EQ] = ACTIONS(2765), + [sym_comment] = ACTIONS(55), + }, + [828] = { + [sym_concatenation] = STATE(1290), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1290), + [anon_sym_RBRACE] = ACTIONS(2767), + [anon_sym_EQ] = ACTIONS(2769), + [anon_sym_DASH] = ACTIONS(2769), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(2771), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(2773), + [anon_sym_COLON] = ACTIONS(2769), + [anon_sym_COLON_QMARK] = ACTIONS(2769), + [anon_sym_COLON_DASH] = ACTIONS(2769), + [anon_sym_PERCENT] = ACTIONS(2769), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [829] = { - [anon_sym_LBRACK] = ACTIONS(815), - [anon_sym_EQ] = ACTIONS(2796), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(1292), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1292), + [anon_sym_RBRACE] = ACTIONS(2759), + [anon_sym_EQ] = ACTIONS(2775), + [anon_sym_DASH] = ACTIONS(2775), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(2777), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(2779), + [anon_sym_COLON] = ACTIONS(2775), + [anon_sym_COLON_QMARK] = ACTIONS(2775), + [anon_sym_COLON_DASH] = ACTIONS(2775), + [anon_sym_PERCENT] = ACTIONS(2775), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [830] = { - [sym_concatenation] = STATE(1259), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(1259), - [anon_sym_RBRACE] = ACTIONS(2798), - [anon_sym_EQ] = ACTIONS(2800), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(2802), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(2804), - [anon_sym_COLON] = ACTIONS(2800), - [anon_sym_COLON_QMARK] = ACTIONS(2800), - [anon_sym_COLON_DASH] = ACTIONS(2800), - [anon_sym_PERCENT] = ACTIONS(2800), - [anon_sym_DASH] = ACTIONS(2800), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym__concat] = ACTIONS(1871), + [sym_variable_name] = ACTIONS(1871), + [ts_builtin_sym_end] = ACTIONS(1871), + [anon_sym_SEMI] = ACTIONS(1873), + [anon_sym_PIPE] = ACTIONS(1873), + [anon_sym_RPAREN] = ACTIONS(1871), + [anon_sym_SEMI_SEMI] = ACTIONS(1871), + [anon_sym_PIPE_AMP] = ACTIONS(1871), + [anon_sym_AMP_AMP] = ACTIONS(1871), + [anon_sym_PIPE_PIPE] = ACTIONS(1871), + [sym__special_characters] = ACTIONS(1871), + [anon_sym_DQUOTE] = ACTIONS(1871), + [anon_sym_DOLLAR] = ACTIONS(1873), + [sym_raw_string] = ACTIONS(1871), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1871), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1871), + [anon_sym_BQUOTE] = ACTIONS(1871), + [anon_sym_LT_LPAREN] = ACTIONS(1871), + [anon_sym_GT_LPAREN] = ACTIONS(1871), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1873), + [sym_word] = ACTIONS(1873), + [anon_sym_LF] = ACTIONS(1871), + [anon_sym_AMP] = ACTIONS(1873), }, [831] = { - [sym_concatenation] = STATE(1261), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(1261), - [anon_sym_RBRACE] = ACTIONS(2790), - [anon_sym_EQ] = ACTIONS(2806), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(2808), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(2810), - [anon_sym_COLON] = ACTIONS(2806), - [anon_sym_COLON_QMARK] = ACTIONS(2806), - [anon_sym_COLON_DASH] = ACTIONS(2806), - [anon_sym_PERCENT] = ACTIONS(2806), - [anon_sym_DASH] = ACTIONS(2806), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_concatenation] = STATE(1295), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1295), + [sym_regex] = ACTIONS(2781), + [anon_sym_RBRACE] = ACTIONS(2783), + [anon_sym_EQ] = ACTIONS(2785), + [anon_sym_DASH] = ACTIONS(2785), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(2787), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(2785), + [anon_sym_COLON_QMARK] = ACTIONS(2785), + [anon_sym_COLON_DASH] = ACTIONS(2785), + [anon_sym_PERCENT] = ACTIONS(2785), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [832] = { - [sym_file_descriptor] = ACTIONS(1832), - [sym__concat] = ACTIONS(1832), - [sym_variable_name] = ACTIONS(1832), - [anon_sym_LT] = ACTIONS(1834), - [anon_sym_GT] = ACTIONS(1834), - [anon_sym_GT_GT] = ACTIONS(1832), - [anon_sym_AMP_GT] = ACTIONS(1834), - [anon_sym_AMP_GT_GT] = ACTIONS(1832), - [anon_sym_LT_AMP] = ACTIONS(1832), - [anon_sym_GT_AMP] = ACTIONS(1832), - [sym__special_characters] = ACTIONS(1832), - [anon_sym_DQUOTE] = ACTIONS(1832), - [anon_sym_DOLLAR] = ACTIONS(1834), - [sym_raw_string] = ACTIONS(1832), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1832), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1832), - [anon_sym_BQUOTE] = ACTIONS(1832), - [anon_sym_LT_LPAREN] = ACTIONS(1832), - [anon_sym_GT_LPAREN] = ACTIONS(1832), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1832), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(2783), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [833] = { - [sym_comment] = ACTIONS(265), - [sym_regex_without_right_brace] = ACTIONS(2812), + [sym__concat] = ACTIONS(1919), + [sym_variable_name] = ACTIONS(1919), + [ts_builtin_sym_end] = ACTIONS(1919), + [anon_sym_SEMI] = ACTIONS(1921), + [anon_sym_PIPE] = ACTIONS(1921), + [anon_sym_RPAREN] = ACTIONS(1919), + [anon_sym_SEMI_SEMI] = ACTIONS(1919), + [anon_sym_PIPE_AMP] = ACTIONS(1919), + [anon_sym_AMP_AMP] = ACTIONS(1919), + [anon_sym_PIPE_PIPE] = ACTIONS(1919), + [sym__special_characters] = ACTIONS(1919), + [anon_sym_DQUOTE] = ACTIONS(1919), + [anon_sym_DOLLAR] = ACTIONS(1921), + [sym_raw_string] = ACTIONS(1919), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1919), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1919), + [anon_sym_BQUOTE] = ACTIONS(1919), + [anon_sym_LT_LPAREN] = ACTIONS(1919), + [anon_sym_GT_LPAREN] = ACTIONS(1919), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1921), + [sym_word] = ACTIONS(1921), + [anon_sym_LF] = ACTIONS(1919), + [anon_sym_AMP] = ACTIONS(1921), }, [834] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(2814), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_concatenation] = STATE(1292), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1292), + [sym_regex] = ACTIONS(2789), + [anon_sym_RBRACE] = ACTIONS(2759), + [anon_sym_EQ] = ACTIONS(2775), + [anon_sym_DASH] = ACTIONS(2775), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(2777), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(2775), + [anon_sym_COLON_QMARK] = ACTIONS(2775), + [anon_sym_COLON_DASH] = ACTIONS(2775), + [anon_sym_PERCENT] = ACTIONS(2775), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [835] = { - [sym_file_descriptor] = ACTIONS(1876), - [sym__concat] = ACTIONS(1876), - [sym_variable_name] = ACTIONS(1876), - [anon_sym_LT] = ACTIONS(1878), - [anon_sym_GT] = ACTIONS(1878), - [anon_sym_GT_GT] = ACTIONS(1876), - [anon_sym_AMP_GT] = ACTIONS(1878), - [anon_sym_AMP_GT_GT] = ACTIONS(1876), - [anon_sym_LT_AMP] = ACTIONS(1876), - [anon_sym_GT_AMP] = ACTIONS(1876), - [sym__special_characters] = ACTIONS(1876), - [anon_sym_DQUOTE] = ACTIONS(1876), - [anon_sym_DOLLAR] = ACTIONS(1878), - [sym_raw_string] = ACTIONS(1876), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1876), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1876), - [anon_sym_BQUOTE] = ACTIONS(1876), - [anon_sym_LT_LPAREN] = ACTIONS(1876), - [anon_sym_GT_LPAREN] = ACTIONS(1876), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1876), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(2759), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [836] = { - [sym_comment] = ACTIONS(265), - [sym_regex_without_right_brace] = ACTIONS(2816), + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(2791), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), }, [837] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(2790), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym__concat] = ACTIONS(1927), + [sym_variable_name] = ACTIONS(1927), + [ts_builtin_sym_end] = ACTIONS(1927), + [anon_sym_SEMI] = ACTIONS(1929), + [anon_sym_PIPE] = ACTIONS(1929), + [anon_sym_RPAREN] = ACTIONS(1927), + [anon_sym_SEMI_SEMI] = ACTIONS(1927), + [anon_sym_PIPE_AMP] = ACTIONS(1927), + [anon_sym_AMP_AMP] = ACTIONS(1927), + [anon_sym_PIPE_PIPE] = ACTIONS(1927), + [sym__special_characters] = ACTIONS(1927), + [anon_sym_DQUOTE] = ACTIONS(1927), + [anon_sym_DOLLAR] = ACTIONS(1929), + [sym_raw_string] = ACTIONS(1927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1927), + [anon_sym_BQUOTE] = ACTIONS(1927), + [anon_sym_LT_LPAREN] = ACTIONS(1927), + [anon_sym_GT_LPAREN] = ACTIONS(1927), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1929), + [sym_word] = ACTIONS(1929), + [anon_sym_LF] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1929), }, [838] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(2818), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(901), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), + [anon_sym_SEMI] = ACTIONS(2793), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(2791), + [anon_sym_SEMI_SEMI] = ACTIONS(2795), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2795), + [anon_sym_AMP] = ACTIONS(2793), }, [839] = { - [sym_file_descriptor] = ACTIONS(1884), - [sym__concat] = ACTIONS(1884), - [sym_variable_name] = ACTIONS(1884), - [anon_sym_LT] = ACTIONS(1886), - [anon_sym_GT] = ACTIONS(1886), - [anon_sym_GT_GT] = ACTIONS(1884), - [anon_sym_AMP_GT] = ACTIONS(1886), - [anon_sym_AMP_GT_GT] = ACTIONS(1884), - [anon_sym_LT_AMP] = ACTIONS(1884), - [anon_sym_GT_AMP] = ACTIONS(1884), - [sym__special_characters] = ACTIONS(1884), - [anon_sym_DQUOTE] = ACTIONS(1884), - [anon_sym_DOLLAR] = ACTIONS(1886), - [sym_raw_string] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1884), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1884), - [anon_sym_BQUOTE] = ACTIONS(1884), - [anon_sym_LT_LPAREN] = ACTIONS(1884), - [anon_sym_GT_LPAREN] = ACTIONS(1884), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1884), + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(2793), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(2791), + [anon_sym_SEMI_SEMI] = ACTIONS(2795), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(2795), + [anon_sym_AMP] = ACTIONS(2793), }, [840] = { - [anon_sym_SEMI] = ACTIONS(2820), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(2818), - [anon_sym_SEMI_SEMI] = ACTIONS(2822), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(2822), - [anon_sym_AMP] = ACTIONS(2820), + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(2791), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), }, [841] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(2820), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(2818), - [anon_sym_SEMI_SEMI] = ACTIONS(2822), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(2822), - [anon_sym_AMP] = ACTIONS(2820), + [anon_sym_SEMI] = ACTIONS(2797), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_SEMI_SEMI] = ACTIONS(2799), + [anon_sym_PIPE_AMP] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_BQUOTE] = ACTIONS(2791), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2799), + [anon_sym_AMP] = ACTIONS(2797), }, [842] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(2818), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(2797), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_SEMI_SEMI] = ACTIONS(2799), + [anon_sym_PIPE_AMP] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(2791), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(2799), + [anon_sym_AMP] = ACTIONS(2797), }, [843] = { - [anon_sym_SEMI] = ACTIONS(2824), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_SEMI_SEMI] = ACTIONS(2826), - [anon_sym_PIPE_AMP] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(883), - [anon_sym_PIPE_PIPE] = ACTIONS(883), - [anon_sym_BQUOTE] = ACTIONS(2818), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(2826), - [anon_sym_AMP] = ACTIONS(2824), + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(2801), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), }, [844] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(2824), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_SEMI_SEMI] = ACTIONS(2826), - [anon_sym_PIPE_AMP] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(883), - [anon_sym_PIPE_PIPE] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(2818), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(2826), - [anon_sym_AMP] = ACTIONS(2824), + [sym__concat] = ACTIONS(1959), + [sym_variable_name] = ACTIONS(1959), + [ts_builtin_sym_end] = ACTIONS(1959), + [anon_sym_SEMI] = ACTIONS(1961), + [anon_sym_PIPE] = ACTIONS(1961), + [anon_sym_RPAREN] = ACTIONS(1959), + [anon_sym_SEMI_SEMI] = ACTIONS(1959), + [anon_sym_PIPE_AMP] = ACTIONS(1959), + [anon_sym_AMP_AMP] = ACTIONS(1959), + [anon_sym_PIPE_PIPE] = ACTIONS(1959), + [sym__special_characters] = ACTIONS(1959), + [anon_sym_DQUOTE] = ACTIONS(1959), + [anon_sym_DOLLAR] = ACTIONS(1961), + [sym_raw_string] = ACTIONS(1959), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1959), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1959), + [anon_sym_BQUOTE] = ACTIONS(1959), + [anon_sym_LT_LPAREN] = ACTIONS(1959), + [anon_sym_GT_LPAREN] = ACTIONS(1959), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1961), + [sym_word] = ACTIONS(1961), + [anon_sym_LF] = ACTIONS(1959), + [anon_sym_AMP] = ACTIONS(1961), }, [845] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(2828), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(901), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), + [anon_sym_SEMI] = ACTIONS(2803), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(2801), + [anon_sym_SEMI_SEMI] = ACTIONS(2805), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2805), + [anon_sym_AMP] = ACTIONS(2803), }, [846] = { - [sym_file_descriptor] = ACTIONS(1916), - [sym__concat] = ACTIONS(1916), - [sym_variable_name] = ACTIONS(1916), - [anon_sym_LT] = ACTIONS(1918), - [anon_sym_GT] = ACTIONS(1918), - [anon_sym_GT_GT] = ACTIONS(1916), - [anon_sym_AMP_GT] = ACTIONS(1918), - [anon_sym_AMP_GT_GT] = ACTIONS(1916), - [anon_sym_LT_AMP] = ACTIONS(1916), - [anon_sym_GT_AMP] = ACTIONS(1916), - [sym__special_characters] = ACTIONS(1916), - [anon_sym_DQUOTE] = ACTIONS(1916), - [anon_sym_DOLLAR] = ACTIONS(1918), - [sym_raw_string] = ACTIONS(1916), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1916), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1916), - [anon_sym_BQUOTE] = ACTIONS(1916), - [anon_sym_LT_LPAREN] = ACTIONS(1916), - [anon_sym_GT_LPAREN] = ACTIONS(1916), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1916), + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(2803), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(2801), + [anon_sym_SEMI_SEMI] = ACTIONS(2805), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(2805), + [anon_sym_AMP] = ACTIONS(2803), }, [847] = { - [anon_sym_SEMI] = ACTIONS(2830), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(2828), - [anon_sym_SEMI_SEMI] = ACTIONS(2832), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(2832), - [anon_sym_AMP] = ACTIONS(2830), + [sym__concat] = ACTIONS(1763), + [ts_builtin_sym_end] = ACTIONS(1763), + [anon_sym_SEMI] = ACTIONS(1765), + [anon_sym_PIPE] = ACTIONS(1765), + [anon_sym_RPAREN] = ACTIONS(1763), + [anon_sym_SEMI_SEMI] = ACTIONS(1763), + [anon_sym_PIPE_AMP] = ACTIONS(1763), + [anon_sym_AMP_AMP] = ACTIONS(1763), + [anon_sym_PIPE_PIPE] = ACTIONS(1763), + [sym__special_characters] = ACTIONS(1763), + [anon_sym_DQUOTE] = ACTIONS(1763), + [anon_sym_DOLLAR] = ACTIONS(1765), + [sym_raw_string] = ACTIONS(1763), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1763), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1763), + [anon_sym_BQUOTE] = ACTIONS(1763), + [anon_sym_LT_LPAREN] = ACTIONS(1763), + [anon_sym_GT_LPAREN] = ACTIONS(1763), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1765), + [sym_word] = ACTIONS(1765), + [anon_sym_LF] = ACTIONS(1763), + [anon_sym_AMP] = ACTIONS(1765), }, [848] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(2830), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(2828), - [anon_sym_SEMI_SEMI] = ACTIONS(2832), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(2832), - [anon_sym_AMP] = ACTIONS(2830), + [aux_sym_concatenation_repeat1] = STATE(848), + [sym__concat] = ACTIONS(2807), + [ts_builtin_sym_end] = ACTIONS(1763), + [anon_sym_SEMI] = ACTIONS(1765), + [anon_sym_PIPE] = ACTIONS(1765), + [anon_sym_SEMI_SEMI] = ACTIONS(1763), + [anon_sym_PIPE_AMP] = ACTIONS(1763), + [anon_sym_AMP_AMP] = ACTIONS(1763), + [anon_sym_PIPE_PIPE] = ACTIONS(1763), + [sym__special_characters] = ACTIONS(1763), + [anon_sym_DQUOTE] = ACTIONS(1763), + [anon_sym_DOLLAR] = ACTIONS(1765), + [sym_raw_string] = ACTIONS(1763), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1763), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1763), + [anon_sym_BQUOTE] = ACTIONS(1763), + [anon_sym_LT_LPAREN] = ACTIONS(1763), + [anon_sym_GT_LPAREN] = ACTIONS(1763), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1765), + [sym_word] = ACTIONS(1765), + [anon_sym_LF] = ACTIONS(1763), + [anon_sym_AMP] = ACTIONS(1765), }, [849] = { - [anon_sym_DQUOTE] = ACTIONS(2834), - [anon_sym_DOLLAR] = ACTIONS(2834), - [sym__string_content] = ACTIONS(2836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2834), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2834), - [anon_sym_BQUOTE] = ACTIONS(2834), - [sym_comment] = ACTIONS(265), + [sym__concat] = ACTIONS(1770), + [ts_builtin_sym_end] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(1772), + [anon_sym_PIPE] = ACTIONS(1772), + [anon_sym_RPAREN] = ACTIONS(1770), + [anon_sym_SEMI_SEMI] = ACTIONS(1770), + [anon_sym_PIPE_AMP] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(1770), + [anon_sym_DQUOTE] = ACTIONS(1770), + [anon_sym_DOLLAR] = ACTIONS(1772), + [sym_raw_string] = ACTIONS(1770), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1770), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1770), + [anon_sym_BQUOTE] = ACTIONS(1770), + [anon_sym_LT_LPAREN] = ACTIONS(1770), + [anon_sym_GT_LPAREN] = ACTIONS(1770), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1772), + [sym_word] = ACTIONS(1772), + [anon_sym_LF] = ACTIONS(1770), + [anon_sym_AMP] = ACTIONS(1772), }, [850] = { - [sym_concatenation] = STATE(1273), - [sym_string] = STATE(1272), - [sym_simple_expansion] = STATE(1272), - [sym_string_expansion] = STATE(1272), - [sym_expansion] = STATE(1272), - [sym_command_substitution] = STATE(1272), - [sym_process_substitution] = STATE(1272), - [anon_sym_RBRACE] = ACTIONS(2838), - [sym__special_characters] = ACTIONS(2840), - [anon_sym_DQUOTE] = ACTIONS(1802), - [anon_sym_DOLLAR] = ACTIONS(1804), - [sym_raw_string] = ACTIONS(2842), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1808), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1810), - [anon_sym_BQUOTE] = ACTIONS(1812), - [anon_sym_LT_LPAREN] = ACTIONS(1814), - [anon_sym_GT_LPAREN] = ACTIONS(1814), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2842), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_DQUOTE] = ACTIONS(2810), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym__string_content] = ACTIONS(821), + [anon_sym_POUND] = ACTIONS(815), + [sym_comment] = ACTIONS(281), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(823), + [anon_sym_STAR] = ACTIONS(825), + [anon_sym_AT] = ACTIONS(825), + [anon_sym_QMARK] = ACTIONS(825), + [anon_sym_0] = ACTIONS(823), + [anon_sym__] = ACTIONS(823), }, [851] = { - [anon_sym_LBRACK] = ACTIONS(815), - [anon_sym_EQ] = ACTIONS(2844), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(1306), + [sym_string] = STATE(1305), + [sym_simple_expansion] = STATE(1305), + [sym_string_expansion] = STATE(1305), + [sym_expansion] = STATE(1305), + [sym_command_substitution] = STATE(1305), + [sym_process_substitution] = STATE(1305), + [anon_sym_RBRACE] = ACTIONS(2812), + [sym__special_characters] = ACTIONS(2814), + [anon_sym_DQUOTE] = ACTIONS(1841), + [anon_sym_DOLLAR] = ACTIONS(1843), + [sym_raw_string] = ACTIONS(2816), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1849), + [anon_sym_BQUOTE] = ACTIONS(1851), + [anon_sym_LT_LPAREN] = ACTIONS(1853), + [anon_sym_GT_LPAREN] = ACTIONS(1853), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(2816), }, [852] = { - [sym_concatenation] = STATE(1277), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(1277), - [anon_sym_RBRACE] = ACTIONS(2846), - [anon_sym_EQ] = ACTIONS(2848), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(2850), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(2852), - [anon_sym_COLON] = ACTIONS(2848), - [anon_sym_COLON_QMARK] = ACTIONS(2848), - [anon_sym_COLON_DASH] = ACTIONS(2848), - [anon_sym_PERCENT] = ACTIONS(2848), - [anon_sym_DASH] = ACTIONS(2848), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [anon_sym_LBRACK] = ACTIONS(857), + [anon_sym_EQ] = ACTIONS(2818), + [sym_comment] = ACTIONS(55), }, [853] = { - [sym_concatenation] = STATE(1279), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(1279), - [anon_sym_RBRACE] = ACTIONS(2838), - [anon_sym_EQ] = ACTIONS(2854), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(2856), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(2858), - [anon_sym_COLON] = ACTIONS(2854), - [anon_sym_COLON_QMARK] = ACTIONS(2854), - [anon_sym_COLON_DASH] = ACTIONS(2854), - [anon_sym_PERCENT] = ACTIONS(2854), - [anon_sym_DASH] = ACTIONS(2854), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_concatenation] = STATE(1310), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1310), + [anon_sym_RBRACE] = ACTIONS(2820), + [anon_sym_EQ] = ACTIONS(2822), + [anon_sym_DASH] = ACTIONS(2822), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(2824), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(2826), + [anon_sym_COLON] = ACTIONS(2822), + [anon_sym_COLON_QMARK] = ACTIONS(2822), + [anon_sym_COLON_DASH] = ACTIONS(2822), + [anon_sym_PERCENT] = ACTIONS(2822), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [854] = { - [sym__concat] = ACTIONS(1832), - [anon_sym_DQUOTE] = ACTIONS(1834), - [anon_sym_DOLLAR] = ACTIONS(1834), - [sym__string_content] = ACTIONS(1832), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1834), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1834), - [anon_sym_BQUOTE] = ACTIONS(1834), - [sym_comment] = ACTIONS(265), + [sym_concatenation] = STATE(1312), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1312), + [anon_sym_RBRACE] = ACTIONS(2812), + [anon_sym_EQ] = ACTIONS(2828), + [anon_sym_DASH] = ACTIONS(2828), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(2830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(2832), + [anon_sym_COLON] = ACTIONS(2828), + [anon_sym_COLON_QMARK] = ACTIONS(2828), + [anon_sym_COLON_DASH] = ACTIONS(2828), + [anon_sym_PERCENT] = ACTIONS(2828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [855] = { - [sym_comment] = ACTIONS(265), - [sym_regex_without_right_brace] = ACTIONS(2860), + [sym__concat] = ACTIONS(1871), + [ts_builtin_sym_end] = ACTIONS(1871), + [anon_sym_SEMI] = ACTIONS(1873), + [anon_sym_PIPE] = ACTIONS(1873), + [anon_sym_RPAREN] = ACTIONS(1871), + [anon_sym_SEMI_SEMI] = ACTIONS(1871), + [anon_sym_PIPE_AMP] = ACTIONS(1871), + [anon_sym_AMP_AMP] = ACTIONS(1871), + [anon_sym_PIPE_PIPE] = ACTIONS(1871), + [sym__special_characters] = ACTIONS(1871), + [anon_sym_DQUOTE] = ACTIONS(1871), + [anon_sym_DOLLAR] = ACTIONS(1873), + [sym_raw_string] = ACTIONS(1871), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1871), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1871), + [anon_sym_BQUOTE] = ACTIONS(1871), + [anon_sym_LT_LPAREN] = ACTIONS(1871), + [anon_sym_GT_LPAREN] = ACTIONS(1871), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1873), + [sym_word] = ACTIONS(1873), + [anon_sym_LF] = ACTIONS(1871), + [anon_sym_AMP] = ACTIONS(1873), }, [856] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(2862), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_concatenation] = STATE(1315), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1315), + [sym_regex] = ACTIONS(2834), + [anon_sym_RBRACE] = ACTIONS(2836), + [anon_sym_EQ] = ACTIONS(2838), + [anon_sym_DASH] = ACTIONS(2838), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(2840), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(2838), + [anon_sym_COLON_QMARK] = ACTIONS(2838), + [anon_sym_COLON_DASH] = ACTIONS(2838), + [anon_sym_PERCENT] = ACTIONS(2838), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [857] = { - [sym__concat] = ACTIONS(1876), - [anon_sym_DQUOTE] = ACTIONS(1878), - [anon_sym_DOLLAR] = ACTIONS(1878), - [sym__string_content] = ACTIONS(1876), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1878), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1878), - [anon_sym_BQUOTE] = ACTIONS(1878), - [sym_comment] = ACTIONS(265), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(2836), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [858] = { - [sym_comment] = ACTIONS(265), - [sym_regex_without_right_brace] = ACTIONS(2864), + [sym__concat] = ACTIONS(1919), + [ts_builtin_sym_end] = ACTIONS(1919), + [anon_sym_SEMI] = ACTIONS(1921), + [anon_sym_PIPE] = ACTIONS(1921), + [anon_sym_RPAREN] = ACTIONS(1919), + [anon_sym_SEMI_SEMI] = ACTIONS(1919), + [anon_sym_PIPE_AMP] = ACTIONS(1919), + [anon_sym_AMP_AMP] = ACTIONS(1919), + [anon_sym_PIPE_PIPE] = ACTIONS(1919), + [sym__special_characters] = ACTIONS(1919), + [anon_sym_DQUOTE] = ACTIONS(1919), + [anon_sym_DOLLAR] = ACTIONS(1921), + [sym_raw_string] = ACTIONS(1919), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1919), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1919), + [anon_sym_BQUOTE] = ACTIONS(1919), + [anon_sym_LT_LPAREN] = ACTIONS(1919), + [anon_sym_GT_LPAREN] = ACTIONS(1919), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1921), + [sym_word] = ACTIONS(1921), + [anon_sym_LF] = ACTIONS(1919), + [anon_sym_AMP] = ACTIONS(1921), }, [859] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(2838), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_concatenation] = STATE(1312), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1312), + [sym_regex] = ACTIONS(2842), + [anon_sym_RBRACE] = ACTIONS(2812), + [anon_sym_EQ] = ACTIONS(2828), + [anon_sym_DASH] = ACTIONS(2828), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(2830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(2828), + [anon_sym_COLON_QMARK] = ACTIONS(2828), + [anon_sym_COLON_DASH] = ACTIONS(2828), + [anon_sym_PERCENT] = ACTIONS(2828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [860] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(2866), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(901), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(2812), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [861] = { - [sym__concat] = ACTIONS(1884), - [anon_sym_DQUOTE] = ACTIONS(1886), - [anon_sym_DOLLAR] = ACTIONS(1886), - [sym__string_content] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1886), - [anon_sym_BQUOTE] = ACTIONS(1886), - [sym_comment] = ACTIONS(265), + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(2844), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), }, [862] = { - [anon_sym_SEMI] = ACTIONS(2868), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(2866), - [anon_sym_SEMI_SEMI] = ACTIONS(2870), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(2870), - [anon_sym_AMP] = ACTIONS(2868), + [sym__concat] = ACTIONS(1927), + [ts_builtin_sym_end] = ACTIONS(1927), + [anon_sym_SEMI] = ACTIONS(1929), + [anon_sym_PIPE] = ACTIONS(1929), + [anon_sym_RPAREN] = ACTIONS(1927), + [anon_sym_SEMI_SEMI] = ACTIONS(1927), + [anon_sym_PIPE_AMP] = ACTIONS(1927), + [anon_sym_AMP_AMP] = ACTIONS(1927), + [anon_sym_PIPE_PIPE] = ACTIONS(1927), + [sym__special_characters] = ACTIONS(1927), + [anon_sym_DQUOTE] = ACTIONS(1927), + [anon_sym_DOLLAR] = ACTIONS(1929), + [sym_raw_string] = ACTIONS(1927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1927), + [anon_sym_BQUOTE] = ACTIONS(1927), + [anon_sym_LT_LPAREN] = ACTIONS(1927), + [anon_sym_GT_LPAREN] = ACTIONS(1927), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1929), + [sym_word] = ACTIONS(1929), + [anon_sym_LF] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1929), }, [863] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(2868), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(2866), - [anon_sym_SEMI_SEMI] = ACTIONS(2870), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(2870), - [anon_sym_AMP] = ACTIONS(2868), + [anon_sym_SEMI] = ACTIONS(2846), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(2844), + [anon_sym_SEMI_SEMI] = ACTIONS(2848), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2848), + [anon_sym_AMP] = ACTIONS(2846), }, [864] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(2866), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(2846), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(2844), + [anon_sym_SEMI_SEMI] = ACTIONS(2848), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(2848), + [anon_sym_AMP] = ACTIONS(2846), }, [865] = { - [anon_sym_SEMI] = ACTIONS(2872), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_SEMI_SEMI] = ACTIONS(2874), - [anon_sym_PIPE_AMP] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(883), - [anon_sym_PIPE_PIPE] = ACTIONS(883), - [anon_sym_BQUOTE] = ACTIONS(2866), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(2874), - [anon_sym_AMP] = ACTIONS(2872), + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(2844), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), }, [866] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(2872), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_SEMI_SEMI] = ACTIONS(2874), - [anon_sym_PIPE_AMP] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(883), - [anon_sym_PIPE_PIPE] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(2866), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(2874), - [anon_sym_AMP] = ACTIONS(2872), + [anon_sym_SEMI] = ACTIONS(2850), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_SEMI_SEMI] = ACTIONS(2852), + [anon_sym_PIPE_AMP] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_BQUOTE] = ACTIONS(2844), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2852), + [anon_sym_AMP] = ACTIONS(2850), }, [867] = { - [sym__simple_heredoc_body] = ACTIONS(2876), - [sym__heredoc_body_beginning] = ACTIONS(2876), - [sym_file_descriptor] = ACTIONS(2876), - [sym__concat] = ACTIONS(2876), - [ts_builtin_sym_end] = ACTIONS(2876), - [anon_sym_SEMI] = ACTIONS(2878), - [anon_sym_PIPE] = ACTIONS(2878), - [anon_sym_RPAREN] = ACTIONS(2876), - [anon_sym_SEMI_SEMI] = ACTIONS(2876), - [anon_sym_PIPE_AMP] = ACTIONS(2876), - [anon_sym_AMP_AMP] = ACTIONS(2876), - [anon_sym_PIPE_PIPE] = ACTIONS(2876), - [anon_sym_EQ_TILDE] = ACTIONS(2878), - [anon_sym_EQ_EQ] = ACTIONS(2878), - [anon_sym_LT] = ACTIONS(2878), - [anon_sym_GT] = ACTIONS(2878), - [anon_sym_GT_GT] = ACTIONS(2876), - [anon_sym_AMP_GT] = ACTIONS(2878), - [anon_sym_AMP_GT_GT] = ACTIONS(2876), - [anon_sym_LT_AMP] = ACTIONS(2876), - [anon_sym_GT_AMP] = ACTIONS(2876), - [anon_sym_LT_LT] = ACTIONS(2878), - [anon_sym_LT_LT_DASH] = ACTIONS(2876), - [anon_sym_LT_LT_LT] = ACTIONS(2876), - [sym__special_characters] = ACTIONS(2876), - [anon_sym_DQUOTE] = ACTIONS(2876), - [anon_sym_DOLLAR] = ACTIONS(2878), - [sym_raw_string] = ACTIONS(2876), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2876), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2876), - [anon_sym_BQUOTE] = ACTIONS(2876), - [anon_sym_LT_LPAREN] = ACTIONS(2876), - [anon_sym_GT_LPAREN] = ACTIONS(2876), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2878), - [anon_sym_LF] = ACTIONS(2876), - [anon_sym_AMP] = ACTIONS(2878), + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(2850), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_SEMI_SEMI] = ACTIONS(2852), + [anon_sym_PIPE_AMP] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(2844), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(2852), + [anon_sym_AMP] = ACTIONS(2850), }, [868] = { - [anon_sym_DOLLAR] = ACTIONS(775), - [sym__string_content] = ACTIONS(777), - [anon_sym_POUND] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(781), - [anon_sym_STAR] = ACTIONS(783), - [anon_sym_AT] = ACTIONS(783), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_0] = ACTIONS(781), - [anon_sym__] = ACTIONS(781), + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(2854), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), }, [869] = { - [aux_sym_concatenation_repeat1] = STATE(526), - [sym__concat] = ACTIONS(2880), - [anon_sym_RBRACK] = ACTIONS(2882), - [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(1959), + [ts_builtin_sym_end] = ACTIONS(1959), + [anon_sym_SEMI] = ACTIONS(1961), + [anon_sym_PIPE] = ACTIONS(1961), + [anon_sym_RPAREN] = ACTIONS(1959), + [anon_sym_SEMI_SEMI] = ACTIONS(1959), + [anon_sym_PIPE_AMP] = ACTIONS(1959), + [anon_sym_AMP_AMP] = ACTIONS(1959), + [anon_sym_PIPE_PIPE] = ACTIONS(1959), + [sym__special_characters] = ACTIONS(1959), + [anon_sym_DQUOTE] = ACTIONS(1959), + [anon_sym_DOLLAR] = ACTIONS(1961), + [sym_raw_string] = ACTIONS(1959), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1959), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1959), + [anon_sym_BQUOTE] = ACTIONS(1959), + [anon_sym_LT_LPAREN] = ACTIONS(1959), + [anon_sym_GT_LPAREN] = ACTIONS(1959), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1961), + [sym_word] = ACTIONS(1961), + [anon_sym_LF] = ACTIONS(1959), + [anon_sym_AMP] = ACTIONS(1961), }, [870] = { - [aux_sym_concatenation_repeat1] = STATE(526), - [sym__concat] = ACTIONS(2884), - [anon_sym_RBRACK] = ACTIONS(2886), - [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(2856), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(2854), + [anon_sym_SEMI_SEMI] = ACTIONS(2858), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2858), + [anon_sym_AMP] = ACTIONS(2856), }, [871] = { - [sym__concat] = ACTIONS(2888), - [anon_sym_RBRACK] = ACTIONS(2886), - [sym_comment] = ACTIONS(53), + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(2856), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(2854), + [anon_sym_SEMI_SEMI] = ACTIONS(2858), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(2858), + [anon_sym_AMP] = ACTIONS(2856), }, [872] = { - [sym__simple_heredoc_body] = ACTIONS(2890), - [sym__heredoc_body_beginning] = ACTIONS(2890), - [sym_file_descriptor] = ACTIONS(2890), - [sym__concat] = ACTIONS(2890), - [ts_builtin_sym_end] = ACTIONS(2890), - [anon_sym_SEMI] = ACTIONS(2892), - [anon_sym_PIPE] = ACTIONS(2892), - [anon_sym_RPAREN] = ACTIONS(2890), - [anon_sym_SEMI_SEMI] = ACTIONS(2890), - [anon_sym_PIPE_AMP] = ACTIONS(2890), - [anon_sym_AMP_AMP] = ACTIONS(2890), - [anon_sym_PIPE_PIPE] = ACTIONS(2890), - [anon_sym_EQ_TILDE] = ACTIONS(2892), - [anon_sym_EQ_EQ] = ACTIONS(2892), - [anon_sym_LT] = ACTIONS(2892), - [anon_sym_GT] = ACTIONS(2892), - [anon_sym_GT_GT] = ACTIONS(2890), - [anon_sym_AMP_GT] = ACTIONS(2892), - [anon_sym_AMP_GT_GT] = ACTIONS(2890), - [anon_sym_LT_AMP] = ACTIONS(2890), - [anon_sym_GT_AMP] = ACTIONS(2890), - [anon_sym_LT_LT] = ACTIONS(2892), - [anon_sym_LT_LT_DASH] = ACTIONS(2890), - [anon_sym_LT_LT_LT] = ACTIONS(2890), - [sym__special_characters] = ACTIONS(2890), - [anon_sym_DQUOTE] = ACTIONS(2890), - [anon_sym_DOLLAR] = ACTIONS(2892), - [sym_raw_string] = ACTIONS(2890), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2890), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2890), - [anon_sym_BQUOTE] = ACTIONS(2890), - [anon_sym_LT_LPAREN] = ACTIONS(2890), - [anon_sym_GT_LPAREN] = ACTIONS(2890), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2892), - [anon_sym_LF] = ACTIONS(2890), - [anon_sym_AMP] = ACTIONS(2892), + [sym_file_descriptor] = ACTIONS(1763), + [sym__concat] = ACTIONS(1763), + [sym_variable_name] = ACTIONS(1763), + [anon_sym_LT] = ACTIONS(1765), + [anon_sym_GT] = ACTIONS(1765), + [anon_sym_GT_GT] = ACTIONS(1763), + [anon_sym_AMP_GT] = ACTIONS(1765), + [anon_sym_AMP_GT_GT] = ACTIONS(1763), + [anon_sym_LT_AMP] = ACTIONS(1763), + [anon_sym_GT_AMP] = ACTIONS(1763), + [sym__special_characters] = ACTIONS(1763), + [anon_sym_DQUOTE] = ACTIONS(1763), + [anon_sym_DOLLAR] = ACTIONS(1765), + [sym_raw_string] = ACTIONS(1763), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1763), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1763), + [anon_sym_BQUOTE] = ACTIONS(1763), + [anon_sym_LT_LPAREN] = ACTIONS(1763), + [anon_sym_GT_LPAREN] = ACTIONS(1763), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1763), }, [873] = { - [aux_sym_concatenation_repeat1] = STATE(1293), - [sym__concat] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(2896), - [sym_comment] = ACTIONS(53), + [aux_sym_concatenation_repeat1] = STATE(873), + [sym_file_descriptor] = ACTIONS(1763), + [sym__concat] = ACTIONS(2860), + [sym_variable_name] = ACTIONS(1763), + [anon_sym_LT] = ACTIONS(1765), + [anon_sym_GT] = ACTIONS(1765), + [anon_sym_GT_GT] = ACTIONS(1763), + [anon_sym_AMP_GT] = ACTIONS(1765), + [anon_sym_AMP_GT_GT] = ACTIONS(1763), + [anon_sym_LT_AMP] = ACTIONS(1763), + [anon_sym_GT_AMP] = ACTIONS(1763), + [sym__special_characters] = ACTIONS(1763), + [anon_sym_DQUOTE] = ACTIONS(1763), + [anon_sym_DOLLAR] = ACTIONS(1765), + [sym_raw_string] = ACTIONS(1763), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1763), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1763), + [anon_sym_BQUOTE] = ACTIONS(1763), + [anon_sym_LT_LPAREN] = ACTIONS(1763), + [anon_sym_GT_LPAREN] = ACTIONS(1763), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1763), }, [874] = { - [sym_simple_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [sym_command_substitution] = STATE(141), - [aux_sym_string_repeat1] = STATE(1296), - [anon_sym_DQUOTE] = ACTIONS(2898), - [anon_sym_DOLLAR] = ACTIONS(2900), - [sym__string_content] = ACTIONS(257), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(261), - [anon_sym_BQUOTE] = ACTIONS(263), - [sym_comment] = ACTIONS(265), + [sym_file_descriptor] = ACTIONS(1770), + [sym__concat] = ACTIONS(1770), + [sym_variable_name] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1772), + [anon_sym_GT] = ACTIONS(1772), + [anon_sym_GT_GT] = ACTIONS(1770), + [anon_sym_AMP_GT] = ACTIONS(1772), + [anon_sym_AMP_GT_GT] = ACTIONS(1770), + [anon_sym_LT_AMP] = ACTIONS(1770), + [anon_sym_GT_AMP] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(1770), + [anon_sym_DQUOTE] = ACTIONS(1770), + [anon_sym_DOLLAR] = ACTIONS(1772), + [sym_raw_string] = ACTIONS(1770), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1770), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1770), + [anon_sym_BQUOTE] = ACTIONS(1770), + [anon_sym_LT_LPAREN] = ACTIONS(1770), + [anon_sym_GT_LPAREN] = ACTIONS(1770), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1770), }, [875] = { - [sym_string] = STATE(1298), - [anon_sym_DQUOTE] = ACTIONS(1802), - [anon_sym_DOLLAR] = ACTIONS(2902), - [sym_raw_string] = ACTIONS(2904), - [anon_sym_POUND] = ACTIONS(2902), - [anon_sym_DASH] = ACTIONS(2902), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2906), - [anon_sym_STAR] = ACTIONS(2908), - [anon_sym_AT] = ACTIONS(2908), - [anon_sym_QMARK] = ACTIONS(2908), - [anon_sym_0] = ACTIONS(2906), - [anon_sym__] = ACTIONS(2906), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_DQUOTE] = ACTIONS(2863), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym__string_content] = ACTIONS(821), + [anon_sym_POUND] = ACTIONS(815), + [sym_comment] = ACTIONS(281), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(823), + [anon_sym_STAR] = ACTIONS(825), + [anon_sym_AT] = ACTIONS(825), + [anon_sym_QMARK] = ACTIONS(825), + [anon_sym_0] = ACTIONS(823), + [anon_sym__] = ACTIONS(823), }, [876] = { - [aux_sym_concatenation_repeat1] = STATE(1293), - [sym__concat] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(2910), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(1326), + [sym_string] = STATE(1325), + [sym_simple_expansion] = STATE(1325), + [sym_string_expansion] = STATE(1325), + [sym_expansion] = STATE(1325), + [sym_command_substitution] = STATE(1325), + [sym_process_substitution] = STATE(1325), + [anon_sym_RBRACE] = ACTIONS(2865), + [sym__special_characters] = ACTIONS(2867), + [anon_sym_DQUOTE] = ACTIONS(1841), + [anon_sym_DOLLAR] = ACTIONS(1843), + [sym_raw_string] = ACTIONS(2869), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1849), + [anon_sym_BQUOTE] = ACTIONS(1851), + [anon_sym_LT_LPAREN] = ACTIONS(1853), + [anon_sym_GT_LPAREN] = ACTIONS(1853), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(2869), }, [877] = { - [sym_subscript] = STATE(1304), - [sym_variable_name] = ACTIONS(2912), - [anon_sym_BANG] = ACTIONS(2914), - [anon_sym_DOLLAR] = ACTIONS(2916), - [anon_sym_POUND] = ACTIONS(2914), - [anon_sym_DASH] = ACTIONS(2916), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2918), - [anon_sym_STAR] = ACTIONS(2920), - [anon_sym_AT] = ACTIONS(2920), - [anon_sym_QMARK] = ACTIONS(2920), - [anon_sym_0] = ACTIONS(2918), - [anon_sym__] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(857), + [anon_sym_EQ] = ACTIONS(2871), + [sym_comment] = ACTIONS(55), }, [878] = { - [sym__terminated_statement] = STATE(1307), - [sym_for_statement] = STATE(1305), - [sym_c_style_for_statement] = STATE(1305), - [sym_while_statement] = STATE(1305), - [sym_if_statement] = STATE(1305), - [sym_case_statement] = STATE(1305), - [sym_function_definition] = STATE(1305), - [sym_subshell] = STATE(1305), - [sym_pipeline] = STATE(1305), - [sym_list] = STATE(1305), - [sym_negated_command] = STATE(1305), - [sym_test_command] = STATE(1305), - [sym_declaration_command] = STATE(1305), - [sym_unset_command] = STATE(1305), - [sym_command] = STATE(1305), - [sym_command_name] = STATE(78), - [sym_variable_assignment] = STATE(1306), - [sym_subscript] = STATE(80), - [sym_file_redirect] = STATE(82), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(75), - [sym_simple_expansion] = STATE(75), - [sym_string_expansion] = STATE(75), - [sym_expansion] = STATE(75), - [sym_command_substitution] = STATE(75), - [sym_process_substitution] = STATE(75), - [aux_sym__statements_repeat1] = STATE(1307), - [aux_sym_command_repeat1] = STATE(82), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(111), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(119), - [anon_sym_declare] = ACTIONS(121), - [anon_sym_typeset] = ACTIONS(121), - [anon_sym_export] = ACTIONS(121), - [anon_sym_readonly] = ACTIONS(121), - [anon_sym_local] = ACTIONS(121), - [anon_sym_unset] = ACTIONS(123), - [anon_sym_unsetenv] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), + [sym_concatenation] = STATE(1330), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1330), + [anon_sym_RBRACE] = ACTIONS(2873), + [anon_sym_EQ] = ACTIONS(2875), + [anon_sym_DASH] = ACTIONS(2875), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(2877), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(2879), + [anon_sym_COLON] = ACTIONS(2875), + [anon_sym_COLON_QMARK] = ACTIONS(2875), + [anon_sym_COLON_DASH] = ACTIONS(2875), + [anon_sym_PERCENT] = ACTIONS(2875), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [879] = { - [sym__terminated_statement] = STATE(1310), - [sym_for_statement] = STATE(1308), - [sym_c_style_for_statement] = STATE(1308), - [sym_while_statement] = STATE(1308), - [sym_if_statement] = STATE(1308), - [sym_case_statement] = STATE(1308), - [sym_function_definition] = STATE(1308), - [sym_subshell] = STATE(1308), - [sym_pipeline] = STATE(1308), - [sym_list] = STATE(1308), - [sym_negated_command] = STATE(1308), - [sym_test_command] = STATE(1308), - [sym_declaration_command] = STATE(1308), - [sym_unset_command] = STATE(1308), - [sym_command] = STATE(1308), - [sym_command_name] = STATE(165), - [sym_variable_assignment] = STATE(1309), - [sym_subscript] = STATE(53), - [sym_file_redirect] = STATE(168), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(47), - [sym_simple_expansion] = STATE(47), - [sym_string_expansion] = STATE(47), - [sym_expansion] = STATE(47), - [sym_command_substitution] = STATE(47), - [sym_process_substitution] = STATE(47), - [aux_sym__statements_repeat1] = STATE(1310), - [aux_sym_command_repeat1] = STATE(168), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(69), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(289), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(291), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(293), - [anon_sym_LBRACK] = ACTIONS(295), - [anon_sym_LBRACK_LBRACK] = ACTIONS(297), - [anon_sym_declare] = ACTIONS(299), - [anon_sym_typeset] = ACTIONS(299), - [anon_sym_export] = ACTIONS(299), - [anon_sym_readonly] = ACTIONS(299), - [anon_sym_local] = ACTIONS(299), - [anon_sym_unset] = ACTIONS(301), - [anon_sym_unsetenv] = ACTIONS(301), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(87), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(303), + [sym_concatenation] = STATE(1332), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1332), + [anon_sym_RBRACE] = ACTIONS(2865), + [anon_sym_EQ] = ACTIONS(2881), + [anon_sym_DASH] = ACTIONS(2881), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(2883), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(2885), + [anon_sym_COLON] = ACTIONS(2881), + [anon_sym_COLON_QMARK] = ACTIONS(2881), + [anon_sym_COLON_DASH] = ACTIONS(2881), + [anon_sym_PERCENT] = ACTIONS(2881), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [880] = { - [sym__terminated_statement] = STATE(1313), - [sym_for_statement] = STATE(1311), - [sym_c_style_for_statement] = STATE(1311), - [sym_while_statement] = STATE(1311), - [sym_if_statement] = STATE(1311), - [sym_case_statement] = STATE(1311), - [sym_function_definition] = STATE(1311), - [sym_subshell] = STATE(1311), - [sym_pipeline] = STATE(1311), - [sym_list] = STATE(1311), - [sym_negated_command] = STATE(1311), - [sym_test_command] = STATE(1311), - [sym_declaration_command] = STATE(1311), - [sym_unset_command] = STATE(1311), - [sym_command] = STATE(1311), - [sym_command_name] = STATE(78), - [sym_variable_assignment] = STATE(1312), - [sym_subscript] = STATE(80), - [sym_file_redirect] = STATE(82), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(75), - [sym_simple_expansion] = STATE(75), - [sym_string_expansion] = STATE(75), - [sym_expansion] = STATE(75), - [sym_command_substitution] = STATE(75), - [sym_process_substitution] = STATE(75), - [aux_sym__statements_repeat1] = STATE(1313), - [aux_sym_command_repeat1] = STATE(82), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(111), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(119), - [anon_sym_declare] = ACTIONS(121), - [anon_sym_typeset] = ACTIONS(121), - [anon_sym_export] = ACTIONS(121), - [anon_sym_readonly] = ACTIONS(121), - [anon_sym_local] = ACTIONS(121), - [anon_sym_unset] = ACTIONS(123), - [anon_sym_unsetenv] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), + [sym_file_descriptor] = ACTIONS(1871), + [sym__concat] = ACTIONS(1871), + [sym_variable_name] = ACTIONS(1871), + [anon_sym_LT] = ACTIONS(1873), + [anon_sym_GT] = ACTIONS(1873), + [anon_sym_GT_GT] = ACTIONS(1871), + [anon_sym_AMP_GT] = ACTIONS(1873), + [anon_sym_AMP_GT_GT] = ACTIONS(1871), + [anon_sym_LT_AMP] = ACTIONS(1871), + [anon_sym_GT_AMP] = ACTIONS(1871), + [sym__special_characters] = ACTIONS(1871), + [anon_sym_DQUOTE] = ACTIONS(1871), + [anon_sym_DOLLAR] = ACTIONS(1873), + [sym_raw_string] = ACTIONS(1871), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1871), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1871), + [anon_sym_BQUOTE] = ACTIONS(1871), + [anon_sym_LT_LPAREN] = ACTIONS(1871), + [anon_sym_GT_LPAREN] = ACTIONS(1871), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1871), }, [881] = { - [anon_sym_RBRACE] = ACTIONS(2910), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(1335), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1335), + [sym_regex] = ACTIONS(2887), + [anon_sym_RBRACE] = ACTIONS(2889), + [anon_sym_EQ] = ACTIONS(2891), + [anon_sym_DASH] = ACTIONS(2891), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(2893), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(2891), + [anon_sym_COLON_QMARK] = ACTIONS(2891), + [anon_sym_COLON_DASH] = ACTIONS(2891), + [anon_sym_PERCENT] = ACTIONS(2891), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [882] = { - [sym_concatenation] = STATE(1316), - [sym_string] = STATE(1315), - [sym_simple_expansion] = STATE(1315), - [sym_string_expansion] = STATE(1315), - [sym_expansion] = STATE(1315), - [sym_command_substitution] = STATE(1315), - [sym_process_substitution] = STATE(1315), - [anon_sym_RBRACE] = ACTIONS(2910), - [sym__special_characters] = ACTIONS(2922), - [anon_sym_DQUOTE] = ACTIONS(1802), - [anon_sym_DOLLAR] = ACTIONS(1804), - [sym_raw_string] = ACTIONS(2924), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1808), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1810), - [anon_sym_BQUOTE] = ACTIONS(1812), - [anon_sym_LT_LPAREN] = ACTIONS(1814), - [anon_sym_GT_LPAREN] = ACTIONS(1814), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2924), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(2889), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [883] = { - [sym__simple_heredoc_body] = ACTIONS(2926), - [sym__heredoc_body_beginning] = ACTIONS(2926), - [sym_file_descriptor] = ACTIONS(2926), - [sym__concat] = ACTIONS(2926), - [ts_builtin_sym_end] = ACTIONS(2926), - [anon_sym_SEMI] = ACTIONS(2928), - [anon_sym_PIPE] = ACTIONS(2928), - [anon_sym_RPAREN] = ACTIONS(2926), - [anon_sym_SEMI_SEMI] = ACTIONS(2926), - [anon_sym_PIPE_AMP] = ACTIONS(2926), - [anon_sym_AMP_AMP] = ACTIONS(2926), - [anon_sym_PIPE_PIPE] = ACTIONS(2926), - [anon_sym_EQ_TILDE] = ACTIONS(2928), - [anon_sym_EQ_EQ] = ACTIONS(2928), - [anon_sym_LT] = ACTIONS(2928), - [anon_sym_GT] = ACTIONS(2928), - [anon_sym_GT_GT] = ACTIONS(2926), - [anon_sym_AMP_GT] = ACTIONS(2928), - [anon_sym_AMP_GT_GT] = ACTIONS(2926), - [anon_sym_LT_AMP] = ACTIONS(2926), - [anon_sym_GT_AMP] = ACTIONS(2926), - [anon_sym_LT_LT] = ACTIONS(2928), - [anon_sym_LT_LT_DASH] = ACTIONS(2926), - [anon_sym_LT_LT_LT] = ACTIONS(2926), - [sym__special_characters] = ACTIONS(2926), - [anon_sym_DQUOTE] = ACTIONS(2926), - [anon_sym_DOLLAR] = ACTIONS(2928), - [sym_raw_string] = ACTIONS(2926), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2926), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2926), - [anon_sym_BQUOTE] = ACTIONS(2926), - [anon_sym_LT_LPAREN] = ACTIONS(2926), - [anon_sym_GT_LPAREN] = ACTIONS(2926), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2928), - [anon_sym_LF] = ACTIONS(2926), - [anon_sym_AMP] = ACTIONS(2928), + [sym_file_descriptor] = ACTIONS(1919), + [sym__concat] = ACTIONS(1919), + [sym_variable_name] = ACTIONS(1919), + [anon_sym_LT] = ACTIONS(1921), + [anon_sym_GT] = ACTIONS(1921), + [anon_sym_GT_GT] = ACTIONS(1919), + [anon_sym_AMP_GT] = ACTIONS(1921), + [anon_sym_AMP_GT_GT] = ACTIONS(1919), + [anon_sym_LT_AMP] = ACTIONS(1919), + [anon_sym_GT_AMP] = ACTIONS(1919), + [sym__special_characters] = ACTIONS(1919), + [anon_sym_DQUOTE] = ACTIONS(1919), + [anon_sym_DOLLAR] = ACTIONS(1921), + [sym_raw_string] = ACTIONS(1919), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1919), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1919), + [anon_sym_BQUOTE] = ACTIONS(1919), + [anon_sym_LT_LPAREN] = ACTIONS(1919), + [anon_sym_GT_LPAREN] = ACTIONS(1919), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1919), }, [884] = { - [sym_comment] = ACTIONS(265), - [sym_regex_without_right_brace] = ACTIONS(2930), + [sym_concatenation] = STATE(1332), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1332), + [sym_regex] = ACTIONS(2895), + [anon_sym_RBRACE] = ACTIONS(2865), + [anon_sym_EQ] = ACTIONS(2881), + [anon_sym_DASH] = ACTIONS(2881), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(2883), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(2881), + [anon_sym_COLON_QMARK] = ACTIONS(2881), + [anon_sym_COLON_DASH] = ACTIONS(2881), + [anon_sym_PERCENT] = ACTIONS(2881), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [885] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(2932), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(2865), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [886] = { - [sym_comment] = ACTIONS(265), - [sym_regex_without_right_brace] = ACTIONS(2934), + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(2897), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), }, [887] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(2910), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_file_descriptor] = ACTIONS(1927), + [sym__concat] = ACTIONS(1927), + [sym_variable_name] = ACTIONS(1927), + [anon_sym_LT] = ACTIONS(1929), + [anon_sym_GT] = ACTIONS(1929), + [anon_sym_GT_GT] = ACTIONS(1927), + [anon_sym_AMP_GT] = ACTIONS(1929), + [anon_sym_AMP_GT_GT] = ACTIONS(1927), + [anon_sym_LT_AMP] = ACTIONS(1927), + [anon_sym_GT_AMP] = ACTIONS(1927), + [sym__special_characters] = ACTIONS(1927), + [anon_sym_DQUOTE] = ACTIONS(1927), + [anon_sym_DOLLAR] = ACTIONS(1929), + [sym_raw_string] = ACTIONS(1927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1927), + [anon_sym_BQUOTE] = ACTIONS(1927), + [anon_sym_LT_LPAREN] = ACTIONS(1927), + [anon_sym_GT_LPAREN] = ACTIONS(1927), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1927), }, [888] = { - [sym_string] = STATE(1320), - [sym_simple_expansion] = STATE(1320), - [sym_string_expansion] = STATE(1320), - [sym_expansion] = STATE(1320), - [sym_command_substitution] = STATE(1320), - [sym_process_substitution] = STATE(1320), - [sym__special_characters] = ACTIONS(2936), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(2936), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2936), + [anon_sym_SEMI] = ACTIONS(2899), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(2897), + [anon_sym_SEMI_SEMI] = ACTIONS(2901), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2901), + [anon_sym_AMP] = ACTIONS(2899), }, [889] = { - [aux_sym_concatenation_repeat1] = STATE(1321), - [sym__concat] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(765), - [anon_sym_EQ] = ACTIONS(767), - [sym__special_characters] = ACTIONS(767), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_DOLLAR] = ACTIONS(767), - [sym_raw_string] = ACTIONS(765), - [anon_sym_POUND] = ACTIONS(765), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(765), - [anon_sym_COLON] = ACTIONS(767), - [anon_sym_COLON_QMARK] = ACTIONS(767), - [anon_sym_COLON_DASH] = ACTIONS(767), - [anon_sym_PERCENT] = ACTIONS(767), - [anon_sym_DASH] = ACTIONS(767), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(765), - [anon_sym_BQUOTE] = ACTIONS(765), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(767), + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(2899), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(2897), + [anon_sym_SEMI_SEMI] = ACTIONS(2901), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(2901), + [anon_sym_AMP] = ACTIONS(2899), }, [890] = { - [sym__concat] = ACTIONS(769), - [anon_sym_RBRACE] = ACTIONS(769), - [anon_sym_EQ] = ACTIONS(771), - [sym__special_characters] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(769), - [anon_sym_DOLLAR] = ACTIONS(771), - [sym_raw_string] = ACTIONS(769), - [anon_sym_POUND] = ACTIONS(769), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), - [anon_sym_COLON] = ACTIONS(771), - [anon_sym_COLON_QMARK] = ACTIONS(771), - [anon_sym_COLON_DASH] = ACTIONS(771), - [anon_sym_PERCENT] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(771), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(769), - [anon_sym_BQUOTE] = ACTIONS(769), - [anon_sym_LT_LPAREN] = ACTIONS(769), - [anon_sym_GT_LPAREN] = ACTIONS(769), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(771), + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(2897), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), }, [891] = { - [anon_sym_DQUOTE] = ACTIONS(2938), - [anon_sym_DOLLAR] = ACTIONS(775), - [sym__string_content] = ACTIONS(777), - [anon_sym_POUND] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(781), - [anon_sym_STAR] = ACTIONS(783), - [anon_sym_AT] = ACTIONS(783), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_0] = ACTIONS(781), - [anon_sym__] = ACTIONS(781), + [anon_sym_SEMI] = ACTIONS(2903), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_SEMI_SEMI] = ACTIONS(2905), + [anon_sym_PIPE_AMP] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_BQUOTE] = ACTIONS(2897), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2905), + [anon_sym_AMP] = ACTIONS(2903), }, [892] = { - [sym_simple_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [sym_command_substitution] = STATE(141), - [aux_sym_string_repeat1] = STATE(450), - [anon_sym_DQUOTE] = ACTIONS(2938), - [anon_sym_DOLLAR] = ACTIONS(2940), - [sym__string_content] = ACTIONS(257), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(261), - [anon_sym_BQUOTE] = ACTIONS(263), - [sym_comment] = ACTIONS(265), + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(2903), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_SEMI_SEMI] = ACTIONS(2905), + [anon_sym_PIPE_AMP] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(2897), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(2905), + [anon_sym_AMP] = ACTIONS(2903), }, [893] = { - [sym__concat] = ACTIONS(803), - [anon_sym_RBRACE] = ACTIONS(803), - [anon_sym_EQ] = ACTIONS(805), - [sym__special_characters] = ACTIONS(805), - [anon_sym_DQUOTE] = ACTIONS(803), - [anon_sym_DOLLAR] = ACTIONS(805), - [sym_raw_string] = ACTIONS(803), - [anon_sym_POUND] = ACTIONS(803), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(803), - [anon_sym_COLON] = ACTIONS(805), - [anon_sym_COLON_QMARK] = ACTIONS(805), - [anon_sym_COLON_DASH] = ACTIONS(805), - [anon_sym_PERCENT] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(805), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(803), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(803), - [anon_sym_GT_LPAREN] = ACTIONS(803), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(805), + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(2907), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), }, [894] = { - [sym__concat] = ACTIONS(807), + [sym_file_descriptor] = ACTIONS(1959), + [sym__concat] = ACTIONS(1959), + [sym_variable_name] = ACTIONS(1959), + [anon_sym_LT] = ACTIONS(1961), + [anon_sym_GT] = ACTIONS(1961), + [anon_sym_GT_GT] = ACTIONS(1959), + [anon_sym_AMP_GT] = ACTIONS(1961), + [anon_sym_AMP_GT_GT] = ACTIONS(1959), + [anon_sym_LT_AMP] = ACTIONS(1959), + [anon_sym_GT_AMP] = ACTIONS(1959), + [sym__special_characters] = ACTIONS(1959), + [anon_sym_DQUOTE] = ACTIONS(1959), + [anon_sym_DOLLAR] = ACTIONS(1961), + [sym_raw_string] = ACTIONS(1959), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1959), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1959), + [anon_sym_BQUOTE] = ACTIONS(1959), + [anon_sym_LT_LPAREN] = ACTIONS(1959), + [anon_sym_GT_LPAREN] = ACTIONS(1959), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1959), + }, + [895] = { + [anon_sym_SEMI] = ACTIONS(2909), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(2907), + [anon_sym_SEMI_SEMI] = ACTIONS(2911), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2911), + [anon_sym_AMP] = ACTIONS(2909), + }, + [896] = { + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(2909), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(2907), + [anon_sym_SEMI_SEMI] = ACTIONS(2911), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(2911), + [anon_sym_AMP] = ACTIONS(2909), + }, + [897] = { + [anon_sym_DQUOTE] = ACTIONS(2913), + [anon_sym_DOLLAR] = ACTIONS(2913), + [sym__string_content] = ACTIONS(2915), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2913), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2913), + [anon_sym_BQUOTE] = ACTIONS(2913), + [sym_comment] = ACTIONS(281), + }, + [898] = { + [sym_concatenation] = STATE(1345), + [sym_string] = STATE(1344), + [sym_simple_expansion] = STATE(1344), + [sym_string_expansion] = STATE(1344), + [sym_expansion] = STATE(1344), + [sym_command_substitution] = STATE(1344), + [sym_process_substitution] = STATE(1344), + [anon_sym_RBRACE] = ACTIONS(2917), + [sym__special_characters] = ACTIONS(2919), + [anon_sym_DQUOTE] = ACTIONS(1841), + [anon_sym_DOLLAR] = ACTIONS(1843), + [sym_raw_string] = ACTIONS(2921), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1849), + [anon_sym_BQUOTE] = ACTIONS(1851), + [anon_sym_LT_LPAREN] = ACTIONS(1853), + [anon_sym_GT_LPAREN] = ACTIONS(1853), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(2921), + }, + [899] = { + [anon_sym_LBRACK] = ACTIONS(857), + [anon_sym_EQ] = ACTIONS(2923), + [sym_comment] = ACTIONS(55), + }, + [900] = { + [sym_concatenation] = STATE(1349), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1349), + [anon_sym_RBRACE] = ACTIONS(2925), + [anon_sym_EQ] = ACTIONS(2927), + [anon_sym_DASH] = ACTIONS(2927), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(2929), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(2931), + [anon_sym_COLON] = ACTIONS(2927), + [anon_sym_COLON_QMARK] = ACTIONS(2927), + [anon_sym_COLON_DASH] = ACTIONS(2927), + [anon_sym_PERCENT] = ACTIONS(2927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [901] = { + [sym_concatenation] = STATE(1351), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1351), + [anon_sym_RBRACE] = ACTIONS(2917), + [anon_sym_EQ] = ACTIONS(2933), + [anon_sym_DASH] = ACTIONS(2933), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(2935), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(2937), + [anon_sym_COLON] = ACTIONS(2933), + [anon_sym_COLON_QMARK] = ACTIONS(2933), + [anon_sym_COLON_DASH] = ACTIONS(2933), + [anon_sym_PERCENT] = ACTIONS(2933), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [902] = { + [sym__concat] = ACTIONS(1871), + [anon_sym_DQUOTE] = ACTIONS(1873), + [anon_sym_DOLLAR] = ACTIONS(1873), + [sym__string_content] = ACTIONS(1871), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1873), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1873), + [anon_sym_BQUOTE] = ACTIONS(1873), + [sym_comment] = ACTIONS(281), + }, + [903] = { + [sym_concatenation] = STATE(1354), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1354), + [sym_regex] = ACTIONS(2939), + [anon_sym_RBRACE] = ACTIONS(2941), + [anon_sym_EQ] = ACTIONS(2943), + [anon_sym_DASH] = ACTIONS(2943), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(2945), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(2943), + [anon_sym_COLON_QMARK] = ACTIONS(2943), + [anon_sym_COLON_DASH] = ACTIONS(2943), + [anon_sym_PERCENT] = ACTIONS(2943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [904] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(2941), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [905] = { + [sym__concat] = ACTIONS(1919), + [anon_sym_DQUOTE] = ACTIONS(1921), + [anon_sym_DOLLAR] = ACTIONS(1921), + [sym__string_content] = ACTIONS(1919), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1921), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1921), + [anon_sym_BQUOTE] = ACTIONS(1921), + [sym_comment] = ACTIONS(281), + }, + [906] = { + [sym_concatenation] = STATE(1351), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1351), + [sym_regex] = ACTIONS(2947), + [anon_sym_RBRACE] = ACTIONS(2917), + [anon_sym_EQ] = ACTIONS(2933), + [anon_sym_DASH] = ACTIONS(2933), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(2935), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(2933), + [anon_sym_COLON_QMARK] = ACTIONS(2933), + [anon_sym_COLON_DASH] = ACTIONS(2933), + [anon_sym_PERCENT] = ACTIONS(2933), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [907] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(2917), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [908] = { + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(2949), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), + }, + [909] = { + [sym__concat] = ACTIONS(1927), + [anon_sym_DQUOTE] = ACTIONS(1929), + [anon_sym_DOLLAR] = ACTIONS(1929), + [sym__string_content] = ACTIONS(1927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1929), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1929), + [anon_sym_BQUOTE] = ACTIONS(1929), + [sym_comment] = ACTIONS(281), + }, + [910] = { + [anon_sym_SEMI] = ACTIONS(2951), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(2949), + [anon_sym_SEMI_SEMI] = ACTIONS(2953), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2953), + [anon_sym_AMP] = ACTIONS(2951), + }, + [911] = { + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(2951), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(2949), + [anon_sym_SEMI_SEMI] = ACTIONS(2953), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(2953), + [anon_sym_AMP] = ACTIONS(2951), + }, + [912] = { + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(2949), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), + }, + [913] = { + [anon_sym_SEMI] = ACTIONS(2955), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_SEMI_SEMI] = ACTIONS(2957), + [anon_sym_PIPE_AMP] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_BQUOTE] = ACTIONS(2949), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2957), + [anon_sym_AMP] = ACTIONS(2955), + }, + [914] = { + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(2955), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_SEMI_SEMI] = ACTIONS(2957), + [anon_sym_PIPE_AMP] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(2949), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(2957), + [anon_sym_AMP] = ACTIONS(2955), + }, + [915] = { + [sym__simple_heredoc_body] = ACTIONS(2959), + [sym__heredoc_body_beginning] = ACTIONS(2959), + [sym_file_descriptor] = ACTIONS(2959), + [sym__concat] = ACTIONS(2959), + [ts_builtin_sym_end] = ACTIONS(2959), + [anon_sym_SEMI] = ACTIONS(2961), + [anon_sym_PIPE] = ACTIONS(2961), + [anon_sym_RPAREN] = ACTIONS(2959), + [anon_sym_SEMI_SEMI] = ACTIONS(2959), + [anon_sym_PIPE_AMP] = ACTIONS(2959), + [anon_sym_AMP_AMP] = ACTIONS(2959), + [anon_sym_PIPE_PIPE] = ACTIONS(2959), + [anon_sym_EQ_TILDE] = ACTIONS(2961), + [anon_sym_EQ_EQ] = ACTIONS(2961), + [anon_sym_LT] = ACTIONS(2961), + [anon_sym_GT] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(2959), + [anon_sym_AMP_GT] = ACTIONS(2961), + [anon_sym_AMP_GT_GT] = ACTIONS(2959), + [anon_sym_LT_AMP] = ACTIONS(2959), + [anon_sym_GT_AMP] = ACTIONS(2959), + [anon_sym_LT_LT] = ACTIONS(2961), + [anon_sym_LT_LT_DASH] = ACTIONS(2959), + [anon_sym_LT_LT_LT] = ACTIONS(2959), + [sym__special_characters] = ACTIONS(2959), + [anon_sym_DQUOTE] = ACTIONS(2959), + [anon_sym_DOLLAR] = ACTIONS(2961), + [sym_raw_string] = ACTIONS(2959), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2959), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2959), + [anon_sym_BQUOTE] = ACTIONS(2959), + [anon_sym_LT_LPAREN] = ACTIONS(2959), + [anon_sym_GT_LPAREN] = ACTIONS(2959), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(2961), + [anon_sym_LF] = ACTIONS(2959), + [anon_sym_AMP] = ACTIONS(2961), + }, + [916] = { + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym__string_content] = ACTIONS(821), + [anon_sym_POUND] = ACTIONS(815), + [sym_comment] = ACTIONS(281), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(823), + [anon_sym_STAR] = ACTIONS(825), + [anon_sym_AT] = ACTIONS(825), + [anon_sym_QMARK] = ACTIONS(825), + [anon_sym_0] = ACTIONS(823), + [anon_sym__] = ACTIONS(823), + }, + [917] = { + [aux_sym_concatenation_repeat1] = STATE(550), + [sym__concat] = ACTIONS(2963), + [anon_sym_RBRACK] = ACTIONS(2965), + [sym_comment] = ACTIONS(55), + }, + [918] = { + [aux_sym_concatenation_repeat1] = STATE(550), + [sym__concat] = ACTIONS(2967), + [anon_sym_RBRACK] = ACTIONS(2969), + [sym_comment] = ACTIONS(55), + }, + [919] = { + [sym__concat] = ACTIONS(2971), + [anon_sym_RBRACK] = ACTIONS(2969), + [sym_comment] = ACTIONS(55), + }, + [920] = { + [sym__simple_heredoc_body] = ACTIONS(2973), + [sym__heredoc_body_beginning] = ACTIONS(2973), + [sym_file_descriptor] = ACTIONS(2973), + [sym__concat] = ACTIONS(2973), + [ts_builtin_sym_end] = ACTIONS(2973), + [anon_sym_SEMI] = ACTIONS(2975), + [anon_sym_PIPE] = ACTIONS(2975), + [anon_sym_RPAREN] = ACTIONS(2973), + [anon_sym_SEMI_SEMI] = ACTIONS(2973), + [anon_sym_PIPE_AMP] = ACTIONS(2973), + [anon_sym_AMP_AMP] = ACTIONS(2973), + [anon_sym_PIPE_PIPE] = ACTIONS(2973), + [anon_sym_EQ_TILDE] = ACTIONS(2975), + [anon_sym_EQ_EQ] = ACTIONS(2975), + [anon_sym_LT] = ACTIONS(2975), + [anon_sym_GT] = ACTIONS(2975), + [anon_sym_GT_GT] = ACTIONS(2973), + [anon_sym_AMP_GT] = ACTIONS(2975), + [anon_sym_AMP_GT_GT] = ACTIONS(2973), + [anon_sym_LT_AMP] = ACTIONS(2973), + [anon_sym_GT_AMP] = ACTIONS(2973), + [anon_sym_LT_LT] = ACTIONS(2975), + [anon_sym_LT_LT_DASH] = ACTIONS(2973), + [anon_sym_LT_LT_LT] = ACTIONS(2973), + [sym__special_characters] = ACTIONS(2973), + [anon_sym_DQUOTE] = ACTIONS(2973), + [anon_sym_DOLLAR] = ACTIONS(2975), + [sym_raw_string] = ACTIONS(2973), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2973), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2973), + [anon_sym_BQUOTE] = ACTIONS(2973), + [anon_sym_LT_LPAREN] = ACTIONS(2973), + [anon_sym_GT_LPAREN] = ACTIONS(2973), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(2975), + [anon_sym_LF] = ACTIONS(2973), + [anon_sym_AMP] = ACTIONS(2975), + }, + [921] = { + [aux_sym_concatenation_repeat1] = STATE(1366), + [sym__concat] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(2979), + [sym_comment] = ACTIONS(55), + }, + [922] = { + [sym_simple_expansion] = STATE(148), + [sym_expansion] = STATE(148), + [sym_command_substitution] = STATE(148), + [aux_sym_string_repeat1] = STATE(1369), + [anon_sym_DQUOTE] = ACTIONS(2981), + [anon_sym_DOLLAR] = ACTIONS(2983), + [sym__string_content] = ACTIONS(273), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(277), + [anon_sym_BQUOTE] = ACTIONS(279), + [sym_comment] = ACTIONS(281), + }, + [923] = { + [sym_string] = STATE(1371), + [anon_sym_DASH] = ACTIONS(2985), + [anon_sym_DQUOTE] = ACTIONS(1841), + [anon_sym_DOLLAR] = ACTIONS(2985), + [sym_raw_string] = ACTIONS(2987), + [anon_sym_POUND] = ACTIONS(2985), + [sym_comment] = ACTIONS(281), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2989), + [anon_sym_STAR] = ACTIONS(2991), + [anon_sym_AT] = ACTIONS(2991), + [anon_sym_QMARK] = ACTIONS(2991), + [anon_sym_0] = ACTIONS(2989), + [anon_sym__] = ACTIONS(2989), + }, + [924] = { + [aux_sym_concatenation_repeat1] = STATE(1366), + [sym__concat] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(2993), + [sym_comment] = ACTIONS(55), + }, + [925] = { + [sym_subscript] = STATE(1377), + [sym_variable_name] = ACTIONS(2995), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2999), + [anon_sym_DOLLAR] = ACTIONS(2999), + [anon_sym_POUND] = ACTIONS(2997), + [sym_comment] = ACTIONS(281), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3001), + [anon_sym_STAR] = ACTIONS(3003), + [anon_sym_AT] = ACTIONS(3003), + [anon_sym_QMARK] = ACTIONS(3003), + [anon_sym_0] = ACTIONS(3001), + [anon_sym__] = ACTIONS(3001), + }, + [926] = { + [sym__terminated_statement] = STATE(1380), + [sym_for_statement] = STATE(1378), + [sym_c_style_for_statement] = STATE(1378), + [sym_while_statement] = STATE(1378), + [sym_if_statement] = STATE(1378), + [sym_case_statement] = STATE(1378), + [sym_function_definition] = STATE(1378), + [sym_subshell] = STATE(1378), + [sym_pipeline] = STATE(1378), + [sym_list] = STATE(1378), + [sym_negated_command] = STATE(1378), + [sym_test_command] = STATE(1378), + [sym_declaration_command] = STATE(1378), + [sym_unset_command] = STATE(1378), + [sym_command] = STATE(1378), + [sym_command_name] = STATE(92), + [sym_variable_assignment] = STATE(1379), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(96), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), + [aux_sym__statements_repeat1] = STATE(1380), + [aux_sym_command_repeat1] = STATE(96), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(137), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(149), + [anon_sym_declare] = ACTIONS(151), + [anon_sym_typeset] = ACTIONS(151), + [anon_sym_export] = ACTIONS(151), + [anon_sym_readonly] = ACTIONS(151), + [anon_sym_local] = ACTIONS(151), + [anon_sym_unset] = ACTIONS(153), + [anon_sym_unsetenv] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(159), + }, + [927] = { + [sym__terminated_statement] = STATE(1383), + [sym_for_statement] = STATE(1381), + [sym_c_style_for_statement] = STATE(1381), + [sym_while_statement] = STATE(1381), + [sym_if_statement] = STATE(1381), + [sym_case_statement] = STATE(1381), + [sym_function_definition] = STATE(1381), + [sym_subshell] = STATE(1381), + [sym_pipeline] = STATE(1381), + [sym_list] = STATE(1381), + [sym_negated_command] = STATE(1381), + [sym_test_command] = STATE(1381), + [sym_declaration_command] = STATE(1381), + [sym_unset_command] = STATE(1381), + [sym_command] = STATE(1381), + [sym_command_name] = STATE(173), + [sym_variable_assignment] = STATE(1382), + [sym_subscript] = STATE(66), + [sym_file_redirect] = STATE(176), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(60), + [sym_simple_expansion] = STATE(60), + [sym_string_expansion] = STATE(60), + [sym_expansion] = STATE(60), + [sym_command_substitution] = STATE(60), + [sym_process_substitution] = STATE(60), + [aux_sym__statements_repeat1] = STATE(1383), + [aux_sym_command_repeat1] = STATE(176), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(95), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(305), + [anon_sym_while] = ACTIONS(307), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(311), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(315), + [anon_sym_declare] = ACTIONS(317), + [anon_sym_typeset] = ACTIONS(317), + [anon_sym_export] = ACTIONS(317), + [anon_sym_readonly] = ACTIONS(317), + [anon_sym_local] = ACTIONS(317), + [anon_sym_unset] = ACTIONS(319), + [anon_sym_unsetenv] = ACTIONS(319), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(115), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(321), + }, + [928] = { + [sym__terminated_statement] = STATE(1386), + [sym_for_statement] = STATE(1384), + [sym_c_style_for_statement] = STATE(1384), + [sym_while_statement] = STATE(1384), + [sym_if_statement] = STATE(1384), + [sym_case_statement] = STATE(1384), + [sym_function_definition] = STATE(1384), + [sym_subshell] = STATE(1384), + [sym_pipeline] = STATE(1384), + [sym_list] = STATE(1384), + [sym_negated_command] = STATE(1384), + [sym_test_command] = STATE(1384), + [sym_declaration_command] = STATE(1384), + [sym_unset_command] = STATE(1384), + [sym_command] = STATE(1384), + [sym_command_name] = STATE(92), + [sym_variable_assignment] = STATE(1385), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(96), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), + [aux_sym__statements_repeat1] = STATE(1386), + [aux_sym_command_repeat1] = STATE(96), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(137), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(149), + [anon_sym_declare] = ACTIONS(151), + [anon_sym_typeset] = ACTIONS(151), + [anon_sym_export] = ACTIONS(151), + [anon_sym_readonly] = ACTIONS(151), + [anon_sym_local] = ACTIONS(151), + [anon_sym_unset] = ACTIONS(153), + [anon_sym_unsetenv] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(159), + }, + [929] = { + [anon_sym_RBRACE] = ACTIONS(2993), + [sym_comment] = ACTIONS(55), + }, + [930] = { + [sym_concatenation] = STATE(1389), + [sym_string] = STATE(1388), + [sym_simple_expansion] = STATE(1388), + [sym_string_expansion] = STATE(1388), + [sym_expansion] = STATE(1388), + [sym_command_substitution] = STATE(1388), + [sym_process_substitution] = STATE(1388), + [anon_sym_RBRACE] = ACTIONS(2993), + [sym__special_characters] = ACTIONS(3005), + [anon_sym_DQUOTE] = ACTIONS(1841), + [anon_sym_DOLLAR] = ACTIONS(1843), + [sym_raw_string] = ACTIONS(3007), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1849), + [anon_sym_BQUOTE] = ACTIONS(1851), + [anon_sym_LT_LPAREN] = ACTIONS(1853), + [anon_sym_GT_LPAREN] = ACTIONS(1853), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(3007), + }, + [931] = { + [sym__simple_heredoc_body] = ACTIONS(3009), + [sym__heredoc_body_beginning] = ACTIONS(3009), + [sym_file_descriptor] = ACTIONS(3009), + [sym__concat] = ACTIONS(3009), + [ts_builtin_sym_end] = ACTIONS(3009), + [anon_sym_SEMI] = ACTIONS(3011), + [anon_sym_PIPE] = ACTIONS(3011), + [anon_sym_RPAREN] = ACTIONS(3009), + [anon_sym_SEMI_SEMI] = ACTIONS(3009), + [anon_sym_PIPE_AMP] = ACTIONS(3009), + [anon_sym_AMP_AMP] = ACTIONS(3009), + [anon_sym_PIPE_PIPE] = ACTIONS(3009), + [anon_sym_EQ_TILDE] = ACTIONS(3011), + [anon_sym_EQ_EQ] = ACTIONS(3011), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_GT] = ACTIONS(3011), + [anon_sym_GT_GT] = ACTIONS(3009), + [anon_sym_AMP_GT] = ACTIONS(3011), + [anon_sym_AMP_GT_GT] = ACTIONS(3009), + [anon_sym_LT_AMP] = ACTIONS(3009), + [anon_sym_GT_AMP] = ACTIONS(3009), + [anon_sym_LT_LT] = ACTIONS(3011), + [anon_sym_LT_LT_DASH] = ACTIONS(3009), + [anon_sym_LT_LT_LT] = ACTIONS(3009), + [sym__special_characters] = ACTIONS(3009), + [anon_sym_DQUOTE] = ACTIONS(3009), + [anon_sym_DOLLAR] = ACTIONS(3011), + [sym_raw_string] = ACTIONS(3009), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3009), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3009), + [anon_sym_BQUOTE] = ACTIONS(3009), + [anon_sym_LT_LPAREN] = ACTIONS(3009), + [anon_sym_GT_LPAREN] = ACTIONS(3009), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(3011), + [anon_sym_LF] = ACTIONS(3009), + [anon_sym_AMP] = ACTIONS(3011), + }, + [932] = { + [sym_concatenation] = STATE(1392), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1392), + [sym_regex] = ACTIONS(3013), + [anon_sym_RBRACE] = ACTIONS(3015), + [anon_sym_EQ] = ACTIONS(3017), + [anon_sym_DASH] = ACTIONS(3017), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(3019), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(3017), + [anon_sym_COLON_QMARK] = ACTIONS(3017), + [anon_sym_COLON_DASH] = ACTIONS(3017), + [anon_sym_PERCENT] = ACTIONS(3017), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [933] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(3015), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [934] = { + [sym_concatenation] = STATE(1394), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1394), + [sym_regex] = ACTIONS(3021), + [anon_sym_RBRACE] = ACTIONS(2993), + [anon_sym_EQ] = ACTIONS(3023), + [anon_sym_DASH] = ACTIONS(3023), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(3025), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(3023), + [anon_sym_COLON_QMARK] = ACTIONS(3023), + [anon_sym_COLON_DASH] = ACTIONS(3023), + [anon_sym_PERCENT] = ACTIONS(3023), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [935] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(2993), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [936] = { + [sym_string] = STATE(1395), + [sym_simple_expansion] = STATE(1395), + [sym_string_expansion] = STATE(1395), + [sym_expansion] = STATE(1395), + [sym_command_substitution] = STATE(1395), + [sym_process_substitution] = STATE(1395), + [sym__special_characters] = ACTIONS(3027), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(3027), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(3027), + }, + [937] = { + [aux_sym_concatenation_repeat1] = STATE(1396), + [sym__concat] = ACTIONS(1875), [anon_sym_RBRACE] = ACTIONS(807), [anon_sym_EQ] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(809), [sym__special_characters] = ACTIONS(809), [anon_sym_DQUOTE] = ACTIONS(807), [anon_sym_DOLLAR] = ACTIONS(809), @@ -32190,18 +34293,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_QMARK] = ACTIONS(809), [anon_sym_COLON_DASH] = ACTIONS(809), [anon_sym_PERCENT] = ACTIONS(809), - [anon_sym_DASH] = ACTIONS(809), [anon_sym_DOLLAR_LPAREN] = ACTIONS(807), [anon_sym_BQUOTE] = ACTIONS(807), [anon_sym_LT_LPAREN] = ACTIONS(807), [anon_sym_GT_LPAREN] = ACTIONS(807), - [sym_comment] = ACTIONS(265), + [sym_comment] = ACTIONS(281), [sym_word] = ACTIONS(809), }, - [895] = { + [938] = { [sym__concat] = ACTIONS(811), [anon_sym_RBRACE] = ACTIONS(811), [anon_sym_EQ] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), [sym__special_characters] = ACTIONS(813), [anon_sym_DQUOTE] = ACTIONS(811), [anon_sym_DOLLAR] = ACTIONS(813), @@ -32212,1590 +34315,1646 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_QMARK] = ACTIONS(813), [anon_sym_COLON_DASH] = ACTIONS(813), [anon_sym_PERCENT] = ACTIONS(813), - [anon_sym_DASH] = ACTIONS(813), [anon_sym_DOLLAR_LPAREN] = ACTIONS(811), [anon_sym_BQUOTE] = ACTIONS(811), [anon_sym_LT_LPAREN] = ACTIONS(811), [anon_sym_GT_LPAREN] = ACTIONS(811), - [sym_comment] = ACTIONS(265), + [sym_comment] = ACTIONS(281), [sym_word] = ACTIONS(813), }, - [896] = { - [anon_sym_LBRACK] = ACTIONS(815), - [anon_sym_EQ] = ACTIONS(2942), - [sym_comment] = ACTIONS(53), + [939] = { + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_DQUOTE] = ACTIONS(3029), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym__string_content] = ACTIONS(821), + [anon_sym_POUND] = ACTIONS(815), + [sym_comment] = ACTIONS(281), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(823), + [anon_sym_STAR] = ACTIONS(825), + [anon_sym_AT] = ACTIONS(825), + [anon_sym_QMARK] = ACTIONS(825), + [anon_sym_0] = ACTIONS(823), + [anon_sym__] = ACTIONS(823), }, - [897] = { - [sym_subscript] = STATE(1327), - [sym_variable_name] = ACTIONS(2944), - [anon_sym_DOLLAR] = ACTIONS(2946), - [anon_sym_DASH] = ACTIONS(2946), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2948), - [anon_sym_STAR] = ACTIONS(2950), - [anon_sym_AT] = ACTIONS(2950), - [anon_sym_QMARK] = ACTIONS(2950), - [anon_sym_0] = ACTIONS(2948), - [anon_sym__] = ACTIONS(2948), + [940] = { + [sym_simple_expansion] = STATE(148), + [sym_expansion] = STATE(148), + [sym_command_substitution] = STATE(148), + [aux_sym_string_repeat1] = STATE(473), + [anon_sym_DQUOTE] = ACTIONS(3029), + [anon_sym_DOLLAR] = ACTIONS(3031), + [sym__string_content] = ACTIONS(273), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(277), + [anon_sym_BQUOTE] = ACTIONS(279), + [sym_comment] = ACTIONS(281), }, - [898] = { - [sym_concatenation] = STATE(1330), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(1330), - [anon_sym_RBRACE] = ACTIONS(2952), - [anon_sym_EQ] = ACTIONS(2954), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(2956), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(2958), - [anon_sym_COLON] = ACTIONS(2954), - [anon_sym_COLON_QMARK] = ACTIONS(2954), - [anon_sym_COLON_DASH] = ACTIONS(2954), - [anon_sym_PERCENT] = ACTIONS(2954), - [anon_sym_DASH] = ACTIONS(2954), + [941] = { + [sym__concat] = ACTIONS(845), + [anon_sym_RBRACE] = ACTIONS(845), + [anon_sym_EQ] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [sym__special_characters] = ACTIONS(847), + [anon_sym_DQUOTE] = ACTIONS(845), + [anon_sym_DOLLAR] = ACTIONS(847), + [sym_raw_string] = ACTIONS(845), + [anon_sym_POUND] = ACTIONS(845), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(845), + [anon_sym_COLON] = ACTIONS(847), + [anon_sym_COLON_QMARK] = ACTIONS(847), + [anon_sym_COLON_DASH] = ACTIONS(847), + [anon_sym_PERCENT] = ACTIONS(847), [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), + [anon_sym_BQUOTE] = ACTIONS(845), + [anon_sym_LT_LPAREN] = ACTIONS(845), + [anon_sym_GT_LPAREN] = ACTIONS(845), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(847), + }, + [942] = { + [sym__concat] = ACTIONS(849), + [anon_sym_RBRACE] = ACTIONS(849), + [anon_sym_EQ] = ACTIONS(851), + [anon_sym_DASH] = ACTIONS(851), + [sym__special_characters] = ACTIONS(851), + [anon_sym_DQUOTE] = ACTIONS(849), + [anon_sym_DOLLAR] = ACTIONS(851), + [sym_raw_string] = ACTIONS(849), + [anon_sym_POUND] = ACTIONS(849), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(849), + [anon_sym_COLON] = ACTIONS(851), + [anon_sym_COLON_QMARK] = ACTIONS(851), + [anon_sym_COLON_DASH] = ACTIONS(851), + [anon_sym_PERCENT] = ACTIONS(851), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(849), + [anon_sym_BQUOTE] = ACTIONS(849), [anon_sym_LT_LPAREN] = ACTIONS(849), [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), + [sym_comment] = ACTIONS(281), [sym_word] = ACTIONS(851), }, - [899] = { - [sym_concatenation] = STATE(1333), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(1333), - [anon_sym_RBRACE] = ACTIONS(2960), - [anon_sym_EQ] = ACTIONS(2962), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(2964), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(2966), - [anon_sym_COLON] = ACTIONS(2962), - [anon_sym_COLON_QMARK] = ACTIONS(2962), - [anon_sym_COLON_DASH] = ACTIONS(2962), - [anon_sym_PERCENT] = ACTIONS(2962), - [anon_sym_DASH] = ACTIONS(2962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [943] = { + [sym__concat] = ACTIONS(853), + [anon_sym_RBRACE] = ACTIONS(853), + [anon_sym_EQ] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [sym__special_characters] = ACTIONS(855), + [anon_sym_DQUOTE] = ACTIONS(853), + [anon_sym_DOLLAR] = ACTIONS(855), + [sym_raw_string] = ACTIONS(853), + [anon_sym_POUND] = ACTIONS(853), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(853), + [anon_sym_COLON] = ACTIONS(855), + [anon_sym_COLON_QMARK] = ACTIONS(855), + [anon_sym_COLON_DASH] = ACTIONS(855), + [anon_sym_PERCENT] = ACTIONS(855), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(853), + [anon_sym_BQUOTE] = ACTIONS(853), + [anon_sym_LT_LPAREN] = ACTIONS(853), + [anon_sym_GT_LPAREN] = ACTIONS(853), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(855), }, - [900] = { - [sym_concatenation] = STATE(1335), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(1335), - [anon_sym_RBRACE] = ACTIONS(2968), - [anon_sym_EQ] = ACTIONS(2970), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(2972), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(2970), - [anon_sym_COLON_QMARK] = ACTIONS(2970), - [anon_sym_COLON_DASH] = ACTIONS(2970), - [anon_sym_PERCENT] = ACTIONS(2970), - [anon_sym_DASH] = ACTIONS(2970), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [944] = { + [anon_sym_LBRACK] = ACTIONS(857), + [anon_sym_EQ] = ACTIONS(3033), + [sym_comment] = ACTIONS(55), }, - [901] = { - [anon_sym_SEMI] = ACTIONS(2974), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(2976), - [anon_sym_SEMI_SEMI] = ACTIONS(2978), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(2978), - [anon_sym_AMP] = ACTIONS(2974), + [945] = { + [sym_subscript] = STATE(1402), + [sym_variable_name] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3037), + [anon_sym_DOLLAR] = ACTIONS(3037), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3039), + [anon_sym_STAR] = ACTIONS(3041), + [anon_sym_AT] = ACTIONS(3041), + [anon_sym_QMARK] = ACTIONS(3041), + [anon_sym_0] = ACTIONS(3039), + [anon_sym__] = ACTIONS(3039), }, - [902] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(2974), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(2976), - [anon_sym_SEMI_SEMI] = ACTIONS(2978), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(2978), - [anon_sym_AMP] = ACTIONS(2974), + [946] = { + [sym_concatenation] = STATE(1405), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1405), + [anon_sym_RBRACE] = ACTIONS(3043), + [anon_sym_EQ] = ACTIONS(3045), + [anon_sym_DASH] = ACTIONS(3045), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(3047), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(3049), + [anon_sym_COLON] = ACTIONS(3045), + [anon_sym_COLON_QMARK] = ACTIONS(3045), + [anon_sym_COLON_DASH] = ACTIONS(3045), + [anon_sym_PERCENT] = ACTIONS(3045), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, - [903] = { - [sym__terminated_statement] = STATE(190), - [sym_for_statement] = STATE(1338), - [sym_c_style_for_statement] = STATE(1338), - [sym_while_statement] = STATE(1338), - [sym_if_statement] = STATE(1338), - [sym_case_statement] = STATE(1338), - [sym_function_definition] = STATE(1338), - [sym_subshell] = STATE(1338), - [sym_pipeline] = STATE(1338), - [sym_list] = STATE(1338), - [sym_negated_command] = STATE(1338), - [sym_test_command] = STATE(1338), - [sym_declaration_command] = STATE(1338), - [sym_unset_command] = STATE(1338), - [sym_command] = STATE(1338), - [sym_command_name] = STATE(78), - [sym_variable_assignment] = STATE(1339), - [sym_subscript] = STATE(80), - [sym_file_redirect] = STATE(82), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(75), - [sym_simple_expansion] = STATE(75), - [sym_string_expansion] = STATE(75), - [sym_expansion] = STATE(75), - [sym_command_substitution] = STATE(75), - [sym_process_substitution] = STATE(75), - [aux_sym__statements_repeat1] = STATE(190), - [aux_sym_command_repeat1] = STATE(82), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(111), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(119), - [anon_sym_declare] = ACTIONS(121), - [anon_sym_typeset] = ACTIONS(121), - [anon_sym_export] = ACTIONS(121), - [anon_sym_readonly] = ACTIONS(121), - [anon_sym_local] = ACTIONS(121), - [anon_sym_unset] = ACTIONS(123), - [anon_sym_unsetenv] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), + [947] = { + [sym_concatenation] = STATE(1408), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1408), + [anon_sym_RBRACE] = ACTIONS(3051), + [anon_sym_EQ] = ACTIONS(3053), + [anon_sym_DASH] = ACTIONS(3053), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(3055), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(3057), + [anon_sym_COLON] = ACTIONS(3053), + [anon_sym_COLON_QMARK] = ACTIONS(3053), + [anon_sym_COLON_DASH] = ACTIONS(3053), + [anon_sym_PERCENT] = ACTIONS(3053), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, - [904] = { - [anon_sym_SEMI] = ACTIONS(2980), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_SEMI_SEMI] = ACTIONS(2982), - [anon_sym_PIPE_AMP] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(883), - [anon_sym_PIPE_PIPE] = ACTIONS(883), - [anon_sym_BQUOTE] = ACTIONS(2976), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(2982), - [anon_sym_AMP] = ACTIONS(2980), + [948] = { + [sym_concatenation] = STATE(1410), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1410), + [anon_sym_RBRACE] = ACTIONS(3059), + [anon_sym_EQ] = ACTIONS(3061), + [anon_sym_DASH] = ACTIONS(3061), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(3063), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(3061), + [anon_sym_COLON_QMARK] = ACTIONS(3061), + [anon_sym_COLON_DASH] = ACTIONS(3061), + [anon_sym_PERCENT] = ACTIONS(3061), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, - [905] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(2980), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_SEMI_SEMI] = ACTIONS(2982), - [anon_sym_PIPE_AMP] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(883), - [anon_sym_PIPE_PIPE] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(2976), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(2982), - [anon_sym_AMP] = ACTIONS(2980), - }, - [906] = { - [sym__terminated_statement] = STATE(190), - [sym_for_statement] = STATE(1341), - [sym_c_style_for_statement] = STATE(1341), - [sym_while_statement] = STATE(1341), - [sym_if_statement] = STATE(1341), - [sym_case_statement] = STATE(1341), - [sym_function_definition] = STATE(1341), - [sym_subshell] = STATE(1341), - [sym_pipeline] = STATE(1341), - [sym_list] = STATE(1341), - [sym_negated_command] = STATE(1341), - [sym_test_command] = STATE(1341), - [sym_declaration_command] = STATE(1341), - [sym_unset_command] = STATE(1341), - [sym_command] = STATE(1341), - [sym_command_name] = STATE(165), - [sym_variable_assignment] = STATE(1342), - [sym_subscript] = STATE(53), - [sym_file_redirect] = STATE(168), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(47), - [sym_simple_expansion] = STATE(47), - [sym_string_expansion] = STATE(47), - [sym_expansion] = STATE(47), - [sym_command_substitution] = STATE(47), - [sym_process_substitution] = STATE(47), - [aux_sym__statements_repeat1] = STATE(190), - [aux_sym_command_repeat1] = STATE(168), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(69), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(289), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(291), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(293), - [anon_sym_LBRACK] = ACTIONS(295), - [anon_sym_LBRACK_LBRACK] = ACTIONS(297), - [anon_sym_declare] = ACTIONS(299), - [anon_sym_typeset] = ACTIONS(299), - [anon_sym_export] = ACTIONS(299), - [anon_sym_readonly] = ACTIONS(299), - [anon_sym_local] = ACTIONS(299), - [anon_sym_unset] = ACTIONS(301), - [anon_sym_unsetenv] = ACTIONS(301), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(87), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(303), - }, - [907] = { - [anon_sym_SEMI] = ACTIONS(2984), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(2986), - [anon_sym_SEMI_SEMI] = ACTIONS(2988), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(2988), - [anon_sym_AMP] = ACTIONS(2984), - }, - [908] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(2984), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(2986), - [anon_sym_SEMI_SEMI] = ACTIONS(2988), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(2988), - [anon_sym_AMP] = ACTIONS(2984), - }, - [909] = { - [sym__terminated_statement] = STATE(190), - [sym_for_statement] = STATE(1345), - [sym_c_style_for_statement] = STATE(1345), - [sym_while_statement] = STATE(1345), - [sym_if_statement] = STATE(1345), - [sym_case_statement] = STATE(1345), - [sym_function_definition] = STATE(1345), - [sym_subshell] = STATE(1345), - [sym_pipeline] = STATE(1345), - [sym_list] = STATE(1345), - [sym_negated_command] = STATE(1345), - [sym_test_command] = STATE(1345), - [sym_declaration_command] = STATE(1345), - [sym_unset_command] = STATE(1345), - [sym_command] = STATE(1345), - [sym_command_name] = STATE(78), - [sym_variable_assignment] = STATE(1346), - [sym_subscript] = STATE(80), - [sym_file_redirect] = STATE(82), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(75), - [sym_simple_expansion] = STATE(75), - [sym_string_expansion] = STATE(75), - [sym_expansion] = STATE(75), - [sym_command_substitution] = STATE(75), - [sym_process_substitution] = STATE(75), - [aux_sym__statements_repeat1] = STATE(190), - [aux_sym_command_repeat1] = STATE(82), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(111), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(119), - [anon_sym_declare] = ACTIONS(121), - [anon_sym_typeset] = ACTIONS(121), - [anon_sym_export] = ACTIONS(121), - [anon_sym_readonly] = ACTIONS(121), - [anon_sym_local] = ACTIONS(121), - [anon_sym_unset] = ACTIONS(123), - [anon_sym_unsetenv] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), - }, - [910] = { - [sym__simple_heredoc_body] = ACTIONS(2990), - [sym__heredoc_body_beginning] = ACTIONS(2990), - [sym_file_descriptor] = ACTIONS(2990), - [sym__concat] = ACTIONS(2990), - [ts_builtin_sym_end] = ACTIONS(2990), - [anon_sym_SEMI] = ACTIONS(2992), - [anon_sym_PIPE] = ACTIONS(2992), - [anon_sym_RPAREN] = ACTIONS(2990), - [anon_sym_SEMI_SEMI] = ACTIONS(2990), - [anon_sym_PIPE_AMP] = ACTIONS(2990), - [anon_sym_AMP_AMP] = ACTIONS(2990), - [anon_sym_PIPE_PIPE] = ACTIONS(2990), - [anon_sym_EQ_TILDE] = ACTIONS(2992), - [anon_sym_EQ_EQ] = ACTIONS(2992), - [anon_sym_LT] = ACTIONS(2992), - [anon_sym_GT] = ACTIONS(2992), - [anon_sym_GT_GT] = ACTIONS(2990), - [anon_sym_AMP_GT] = ACTIONS(2992), - [anon_sym_AMP_GT_GT] = ACTIONS(2990), - [anon_sym_LT_AMP] = ACTIONS(2990), - [anon_sym_GT_AMP] = ACTIONS(2990), - [anon_sym_LT_LT] = ACTIONS(2992), - [anon_sym_LT_LT_DASH] = ACTIONS(2990), - [anon_sym_LT_LT_LT] = ACTIONS(2990), - [sym__special_characters] = ACTIONS(2990), - [anon_sym_DQUOTE] = ACTIONS(2990), - [anon_sym_DOLLAR] = ACTIONS(2992), - [sym_raw_string] = ACTIONS(2990), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2990), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2990), - [anon_sym_BQUOTE] = ACTIONS(2990), - [anon_sym_LT_LPAREN] = ACTIONS(2990), - [anon_sym_GT_LPAREN] = ACTIONS(2990), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2992), - [anon_sym_LF] = ACTIONS(2990), - [anon_sym_AMP] = ACTIONS(2992), - }, - [911] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(2994), - [anon_sym_EQ] = ACTIONS(2996), - [sym__special_characters] = ACTIONS(2999), - [anon_sym_DQUOTE] = ACTIONS(3002), - [anon_sym_DOLLAR] = ACTIONS(3005), - [sym_raw_string] = ACTIONS(3008), - [anon_sym_POUND] = ACTIONS(3011), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3014), - [anon_sym_COLON] = ACTIONS(2996), - [anon_sym_COLON_QMARK] = ACTIONS(2996), - [anon_sym_COLON_DASH] = ACTIONS(2996), - [anon_sym_PERCENT] = ACTIONS(2996), - [anon_sym_DASH] = ACTIONS(2996), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3017), - [anon_sym_BQUOTE] = ACTIONS(3020), - [anon_sym_LT_LPAREN] = ACTIONS(3023), - [anon_sym_GT_LPAREN] = ACTIONS(3023), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(3026), - }, - [912] = { - [sym_concatenation] = STATE(1347), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(1347), - [anon_sym_RBRACE] = ACTIONS(2910), - [anon_sym_EQ] = ACTIONS(3029), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(3031), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(3029), - [anon_sym_COLON_QMARK] = ACTIONS(3029), - [anon_sym_COLON_DASH] = ACTIONS(3029), - [anon_sym_PERCENT] = ACTIONS(3029), - [anon_sym_DASH] = ACTIONS(3029), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [913] = { - [sym__simple_heredoc_body] = ACTIONS(3033), - [sym__heredoc_body_beginning] = ACTIONS(3033), - [sym_file_descriptor] = ACTIONS(3033), - [sym__concat] = ACTIONS(3033), - [ts_builtin_sym_end] = ACTIONS(3033), - [anon_sym_SEMI] = ACTIONS(3035), - [anon_sym_PIPE] = ACTIONS(3035), - [anon_sym_RPAREN] = ACTIONS(3033), - [anon_sym_SEMI_SEMI] = ACTIONS(3033), - [anon_sym_PIPE_AMP] = ACTIONS(3033), - [anon_sym_AMP_AMP] = ACTIONS(3033), - [anon_sym_PIPE_PIPE] = ACTIONS(3033), - [anon_sym_EQ_TILDE] = ACTIONS(3035), - [anon_sym_EQ_EQ] = ACTIONS(3035), - [anon_sym_LT] = ACTIONS(3035), - [anon_sym_GT] = ACTIONS(3035), - [anon_sym_GT_GT] = ACTIONS(3033), - [anon_sym_AMP_GT] = ACTIONS(3035), - [anon_sym_AMP_GT_GT] = ACTIONS(3033), - [anon_sym_LT_AMP] = ACTIONS(3033), - [anon_sym_GT_AMP] = ACTIONS(3033), - [anon_sym_LT_LT] = ACTIONS(3035), - [anon_sym_LT_LT_DASH] = ACTIONS(3033), - [anon_sym_LT_LT_LT] = ACTIONS(3033), - [sym__special_characters] = ACTIONS(3033), - [anon_sym_DQUOTE] = ACTIONS(3033), - [anon_sym_DOLLAR] = ACTIONS(3035), - [sym_raw_string] = ACTIONS(3033), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3033), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3033), - [anon_sym_BQUOTE] = ACTIONS(3033), - [anon_sym_LT_LPAREN] = ACTIONS(3033), - [anon_sym_GT_LPAREN] = ACTIONS(3033), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3035), - [anon_sym_LF] = ACTIONS(3033), - [anon_sym_AMP] = ACTIONS(3035), - }, - [914] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(3037), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(901), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), - }, - [915] = { - [sym_file_redirect] = STATE(1349), - [sym_heredoc_redirect] = STATE(1349), - [sym_heredoc_body] = STATE(615), - [sym_herestring_redirect] = STATE(1349), - [aux_sym_while_statement_repeat1] = STATE(1349), - [sym__simple_heredoc_body] = ACTIONS(321), - [sym__heredoc_body_beginning] = ACTIONS(323), - [sym_file_descriptor] = ACTIONS(885), - [anon_sym_SEMI] = ACTIONS(1197), - [anon_sym_PIPE] = ACTIONS(1197), - [anon_sym_SEMI_SEMI] = ACTIONS(1195), - [anon_sym_PIPE_AMP] = ACTIONS(1195), - [anon_sym_AMP_AMP] = ACTIONS(1195), - [anon_sym_PIPE_PIPE] = ACTIONS(1195), - [anon_sym_LT] = ACTIONS(887), - [anon_sym_GT] = ACTIONS(887), - [anon_sym_GT_GT] = ACTIONS(889), - [anon_sym_AMP_GT] = ACTIONS(887), - [anon_sym_AMP_GT_GT] = ACTIONS(889), - [anon_sym_LT_AMP] = ACTIONS(889), - [anon_sym_GT_AMP] = ACTIONS(889), - [anon_sym_LT_LT] = ACTIONS(337), - [anon_sym_LT_LT_DASH] = ACTIONS(339), - [anon_sym_LT_LT_LT] = ACTIONS(891), - [anon_sym_BQUOTE] = ACTIONS(1195), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1195), - [anon_sym_AMP] = ACTIONS(1197), - }, - [916] = { - [anon_sym_RPAREN] = ACTIONS(3039), - [sym_comment] = ACTIONS(53), - }, - [917] = { - [sym_file_redirect] = STATE(672), - [sym_file_descriptor] = ACTIONS(3041), - [anon_sym_SEMI] = ACTIONS(1289), - [anon_sym_PIPE] = ACTIONS(1289), - [anon_sym_SEMI_SEMI] = ACTIONS(1287), - [anon_sym_PIPE_AMP] = ACTIONS(1287), - [anon_sym_AMP_AMP] = ACTIONS(1287), - [anon_sym_PIPE_PIPE] = ACTIONS(1287), - [anon_sym_LT] = ACTIONS(3043), - [anon_sym_GT] = ACTIONS(3043), - [anon_sym_GT_GT] = ACTIONS(3045), - [anon_sym_AMP_GT] = ACTIONS(3043), - [anon_sym_AMP_GT_GT] = ACTIONS(3045), - [anon_sym_LT_AMP] = ACTIONS(3045), - [anon_sym_GT_AMP] = ACTIONS(3045), - [anon_sym_BQUOTE] = ACTIONS(1287), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1287), - [anon_sym_AMP] = ACTIONS(1289), - }, - [918] = { - [sym_file_redirect] = STATE(1356), - [sym_heredoc_redirect] = STATE(1356), - [sym_herestring_redirect] = STATE(1356), - [aux_sym_while_statement_repeat1] = STATE(1356), - [sym_file_descriptor] = ACTIONS(3047), - [anon_sym_SEMI] = ACTIONS(1407), - [anon_sym_PIPE] = ACTIONS(1407), - [anon_sym_SEMI_SEMI] = ACTIONS(1405), - [anon_sym_PIPE_AMP] = ACTIONS(1405), - [anon_sym_AMP_AMP] = ACTIONS(1405), - [anon_sym_PIPE_PIPE] = ACTIONS(1405), - [anon_sym_LT] = ACTIONS(3049), - [anon_sym_GT] = ACTIONS(3049), - [anon_sym_GT_GT] = ACTIONS(3051), - [anon_sym_AMP_GT] = ACTIONS(3049), - [anon_sym_AMP_GT_GT] = ACTIONS(3051), - [anon_sym_LT_AMP] = ACTIONS(3051), - [anon_sym_GT_AMP] = ACTIONS(3051), - [anon_sym_LT_LT] = ACTIONS(1413), - [anon_sym_LT_LT_DASH] = ACTIONS(1415), - [anon_sym_LT_LT_LT] = ACTIONS(3053), - [anon_sym_BQUOTE] = ACTIONS(1405), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1405), - [anon_sym_AMP] = ACTIONS(1407), - }, - [919] = { - [sym_compound_statement] = STATE(1357), - [anon_sym_LBRACE] = ACTIONS(511), - [sym_comment] = ACTIONS(53), - }, - [920] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(1926), - [anon_sym_PIPE] = ACTIONS(1926), - [anon_sym_SEMI_SEMI] = ACTIONS(1924), - [anon_sym_PIPE_AMP] = ACTIONS(1924), - [anon_sym_AMP_AMP] = ACTIONS(1924), - [anon_sym_PIPE_PIPE] = ACTIONS(1924), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(1924), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1926), - }, - [921] = { - [anon_sym_SEMI] = ACTIONS(1930), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_SEMI_SEMI] = ACTIONS(1928), - [anon_sym_PIPE_AMP] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(1928), - [anon_sym_PIPE_PIPE] = ACTIONS(1928), - [anon_sym_BQUOTE] = ACTIONS(1928), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1928), - [anon_sym_AMP] = ACTIONS(1930), - }, - [922] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(1930), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_SEMI_SEMI] = ACTIONS(1928), - [anon_sym_PIPE_AMP] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(1928), - [anon_sym_PIPE_PIPE] = ACTIONS(1928), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(1928), - [anon_sym_AMP] = ACTIONS(1930), - }, - [923] = { - [sym_concatenation] = STATE(945), - [sym_string] = STATE(1359), - [sym_simple_expansion] = STATE(1359), - [sym_string_expansion] = STATE(1359), - [sym_expansion] = STATE(1359), - [sym_command_substitution] = STATE(1359), - [sym_process_substitution] = STATE(1359), - [sym__special_characters] = ACTIONS(3055), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(3057), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3057), - }, - [924] = { - [aux_sym_concatenation_repeat1] = STATE(1360), - [sym__simple_heredoc_body] = ACTIONS(731), - [sym__heredoc_body_beginning] = ACTIONS(731), - [sym_file_descriptor] = ACTIONS(731), - [sym__concat] = ACTIONS(249), - [anon_sym_SEMI] = ACTIONS(735), - [anon_sym_PIPE] = ACTIONS(735), - [anon_sym_SEMI_SEMI] = ACTIONS(731), - [anon_sym_PIPE_AMP] = ACTIONS(731), - [anon_sym_AMP_AMP] = ACTIONS(731), - [anon_sym_PIPE_PIPE] = ACTIONS(731), - [anon_sym_LT] = ACTIONS(735), - [anon_sym_GT] = ACTIONS(735), - [anon_sym_GT_GT] = ACTIONS(731), - [anon_sym_AMP_GT] = ACTIONS(735), - [anon_sym_AMP_GT_GT] = ACTIONS(731), - [anon_sym_LT_AMP] = ACTIONS(731), - [anon_sym_GT_AMP] = ACTIONS(731), - [anon_sym_LT_LT] = ACTIONS(735), - [anon_sym_LT_LT_DASH] = ACTIONS(731), - [anon_sym_LT_LT_LT] = ACTIONS(731), - [anon_sym_BQUOTE] = ACTIONS(731), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(731), - [anon_sym_AMP] = ACTIONS(735), - }, - [925] = { - [aux_sym_concatenation_repeat1] = STATE(1360), - [sym__simple_heredoc_body] = ACTIONS(749), - [sym__heredoc_body_beginning] = ACTIONS(749), - [sym_file_descriptor] = ACTIONS(749), - [sym__concat] = ACTIONS(249), - [anon_sym_SEMI] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(751), - [anon_sym_SEMI_SEMI] = ACTIONS(749), - [anon_sym_PIPE_AMP] = ACTIONS(749), - [anon_sym_AMP_AMP] = ACTIONS(749), - [anon_sym_PIPE_PIPE] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(751), - [anon_sym_GT] = ACTIONS(751), - [anon_sym_GT_GT] = ACTIONS(749), - [anon_sym_AMP_GT] = ACTIONS(751), - [anon_sym_AMP_GT_GT] = ACTIONS(749), - [anon_sym_LT_AMP] = ACTIONS(749), - [anon_sym_GT_AMP] = ACTIONS(749), - [anon_sym_LT_LT] = ACTIONS(751), - [anon_sym_LT_LT_DASH] = ACTIONS(749), - [anon_sym_LT_LT_LT] = ACTIONS(749), - [anon_sym_BQUOTE] = ACTIONS(749), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(749), - [anon_sym_AMP] = ACTIONS(751), - }, - [926] = { - [aux_sym_concatenation_repeat1] = STATE(1360), - [sym__simple_heredoc_body] = ACTIONS(1972), - [sym__heredoc_body_beginning] = ACTIONS(1972), - [sym_file_descriptor] = ACTIONS(1972), - [sym__concat] = ACTIONS(249), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_PIPE] = ACTIONS(1974), - [anon_sym_SEMI_SEMI] = ACTIONS(1972), - [anon_sym_PIPE_AMP] = ACTIONS(1972), - [anon_sym_AMP_AMP] = ACTIONS(1972), - [anon_sym_PIPE_PIPE] = ACTIONS(1972), - [anon_sym_LT] = ACTIONS(1974), - [anon_sym_GT] = ACTIONS(1974), - [anon_sym_GT_GT] = ACTIONS(1972), - [anon_sym_AMP_GT] = ACTIONS(1974), - [anon_sym_AMP_GT_GT] = ACTIONS(1972), - [anon_sym_LT_AMP] = ACTIONS(1972), - [anon_sym_GT_AMP] = ACTIONS(1972), - [anon_sym_LT_LT] = ACTIONS(1974), - [anon_sym_LT_LT_DASH] = ACTIONS(1972), - [anon_sym_LT_LT_LT] = ACTIONS(1972), - [anon_sym_BQUOTE] = ACTIONS(1972), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1972), - [anon_sym_AMP] = ACTIONS(1974), - }, - [927] = { - [aux_sym_concatenation_repeat1] = STATE(1360), - [sym__simple_heredoc_body] = ACTIONS(1976), - [sym__heredoc_body_beginning] = ACTIONS(1976), - [sym_file_descriptor] = ACTIONS(1976), - [sym__concat] = ACTIONS(249), - [anon_sym_SEMI] = ACTIONS(1978), - [anon_sym_PIPE] = ACTIONS(1978), - [anon_sym_SEMI_SEMI] = ACTIONS(1976), - [anon_sym_PIPE_AMP] = ACTIONS(1976), - [anon_sym_AMP_AMP] = ACTIONS(1976), - [anon_sym_PIPE_PIPE] = ACTIONS(1976), - [anon_sym_LT] = ACTIONS(1978), - [anon_sym_GT] = ACTIONS(1978), - [anon_sym_GT_GT] = ACTIONS(1976), - [anon_sym_AMP_GT] = ACTIONS(1978), - [anon_sym_AMP_GT_GT] = ACTIONS(1976), - [anon_sym_LT_AMP] = ACTIONS(1976), - [anon_sym_GT_AMP] = ACTIONS(1976), - [anon_sym_LT_LT] = ACTIONS(1978), - [anon_sym_LT_LT_DASH] = ACTIONS(1976), - [anon_sym_LT_LT_LT] = ACTIONS(1976), - [anon_sym_BQUOTE] = ACTIONS(1976), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1978), - }, - [928] = { - [sym_file_redirect] = STATE(928), - [sym_heredoc_redirect] = STATE(928), - [sym_herestring_redirect] = STATE(928), - [aux_sym_while_statement_repeat1] = STATE(928), - [sym__simple_heredoc_body] = ACTIONS(1984), - [sym__heredoc_body_beginning] = ACTIONS(1984), - [sym_file_descriptor] = ACTIONS(3059), - [anon_sym_SEMI] = ACTIONS(1989), - [anon_sym_PIPE] = ACTIONS(1989), - [anon_sym_SEMI_SEMI] = ACTIONS(1984), - [anon_sym_PIPE_AMP] = ACTIONS(1984), - [anon_sym_AMP_AMP] = ACTIONS(1984), - [anon_sym_PIPE_PIPE] = ACTIONS(1984), - [anon_sym_LT] = ACTIONS(3062), - [anon_sym_GT] = ACTIONS(3062), + [949] = { + [sym__simple_heredoc_body] = ACTIONS(3065), + [sym__heredoc_body_beginning] = ACTIONS(3065), + [sym_file_descriptor] = ACTIONS(3065), + [sym__concat] = ACTIONS(3065), + [ts_builtin_sym_end] = ACTIONS(3065), + [anon_sym_SEMI] = ACTIONS(3067), + [anon_sym_PIPE] = ACTIONS(3067), + [anon_sym_RPAREN] = ACTIONS(3065), + [anon_sym_SEMI_SEMI] = ACTIONS(3065), + [anon_sym_PIPE_AMP] = ACTIONS(3065), + [anon_sym_AMP_AMP] = ACTIONS(3065), + [anon_sym_PIPE_PIPE] = ACTIONS(3065), + [anon_sym_EQ_TILDE] = ACTIONS(3067), + [anon_sym_EQ_EQ] = ACTIONS(3067), + [anon_sym_LT] = ACTIONS(3067), + [anon_sym_GT] = ACTIONS(3067), [anon_sym_GT_GT] = ACTIONS(3065), - [anon_sym_AMP_GT] = ACTIONS(3062), + [anon_sym_AMP_GT] = ACTIONS(3067), [anon_sym_AMP_GT_GT] = ACTIONS(3065), [anon_sym_LT_AMP] = ACTIONS(3065), [anon_sym_GT_AMP] = ACTIONS(3065), - [anon_sym_LT_LT] = ACTIONS(1997), - [anon_sym_LT_LT_DASH] = ACTIONS(2000), - [anon_sym_LT_LT_LT] = ACTIONS(3068), - [anon_sym_BQUOTE] = ACTIONS(1984), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1984), - [anon_sym_AMP] = ACTIONS(1989), - }, - [929] = { - [sym_file_redirect] = STATE(928), - [sym_heredoc_redirect] = STATE(928), - [sym_heredoc_body] = STATE(947), - [sym_herestring_redirect] = STATE(928), - [aux_sym_while_statement_repeat1] = STATE(928), - [sym__simple_heredoc_body] = ACTIONS(321), - [sym__heredoc_body_beginning] = ACTIONS(323), - [sym_file_descriptor] = ACTIONS(885), - [anon_sym_SEMI] = ACTIONS(1982), - [anon_sym_PIPE] = ACTIONS(1982), - [anon_sym_SEMI_SEMI] = ACTIONS(1980), - [anon_sym_PIPE_AMP] = ACTIONS(1980), - [anon_sym_AMP_AMP] = ACTIONS(1980), - [anon_sym_PIPE_PIPE] = ACTIONS(1980), - [anon_sym_LT] = ACTIONS(887), - [anon_sym_GT] = ACTIONS(887), - [anon_sym_GT_GT] = ACTIONS(889), - [anon_sym_AMP_GT] = ACTIONS(887), - [anon_sym_AMP_GT_GT] = ACTIONS(889), - [anon_sym_LT_AMP] = ACTIONS(889), - [anon_sym_GT_AMP] = ACTIONS(889), - [anon_sym_LT_LT] = ACTIONS(337), - [anon_sym_LT_LT_DASH] = ACTIONS(339), - [anon_sym_LT_LT_LT] = ACTIONS(891), - [anon_sym_BQUOTE] = ACTIONS(1980), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1980), - [anon_sym_AMP] = ACTIONS(1982), - }, - [930] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(3037), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), - }, - [931] = { - [sym_file_redirect] = STATE(1361), - [sym_heredoc_redirect] = STATE(1361), - [sym_heredoc_body] = STATE(947), - [sym_herestring_redirect] = STATE(1361), - [sym_concatenation] = STATE(628), - [sym_string] = STATE(248), - [sym_simple_expansion] = STATE(248), - [sym_string_expansion] = STATE(248), - [sym_expansion] = STATE(248), - [sym_command_substitution] = STATE(248), - [sym_process_substitution] = STATE(248), - [aux_sym_while_statement_repeat1] = STATE(1361), - [aux_sym_command_repeat2] = STATE(628), - [sym__simple_heredoc_body] = ACTIONS(321), - [sym__heredoc_body_beginning] = ACTIONS(323), - [sym_file_descriptor] = ACTIONS(885), - [anon_sym_SEMI] = ACTIONS(1982), - [anon_sym_PIPE] = ACTIONS(1982), - [anon_sym_SEMI_SEMI] = ACTIONS(1980), - [anon_sym_PIPE_AMP] = ACTIONS(1980), - [anon_sym_AMP_AMP] = ACTIONS(1980), - [anon_sym_PIPE_PIPE] = ACTIONS(1980), - [anon_sym_EQ_TILDE] = ACTIONS(455), - [anon_sym_EQ_EQ] = ACTIONS(455), - [anon_sym_LT] = ACTIONS(887), - [anon_sym_GT] = ACTIONS(887), - [anon_sym_GT_GT] = ACTIONS(889), - [anon_sym_AMP_GT] = ACTIONS(887), - [anon_sym_AMP_GT_GT] = ACTIONS(889), - [anon_sym_LT_AMP] = ACTIONS(889), - [anon_sym_GT_AMP] = ACTIONS(889), - [anon_sym_LT_LT] = ACTIONS(337), - [anon_sym_LT_LT_DASH] = ACTIONS(339), - [anon_sym_LT_LT_LT] = ACTIONS(891), - [sym__special_characters] = ACTIONS(463), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(465), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(1980), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(467), - [anon_sym_LF] = ACTIONS(1980), - [anon_sym_AMP] = ACTIONS(1982), - }, - [932] = { - [sym__simple_heredoc_body] = ACTIONS(3071), - [sym__heredoc_body_beginning] = ACTIONS(3071), - [sym_file_descriptor] = ACTIONS(3071), - [sym__concat] = ACTIONS(3071), - [ts_builtin_sym_end] = ACTIONS(3071), - [anon_sym_SEMI] = ACTIONS(3073), - [anon_sym_PIPE] = ACTIONS(3073), - [anon_sym_RPAREN] = ACTIONS(3071), - [anon_sym_SEMI_SEMI] = ACTIONS(3071), - [anon_sym_PIPE_AMP] = ACTIONS(3071), - [anon_sym_AMP_AMP] = ACTIONS(3071), - [anon_sym_PIPE_PIPE] = ACTIONS(3071), - [anon_sym_EQ_TILDE] = ACTIONS(3073), - [anon_sym_EQ_EQ] = ACTIONS(3073), - [anon_sym_LT] = ACTIONS(3073), - [anon_sym_GT] = ACTIONS(3073), - [anon_sym_GT_GT] = ACTIONS(3071), - [anon_sym_AMP_GT] = ACTIONS(3073), - [anon_sym_AMP_GT_GT] = ACTIONS(3071), - [anon_sym_LT_AMP] = ACTIONS(3071), - [anon_sym_GT_AMP] = ACTIONS(3071), - [anon_sym_LT_LT] = ACTIONS(3073), - [anon_sym_LT_LT_DASH] = ACTIONS(3071), - [anon_sym_LT_LT_LT] = ACTIONS(3071), - [sym__special_characters] = ACTIONS(3071), - [anon_sym_DQUOTE] = ACTIONS(3071), - [anon_sym_DOLLAR] = ACTIONS(3073), - [sym_raw_string] = ACTIONS(3071), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3071), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3071), - [anon_sym_BQUOTE] = ACTIONS(3071), - [anon_sym_LT_LPAREN] = ACTIONS(3071), - [anon_sym_GT_LPAREN] = ACTIONS(3071), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3073), - [anon_sym_LF] = ACTIONS(3071), - [anon_sym_AMP] = ACTIONS(3073), - }, - [933] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(3075), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(901), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), - }, - [934] = { - [sym_file_redirect] = STATE(1363), - [sym_file_descriptor] = ACTIONS(1285), - [ts_builtin_sym_end] = ACTIONS(2460), - [anon_sym_SEMI] = ACTIONS(2462), - [anon_sym_PIPE] = ACTIONS(2462), - [anon_sym_SEMI_SEMI] = ACTIONS(2460), - [anon_sym_PIPE_AMP] = ACTIONS(2460), - [anon_sym_AMP_AMP] = ACTIONS(2460), - [anon_sym_PIPE_PIPE] = ACTIONS(2460), - [anon_sym_LT] = ACTIONS(1291), - [anon_sym_GT] = ACTIONS(1291), - [anon_sym_GT_GT] = ACTIONS(1293), - [anon_sym_AMP_GT] = ACTIONS(1291), - [anon_sym_AMP_GT_GT] = ACTIONS(1293), - [anon_sym_LT_AMP] = ACTIONS(1293), - [anon_sym_GT_AMP] = ACTIONS(1293), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(2460), - [anon_sym_AMP] = ACTIONS(2462), - }, - [935] = { - [sym__heredoc_body_middle] = ACTIONS(803), - [sym__heredoc_body_end] = ACTIONS(803), - [anon_sym_DOLLAR] = ACTIONS(805), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(803), - [sym_comment] = ACTIONS(53), - }, - [936] = { - [sym__heredoc_body_middle] = ACTIONS(811), - [sym__heredoc_body_end] = ACTIONS(811), - [anon_sym_DOLLAR] = ACTIONS(813), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(811), - [sym_comment] = ACTIONS(53), - }, - [937] = { - [anon_sym_LBRACK] = ACTIONS(815), - [anon_sym_EQ] = ACTIONS(3077), - [sym_comment] = ACTIONS(53), - }, - [938] = { - [sym_subscript] = STATE(1367), - [sym_variable_name] = ACTIONS(3079), - [anon_sym_DOLLAR] = ACTIONS(3081), - [anon_sym_DASH] = ACTIONS(3081), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3083), - [anon_sym_STAR] = ACTIONS(3085), - [anon_sym_AT] = ACTIONS(3085), - [anon_sym_QMARK] = ACTIONS(3085), - [anon_sym_0] = ACTIONS(3083), - [anon_sym__] = ACTIONS(3083), - }, - [939] = { - [sym_concatenation] = STATE(1370), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(1370), - [anon_sym_RBRACE] = ACTIONS(3087), - [anon_sym_EQ] = ACTIONS(3089), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(3091), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(3093), - [anon_sym_COLON] = ACTIONS(3089), - [anon_sym_COLON_QMARK] = ACTIONS(3089), - [anon_sym_COLON_DASH] = ACTIONS(3089), - [anon_sym_PERCENT] = ACTIONS(3089), - [anon_sym_DASH] = ACTIONS(3089), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [940] = { - [sym_concatenation] = STATE(1373), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(1373), - [anon_sym_RBRACE] = ACTIONS(3095), - [anon_sym_EQ] = ACTIONS(3097), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(3099), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(3101), - [anon_sym_COLON] = ACTIONS(3097), - [anon_sym_COLON_QMARK] = ACTIONS(3097), - [anon_sym_COLON_DASH] = ACTIONS(3097), - [anon_sym_PERCENT] = ACTIONS(3097), - [anon_sym_DASH] = ACTIONS(3097), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [941] = { - [ts_builtin_sym_end] = ACTIONS(3103), - [anon_sym_SEMI] = ACTIONS(3105), - [anon_sym_esac] = ACTIONS(3103), - [anon_sym_PIPE] = ACTIONS(3105), - [anon_sym_RPAREN] = ACTIONS(3103), - [anon_sym_SEMI_SEMI] = ACTIONS(3103), - [anon_sym_PIPE_AMP] = ACTIONS(3103), - [anon_sym_AMP_AMP] = ACTIONS(3103), - [anon_sym_PIPE_PIPE] = ACTIONS(3103), - [anon_sym_BQUOTE] = ACTIONS(3103), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(3103), - [anon_sym_AMP] = ACTIONS(3105), - }, - [942] = { - [sym_simple_expansion] = STATE(942), - [sym_expansion] = STATE(942), - [aux_sym_heredoc_body_repeat1] = STATE(942), - [sym__heredoc_body_middle] = ACTIONS(3107), - [sym__heredoc_body_end] = ACTIONS(3110), - [anon_sym_DOLLAR] = ACTIONS(3112), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3115), - [sym_comment] = ACTIONS(53), - }, - [943] = { - [aux_sym_concatenation_repeat1] = STATE(946), - [sym__simple_heredoc_body] = ACTIONS(1053), - [sym__heredoc_body_beginning] = ACTIONS(1053), - [sym_file_descriptor] = ACTIONS(1053), - [sym__concat] = ACTIONS(249), - [ts_builtin_sym_end] = ACTIONS(1053), - [anon_sym_SEMI] = ACTIONS(1055), - [anon_sym_PIPE] = ACTIONS(1055), - [anon_sym_SEMI_SEMI] = ACTIONS(1053), - [anon_sym_PIPE_AMP] = ACTIONS(1053), - [anon_sym_AMP_AMP] = ACTIONS(1053), - [anon_sym_PIPE_PIPE] = ACTIONS(1053), - [anon_sym_LT] = ACTIONS(1055), - [anon_sym_GT] = ACTIONS(1055), - [anon_sym_GT_GT] = ACTIONS(1053), - [anon_sym_AMP_GT] = ACTIONS(1055), - [anon_sym_AMP_GT_GT] = ACTIONS(1053), - [anon_sym_LT_AMP] = ACTIONS(1053), - [anon_sym_GT_AMP] = ACTIONS(1053), - [anon_sym_LT_LT] = ACTIONS(1055), - [anon_sym_LT_LT_DASH] = ACTIONS(1053), - [anon_sym_LT_LT_LT] = ACTIONS(1053), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1053), - [anon_sym_AMP] = ACTIONS(1055), - }, - [944] = { - [aux_sym_concatenation_repeat1] = STATE(946), - [sym__simple_heredoc_body] = ACTIONS(1057), - [sym__heredoc_body_beginning] = ACTIONS(1057), - [sym_file_descriptor] = ACTIONS(1057), - [sym__concat] = ACTIONS(249), - [ts_builtin_sym_end] = ACTIONS(1057), - [anon_sym_SEMI] = ACTIONS(1059), - [anon_sym_PIPE] = ACTIONS(1059), - [anon_sym_SEMI_SEMI] = ACTIONS(1057), - [anon_sym_PIPE_AMP] = ACTIONS(1057), - [anon_sym_AMP_AMP] = ACTIONS(1057), - [anon_sym_PIPE_PIPE] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_GT_GT] = ACTIONS(1057), - [anon_sym_AMP_GT] = ACTIONS(1059), - [anon_sym_AMP_GT_GT] = ACTIONS(1057), - [anon_sym_LT_AMP] = ACTIONS(1057), - [anon_sym_GT_AMP] = ACTIONS(1057), - [anon_sym_LT_LT] = ACTIONS(1059), - [anon_sym_LT_LT_DASH] = ACTIONS(1057), - [anon_sym_LT_LT_LT] = ACTIONS(1057), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), - }, - [945] = { - [sym__simple_heredoc_body] = ACTIONS(1057), - [sym__heredoc_body_beginning] = ACTIONS(1057), - [sym_file_descriptor] = ACTIONS(1057), - [ts_builtin_sym_end] = ACTIONS(1057), - [anon_sym_SEMI] = ACTIONS(1059), - [anon_sym_esac] = ACTIONS(1057), - [anon_sym_PIPE] = ACTIONS(1059), - [anon_sym_RPAREN] = ACTIONS(1057), - [anon_sym_SEMI_SEMI] = ACTIONS(1057), - [anon_sym_PIPE_AMP] = ACTIONS(1057), - [anon_sym_AMP_AMP] = ACTIONS(1057), - [anon_sym_PIPE_PIPE] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_GT_GT] = ACTIONS(1057), - [anon_sym_AMP_GT] = ACTIONS(1059), - [anon_sym_AMP_GT_GT] = ACTIONS(1057), - [anon_sym_LT_AMP] = ACTIONS(1057), - [anon_sym_GT_AMP] = ACTIONS(1057), - [anon_sym_LT_LT] = ACTIONS(1059), - [anon_sym_LT_LT_DASH] = ACTIONS(1057), - [anon_sym_LT_LT_LT] = ACTIONS(1057), - [anon_sym_BQUOTE] = ACTIONS(1057), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), - }, - [946] = { - [aux_sym_concatenation_repeat1] = STATE(1374), - [sym__simple_heredoc_body] = ACTIONS(765), - [sym__heredoc_body_beginning] = ACTIONS(765), - [sym_file_descriptor] = ACTIONS(765), - [sym__concat] = ACTIONS(249), - [ts_builtin_sym_end] = ACTIONS(765), - [anon_sym_SEMI] = ACTIONS(767), - [anon_sym_PIPE] = ACTIONS(767), - [anon_sym_SEMI_SEMI] = ACTIONS(765), - [anon_sym_PIPE_AMP] = ACTIONS(765), - [anon_sym_AMP_AMP] = ACTIONS(765), - [anon_sym_PIPE_PIPE] = ACTIONS(765), - [anon_sym_LT] = ACTIONS(767), - [anon_sym_GT] = ACTIONS(767), - [anon_sym_GT_GT] = ACTIONS(765), - [anon_sym_AMP_GT] = ACTIONS(767), - [anon_sym_AMP_GT_GT] = ACTIONS(765), - [anon_sym_LT_AMP] = ACTIONS(765), - [anon_sym_GT_AMP] = ACTIONS(765), - [anon_sym_LT_LT] = ACTIONS(767), - [anon_sym_LT_LT_DASH] = ACTIONS(765), - [anon_sym_LT_LT_LT] = ACTIONS(765), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(765), - [anon_sym_AMP] = ACTIONS(767), - }, - [947] = { - [ts_builtin_sym_end] = ACTIONS(3118), - [anon_sym_SEMI] = ACTIONS(3120), - [anon_sym_esac] = ACTIONS(3118), - [anon_sym_PIPE] = ACTIONS(3120), - [anon_sym_RPAREN] = ACTIONS(3118), - [anon_sym_SEMI_SEMI] = ACTIONS(3118), - [anon_sym_PIPE_AMP] = ACTIONS(3118), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_PIPE_PIPE] = ACTIONS(3118), - [anon_sym_BQUOTE] = ACTIONS(3118), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(3118), - [anon_sym_AMP] = ACTIONS(3120), - }, - [948] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_done] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_fi] = ACTIONS(905), - [anon_sym_elif] = ACTIONS(905), - [anon_sym_else] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_SEMI_SEMI] = ACTIONS(901), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(901), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), - }, - [949] = { - [sym_file_redirect] = STATE(517), - [sym_heredoc_redirect] = STATE(517), - [sym_heredoc_body] = STATE(1375), - [sym_herestring_redirect] = STATE(517), - [aux_sym_while_statement_repeat1] = STATE(517), - [sym__simple_heredoc_body] = ACTIONS(321), - [sym__heredoc_body_beginning] = ACTIONS(323), - [sym_file_descriptor] = ACTIONS(325), - [ts_builtin_sym_end] = ACTIONS(3118), - [anon_sym_SEMI] = ACTIONS(3120), - [anon_sym_PIPE] = ACTIONS(3120), - [anon_sym_SEMI_SEMI] = ACTIONS(3118), - [anon_sym_PIPE_AMP] = ACTIONS(3118), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_PIPE_PIPE] = ACTIONS(3118), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), - [anon_sym_AMP_GT] = ACTIONS(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(335), - [anon_sym_GT_AMP] = ACTIONS(335), - [anon_sym_LT_LT] = ACTIONS(337), - [anon_sym_LT_LT_DASH] = ACTIONS(339), - [anon_sym_LT_LT_LT] = ACTIONS(341), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(3118), - [anon_sym_AMP] = ACTIONS(3120), + [anon_sym_LT_LT] = ACTIONS(3067), + [anon_sym_LT_LT_DASH] = ACTIONS(3065), + [anon_sym_LT_LT_LT] = ACTIONS(3065), + [sym__special_characters] = ACTIONS(3065), + [anon_sym_DQUOTE] = ACTIONS(3065), + [anon_sym_DOLLAR] = ACTIONS(3067), + [sym_raw_string] = ACTIONS(3065), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3065), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3065), + [anon_sym_BQUOTE] = ACTIONS(3065), + [anon_sym_LT_LPAREN] = ACTIONS(3065), + [anon_sym_GT_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(3067), + [anon_sym_LF] = ACTIONS(3065), + [anon_sym_AMP] = ACTIONS(3067), }, [950] = { - [sym__concat] = ACTIONS(3122), - [anon_sym_EQ] = ACTIONS(3124), - [anon_sym_PLUS_EQ] = ACTIONS(3124), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(3059), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [951] = { - [anon_sym_EQ] = ACTIONS(3124), - [anon_sym_PLUS_EQ] = ACTIONS(3124), - [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(3069), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(3071), + [anon_sym_SEMI_SEMI] = ACTIONS(3073), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(3073), + [anon_sym_AMP] = ACTIONS(3069), }, [952] = { - [aux_sym_concatenation_repeat1] = STATE(952), - [sym__concat] = ACTIONS(2553), - [anon_sym_RBRACK] = ACTIONS(1724), - [sym_comment] = ACTIONS(53), + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(3069), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(3071), + [anon_sym_SEMI_SEMI] = ACTIONS(3073), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(3073), + [anon_sym_AMP] = ACTIONS(3069), }, [953] = { - [sym__concat] = ACTIONS(3126), - [anon_sym_EQ] = ACTIONS(3128), - [anon_sym_PLUS_EQ] = ACTIONS(3128), - [sym_comment] = ACTIONS(53), + [sym__terminated_statement] = STATE(198), + [sym_for_statement] = STATE(1413), + [sym_c_style_for_statement] = STATE(1413), + [sym_while_statement] = STATE(1413), + [sym_if_statement] = STATE(1413), + [sym_case_statement] = STATE(1413), + [sym_function_definition] = STATE(1413), + [sym_subshell] = STATE(1413), + [sym_pipeline] = STATE(1413), + [sym_list] = STATE(1413), + [sym_negated_command] = STATE(1413), + [sym_test_command] = STATE(1413), + [sym_declaration_command] = STATE(1413), + [sym_unset_command] = STATE(1413), + [sym_command] = STATE(1413), + [sym_command_name] = STATE(92), + [sym_variable_assignment] = STATE(1414), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(96), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), + [aux_sym__statements_repeat1] = STATE(198), + [aux_sym_command_repeat1] = STATE(96), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(137), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(149), + [anon_sym_declare] = ACTIONS(151), + [anon_sym_typeset] = ACTIONS(151), + [anon_sym_export] = ACTIONS(151), + [anon_sym_readonly] = ACTIONS(151), + [anon_sym_local] = ACTIONS(151), + [anon_sym_unset] = ACTIONS(153), + [anon_sym_unsetenv] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(159), }, [954] = { - [anon_sym_EQ] = ACTIONS(3128), - [anon_sym_PLUS_EQ] = ACTIONS(3128), - [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(3075), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_SEMI_SEMI] = ACTIONS(3077), + [anon_sym_PIPE_AMP] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_BQUOTE] = ACTIONS(3071), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(3077), + [anon_sym_AMP] = ACTIONS(3075), }, [955] = { - [sym_string] = STATE(1378), - [sym_simple_expansion] = STATE(1378), - [sym_string_expansion] = STATE(1378), - [sym_expansion] = STATE(1378), - [sym_command_substitution] = STATE(1378), - [sym_process_substitution] = STATE(1378), - [sym__special_characters] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(1079), - [anon_sym_DOLLAR] = ACTIONS(1081), - [sym_raw_string] = ACTIONS(3130), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1085), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1087), - [anon_sym_BQUOTE] = ACTIONS(1089), - [anon_sym_LT_LPAREN] = ACTIONS(1091), - [anon_sym_GT_LPAREN] = ACTIONS(1091), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3130), + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(3075), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_SEMI_SEMI] = ACTIONS(3077), + [anon_sym_PIPE_AMP] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(3071), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(3077), + [anon_sym_AMP] = ACTIONS(3075), }, [956] = { - [aux_sym_concatenation_repeat1] = STATE(1379), - [sym__concat] = ACTIONS(2060), - [anon_sym_RPAREN] = ACTIONS(765), - [sym__special_characters] = ACTIONS(765), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_DOLLAR] = ACTIONS(767), - [sym_raw_string] = ACTIONS(765), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(765), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(765), - [anon_sym_BQUOTE] = ACTIONS(765), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(765), + [sym__terminated_statement] = STATE(198), + [sym_for_statement] = STATE(1416), + [sym_c_style_for_statement] = STATE(1416), + [sym_while_statement] = STATE(1416), + [sym_if_statement] = STATE(1416), + [sym_case_statement] = STATE(1416), + [sym_function_definition] = STATE(1416), + [sym_subshell] = STATE(1416), + [sym_pipeline] = STATE(1416), + [sym_list] = STATE(1416), + [sym_negated_command] = STATE(1416), + [sym_test_command] = STATE(1416), + [sym_declaration_command] = STATE(1416), + [sym_unset_command] = STATE(1416), + [sym_command] = STATE(1416), + [sym_command_name] = STATE(173), + [sym_variable_assignment] = STATE(1417), + [sym_subscript] = STATE(66), + [sym_file_redirect] = STATE(176), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(60), + [sym_simple_expansion] = STATE(60), + [sym_string_expansion] = STATE(60), + [sym_expansion] = STATE(60), + [sym_command_substitution] = STATE(60), + [sym_process_substitution] = STATE(60), + [aux_sym__statements_repeat1] = STATE(198), + [aux_sym_command_repeat1] = STATE(176), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(95), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(305), + [anon_sym_while] = ACTIONS(307), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(311), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(315), + [anon_sym_declare] = ACTIONS(317), + [anon_sym_typeset] = ACTIONS(317), + [anon_sym_export] = ACTIONS(317), + [anon_sym_readonly] = ACTIONS(317), + [anon_sym_local] = ACTIONS(317), + [anon_sym_unset] = ACTIONS(319), + [anon_sym_unsetenv] = ACTIONS(319), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(115), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(321), }, [957] = { - [sym__concat] = ACTIONS(769), - [anon_sym_RPAREN] = ACTIONS(769), - [sym__special_characters] = ACTIONS(769), - [anon_sym_DQUOTE] = ACTIONS(769), - [anon_sym_DOLLAR] = ACTIONS(771), - [sym_raw_string] = ACTIONS(769), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(769), - [anon_sym_BQUOTE] = ACTIONS(769), - [anon_sym_LT_LPAREN] = ACTIONS(769), - [anon_sym_GT_LPAREN] = ACTIONS(769), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(769), + [anon_sym_SEMI] = ACTIONS(3079), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(3081), + [anon_sym_SEMI_SEMI] = ACTIONS(3083), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(3083), + [anon_sym_AMP] = ACTIONS(3079), }, [958] = { - [anon_sym_DQUOTE] = ACTIONS(3132), - [anon_sym_DOLLAR] = ACTIONS(775), - [sym__string_content] = ACTIONS(777), - [anon_sym_POUND] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(781), - [anon_sym_STAR] = ACTIONS(783), - [anon_sym_AT] = ACTIONS(783), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_0] = ACTIONS(781), - [anon_sym__] = ACTIONS(781), + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(3079), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(3081), + [anon_sym_SEMI_SEMI] = ACTIONS(3083), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(3083), + [anon_sym_AMP] = ACTIONS(3079), }, [959] = { - [sym_simple_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [sym_command_substitution] = STATE(141), - [aux_sym_string_repeat1] = STATE(450), - [anon_sym_DQUOTE] = ACTIONS(3132), - [anon_sym_DOLLAR] = ACTIONS(3134), - [sym__string_content] = ACTIONS(257), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(261), - [anon_sym_BQUOTE] = ACTIONS(263), - [sym_comment] = ACTIONS(265), + [sym__terminated_statement] = STATE(198), + [sym_for_statement] = STATE(1420), + [sym_c_style_for_statement] = STATE(1420), + [sym_while_statement] = STATE(1420), + [sym_if_statement] = STATE(1420), + [sym_case_statement] = STATE(1420), + [sym_function_definition] = STATE(1420), + [sym_subshell] = STATE(1420), + [sym_pipeline] = STATE(1420), + [sym_list] = STATE(1420), + [sym_negated_command] = STATE(1420), + [sym_test_command] = STATE(1420), + [sym_declaration_command] = STATE(1420), + [sym_unset_command] = STATE(1420), + [sym_command] = STATE(1420), + [sym_command_name] = STATE(92), + [sym_variable_assignment] = STATE(1421), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(96), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), + [aux_sym__statements_repeat1] = STATE(198), + [aux_sym_command_repeat1] = STATE(96), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(137), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(149), + [anon_sym_declare] = ACTIONS(151), + [anon_sym_typeset] = ACTIONS(151), + [anon_sym_export] = ACTIONS(151), + [anon_sym_readonly] = ACTIONS(151), + [anon_sym_local] = ACTIONS(151), + [anon_sym_unset] = ACTIONS(153), + [anon_sym_unsetenv] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(159), }, [960] = { - [sym__concat] = ACTIONS(803), - [anon_sym_RPAREN] = ACTIONS(803), - [sym__special_characters] = ACTIONS(803), - [anon_sym_DQUOTE] = ACTIONS(803), - [anon_sym_DOLLAR] = ACTIONS(805), - [sym_raw_string] = ACTIONS(803), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(803), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(803), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(803), - [anon_sym_GT_LPAREN] = ACTIONS(803), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(803), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(3085), + [anon_sym_EQ] = ACTIONS(3087), + [anon_sym_DASH] = ACTIONS(3087), + [sym__special_characters] = ACTIONS(3090), + [anon_sym_DQUOTE] = ACTIONS(3093), + [anon_sym_DOLLAR] = ACTIONS(3096), + [sym_raw_string] = ACTIONS(3099), + [anon_sym_POUND] = ACTIONS(3102), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3105), + [anon_sym_COLON] = ACTIONS(3087), + [anon_sym_COLON_QMARK] = ACTIONS(3087), + [anon_sym_COLON_DASH] = ACTIONS(3087), + [anon_sym_PERCENT] = ACTIONS(3087), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3108), + [anon_sym_BQUOTE] = ACTIONS(3111), + [anon_sym_LT_LPAREN] = ACTIONS(3114), + [anon_sym_GT_LPAREN] = ACTIONS(3114), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(3117), }, [961] = { - [sym__concat] = ACTIONS(807), + [sym_concatenation] = STATE(1394), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1394), + [anon_sym_RBRACE] = ACTIONS(2993), + [anon_sym_EQ] = ACTIONS(3023), + [anon_sym_DASH] = ACTIONS(3023), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(3025), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(3023), + [anon_sym_COLON_QMARK] = ACTIONS(3023), + [anon_sym_COLON_DASH] = ACTIONS(3023), + [anon_sym_PERCENT] = ACTIONS(3023), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [962] = { + [sym__simple_heredoc_body] = ACTIONS(3120), + [sym__heredoc_body_beginning] = ACTIONS(3120), + [sym_file_descriptor] = ACTIONS(3120), + [sym__concat] = ACTIONS(3120), + [ts_builtin_sym_end] = ACTIONS(3120), + [anon_sym_SEMI] = ACTIONS(3122), + [anon_sym_PIPE] = ACTIONS(3122), + [anon_sym_RPAREN] = ACTIONS(3120), + [anon_sym_SEMI_SEMI] = ACTIONS(3120), + [anon_sym_PIPE_AMP] = ACTIONS(3120), + [anon_sym_AMP_AMP] = ACTIONS(3120), + [anon_sym_PIPE_PIPE] = ACTIONS(3120), + [anon_sym_EQ_TILDE] = ACTIONS(3122), + [anon_sym_EQ_EQ] = ACTIONS(3122), + [anon_sym_LT] = ACTIONS(3122), + [anon_sym_GT] = ACTIONS(3122), + [anon_sym_GT_GT] = ACTIONS(3120), + [anon_sym_AMP_GT] = ACTIONS(3122), + [anon_sym_AMP_GT_GT] = ACTIONS(3120), + [anon_sym_LT_AMP] = ACTIONS(3120), + [anon_sym_GT_AMP] = ACTIONS(3120), + [anon_sym_LT_LT] = ACTIONS(3122), + [anon_sym_LT_LT_DASH] = ACTIONS(3120), + [anon_sym_LT_LT_LT] = ACTIONS(3120), + [sym__special_characters] = ACTIONS(3120), + [anon_sym_DQUOTE] = ACTIONS(3120), + [anon_sym_DOLLAR] = ACTIONS(3122), + [sym_raw_string] = ACTIONS(3120), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3120), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3120), + [anon_sym_BQUOTE] = ACTIONS(3120), + [anon_sym_LT_LPAREN] = ACTIONS(3120), + [anon_sym_GT_LPAREN] = ACTIONS(3120), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(3122), + [anon_sym_LF] = ACTIONS(3120), + [anon_sym_AMP] = ACTIONS(3122), + }, + [963] = { + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(3124), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), + }, + [964] = { + [sym_file_redirect] = STATE(1426), + [sym_heredoc_redirect] = STATE(1426), + [sym_herestring_redirect] = STATE(1426), + [aux_sym_while_statement_repeat1] = STATE(1426), + [sym_file_descriptor] = ACTIONS(3126), + [anon_sym_SEMI] = ACTIONS(1302), + [anon_sym_PIPE] = ACTIONS(1302), + [anon_sym_SEMI_SEMI] = ACTIONS(1300), + [anon_sym_PIPE_AMP] = ACTIONS(1300), + [anon_sym_AMP_AMP] = ACTIONS(1300), + [anon_sym_PIPE_PIPE] = ACTIONS(1300), + [anon_sym_LT] = ACTIONS(3128), + [anon_sym_GT] = ACTIONS(3128), + [anon_sym_GT_GT] = ACTIONS(3130), + [anon_sym_AMP_GT] = ACTIONS(3128), + [anon_sym_AMP_GT_GT] = ACTIONS(3130), + [anon_sym_LT_AMP] = ACTIONS(3130), + [anon_sym_GT_AMP] = ACTIONS(3130), + [anon_sym_LT_LT] = ACTIONS(1308), + [anon_sym_LT_LT_DASH] = ACTIONS(1310), + [anon_sym_LT_LT_LT] = ACTIONS(3132), + [anon_sym_BQUOTE] = ACTIONS(1300), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1302), + }, + [965] = { + [sym_file_redirect] = STATE(1427), + [sym_heredoc_redirect] = STATE(1427), + [sym_heredoc_body] = STATE(699), + [sym_herestring_redirect] = STATE(1427), + [aux_sym_while_statement_repeat1] = STATE(1427), + [sym__simple_heredoc_body] = ACTIONS(339), + [sym__heredoc_body_beginning] = ACTIONS(341), + [sym_file_descriptor] = ACTIONS(927), + [anon_sym_SEMI] = ACTIONS(1340), + [anon_sym_PIPE] = ACTIONS(1340), + [anon_sym_SEMI_SEMI] = ACTIONS(1338), + [anon_sym_PIPE_AMP] = ACTIONS(1338), + [anon_sym_AMP_AMP] = ACTIONS(1338), + [anon_sym_PIPE_PIPE] = ACTIONS(1338), + [anon_sym_LT] = ACTIONS(929), + [anon_sym_GT] = ACTIONS(929), + [anon_sym_GT_GT] = ACTIONS(931), + [anon_sym_AMP_GT] = ACTIONS(929), + [anon_sym_AMP_GT_GT] = ACTIONS(931), + [anon_sym_LT_AMP] = ACTIONS(931), + [anon_sym_GT_AMP] = ACTIONS(931), + [anon_sym_LT_LT] = ACTIONS(355), + [anon_sym_LT_LT_DASH] = ACTIONS(357), + [anon_sym_LT_LT_LT] = ACTIONS(933), + [anon_sym_BQUOTE] = ACTIONS(1338), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1338), + [anon_sym_AMP] = ACTIONS(1340), + }, + [966] = { + [anon_sym_RPAREN] = ACTIONS(3134), + [sym_comment] = ACTIONS(55), + }, + [967] = { + [sym_file_redirect] = STATE(756), + [sym_file_descriptor] = ACTIONS(3136), + [anon_sym_SEMI] = ACTIONS(1432), + [anon_sym_PIPE] = ACTIONS(1432), + [anon_sym_SEMI_SEMI] = ACTIONS(1430), + [anon_sym_PIPE_AMP] = ACTIONS(1430), + [anon_sym_AMP_AMP] = ACTIONS(1430), + [anon_sym_PIPE_PIPE] = ACTIONS(1430), + [anon_sym_LT] = ACTIONS(3138), + [anon_sym_GT] = ACTIONS(3138), + [anon_sym_GT_GT] = ACTIONS(3140), + [anon_sym_AMP_GT] = ACTIONS(3138), + [anon_sym_AMP_GT_GT] = ACTIONS(3140), + [anon_sym_LT_AMP] = ACTIONS(3140), + [anon_sym_GT_AMP] = ACTIONS(3140), + [anon_sym_BQUOTE] = ACTIONS(1430), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1430), + [anon_sym_AMP] = ACTIONS(1432), + }, + [968] = { + [sym_compound_statement] = STATE(1431), + [anon_sym_LBRACE] = ACTIONS(595), + [sym_comment] = ACTIONS(55), + }, + [969] = { + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(1969), + [anon_sym_PIPE] = ACTIONS(1969), + [anon_sym_SEMI_SEMI] = ACTIONS(1967), + [anon_sym_PIPE_AMP] = ACTIONS(1967), + [anon_sym_AMP_AMP] = ACTIONS(1967), + [anon_sym_PIPE_PIPE] = ACTIONS(1967), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(1967), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(1967), + [anon_sym_AMP] = ACTIONS(1969), + }, + [970] = { + [anon_sym_SEMI] = ACTIONS(1973), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_SEMI_SEMI] = ACTIONS(1971), + [anon_sym_PIPE_AMP] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(1971), + [anon_sym_PIPE_PIPE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1971), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1971), + [anon_sym_AMP] = ACTIONS(1973), + }, + [971] = { + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(1973), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_SEMI_SEMI] = ACTIONS(1971), + [anon_sym_PIPE_AMP] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(1971), + [anon_sym_PIPE_PIPE] = ACTIONS(1971), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(1971), + [anon_sym_AMP] = ACTIONS(1973), + }, + [972] = { + [sym_concatenation] = STATE(994), + [sym_string] = STATE(1433), + [sym_simple_expansion] = STATE(1433), + [sym_string_expansion] = STATE(1433), + [sym_expansion] = STATE(1433), + [sym_command_substitution] = STATE(1433), + [sym_process_substitution] = STATE(1433), + [sym__special_characters] = ACTIONS(3142), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(3144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(3144), + }, + [973] = { + [aux_sym_concatenation_repeat1] = STATE(1434), + [sym__simple_heredoc_body] = ACTIONS(773), + [sym__heredoc_body_beginning] = ACTIONS(773), + [sym_file_descriptor] = ACTIONS(773), + [sym__concat] = ACTIONS(265), + [anon_sym_SEMI] = ACTIONS(777), + [anon_sym_PIPE] = ACTIONS(777), + [anon_sym_SEMI_SEMI] = ACTIONS(773), + [anon_sym_PIPE_AMP] = ACTIONS(773), + [anon_sym_AMP_AMP] = ACTIONS(773), + [anon_sym_PIPE_PIPE] = ACTIONS(773), + [anon_sym_LT] = ACTIONS(777), + [anon_sym_GT] = ACTIONS(777), + [anon_sym_GT_GT] = ACTIONS(773), + [anon_sym_AMP_GT] = ACTIONS(777), + [anon_sym_AMP_GT_GT] = ACTIONS(773), + [anon_sym_LT_AMP] = ACTIONS(773), + [anon_sym_GT_AMP] = ACTIONS(773), + [anon_sym_LT_LT] = ACTIONS(777), + [anon_sym_LT_LT_DASH] = ACTIONS(773), + [anon_sym_LT_LT_LT] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(773), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(773), + [anon_sym_AMP] = ACTIONS(777), + }, + [974] = { + [aux_sym_concatenation_repeat1] = STATE(1434), + [sym__simple_heredoc_body] = ACTIONS(791), + [sym__heredoc_body_beginning] = ACTIONS(791), + [sym_file_descriptor] = ACTIONS(791), + [sym__concat] = ACTIONS(265), + [anon_sym_SEMI] = ACTIONS(793), + [anon_sym_PIPE] = ACTIONS(793), + [anon_sym_SEMI_SEMI] = ACTIONS(791), + [anon_sym_PIPE_AMP] = ACTIONS(791), + [anon_sym_AMP_AMP] = ACTIONS(791), + [anon_sym_PIPE_PIPE] = ACTIONS(791), + [anon_sym_LT] = ACTIONS(793), + [anon_sym_GT] = ACTIONS(793), + [anon_sym_GT_GT] = ACTIONS(791), + [anon_sym_AMP_GT] = ACTIONS(793), + [anon_sym_AMP_GT_GT] = ACTIONS(791), + [anon_sym_LT_AMP] = ACTIONS(791), + [anon_sym_GT_AMP] = ACTIONS(791), + [anon_sym_LT_LT] = ACTIONS(793), + [anon_sym_LT_LT_DASH] = ACTIONS(791), + [anon_sym_LT_LT_LT] = ACTIONS(791), + [anon_sym_BQUOTE] = ACTIONS(791), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(791), + [anon_sym_AMP] = ACTIONS(793), + }, + [975] = { + [aux_sym_concatenation_repeat1] = STATE(1434), + [sym__simple_heredoc_body] = ACTIONS(2015), + [sym__heredoc_body_beginning] = ACTIONS(2015), + [sym_file_descriptor] = ACTIONS(2015), + [sym__concat] = ACTIONS(265), + [anon_sym_SEMI] = ACTIONS(2017), + [anon_sym_PIPE] = ACTIONS(2017), + [anon_sym_SEMI_SEMI] = ACTIONS(2015), + [anon_sym_PIPE_AMP] = ACTIONS(2015), + [anon_sym_AMP_AMP] = ACTIONS(2015), + [anon_sym_PIPE_PIPE] = ACTIONS(2015), + [anon_sym_LT] = ACTIONS(2017), + [anon_sym_GT] = ACTIONS(2017), + [anon_sym_GT_GT] = ACTIONS(2015), + [anon_sym_AMP_GT] = ACTIONS(2017), + [anon_sym_AMP_GT_GT] = ACTIONS(2015), + [anon_sym_LT_AMP] = ACTIONS(2015), + [anon_sym_GT_AMP] = ACTIONS(2015), + [anon_sym_LT_LT] = ACTIONS(2017), + [anon_sym_LT_LT_DASH] = ACTIONS(2015), + [anon_sym_LT_LT_LT] = ACTIONS(2015), + [anon_sym_BQUOTE] = ACTIONS(2015), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2017), + }, + [976] = { + [aux_sym_concatenation_repeat1] = STATE(1434), + [sym__simple_heredoc_body] = ACTIONS(2019), + [sym__heredoc_body_beginning] = ACTIONS(2019), + [sym_file_descriptor] = ACTIONS(2019), + [sym__concat] = ACTIONS(265), + [anon_sym_SEMI] = ACTIONS(2021), + [anon_sym_PIPE] = ACTIONS(2021), + [anon_sym_SEMI_SEMI] = ACTIONS(2019), + [anon_sym_PIPE_AMP] = ACTIONS(2019), + [anon_sym_AMP_AMP] = ACTIONS(2019), + [anon_sym_PIPE_PIPE] = ACTIONS(2019), + [anon_sym_LT] = ACTIONS(2021), + [anon_sym_GT] = ACTIONS(2021), + [anon_sym_GT_GT] = ACTIONS(2019), + [anon_sym_AMP_GT] = ACTIONS(2021), + [anon_sym_AMP_GT_GT] = ACTIONS(2019), + [anon_sym_LT_AMP] = ACTIONS(2019), + [anon_sym_GT_AMP] = ACTIONS(2019), + [anon_sym_LT_LT] = ACTIONS(2021), + [anon_sym_LT_LT_DASH] = ACTIONS(2019), + [anon_sym_LT_LT_LT] = ACTIONS(2019), + [anon_sym_BQUOTE] = ACTIONS(2019), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2019), + [anon_sym_AMP] = ACTIONS(2021), + }, + [977] = { + [sym_file_redirect] = STATE(977), + [sym_heredoc_redirect] = STATE(977), + [sym_herestring_redirect] = STATE(977), + [aux_sym_while_statement_repeat1] = STATE(977), + [sym__simple_heredoc_body] = ACTIONS(2027), + [sym__heredoc_body_beginning] = ACTIONS(2027), + [sym_file_descriptor] = ACTIONS(3146), + [anon_sym_SEMI] = ACTIONS(2032), + [anon_sym_PIPE] = ACTIONS(2032), + [anon_sym_SEMI_SEMI] = ACTIONS(2027), + [anon_sym_PIPE_AMP] = ACTIONS(2027), + [anon_sym_AMP_AMP] = ACTIONS(2027), + [anon_sym_PIPE_PIPE] = ACTIONS(2027), + [anon_sym_LT] = ACTIONS(3149), + [anon_sym_GT] = ACTIONS(3149), + [anon_sym_GT_GT] = ACTIONS(3152), + [anon_sym_AMP_GT] = ACTIONS(3149), + [anon_sym_AMP_GT_GT] = ACTIONS(3152), + [anon_sym_LT_AMP] = ACTIONS(3152), + [anon_sym_GT_AMP] = ACTIONS(3152), + [anon_sym_LT_LT] = ACTIONS(2040), + [anon_sym_LT_LT_DASH] = ACTIONS(2043), + [anon_sym_LT_LT_LT] = ACTIONS(3155), + [anon_sym_BQUOTE] = ACTIONS(2027), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2027), + [anon_sym_AMP] = ACTIONS(2032), + }, + [978] = { + [sym_file_redirect] = STATE(977), + [sym_heredoc_redirect] = STATE(977), + [sym_heredoc_body] = STATE(996), + [sym_herestring_redirect] = STATE(977), + [aux_sym_while_statement_repeat1] = STATE(977), + [sym__simple_heredoc_body] = ACTIONS(339), + [sym__heredoc_body_beginning] = ACTIONS(341), + [sym_file_descriptor] = ACTIONS(927), + [anon_sym_SEMI] = ACTIONS(2025), + [anon_sym_PIPE] = ACTIONS(2025), + [anon_sym_SEMI_SEMI] = ACTIONS(2023), + [anon_sym_PIPE_AMP] = ACTIONS(2023), + [anon_sym_AMP_AMP] = ACTIONS(2023), + [anon_sym_PIPE_PIPE] = ACTIONS(2023), + [anon_sym_LT] = ACTIONS(929), + [anon_sym_GT] = ACTIONS(929), + [anon_sym_GT_GT] = ACTIONS(931), + [anon_sym_AMP_GT] = ACTIONS(929), + [anon_sym_AMP_GT_GT] = ACTIONS(931), + [anon_sym_LT_AMP] = ACTIONS(931), + [anon_sym_GT_AMP] = ACTIONS(931), + [anon_sym_LT_LT] = ACTIONS(355), + [anon_sym_LT_LT_DASH] = ACTIONS(357), + [anon_sym_LT_LT_LT] = ACTIONS(933), + [anon_sym_BQUOTE] = ACTIONS(2023), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2023), + [anon_sym_AMP] = ACTIONS(2025), + }, + [979] = { + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(3124), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), + }, + [980] = { + [sym_file_redirect] = STATE(1435), + [sym_heredoc_redirect] = STATE(1435), + [sym_heredoc_body] = STATE(996), + [sym_herestring_redirect] = STATE(1435), + [sym_concatenation] = STATE(712), + [sym_string] = STATE(294), + [sym_simple_expansion] = STATE(294), + [sym_string_expansion] = STATE(294), + [sym_expansion] = STATE(294), + [sym_command_substitution] = STATE(294), + [sym_process_substitution] = STATE(294), + [aux_sym_while_statement_repeat1] = STATE(1435), + [aux_sym_command_repeat2] = STATE(712), + [sym__simple_heredoc_body] = ACTIONS(339), + [sym__heredoc_body_beginning] = ACTIONS(341), + [sym_file_descriptor] = ACTIONS(927), + [anon_sym_SEMI] = ACTIONS(2025), + [anon_sym_PIPE] = ACTIONS(2025), + [anon_sym_SEMI_SEMI] = ACTIONS(2023), + [anon_sym_PIPE_AMP] = ACTIONS(2023), + [anon_sym_AMP_AMP] = ACTIONS(2023), + [anon_sym_PIPE_PIPE] = ACTIONS(2023), + [anon_sym_EQ_TILDE] = ACTIONS(539), + [anon_sym_EQ_EQ] = ACTIONS(539), + [anon_sym_LT] = ACTIONS(929), + [anon_sym_GT] = ACTIONS(929), + [anon_sym_GT_GT] = ACTIONS(931), + [anon_sym_AMP_GT] = ACTIONS(929), + [anon_sym_AMP_GT_GT] = ACTIONS(931), + [anon_sym_LT_AMP] = ACTIONS(931), + [anon_sym_GT_AMP] = ACTIONS(931), + [anon_sym_LT_LT] = ACTIONS(355), + [anon_sym_LT_LT_DASH] = ACTIONS(357), + [anon_sym_LT_LT_LT] = ACTIONS(933), + [sym__special_characters] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(549), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(2023), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(551), + [anon_sym_LF] = ACTIONS(2023), + [anon_sym_AMP] = ACTIONS(2025), + }, + [981] = { + [sym__simple_heredoc_body] = ACTIONS(3158), + [sym__heredoc_body_beginning] = ACTIONS(3158), + [sym_file_descriptor] = ACTIONS(3158), + [sym__concat] = ACTIONS(3158), + [ts_builtin_sym_end] = ACTIONS(3158), + [anon_sym_SEMI] = ACTIONS(3160), + [anon_sym_PIPE] = ACTIONS(3160), + [anon_sym_RPAREN] = ACTIONS(3158), + [anon_sym_SEMI_SEMI] = ACTIONS(3158), + [anon_sym_PIPE_AMP] = ACTIONS(3158), + [anon_sym_AMP_AMP] = ACTIONS(3158), + [anon_sym_PIPE_PIPE] = ACTIONS(3158), + [anon_sym_EQ_TILDE] = ACTIONS(3160), + [anon_sym_EQ_EQ] = ACTIONS(3160), + [anon_sym_LT] = ACTIONS(3160), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_GT_GT] = ACTIONS(3158), + [anon_sym_AMP_GT] = ACTIONS(3160), + [anon_sym_AMP_GT_GT] = ACTIONS(3158), + [anon_sym_LT_AMP] = ACTIONS(3158), + [anon_sym_GT_AMP] = ACTIONS(3158), + [anon_sym_LT_LT] = ACTIONS(3160), + [anon_sym_LT_LT_DASH] = ACTIONS(3158), + [anon_sym_LT_LT_LT] = ACTIONS(3158), + [sym__special_characters] = ACTIONS(3158), + [anon_sym_DQUOTE] = ACTIONS(3158), + [anon_sym_DOLLAR] = ACTIONS(3160), + [sym_raw_string] = ACTIONS(3158), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3158), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3158), + [anon_sym_BQUOTE] = ACTIONS(3158), + [anon_sym_LT_LPAREN] = ACTIONS(3158), + [anon_sym_GT_LPAREN] = ACTIONS(3158), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(3160), + [anon_sym_LF] = ACTIONS(3158), + [anon_sym_AMP] = ACTIONS(3160), + }, + [982] = { + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(3162), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), + }, + [983] = { + [sym_file_redirect] = STATE(1437), + [sym_file_descriptor] = ACTIONS(1428), + [ts_builtin_sym_end] = ACTIONS(2612), + [anon_sym_SEMI] = ACTIONS(2614), + [anon_sym_PIPE] = ACTIONS(2614), + [anon_sym_SEMI_SEMI] = ACTIONS(2612), + [anon_sym_PIPE_AMP] = ACTIONS(2612), + [anon_sym_AMP_AMP] = ACTIONS(2612), + [anon_sym_PIPE_PIPE] = ACTIONS(2612), + [anon_sym_LT] = ACTIONS(1434), + [anon_sym_GT] = ACTIONS(1434), + [anon_sym_GT_GT] = ACTIONS(1436), + [anon_sym_AMP_GT] = ACTIONS(1434), + [anon_sym_AMP_GT_GT] = ACTIONS(1436), + [anon_sym_LT_AMP] = ACTIONS(1436), + [anon_sym_GT_AMP] = ACTIONS(1436), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2612), + [anon_sym_AMP] = ACTIONS(2614), + }, + [984] = { + [sym__heredoc_body_middle] = ACTIONS(845), + [sym__heredoc_body_end] = ACTIONS(845), + [anon_sym_DOLLAR] = ACTIONS(847), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(845), + [sym_comment] = ACTIONS(55), + }, + [985] = { + [sym__heredoc_body_middle] = ACTIONS(853), + [sym__heredoc_body_end] = ACTIONS(853), + [anon_sym_DOLLAR] = ACTIONS(855), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(853), + [sym_comment] = ACTIONS(55), + }, + [986] = { + [anon_sym_LBRACK] = ACTIONS(857), + [anon_sym_EQ] = ACTIONS(3164), + [sym_comment] = ACTIONS(55), + }, + [987] = { + [sym_subscript] = STATE(1441), + [sym_variable_name] = ACTIONS(3166), + [anon_sym_DASH] = ACTIONS(3168), + [anon_sym_DOLLAR] = ACTIONS(3168), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3170), + [anon_sym_STAR] = ACTIONS(3172), + [anon_sym_AT] = ACTIONS(3172), + [anon_sym_QMARK] = ACTIONS(3172), + [anon_sym_0] = ACTIONS(3170), + [anon_sym__] = ACTIONS(3170), + }, + [988] = { + [sym_concatenation] = STATE(1444), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1444), + [anon_sym_RBRACE] = ACTIONS(3174), + [anon_sym_EQ] = ACTIONS(3176), + [anon_sym_DASH] = ACTIONS(3176), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(3178), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(3180), + [anon_sym_COLON] = ACTIONS(3176), + [anon_sym_COLON_QMARK] = ACTIONS(3176), + [anon_sym_COLON_DASH] = ACTIONS(3176), + [anon_sym_PERCENT] = ACTIONS(3176), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [989] = { + [sym_concatenation] = STATE(1447), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1447), + [anon_sym_RBRACE] = ACTIONS(3182), + [anon_sym_EQ] = ACTIONS(3184), + [anon_sym_DASH] = ACTIONS(3184), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(3186), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(3188), + [anon_sym_COLON] = ACTIONS(3184), + [anon_sym_COLON_QMARK] = ACTIONS(3184), + [anon_sym_COLON_DASH] = ACTIONS(3184), + [anon_sym_PERCENT] = ACTIONS(3184), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [990] = { + [ts_builtin_sym_end] = ACTIONS(3190), + [anon_sym_SEMI] = ACTIONS(3192), + [anon_sym_esac] = ACTIONS(3190), + [anon_sym_PIPE] = ACTIONS(3192), + [anon_sym_RPAREN] = ACTIONS(3190), + [anon_sym_SEMI_SEMI] = ACTIONS(3190), + [anon_sym_PIPE_AMP] = ACTIONS(3190), + [anon_sym_AMP_AMP] = ACTIONS(3190), + [anon_sym_PIPE_PIPE] = ACTIONS(3190), + [anon_sym_BQUOTE] = ACTIONS(3190), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(3190), + [anon_sym_AMP] = ACTIONS(3192), + }, + [991] = { + [sym_simple_expansion] = STATE(991), + [sym_expansion] = STATE(991), + [aux_sym_heredoc_body_repeat1] = STATE(991), + [sym__heredoc_body_middle] = ACTIONS(3194), + [sym__heredoc_body_end] = ACTIONS(3197), + [anon_sym_DOLLAR] = ACTIONS(3199), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3202), + [sym_comment] = ACTIONS(55), + }, + [992] = { + [aux_sym_concatenation_repeat1] = STATE(995), + [sym__simple_heredoc_body] = ACTIONS(1088), + [sym__heredoc_body_beginning] = ACTIONS(1088), + [sym_file_descriptor] = ACTIONS(1088), + [sym__concat] = ACTIONS(265), + [ts_builtin_sym_end] = ACTIONS(1088), + [anon_sym_SEMI] = ACTIONS(1090), + [anon_sym_PIPE] = ACTIONS(1090), + [anon_sym_SEMI_SEMI] = ACTIONS(1088), + [anon_sym_PIPE_AMP] = ACTIONS(1088), + [anon_sym_AMP_AMP] = ACTIONS(1088), + [anon_sym_PIPE_PIPE] = ACTIONS(1088), + [anon_sym_LT] = ACTIONS(1090), + [anon_sym_GT] = ACTIONS(1090), + [anon_sym_GT_GT] = ACTIONS(1088), + [anon_sym_AMP_GT] = ACTIONS(1090), + [anon_sym_AMP_GT_GT] = ACTIONS(1088), + [anon_sym_LT_AMP] = ACTIONS(1088), + [anon_sym_GT_AMP] = ACTIONS(1088), + [anon_sym_LT_LT] = ACTIONS(1090), + [anon_sym_LT_LT_DASH] = ACTIONS(1088), + [anon_sym_LT_LT_LT] = ACTIONS(1088), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1088), + [anon_sym_AMP] = ACTIONS(1090), + }, + [993] = { + [aux_sym_concatenation_repeat1] = STATE(995), + [sym__simple_heredoc_body] = ACTIONS(1092), + [sym__heredoc_body_beginning] = ACTIONS(1092), + [sym_file_descriptor] = ACTIONS(1092), + [sym__concat] = ACTIONS(265), + [ts_builtin_sym_end] = ACTIONS(1092), + [anon_sym_SEMI] = ACTIONS(1094), + [anon_sym_PIPE] = ACTIONS(1094), + [anon_sym_SEMI_SEMI] = ACTIONS(1092), + [anon_sym_PIPE_AMP] = ACTIONS(1092), + [anon_sym_AMP_AMP] = ACTIONS(1092), + [anon_sym_PIPE_PIPE] = ACTIONS(1092), + [anon_sym_LT] = ACTIONS(1094), + [anon_sym_GT] = ACTIONS(1094), + [anon_sym_GT_GT] = ACTIONS(1092), + [anon_sym_AMP_GT] = ACTIONS(1094), + [anon_sym_AMP_GT_GT] = ACTIONS(1092), + [anon_sym_LT_AMP] = ACTIONS(1092), + [anon_sym_GT_AMP] = ACTIONS(1092), + [anon_sym_LT_LT] = ACTIONS(1094), + [anon_sym_LT_LT_DASH] = ACTIONS(1092), + [anon_sym_LT_LT_LT] = ACTIONS(1092), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1092), + [anon_sym_AMP] = ACTIONS(1094), + }, + [994] = { + [sym__simple_heredoc_body] = ACTIONS(1092), + [sym__heredoc_body_beginning] = ACTIONS(1092), + [sym_file_descriptor] = ACTIONS(1092), + [ts_builtin_sym_end] = ACTIONS(1092), + [anon_sym_SEMI] = ACTIONS(1094), + [anon_sym_esac] = ACTIONS(1092), + [anon_sym_PIPE] = ACTIONS(1094), + [anon_sym_RPAREN] = ACTIONS(1092), + [anon_sym_SEMI_SEMI] = ACTIONS(1092), + [anon_sym_PIPE_AMP] = ACTIONS(1092), + [anon_sym_AMP_AMP] = ACTIONS(1092), + [anon_sym_PIPE_PIPE] = ACTIONS(1092), + [anon_sym_LT] = ACTIONS(1094), + [anon_sym_GT] = ACTIONS(1094), + [anon_sym_GT_GT] = ACTIONS(1092), + [anon_sym_AMP_GT] = ACTIONS(1094), + [anon_sym_AMP_GT_GT] = ACTIONS(1092), + [anon_sym_LT_AMP] = ACTIONS(1092), + [anon_sym_GT_AMP] = ACTIONS(1092), + [anon_sym_LT_LT] = ACTIONS(1094), + [anon_sym_LT_LT_DASH] = ACTIONS(1092), + [anon_sym_LT_LT_LT] = ACTIONS(1092), + [anon_sym_BQUOTE] = ACTIONS(1092), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1092), + [anon_sym_AMP] = ACTIONS(1094), + }, + [995] = { + [aux_sym_concatenation_repeat1] = STATE(1448), + [sym__simple_heredoc_body] = ACTIONS(807), + [sym__heredoc_body_beginning] = ACTIONS(807), + [sym_file_descriptor] = ACTIONS(807), + [sym__concat] = ACTIONS(265), + [ts_builtin_sym_end] = ACTIONS(807), + [anon_sym_SEMI] = ACTIONS(809), + [anon_sym_PIPE] = ACTIONS(809), + [anon_sym_SEMI_SEMI] = ACTIONS(807), + [anon_sym_PIPE_AMP] = ACTIONS(807), + [anon_sym_AMP_AMP] = ACTIONS(807), + [anon_sym_PIPE_PIPE] = ACTIONS(807), + [anon_sym_LT] = ACTIONS(809), + [anon_sym_GT] = ACTIONS(809), + [anon_sym_GT_GT] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(809), + [anon_sym_AMP_GT_GT] = ACTIONS(807), + [anon_sym_LT_AMP] = ACTIONS(807), + [anon_sym_GT_AMP] = ACTIONS(807), + [anon_sym_LT_LT] = ACTIONS(809), + [anon_sym_LT_LT_DASH] = ACTIONS(807), + [anon_sym_LT_LT_LT] = ACTIONS(807), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(807), + [anon_sym_AMP] = ACTIONS(809), + }, + [996] = { + [ts_builtin_sym_end] = ACTIONS(3205), + [anon_sym_SEMI] = ACTIONS(3207), + [anon_sym_esac] = ACTIONS(3205), + [anon_sym_PIPE] = ACTIONS(3207), + [anon_sym_RPAREN] = ACTIONS(3205), + [anon_sym_SEMI_SEMI] = ACTIONS(3205), + [anon_sym_PIPE_AMP] = ACTIONS(3205), + [anon_sym_AMP_AMP] = ACTIONS(3205), + [anon_sym_PIPE_PIPE] = ACTIONS(3205), + [anon_sym_BQUOTE] = ACTIONS(3205), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(3205), + [anon_sym_AMP] = ACTIONS(3207), + }, + [997] = { + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_done] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_fi] = ACTIONS(947), + [anon_sym_elif] = ACTIONS(947), + [anon_sym_else] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_SEMI_SEMI] = ACTIONS(943), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), + }, + [998] = { + [sym_file_redirect] = STATE(541), + [sym_heredoc_redirect] = STATE(541), + [sym_heredoc_body] = STATE(1449), + [sym_herestring_redirect] = STATE(541), + [aux_sym_while_statement_repeat1] = STATE(541), + [sym__simple_heredoc_body] = ACTIONS(339), + [sym__heredoc_body_beginning] = ACTIONS(341), + [sym_file_descriptor] = ACTIONS(343), + [ts_builtin_sym_end] = ACTIONS(3205), + [anon_sym_SEMI] = ACTIONS(3207), + [anon_sym_PIPE] = ACTIONS(3207), + [anon_sym_SEMI_SEMI] = ACTIONS(3205), + [anon_sym_PIPE_AMP] = ACTIONS(3205), + [anon_sym_AMP_AMP] = ACTIONS(3205), + [anon_sym_PIPE_PIPE] = ACTIONS(3205), + [anon_sym_LT] = ACTIONS(351), + [anon_sym_GT] = ACTIONS(351), + [anon_sym_GT_GT] = ACTIONS(353), + [anon_sym_AMP_GT] = ACTIONS(351), + [anon_sym_AMP_GT_GT] = ACTIONS(353), + [anon_sym_LT_AMP] = ACTIONS(353), + [anon_sym_GT_AMP] = ACTIONS(353), + [anon_sym_LT_LT] = ACTIONS(355), + [anon_sym_LT_LT_DASH] = ACTIONS(357), + [anon_sym_LT_LT_LT] = ACTIONS(359), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(3205), + [anon_sym_AMP] = ACTIONS(3207), + }, + [999] = { + [sym__concat] = ACTIONS(3209), + [anon_sym_EQ] = ACTIONS(3211), + [anon_sym_PLUS_EQ] = ACTIONS(3211), + [sym_comment] = ACTIONS(55), + }, + [1000] = { + [anon_sym_EQ] = ACTIONS(3211), + [anon_sym_PLUS_EQ] = ACTIONS(3211), + [sym_comment] = ACTIONS(55), + }, + [1001] = { + [aux_sym_concatenation_repeat1] = STATE(1001), + [sym__concat] = ACTIONS(2699), + [anon_sym_RBRACK] = ACTIONS(1763), + [sym_comment] = ACTIONS(55), + }, + [1002] = { + [sym__concat] = ACTIONS(3213), + [anon_sym_EQ] = ACTIONS(3215), + [anon_sym_PLUS_EQ] = ACTIONS(3215), + [sym_comment] = ACTIONS(55), + }, + [1003] = { + [anon_sym_EQ] = ACTIONS(3215), + [anon_sym_PLUS_EQ] = ACTIONS(3215), + [sym_comment] = ACTIONS(55), + }, + [1004] = { + [sym_string] = STATE(1452), + [sym_simple_expansion] = STATE(1452), + [sym_string_expansion] = STATE(1452), + [sym_expansion] = STATE(1452), + [sym_command_substitution] = STATE(1452), + [sym_process_substitution] = STATE(1452), + [sym__special_characters] = ACTIONS(3217), + [anon_sym_DQUOTE] = ACTIONS(1114), + [anon_sym_DOLLAR] = ACTIONS(1116), + [sym_raw_string] = ACTIONS(3217), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1120), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1122), + [anon_sym_BQUOTE] = ACTIONS(1124), + [anon_sym_LT_LPAREN] = ACTIONS(1126), + [anon_sym_GT_LPAREN] = ACTIONS(1126), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(3217), + }, + [1005] = { + [aux_sym_concatenation_repeat1] = STATE(1453), + [sym__concat] = ACTIONS(2103), [anon_sym_RPAREN] = ACTIONS(807), [sym__special_characters] = ACTIONS(807), [anon_sym_DQUOTE] = ACTIONS(807), @@ -33806,10 +35965,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(807), [anon_sym_LT_LPAREN] = ACTIONS(807), [anon_sym_GT_LPAREN] = ACTIONS(807), - [sym_comment] = ACTIONS(53), + [sym_comment] = ACTIONS(55), [sym_word] = ACTIONS(807), }, - [962] = { + [1006] = { [sym__concat] = ACTIONS(811), [anon_sym_RPAREN] = ACTIONS(811), [sym__special_characters] = ACTIONS(811), @@ -33821,2197 +35980,2073 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(811), [anon_sym_LT_LPAREN] = ACTIONS(811), [anon_sym_GT_LPAREN] = ACTIONS(811), - [sym_comment] = ACTIONS(53), + [sym_comment] = ACTIONS(55), [sym_word] = ACTIONS(811), }, - [963] = { - [anon_sym_LBRACK] = ACTIONS(815), - [anon_sym_EQ] = ACTIONS(3136), - [sym_comment] = ACTIONS(53), - }, - [964] = { - [sym_subscript] = STATE(1385), - [sym_variable_name] = ACTIONS(3138), - [anon_sym_DOLLAR] = ACTIONS(3140), - [anon_sym_DASH] = ACTIONS(3140), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3142), - [anon_sym_STAR] = ACTIONS(3144), - [anon_sym_AT] = ACTIONS(3144), - [anon_sym_QMARK] = ACTIONS(3144), - [anon_sym_0] = ACTIONS(3142), - [anon_sym__] = ACTIONS(3142), - }, - [965] = { - [sym_concatenation] = STATE(1388), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(1388), - [anon_sym_RBRACE] = ACTIONS(3146), - [anon_sym_EQ] = ACTIONS(3148), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(3150), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(3152), - [anon_sym_COLON] = ACTIONS(3148), - [anon_sym_COLON_QMARK] = ACTIONS(3148), - [anon_sym_COLON_DASH] = ACTIONS(3148), - [anon_sym_PERCENT] = ACTIONS(3148), - [anon_sym_DASH] = ACTIONS(3148), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [966] = { - [sym_concatenation] = STATE(1391), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(1391), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_EQ] = ACTIONS(3156), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(3158), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(3160), - [anon_sym_COLON] = ACTIONS(3156), - [anon_sym_COLON_QMARK] = ACTIONS(3156), - [anon_sym_COLON_DASH] = ACTIONS(3156), - [anon_sym_PERCENT] = ACTIONS(3156), - [anon_sym_DASH] = ACTIONS(3156), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [967] = { - [anon_sym_SEMI] = ACTIONS(3162), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(3164), - [anon_sym_SEMI_SEMI] = ACTIONS(3166), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(3166), - [anon_sym_AMP] = ACTIONS(3162), - }, - [968] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(3162), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(3164), - [anon_sym_SEMI_SEMI] = ACTIONS(3166), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(3166), - [anon_sym_AMP] = ACTIONS(3162), - }, - [969] = { - [sym__terminated_statement] = STATE(190), - [sym_for_statement] = STATE(1394), - [sym_c_style_for_statement] = STATE(1394), - [sym_while_statement] = STATE(1394), - [sym_if_statement] = STATE(1394), - [sym_case_statement] = STATE(1394), - [sym_function_definition] = STATE(1394), - [sym_subshell] = STATE(1394), - [sym_pipeline] = STATE(1394), - [sym_list] = STATE(1394), - [sym_negated_command] = STATE(1394), - [sym_test_command] = STATE(1394), - [sym_declaration_command] = STATE(1394), - [sym_unset_command] = STATE(1394), - [sym_command] = STATE(1394), - [sym_command_name] = STATE(78), - [sym_variable_assignment] = STATE(1395), - [sym_subscript] = STATE(80), - [sym_file_redirect] = STATE(82), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(75), - [sym_simple_expansion] = STATE(75), - [sym_string_expansion] = STATE(75), - [sym_expansion] = STATE(75), - [sym_command_substitution] = STATE(75), - [sym_process_substitution] = STATE(75), - [aux_sym__statements_repeat1] = STATE(190), - [aux_sym_command_repeat1] = STATE(82), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(111), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(119), - [anon_sym_declare] = ACTIONS(121), - [anon_sym_typeset] = ACTIONS(121), - [anon_sym_export] = ACTIONS(121), - [anon_sym_readonly] = ACTIONS(121), - [anon_sym_local] = ACTIONS(121), - [anon_sym_unset] = ACTIONS(123), - [anon_sym_unsetenv] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), - }, - [970] = { - [anon_sym_SEMI] = ACTIONS(3168), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_SEMI_SEMI] = ACTIONS(3170), - [anon_sym_PIPE_AMP] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(883), - [anon_sym_PIPE_PIPE] = ACTIONS(883), - [anon_sym_BQUOTE] = ACTIONS(3164), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(3170), - [anon_sym_AMP] = ACTIONS(3168), - }, - [971] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(3168), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_SEMI_SEMI] = ACTIONS(3170), - [anon_sym_PIPE_AMP] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(883), - [anon_sym_PIPE_PIPE] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(3164), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(3170), - [anon_sym_AMP] = ACTIONS(3168), - }, - [972] = { - [sym__terminated_statement] = STATE(190), - [sym_for_statement] = STATE(1397), - [sym_c_style_for_statement] = STATE(1397), - [sym_while_statement] = STATE(1397), - [sym_if_statement] = STATE(1397), - [sym_case_statement] = STATE(1397), - [sym_function_definition] = STATE(1397), - [sym_subshell] = STATE(1397), - [sym_pipeline] = STATE(1397), - [sym_list] = STATE(1397), - [sym_negated_command] = STATE(1397), - [sym_test_command] = STATE(1397), - [sym_declaration_command] = STATE(1397), - [sym_unset_command] = STATE(1397), - [sym_command] = STATE(1397), - [sym_command_name] = STATE(165), - [sym_variable_assignment] = STATE(1398), - [sym_subscript] = STATE(53), - [sym_file_redirect] = STATE(168), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(47), - [sym_simple_expansion] = STATE(47), - [sym_string_expansion] = STATE(47), - [sym_expansion] = STATE(47), - [sym_command_substitution] = STATE(47), - [sym_process_substitution] = STATE(47), - [aux_sym__statements_repeat1] = STATE(190), - [aux_sym_command_repeat1] = STATE(168), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(69), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(289), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(291), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(293), - [anon_sym_LBRACK] = ACTIONS(295), - [anon_sym_LBRACK_LBRACK] = ACTIONS(297), - [anon_sym_declare] = ACTIONS(299), - [anon_sym_typeset] = ACTIONS(299), - [anon_sym_export] = ACTIONS(299), - [anon_sym_readonly] = ACTIONS(299), - [anon_sym_local] = ACTIONS(299), - [anon_sym_unset] = ACTIONS(301), - [anon_sym_unsetenv] = ACTIONS(301), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(87), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(303), - }, - [973] = { - [anon_sym_SEMI] = ACTIONS(3172), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(3174), - [anon_sym_SEMI_SEMI] = ACTIONS(3176), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(3176), - [anon_sym_AMP] = ACTIONS(3172), - }, - [974] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(3172), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(3174), - [anon_sym_SEMI_SEMI] = ACTIONS(3176), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(3176), - [anon_sym_AMP] = ACTIONS(3172), - }, - [975] = { - [sym__terminated_statement] = STATE(190), - [sym_for_statement] = STATE(1401), - [sym_c_style_for_statement] = STATE(1401), - [sym_while_statement] = STATE(1401), - [sym_if_statement] = STATE(1401), - [sym_case_statement] = STATE(1401), - [sym_function_definition] = STATE(1401), - [sym_subshell] = STATE(1401), - [sym_pipeline] = STATE(1401), - [sym_list] = STATE(1401), - [sym_negated_command] = STATE(1401), - [sym_test_command] = STATE(1401), - [sym_declaration_command] = STATE(1401), - [sym_unset_command] = STATE(1401), - [sym_command] = STATE(1401), - [sym_command_name] = STATE(78), - [sym_variable_assignment] = STATE(1402), - [sym_subscript] = STATE(80), - [sym_file_redirect] = STATE(82), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(75), - [sym_simple_expansion] = STATE(75), - [sym_string_expansion] = STATE(75), - [sym_expansion] = STATE(75), - [sym_command_substitution] = STATE(75), - [sym_process_substitution] = STATE(75), - [aux_sym__statements_repeat1] = STATE(190), - [aux_sym_command_repeat1] = STATE(82), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(111), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(119), - [anon_sym_declare] = ACTIONS(121), - [anon_sym_typeset] = ACTIONS(121), - [anon_sym_export] = ACTIONS(121), - [anon_sym_readonly] = ACTIONS(121), - [anon_sym_local] = ACTIONS(121), - [anon_sym_unset] = ACTIONS(123), - [anon_sym_unsetenv] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), - }, - [976] = { - [sym_file_descriptor] = ACTIONS(3178), - [sym_variable_name] = ACTIONS(3178), - [ts_builtin_sym_end] = ACTIONS(3178), - [anon_sym_SEMI] = ACTIONS(3180), - [anon_sym_PIPE] = ACTIONS(3180), - [anon_sym_RPAREN] = ACTIONS(3178), - [anon_sym_SEMI_SEMI] = ACTIONS(3178), - [anon_sym_PIPE_AMP] = ACTIONS(3178), - [anon_sym_AMP_AMP] = ACTIONS(3178), - [anon_sym_PIPE_PIPE] = ACTIONS(3178), - [anon_sym_LT] = ACTIONS(3180), - [anon_sym_GT] = ACTIONS(3180), - [anon_sym_GT_GT] = ACTIONS(3178), - [anon_sym_AMP_GT] = ACTIONS(3180), - [anon_sym_AMP_GT_GT] = ACTIONS(3178), - [anon_sym_LT_AMP] = ACTIONS(3178), - [anon_sym_GT_AMP] = ACTIONS(3178), - [sym__special_characters] = ACTIONS(3178), - [anon_sym_DQUOTE] = ACTIONS(3178), - [anon_sym_DOLLAR] = ACTIONS(3180), - [sym_raw_string] = ACTIONS(3178), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3178), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3178), - [anon_sym_BQUOTE] = ACTIONS(3178), - [anon_sym_LT_LPAREN] = ACTIONS(3178), - [anon_sym_GT_LPAREN] = ACTIONS(3178), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3180), - [anon_sym_LF] = ACTIONS(3178), - [anon_sym_AMP] = ACTIONS(3180), - }, - [977] = { - [sym_concatenation] = STATE(977), - [sym_string] = STATE(534), - [sym_simple_expansion] = STATE(534), - [sym_string_expansion] = STATE(534), - [sym_expansion] = STATE(534), - [sym_command_substitution] = STATE(534), - [sym_process_substitution] = STATE(534), - [aux_sym_for_statement_repeat1] = STATE(977), - [anon_sym_RPAREN] = ACTIONS(3182), - [sym__special_characters] = ACTIONS(3184), - [anon_sym_DQUOTE] = ACTIONS(3187), - [anon_sym_DOLLAR] = ACTIONS(3190), - [sym_raw_string] = ACTIONS(3193), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3196), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3199), - [anon_sym_BQUOTE] = ACTIONS(3202), - [anon_sym_LT_LPAREN] = ACTIONS(3205), - [anon_sym_GT_LPAREN] = ACTIONS(3205), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3193), - }, - [978] = { - [sym_file_descriptor] = ACTIONS(1724), - [sym__concat] = ACTIONS(1724), - [sym_variable_name] = ACTIONS(1724), - [ts_builtin_sym_end] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(1726), - [anon_sym_RPAREN] = ACTIONS(1724), - [anon_sym_SEMI_SEMI] = ACTIONS(1724), - [anon_sym_PIPE_AMP] = ACTIONS(1724), - [anon_sym_AMP_AMP] = ACTIONS(1724), - [anon_sym_PIPE_PIPE] = ACTIONS(1724), - [anon_sym_LT] = ACTIONS(1726), - [anon_sym_GT] = ACTIONS(1726), - [anon_sym_GT_GT] = ACTIONS(1724), - [anon_sym_AMP_GT] = ACTIONS(1726), - [anon_sym_AMP_GT_GT] = ACTIONS(1724), - [anon_sym_LT_AMP] = ACTIONS(1724), - [anon_sym_GT_AMP] = ACTIONS(1724), - [sym__special_characters] = ACTIONS(1724), - [anon_sym_DQUOTE] = ACTIONS(1724), - [anon_sym_DOLLAR] = ACTIONS(1726), - [sym_raw_string] = ACTIONS(1724), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1724), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1724), - [anon_sym_BQUOTE] = ACTIONS(1724), - [anon_sym_LT_LPAREN] = ACTIONS(1724), - [anon_sym_GT_LPAREN] = ACTIONS(1724), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1726), - [anon_sym_LF] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1726), - }, - [979] = { - [aux_sym_concatenation_repeat1] = STATE(979), - [sym_file_descriptor] = ACTIONS(1724), - [sym__concat] = ACTIONS(3208), - [sym_variable_name] = ACTIONS(1724), - [ts_builtin_sym_end] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(1726), - [anon_sym_SEMI_SEMI] = ACTIONS(1724), - [anon_sym_PIPE_AMP] = ACTIONS(1724), - [anon_sym_AMP_AMP] = ACTIONS(1724), - [anon_sym_PIPE_PIPE] = ACTIONS(1724), - [anon_sym_LT] = ACTIONS(1726), - [anon_sym_GT] = ACTIONS(1726), - [anon_sym_GT_GT] = ACTIONS(1724), - [anon_sym_AMP_GT] = ACTIONS(1726), - [anon_sym_AMP_GT_GT] = ACTIONS(1724), - [anon_sym_LT_AMP] = ACTIONS(1724), - [anon_sym_GT_AMP] = ACTIONS(1724), - [sym__special_characters] = ACTIONS(1724), - [anon_sym_DQUOTE] = ACTIONS(1724), - [anon_sym_DOLLAR] = ACTIONS(1726), - [sym_raw_string] = ACTIONS(1724), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1724), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1724), - [anon_sym_BQUOTE] = ACTIONS(1724), - [anon_sym_LT_LPAREN] = ACTIONS(1724), - [anon_sym_GT_LPAREN] = ACTIONS(1724), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1726), - [anon_sym_LF] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1726), - }, - [980] = { - [sym_file_descriptor] = ACTIONS(1731), - [sym__concat] = ACTIONS(1731), - [sym_variable_name] = ACTIONS(1731), - [ts_builtin_sym_end] = ACTIONS(1731), - [anon_sym_SEMI] = ACTIONS(1733), - [anon_sym_PIPE] = ACTIONS(1733), - [anon_sym_RPAREN] = ACTIONS(1731), - [anon_sym_SEMI_SEMI] = ACTIONS(1731), - [anon_sym_PIPE_AMP] = ACTIONS(1731), - [anon_sym_AMP_AMP] = ACTIONS(1731), - [anon_sym_PIPE_PIPE] = ACTIONS(1731), - [anon_sym_LT] = ACTIONS(1733), - [anon_sym_GT] = ACTIONS(1733), - [anon_sym_GT_GT] = ACTIONS(1731), - [anon_sym_AMP_GT] = ACTIONS(1733), - [anon_sym_AMP_GT_GT] = ACTIONS(1731), - [anon_sym_LT_AMP] = ACTIONS(1731), - [anon_sym_GT_AMP] = ACTIONS(1731), - [sym__special_characters] = ACTIONS(1731), - [anon_sym_DQUOTE] = ACTIONS(1731), - [anon_sym_DOLLAR] = ACTIONS(1733), - [sym_raw_string] = ACTIONS(1731), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1731), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1731), - [anon_sym_BQUOTE] = ACTIONS(1731), - [anon_sym_LT_LPAREN] = ACTIONS(1731), - [anon_sym_GT_LPAREN] = ACTIONS(1731), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1733), - [anon_sym_LF] = ACTIONS(1731), - [anon_sym_AMP] = ACTIONS(1733), - }, - [981] = { - [anon_sym_DQUOTE] = ACTIONS(3211), - [anon_sym_DOLLAR] = ACTIONS(775), - [sym__string_content] = ACTIONS(777), - [anon_sym_POUND] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(781), - [anon_sym_STAR] = ACTIONS(783), - [anon_sym_AT] = ACTIONS(783), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_0] = ACTIONS(781), - [anon_sym__] = ACTIONS(781), - }, - [982] = { - [sym_concatenation] = STATE(1407), - [sym_string] = STATE(1406), - [sym_simple_expansion] = STATE(1406), - [sym_string_expansion] = STATE(1406), - [sym_expansion] = STATE(1406), - [sym_command_substitution] = STATE(1406), - [sym_process_substitution] = STATE(1406), - [anon_sym_RBRACE] = ACTIONS(3213), - [sym__special_characters] = ACTIONS(3215), - [anon_sym_DQUOTE] = ACTIONS(1802), - [anon_sym_DOLLAR] = ACTIONS(1804), - [sym_raw_string] = ACTIONS(3217), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1808), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1810), - [anon_sym_BQUOTE] = ACTIONS(1812), - [anon_sym_LT_LPAREN] = ACTIONS(1814), - [anon_sym_GT_LPAREN] = ACTIONS(1814), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3217), - }, - [983] = { - [anon_sym_LBRACK] = ACTIONS(815), - [anon_sym_EQ] = ACTIONS(3219), - [sym_comment] = ACTIONS(53), - }, - [984] = { - [sym_concatenation] = STATE(1411), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(1411), - [anon_sym_RBRACE] = ACTIONS(3221), - [anon_sym_EQ] = ACTIONS(3223), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(3225), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(3227), - [anon_sym_COLON] = ACTIONS(3223), - [anon_sym_COLON_QMARK] = ACTIONS(3223), - [anon_sym_COLON_DASH] = ACTIONS(3223), - [anon_sym_PERCENT] = ACTIONS(3223), - [anon_sym_DASH] = ACTIONS(3223), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [985] = { - [sym_concatenation] = STATE(1413), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(1413), - [anon_sym_RBRACE] = ACTIONS(3213), - [anon_sym_EQ] = ACTIONS(3229), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(3231), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(3233), - [anon_sym_COLON] = ACTIONS(3229), - [anon_sym_COLON_QMARK] = ACTIONS(3229), - [anon_sym_COLON_DASH] = ACTIONS(3229), - [anon_sym_PERCENT] = ACTIONS(3229), - [anon_sym_DASH] = ACTIONS(3229), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [986] = { - [sym_file_descriptor] = ACTIONS(1832), - [sym__concat] = ACTIONS(1832), - [sym_variable_name] = ACTIONS(1832), - [ts_builtin_sym_end] = ACTIONS(1832), - [anon_sym_SEMI] = ACTIONS(1834), - [anon_sym_PIPE] = ACTIONS(1834), - [anon_sym_RPAREN] = ACTIONS(1832), - [anon_sym_SEMI_SEMI] = ACTIONS(1832), - [anon_sym_PIPE_AMP] = ACTIONS(1832), - [anon_sym_AMP_AMP] = ACTIONS(1832), - [anon_sym_PIPE_PIPE] = ACTIONS(1832), - [anon_sym_LT] = ACTIONS(1834), - [anon_sym_GT] = ACTIONS(1834), - [anon_sym_GT_GT] = ACTIONS(1832), - [anon_sym_AMP_GT] = ACTIONS(1834), - [anon_sym_AMP_GT_GT] = ACTIONS(1832), - [anon_sym_LT_AMP] = ACTIONS(1832), - [anon_sym_GT_AMP] = ACTIONS(1832), - [sym__special_characters] = ACTIONS(1832), - [anon_sym_DQUOTE] = ACTIONS(1832), - [anon_sym_DOLLAR] = ACTIONS(1834), - [sym_raw_string] = ACTIONS(1832), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1832), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1832), - [anon_sym_BQUOTE] = ACTIONS(1832), - [anon_sym_LT_LPAREN] = ACTIONS(1832), - [anon_sym_GT_LPAREN] = ACTIONS(1832), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1834), - [anon_sym_LF] = ACTIONS(1832), - [anon_sym_AMP] = ACTIONS(1834), - }, - [987] = { - [sym_comment] = ACTIONS(265), - [sym_regex_without_right_brace] = ACTIONS(3235), - }, - [988] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(3237), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [989] = { - [sym_file_descriptor] = ACTIONS(1876), - [sym__concat] = ACTIONS(1876), - [sym_variable_name] = ACTIONS(1876), - [ts_builtin_sym_end] = ACTIONS(1876), - [anon_sym_SEMI] = ACTIONS(1878), - [anon_sym_PIPE] = ACTIONS(1878), - [anon_sym_RPAREN] = ACTIONS(1876), - [anon_sym_SEMI_SEMI] = ACTIONS(1876), - [anon_sym_PIPE_AMP] = ACTIONS(1876), - [anon_sym_AMP_AMP] = ACTIONS(1876), - [anon_sym_PIPE_PIPE] = ACTIONS(1876), - [anon_sym_LT] = ACTIONS(1878), - [anon_sym_GT] = ACTIONS(1878), - [anon_sym_GT_GT] = ACTIONS(1876), - [anon_sym_AMP_GT] = ACTIONS(1878), - [anon_sym_AMP_GT_GT] = ACTIONS(1876), - [anon_sym_LT_AMP] = ACTIONS(1876), - [anon_sym_GT_AMP] = ACTIONS(1876), - [sym__special_characters] = ACTIONS(1876), - [anon_sym_DQUOTE] = ACTIONS(1876), - [anon_sym_DOLLAR] = ACTIONS(1878), - [sym_raw_string] = ACTIONS(1876), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1876), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1876), - [anon_sym_BQUOTE] = ACTIONS(1876), - [anon_sym_LT_LPAREN] = ACTIONS(1876), - [anon_sym_GT_LPAREN] = ACTIONS(1876), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1878), - [anon_sym_LF] = ACTIONS(1876), - [anon_sym_AMP] = ACTIONS(1878), - }, - [990] = { - [sym_comment] = ACTIONS(265), - [sym_regex_without_right_brace] = ACTIONS(3239), - }, - [991] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(3213), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [992] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(3241), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(901), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), - }, - [993] = { - [sym_file_descriptor] = ACTIONS(1884), - [sym__concat] = ACTIONS(1884), - [sym_variable_name] = ACTIONS(1884), - [ts_builtin_sym_end] = ACTIONS(1884), - [anon_sym_SEMI] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(1886), - [anon_sym_RPAREN] = ACTIONS(1884), - [anon_sym_SEMI_SEMI] = ACTIONS(1884), - [anon_sym_PIPE_AMP] = ACTIONS(1884), - [anon_sym_AMP_AMP] = ACTIONS(1884), - [anon_sym_PIPE_PIPE] = ACTIONS(1884), - [anon_sym_LT] = ACTIONS(1886), - [anon_sym_GT] = ACTIONS(1886), - [anon_sym_GT_GT] = ACTIONS(1884), - [anon_sym_AMP_GT] = ACTIONS(1886), - [anon_sym_AMP_GT_GT] = ACTIONS(1884), - [anon_sym_LT_AMP] = ACTIONS(1884), - [anon_sym_GT_AMP] = ACTIONS(1884), - [sym__special_characters] = ACTIONS(1884), - [anon_sym_DQUOTE] = ACTIONS(1884), - [anon_sym_DOLLAR] = ACTIONS(1886), - [sym_raw_string] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1884), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1884), - [anon_sym_BQUOTE] = ACTIONS(1884), - [anon_sym_LT_LPAREN] = ACTIONS(1884), - [anon_sym_GT_LPAREN] = ACTIONS(1884), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1886), - [anon_sym_LF] = ACTIONS(1884), - [anon_sym_AMP] = ACTIONS(1886), - }, - [994] = { - [anon_sym_SEMI] = ACTIONS(3243), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(3241), - [anon_sym_SEMI_SEMI] = ACTIONS(3245), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(3245), - [anon_sym_AMP] = ACTIONS(3243), - }, - [995] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(3243), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(3241), - [anon_sym_SEMI_SEMI] = ACTIONS(3245), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(3245), - [anon_sym_AMP] = ACTIONS(3243), - }, - [996] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(3241), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), - }, - [997] = { - [anon_sym_SEMI] = ACTIONS(3247), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_SEMI_SEMI] = ACTIONS(3249), - [anon_sym_PIPE_AMP] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(883), - [anon_sym_PIPE_PIPE] = ACTIONS(883), - [anon_sym_BQUOTE] = ACTIONS(3241), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(3249), - [anon_sym_AMP] = ACTIONS(3247), - }, - [998] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(3247), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_SEMI_SEMI] = ACTIONS(3249), - [anon_sym_PIPE_AMP] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(883), - [anon_sym_PIPE_PIPE] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(3241), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(3249), - [anon_sym_AMP] = ACTIONS(3247), - }, - [999] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(3251), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(901), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), - }, - [1000] = { - [sym_file_descriptor] = ACTIONS(1916), - [sym__concat] = ACTIONS(1916), - [sym_variable_name] = ACTIONS(1916), - [ts_builtin_sym_end] = ACTIONS(1916), - [anon_sym_SEMI] = ACTIONS(1918), - [anon_sym_PIPE] = ACTIONS(1918), - [anon_sym_RPAREN] = ACTIONS(1916), - [anon_sym_SEMI_SEMI] = ACTIONS(1916), - [anon_sym_PIPE_AMP] = ACTIONS(1916), - [anon_sym_AMP_AMP] = ACTIONS(1916), - [anon_sym_PIPE_PIPE] = ACTIONS(1916), - [anon_sym_LT] = ACTIONS(1918), - [anon_sym_GT] = ACTIONS(1918), - [anon_sym_GT_GT] = ACTIONS(1916), - [anon_sym_AMP_GT] = ACTIONS(1918), - [anon_sym_AMP_GT_GT] = ACTIONS(1916), - [anon_sym_LT_AMP] = ACTIONS(1916), - [anon_sym_GT_AMP] = ACTIONS(1916), - [sym__special_characters] = ACTIONS(1916), - [anon_sym_DQUOTE] = ACTIONS(1916), - [anon_sym_DOLLAR] = ACTIONS(1918), - [sym_raw_string] = ACTIONS(1916), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1916), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1916), - [anon_sym_BQUOTE] = ACTIONS(1916), - [anon_sym_LT_LPAREN] = ACTIONS(1916), - [anon_sym_GT_LPAREN] = ACTIONS(1916), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1918), - [anon_sym_LF] = ACTIONS(1916), - [anon_sym_AMP] = ACTIONS(1918), - }, - [1001] = { - [anon_sym_SEMI] = ACTIONS(3253), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(3251), - [anon_sym_SEMI_SEMI] = ACTIONS(3255), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(3255), - [anon_sym_AMP] = ACTIONS(3253), - }, - [1002] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(3253), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(3251), - [anon_sym_SEMI_SEMI] = ACTIONS(3255), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(3255), - [anon_sym_AMP] = ACTIONS(3253), - }, - [1003] = { - [sym_do_group] = STATE(1424), - [sym_compound_statement] = STATE(1424), - [anon_sym_SEMI] = ACTIONS(3257), - [anon_sym_do] = ACTIONS(1175), - [anon_sym_LBRACE] = ACTIONS(3259), - [sym_comment] = ACTIONS(53), - }, - [1004] = { - [sym__expression] = STATE(1425), - [sym_binary_expression] = STATE(1425), - [sym_unary_expression] = STATE(1425), - [sym_parenthesized_expression] = STATE(1425), - [sym_concatenation] = STATE(1425), - [sym_string] = STATE(314), - [sym_simple_expansion] = STATE(314), - [sym_string_expansion] = STATE(314), - [sym_expansion] = STATE(314), - [sym_command_substitution] = STATE(314), - [sym_process_substitution] = STATE(314), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_BANG] = ACTIONS(573), - [sym__special_characters] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(163), - [anon_sym_DOLLAR] = ACTIONS(165), - [sym_raw_string] = ACTIONS(577), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(169), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(171), - [anon_sym_BQUOTE] = ACTIONS(173), - [anon_sym_LT_LPAREN] = ACTIONS(175), - [anon_sym_GT_LPAREN] = ACTIONS(175), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(579), - [sym_test_operator] = ACTIONS(581), - }, - [1005] = { - [sym__expression] = STATE(1426), - [sym_binary_expression] = STATE(1426), - [sym_unary_expression] = STATE(1426), - [sym_parenthesized_expression] = STATE(1426), - [sym_concatenation] = STATE(1426), - [sym_string] = STATE(1009), - [sym_simple_expansion] = STATE(1009), - [sym_string_expansion] = STATE(1009), - [sym_expansion] = STATE(1009), - [sym_command_substitution] = STATE(1009), - [sym_process_substitution] = STATE(1009), - [anon_sym_LPAREN] = ACTIONS(2144), - [anon_sym_BANG] = ACTIONS(2146), - [sym__special_characters] = ACTIONS(2148), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_DOLLAR] = ACTIONS(2152), - [sym_raw_string] = ACTIONS(2154), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2156), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2158), - [anon_sym_BQUOTE] = ACTIONS(2160), - [anon_sym_LT_LPAREN] = ACTIONS(2162), - [anon_sym_GT_LPAREN] = ACTIONS(2162), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2164), - [sym_test_operator] = ACTIONS(2166), - }, - [1006] = { - [aux_sym_concatenation_repeat1] = STATE(1428), - [sym__concat] = ACTIONS(3261), - [anon_sym_RPAREN_RPAREN] = ACTIONS(585), - [anon_sym_AMP_AMP] = ACTIONS(585), - [anon_sym_PIPE_PIPE] = ACTIONS(585), - [anon_sym_EQ_TILDE] = ACTIONS(585), - [anon_sym_EQ_EQ] = ACTIONS(585), - [anon_sym_EQ] = ACTIONS(587), - [anon_sym_LT] = ACTIONS(585), - [anon_sym_GT] = ACTIONS(585), - [anon_sym_BANG_EQ] = ACTIONS(585), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(585), - }, [1007] = { - [sym_simple_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [sym_command_substitution] = STATE(141), - [aux_sym_string_repeat1] = STATE(1431), - [anon_sym_DQUOTE] = ACTIONS(3263), - [anon_sym_DOLLAR] = ACTIONS(3265), - [sym__string_content] = ACTIONS(257), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(261), - [anon_sym_BQUOTE] = ACTIONS(263), - [sym_comment] = ACTIONS(265), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_DQUOTE] = ACTIONS(3219), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym__string_content] = ACTIONS(821), + [anon_sym_POUND] = ACTIONS(815), + [sym_comment] = ACTIONS(281), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(823), + [anon_sym_STAR] = ACTIONS(825), + [anon_sym_AT] = ACTIONS(825), + [anon_sym_QMARK] = ACTIONS(825), + [anon_sym_0] = ACTIONS(823), + [anon_sym__] = ACTIONS(823), }, [1008] = { - [sym_string] = STATE(1433), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_DOLLAR] = ACTIONS(3267), - [sym_raw_string] = ACTIONS(3269), - [anon_sym_POUND] = ACTIONS(3267), - [anon_sym_DASH] = ACTIONS(3267), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3271), - [anon_sym_STAR] = ACTIONS(3273), - [anon_sym_AT] = ACTIONS(3273), - [anon_sym_QMARK] = ACTIONS(3273), - [anon_sym_0] = ACTIONS(3271), - [anon_sym__] = ACTIONS(3271), + [sym_simple_expansion] = STATE(148), + [sym_expansion] = STATE(148), + [sym_command_substitution] = STATE(148), + [aux_sym_string_repeat1] = STATE(473), + [anon_sym_DQUOTE] = ACTIONS(3219), + [anon_sym_DOLLAR] = ACTIONS(3221), + [sym__string_content] = ACTIONS(273), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(277), + [anon_sym_BQUOTE] = ACTIONS(279), + [sym_comment] = ACTIONS(281), }, [1009] = { - [aux_sym_concatenation_repeat1] = STATE(1428), - [sym__concat] = ACTIONS(3261), - [anon_sym_RPAREN_RPAREN] = ACTIONS(601), - [anon_sym_AMP_AMP] = ACTIONS(601), - [anon_sym_PIPE_PIPE] = ACTIONS(601), - [anon_sym_EQ_TILDE] = ACTIONS(601), - [anon_sym_EQ_EQ] = ACTIONS(601), - [anon_sym_EQ] = ACTIONS(603), - [anon_sym_LT] = ACTIONS(601), - [anon_sym_GT] = ACTIONS(601), - [anon_sym_BANG_EQ] = ACTIONS(601), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(601), + [sym__concat] = ACTIONS(845), + [anon_sym_RPAREN] = ACTIONS(845), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(845), + [anon_sym_DOLLAR] = ACTIONS(847), + [sym_raw_string] = ACTIONS(845), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(845), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), + [anon_sym_BQUOTE] = ACTIONS(845), + [anon_sym_LT_LPAREN] = ACTIONS(845), + [anon_sym_GT_LPAREN] = ACTIONS(845), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(845), }, [1010] = { - [sym_subscript] = STATE(1438), - [sym_variable_name] = ACTIONS(3275), - [anon_sym_BANG] = ACTIONS(3277), - [anon_sym_DOLLAR] = ACTIONS(3279), - [anon_sym_POUND] = ACTIONS(3277), - [anon_sym_DASH] = ACTIONS(3279), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3281), - [anon_sym_STAR] = ACTIONS(3283), - [anon_sym_AT] = ACTIONS(3283), - [anon_sym_QMARK] = ACTIONS(3283), - [anon_sym_0] = ACTIONS(3281), - [anon_sym__] = ACTIONS(3281), + [sym__concat] = ACTIONS(849), + [anon_sym_RPAREN] = ACTIONS(849), + [sym__special_characters] = ACTIONS(849), + [anon_sym_DQUOTE] = ACTIONS(849), + [anon_sym_DOLLAR] = ACTIONS(851), + [sym_raw_string] = ACTIONS(849), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(849), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(849), + [anon_sym_BQUOTE] = ACTIONS(849), + [anon_sym_LT_LPAREN] = ACTIONS(849), + [anon_sym_GT_LPAREN] = ACTIONS(849), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(849), }, [1011] = { - [sym__terminated_statement] = STATE(1441), - [sym_for_statement] = STATE(1439), - [sym_c_style_for_statement] = STATE(1439), - [sym_while_statement] = STATE(1439), - [sym_if_statement] = STATE(1439), - [sym_case_statement] = STATE(1439), - [sym_function_definition] = STATE(1439), - [sym_subshell] = STATE(1439), - [sym_pipeline] = STATE(1439), - [sym_list] = STATE(1439), - [sym_negated_command] = STATE(1439), - [sym_test_command] = STATE(1439), - [sym_declaration_command] = STATE(1439), - [sym_unset_command] = STATE(1439), - [sym_command] = STATE(1439), - [sym_command_name] = STATE(78), - [sym_variable_assignment] = STATE(1440), - [sym_subscript] = STATE(80), - [sym_file_redirect] = STATE(82), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(75), - [sym_simple_expansion] = STATE(75), - [sym_string_expansion] = STATE(75), - [sym_expansion] = STATE(75), - [sym_command_substitution] = STATE(75), - [sym_process_substitution] = STATE(75), - [aux_sym__statements_repeat1] = STATE(1441), - [aux_sym_command_repeat1] = STATE(82), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(111), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(119), - [anon_sym_declare] = ACTIONS(121), - [anon_sym_typeset] = ACTIONS(121), - [anon_sym_export] = ACTIONS(121), - [anon_sym_readonly] = ACTIONS(121), - [anon_sym_local] = ACTIONS(121), - [anon_sym_unset] = ACTIONS(123), - [anon_sym_unsetenv] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), + [sym__concat] = ACTIONS(853), + [anon_sym_RPAREN] = ACTIONS(853), + [sym__special_characters] = ACTIONS(853), + [anon_sym_DQUOTE] = ACTIONS(853), + [anon_sym_DOLLAR] = ACTIONS(855), + [sym_raw_string] = ACTIONS(853), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(853), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(853), + [anon_sym_BQUOTE] = ACTIONS(853), + [anon_sym_LT_LPAREN] = ACTIONS(853), + [anon_sym_GT_LPAREN] = ACTIONS(853), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(853), }, [1012] = { - [sym__terminated_statement] = STATE(1444), - [sym_for_statement] = STATE(1442), - [sym_c_style_for_statement] = STATE(1442), - [sym_while_statement] = STATE(1442), - [sym_if_statement] = STATE(1442), - [sym_case_statement] = STATE(1442), - [sym_function_definition] = STATE(1442), - [sym_subshell] = STATE(1442), - [sym_pipeline] = STATE(1442), - [sym_list] = STATE(1442), - [sym_negated_command] = STATE(1442), - [sym_test_command] = STATE(1442), - [sym_declaration_command] = STATE(1442), - [sym_unset_command] = STATE(1442), - [sym_command] = STATE(1442), - [sym_command_name] = STATE(165), - [sym_variable_assignment] = STATE(1443), - [sym_subscript] = STATE(53), - [sym_file_redirect] = STATE(168), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(47), - [sym_simple_expansion] = STATE(47), - [sym_string_expansion] = STATE(47), - [sym_expansion] = STATE(47), - [sym_command_substitution] = STATE(47), - [sym_process_substitution] = STATE(47), - [aux_sym__statements_repeat1] = STATE(1444), - [aux_sym_command_repeat1] = STATE(168), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(69), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(289), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(291), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(293), - [anon_sym_LBRACK] = ACTIONS(295), - [anon_sym_LBRACK_LBRACK] = ACTIONS(297), - [anon_sym_declare] = ACTIONS(299), - [anon_sym_typeset] = ACTIONS(299), - [anon_sym_export] = ACTIONS(299), - [anon_sym_readonly] = ACTIONS(299), - [anon_sym_local] = ACTIONS(299), - [anon_sym_unset] = ACTIONS(301), - [anon_sym_unsetenv] = ACTIONS(301), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(87), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(857), + [anon_sym_EQ] = ACTIONS(3223), + [sym_comment] = ACTIONS(55), }, [1013] = { - [sym__terminated_statement] = STATE(1447), - [sym_for_statement] = STATE(1445), - [sym_c_style_for_statement] = STATE(1445), - [sym_while_statement] = STATE(1445), - [sym_if_statement] = STATE(1445), - [sym_case_statement] = STATE(1445), - [sym_function_definition] = STATE(1445), - [sym_subshell] = STATE(1445), - [sym_pipeline] = STATE(1445), - [sym_list] = STATE(1445), - [sym_negated_command] = STATE(1445), - [sym_test_command] = STATE(1445), - [sym_declaration_command] = STATE(1445), - [sym_unset_command] = STATE(1445), - [sym_command] = STATE(1445), - [sym_command_name] = STATE(78), - [sym_variable_assignment] = STATE(1446), - [sym_subscript] = STATE(80), - [sym_file_redirect] = STATE(82), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(75), - [sym_simple_expansion] = STATE(75), - [sym_string_expansion] = STATE(75), - [sym_expansion] = STATE(75), - [sym_command_substitution] = STATE(75), - [sym_process_substitution] = STATE(75), - [aux_sym__statements_repeat1] = STATE(1447), - [aux_sym_command_repeat1] = STATE(82), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(111), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(119), - [anon_sym_declare] = ACTIONS(121), - [anon_sym_typeset] = ACTIONS(121), - [anon_sym_export] = ACTIONS(121), - [anon_sym_readonly] = ACTIONS(121), - [anon_sym_local] = ACTIONS(121), - [anon_sym_unset] = ACTIONS(123), - [anon_sym_unsetenv] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), + [sym_subscript] = STATE(1459), + [sym_variable_name] = ACTIONS(3225), + [anon_sym_DASH] = ACTIONS(3227), + [anon_sym_DOLLAR] = ACTIONS(3227), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3229), + [anon_sym_STAR] = ACTIONS(3231), + [anon_sym_AT] = ACTIONS(3231), + [anon_sym_QMARK] = ACTIONS(3231), + [anon_sym_0] = ACTIONS(3229), + [anon_sym__] = ACTIONS(3229), }, [1014] = { - [anon_sym_RPAREN_RPAREN] = ACTIONS(3285), - [anon_sym_AMP_AMP] = ACTIONS(3287), - [anon_sym_PIPE_PIPE] = ACTIONS(3287), - [anon_sym_EQ_TILDE] = ACTIONS(3289), - [anon_sym_EQ_EQ] = ACTIONS(3289), - [anon_sym_EQ] = ACTIONS(3291), - [anon_sym_LT] = ACTIONS(3287), - [anon_sym_GT] = ACTIONS(3287), - [anon_sym_BANG_EQ] = ACTIONS(3287), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(3287), + [sym_concatenation] = STATE(1462), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1462), + [anon_sym_RBRACE] = ACTIONS(3233), + [anon_sym_EQ] = ACTIONS(3235), + [anon_sym_DASH] = ACTIONS(3235), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(3237), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(3239), + [anon_sym_COLON] = ACTIONS(3235), + [anon_sym_COLON_QMARK] = ACTIONS(3235), + [anon_sym_COLON_DASH] = ACTIONS(3235), + [anon_sym_PERCENT] = ACTIONS(3235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1015] = { - [sym__expression] = STATE(1451), - [sym_binary_expression] = STATE(1451), - [sym_unary_expression] = STATE(1451), - [sym_parenthesized_expression] = STATE(1451), - [sym_concatenation] = STATE(1451), - [sym_string] = STATE(1009), - [sym_simple_expansion] = STATE(1009), - [sym_string_expansion] = STATE(1009), - [sym_expansion] = STATE(1009), - [sym_command_substitution] = STATE(1009), - [sym_process_substitution] = STATE(1009), - [anon_sym_RPAREN_RPAREN] = ACTIONS(3285), - [anon_sym_LPAREN] = ACTIONS(2144), - [anon_sym_BANG] = ACTIONS(2146), - [sym__special_characters] = ACTIONS(2148), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_DOLLAR] = ACTIONS(2152), - [sym_raw_string] = ACTIONS(2154), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2156), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2158), - [anon_sym_BQUOTE] = ACTIONS(2160), - [anon_sym_LT_LPAREN] = ACTIONS(2162), - [anon_sym_GT_LPAREN] = ACTIONS(2162), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2164), - [sym_test_operator] = ACTIONS(2166), + [sym_concatenation] = STATE(1465), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1465), + [anon_sym_RBRACE] = ACTIONS(3241), + [anon_sym_EQ] = ACTIONS(3243), + [anon_sym_DASH] = ACTIONS(3243), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(3245), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(3247), + [anon_sym_COLON] = ACTIONS(3243), + [anon_sym_COLON_QMARK] = ACTIONS(3243), + [anon_sym_COLON_DASH] = ACTIONS(3243), + [anon_sym_PERCENT] = ACTIONS(3243), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1016] = { - [anon_sym_SEMI] = ACTIONS(2549), - [anon_sym_SEMI_SEMI] = ACTIONS(2547), - [anon_sym_AMP_AMP] = ACTIONS(2547), - [anon_sym_PIPE_PIPE] = ACTIONS(2547), - [anon_sym_EQ_TILDE] = ACTIONS(2547), - [anon_sym_EQ_EQ] = ACTIONS(2547), - [anon_sym_EQ] = ACTIONS(2549), - [anon_sym_LT] = ACTIONS(2547), - [anon_sym_GT] = ACTIONS(2547), - [anon_sym_BANG_EQ] = ACTIONS(2547), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2547), - [anon_sym_LF] = ACTIONS(2547), - [anon_sym_AMP] = ACTIONS(2549), + [anon_sym_SEMI] = ACTIONS(3249), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(3251), + [anon_sym_SEMI_SEMI] = ACTIONS(3253), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(3253), + [anon_sym_AMP] = ACTIONS(3249), }, [1017] = { - [sym__concat] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_esac] = ACTIONS(1724), - [anon_sym_PIPE] = ACTIONS(1726), - [anon_sym_SEMI_SEMI] = ACTIONS(1724), - [anon_sym_PIPE_AMP] = ACTIONS(1724), - [anon_sym_AMP_AMP] = ACTIONS(1724), - [anon_sym_PIPE_PIPE] = ACTIONS(1724), - [anon_sym_EQ_TILDE] = ACTIONS(1724), - [anon_sym_EQ_EQ] = ACTIONS(1724), - [anon_sym_EQ] = ACTIONS(1726), - [anon_sym_LT] = ACTIONS(1724), - [anon_sym_GT] = ACTIONS(1724), - [anon_sym_BANG_EQ] = ACTIONS(1724), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1724), - [anon_sym_LF] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1726), + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(3249), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(3251), + [anon_sym_SEMI_SEMI] = ACTIONS(3253), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(3253), + [anon_sym_AMP] = ACTIONS(3249), }, [1018] = { - [aux_sym_concatenation_repeat1] = STATE(1018), - [sym__concat] = ACTIONS(3293), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_SEMI_SEMI] = ACTIONS(1724), - [anon_sym_AMP_AMP] = ACTIONS(1724), - [anon_sym_PIPE_PIPE] = ACTIONS(1724), - [anon_sym_EQ_TILDE] = ACTIONS(1724), - [anon_sym_EQ_EQ] = ACTIONS(1724), - [anon_sym_EQ] = ACTIONS(1726), - [anon_sym_LT] = ACTIONS(1724), - [anon_sym_GT] = ACTIONS(1724), - [anon_sym_BANG_EQ] = ACTIONS(1724), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1724), - [anon_sym_LF] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1726), + [sym__terminated_statement] = STATE(198), + [sym_for_statement] = STATE(1468), + [sym_c_style_for_statement] = STATE(1468), + [sym_while_statement] = STATE(1468), + [sym_if_statement] = STATE(1468), + [sym_case_statement] = STATE(1468), + [sym_function_definition] = STATE(1468), + [sym_subshell] = STATE(1468), + [sym_pipeline] = STATE(1468), + [sym_list] = STATE(1468), + [sym_negated_command] = STATE(1468), + [sym_test_command] = STATE(1468), + [sym_declaration_command] = STATE(1468), + [sym_unset_command] = STATE(1468), + [sym_command] = STATE(1468), + [sym_command_name] = STATE(92), + [sym_variable_assignment] = STATE(1469), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(96), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), + [aux_sym__statements_repeat1] = STATE(198), + [aux_sym_command_repeat1] = STATE(96), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(137), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(149), + [anon_sym_declare] = ACTIONS(151), + [anon_sym_typeset] = ACTIONS(151), + [anon_sym_export] = ACTIONS(151), + [anon_sym_readonly] = ACTIONS(151), + [anon_sym_local] = ACTIONS(151), + [anon_sym_unset] = ACTIONS(153), + [anon_sym_unsetenv] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(159), }, [1019] = { - [sym__concat] = ACTIONS(1731), - [anon_sym_SEMI] = ACTIONS(1733), - [anon_sym_esac] = ACTIONS(1731), - [anon_sym_PIPE] = ACTIONS(1733), - [anon_sym_SEMI_SEMI] = ACTIONS(1731), - [anon_sym_PIPE_AMP] = ACTIONS(1731), - [anon_sym_AMP_AMP] = ACTIONS(1731), - [anon_sym_PIPE_PIPE] = ACTIONS(1731), - [anon_sym_EQ_TILDE] = ACTIONS(1731), - [anon_sym_EQ_EQ] = ACTIONS(1731), - [anon_sym_EQ] = ACTIONS(1733), - [anon_sym_LT] = ACTIONS(1731), - [anon_sym_GT] = ACTIONS(1731), - [anon_sym_BANG_EQ] = ACTIONS(1731), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1731), - [anon_sym_LF] = ACTIONS(1731), - [anon_sym_AMP] = ACTIONS(1733), + [anon_sym_SEMI] = ACTIONS(3255), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_SEMI_SEMI] = ACTIONS(3257), + [anon_sym_PIPE_AMP] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_BQUOTE] = ACTIONS(3251), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(3257), + [anon_sym_AMP] = ACTIONS(3255), }, [1020] = { - [anon_sym_DQUOTE] = ACTIONS(3296), - [anon_sym_DOLLAR] = ACTIONS(775), - [sym__string_content] = ACTIONS(777), - [anon_sym_POUND] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(781), - [anon_sym_STAR] = ACTIONS(783), - [anon_sym_AT] = ACTIONS(783), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_0] = ACTIONS(781), - [anon_sym__] = ACTIONS(781), + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(3255), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_SEMI_SEMI] = ACTIONS(3257), + [anon_sym_PIPE_AMP] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(3251), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(3257), + [anon_sym_AMP] = ACTIONS(3255), }, [1021] = { - [sym_concatenation] = STATE(1456), - [sym_string] = STATE(1455), - [sym_simple_expansion] = STATE(1455), - [sym_string_expansion] = STATE(1455), - [sym_expansion] = STATE(1455), - [sym_command_substitution] = STATE(1455), - [sym_process_substitution] = STATE(1455), - [anon_sym_RBRACE] = ACTIONS(3298), - [sym__special_characters] = ACTIONS(3300), - [anon_sym_DQUOTE] = ACTIONS(1802), - [anon_sym_DOLLAR] = ACTIONS(1804), - [sym_raw_string] = ACTIONS(3302), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1808), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1810), - [anon_sym_BQUOTE] = ACTIONS(1812), - [anon_sym_LT_LPAREN] = ACTIONS(1814), - [anon_sym_GT_LPAREN] = ACTIONS(1814), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3302), + [sym__terminated_statement] = STATE(198), + [sym_for_statement] = STATE(1471), + [sym_c_style_for_statement] = STATE(1471), + [sym_while_statement] = STATE(1471), + [sym_if_statement] = STATE(1471), + [sym_case_statement] = STATE(1471), + [sym_function_definition] = STATE(1471), + [sym_subshell] = STATE(1471), + [sym_pipeline] = STATE(1471), + [sym_list] = STATE(1471), + [sym_negated_command] = STATE(1471), + [sym_test_command] = STATE(1471), + [sym_declaration_command] = STATE(1471), + [sym_unset_command] = STATE(1471), + [sym_command] = STATE(1471), + [sym_command_name] = STATE(173), + [sym_variable_assignment] = STATE(1472), + [sym_subscript] = STATE(66), + [sym_file_redirect] = STATE(176), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(60), + [sym_simple_expansion] = STATE(60), + [sym_string_expansion] = STATE(60), + [sym_expansion] = STATE(60), + [sym_command_substitution] = STATE(60), + [sym_process_substitution] = STATE(60), + [aux_sym__statements_repeat1] = STATE(198), + [aux_sym_command_repeat1] = STATE(176), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(95), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(305), + [anon_sym_while] = ACTIONS(307), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(311), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(315), + [anon_sym_declare] = ACTIONS(317), + [anon_sym_typeset] = ACTIONS(317), + [anon_sym_export] = ACTIONS(317), + [anon_sym_readonly] = ACTIONS(317), + [anon_sym_local] = ACTIONS(317), + [anon_sym_unset] = ACTIONS(319), + [anon_sym_unsetenv] = ACTIONS(319), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(115), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(321), }, [1022] = { - [anon_sym_LBRACK] = ACTIONS(815), - [anon_sym_EQ] = ACTIONS(3304), - [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(3259), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(3261), + [anon_sym_SEMI_SEMI] = ACTIONS(3263), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(3263), + [anon_sym_AMP] = ACTIONS(3259), }, [1023] = { - [sym_concatenation] = STATE(1460), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(1460), - [anon_sym_RBRACE] = ACTIONS(3306), - [anon_sym_EQ] = ACTIONS(3308), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(3310), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_COLON] = ACTIONS(3308), - [anon_sym_COLON_QMARK] = ACTIONS(3308), - [anon_sym_COLON_DASH] = ACTIONS(3308), - [anon_sym_PERCENT] = ACTIONS(3308), - [anon_sym_DASH] = ACTIONS(3308), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(3259), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(3261), + [anon_sym_SEMI_SEMI] = ACTIONS(3263), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(3263), + [anon_sym_AMP] = ACTIONS(3259), }, [1024] = { - [sym_concatenation] = STATE(1462), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(1462), - [anon_sym_RBRACE] = ACTIONS(3298), - [anon_sym_EQ] = ACTIONS(3314), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(3316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(3318), - [anon_sym_COLON] = ACTIONS(3314), - [anon_sym_COLON_QMARK] = ACTIONS(3314), - [anon_sym_COLON_DASH] = ACTIONS(3314), - [anon_sym_PERCENT] = ACTIONS(3314), - [anon_sym_DASH] = ACTIONS(3314), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym__terminated_statement] = STATE(198), + [sym_for_statement] = STATE(1475), + [sym_c_style_for_statement] = STATE(1475), + [sym_while_statement] = STATE(1475), + [sym_if_statement] = STATE(1475), + [sym_case_statement] = STATE(1475), + [sym_function_definition] = STATE(1475), + [sym_subshell] = STATE(1475), + [sym_pipeline] = STATE(1475), + [sym_list] = STATE(1475), + [sym_negated_command] = STATE(1475), + [sym_test_command] = STATE(1475), + [sym_declaration_command] = STATE(1475), + [sym_unset_command] = STATE(1475), + [sym_command] = STATE(1475), + [sym_command_name] = STATE(92), + [sym_variable_assignment] = STATE(1476), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(96), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), + [aux_sym__statements_repeat1] = STATE(198), + [aux_sym_command_repeat1] = STATE(96), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(137), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(149), + [anon_sym_declare] = ACTIONS(151), + [anon_sym_typeset] = ACTIONS(151), + [anon_sym_export] = ACTIONS(151), + [anon_sym_readonly] = ACTIONS(151), + [anon_sym_local] = ACTIONS(151), + [anon_sym_unset] = ACTIONS(153), + [anon_sym_unsetenv] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(159), }, [1025] = { - [sym__concat] = ACTIONS(1832), - [anon_sym_SEMI] = ACTIONS(1834), - [anon_sym_esac] = ACTIONS(1832), - [anon_sym_PIPE] = ACTIONS(1834), - [anon_sym_SEMI_SEMI] = ACTIONS(1832), - [anon_sym_PIPE_AMP] = ACTIONS(1832), - [anon_sym_AMP_AMP] = ACTIONS(1832), - [anon_sym_PIPE_PIPE] = ACTIONS(1832), - [anon_sym_EQ_TILDE] = ACTIONS(1832), - [anon_sym_EQ_EQ] = ACTIONS(1832), - [anon_sym_EQ] = ACTIONS(1834), - [anon_sym_LT] = ACTIONS(1832), - [anon_sym_GT] = ACTIONS(1832), - [anon_sym_BANG_EQ] = ACTIONS(1832), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1832), - [anon_sym_LF] = ACTIONS(1832), - [anon_sym_AMP] = ACTIONS(1834), + [sym_file_descriptor] = ACTIONS(3265), + [sym_variable_name] = ACTIONS(3265), + [ts_builtin_sym_end] = ACTIONS(3265), + [anon_sym_SEMI] = ACTIONS(3267), + [anon_sym_PIPE] = ACTIONS(3267), + [anon_sym_RPAREN] = ACTIONS(3265), + [anon_sym_SEMI_SEMI] = ACTIONS(3265), + [anon_sym_PIPE_AMP] = ACTIONS(3265), + [anon_sym_AMP_AMP] = ACTIONS(3265), + [anon_sym_PIPE_PIPE] = ACTIONS(3265), + [anon_sym_LT] = ACTIONS(3267), + [anon_sym_GT] = ACTIONS(3267), + [anon_sym_GT_GT] = ACTIONS(3265), + [anon_sym_AMP_GT] = ACTIONS(3267), + [anon_sym_AMP_GT_GT] = ACTIONS(3265), + [anon_sym_LT_AMP] = ACTIONS(3265), + [anon_sym_GT_AMP] = ACTIONS(3265), + [sym__special_characters] = ACTIONS(3265), + [anon_sym_DQUOTE] = ACTIONS(3265), + [anon_sym_DOLLAR] = ACTIONS(3267), + [sym_raw_string] = ACTIONS(3265), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3265), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3265), + [anon_sym_BQUOTE] = ACTIONS(3265), + [anon_sym_LT_LPAREN] = ACTIONS(3265), + [anon_sym_GT_LPAREN] = ACTIONS(3265), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(3267), + [anon_sym_LF] = ACTIONS(3265), + [anon_sym_AMP] = ACTIONS(3267), }, [1026] = { - [sym_comment] = ACTIONS(265), - [sym_regex_without_right_brace] = ACTIONS(3320), + [sym_concatenation] = STATE(1026), + [sym_string] = STATE(558), + [sym_simple_expansion] = STATE(558), + [sym_string_expansion] = STATE(558), + [sym_expansion] = STATE(558), + [sym_command_substitution] = STATE(558), + [sym_process_substitution] = STATE(558), + [aux_sym_for_statement_repeat1] = STATE(1026), + [anon_sym_RPAREN] = ACTIONS(3269), + [sym__special_characters] = ACTIONS(3271), + [anon_sym_DQUOTE] = ACTIONS(3274), + [anon_sym_DOLLAR] = ACTIONS(3277), + [sym_raw_string] = ACTIONS(3280), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3283), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3286), + [anon_sym_BQUOTE] = ACTIONS(3289), + [anon_sym_LT_LPAREN] = ACTIONS(3292), + [anon_sym_GT_LPAREN] = ACTIONS(3292), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(3280), }, [1027] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(3322), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_file_descriptor] = ACTIONS(1763), + [sym__concat] = ACTIONS(1763), + [sym_variable_name] = ACTIONS(1763), + [ts_builtin_sym_end] = ACTIONS(1763), + [anon_sym_SEMI] = ACTIONS(1765), + [anon_sym_PIPE] = ACTIONS(1765), + [anon_sym_RPAREN] = ACTIONS(1763), + [anon_sym_SEMI_SEMI] = ACTIONS(1763), + [anon_sym_PIPE_AMP] = ACTIONS(1763), + [anon_sym_AMP_AMP] = ACTIONS(1763), + [anon_sym_PIPE_PIPE] = ACTIONS(1763), + [anon_sym_LT] = ACTIONS(1765), + [anon_sym_GT] = ACTIONS(1765), + [anon_sym_GT_GT] = ACTIONS(1763), + [anon_sym_AMP_GT] = ACTIONS(1765), + [anon_sym_AMP_GT_GT] = ACTIONS(1763), + [anon_sym_LT_AMP] = ACTIONS(1763), + [anon_sym_GT_AMP] = ACTIONS(1763), + [sym__special_characters] = ACTIONS(1763), + [anon_sym_DQUOTE] = ACTIONS(1763), + [anon_sym_DOLLAR] = ACTIONS(1765), + [sym_raw_string] = ACTIONS(1763), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1763), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1763), + [anon_sym_BQUOTE] = ACTIONS(1763), + [anon_sym_LT_LPAREN] = ACTIONS(1763), + [anon_sym_GT_LPAREN] = ACTIONS(1763), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1765), + [anon_sym_LF] = ACTIONS(1763), + [anon_sym_AMP] = ACTIONS(1765), }, [1028] = { - [sym__concat] = ACTIONS(1876), - [anon_sym_SEMI] = ACTIONS(1878), - [anon_sym_esac] = ACTIONS(1876), - [anon_sym_PIPE] = ACTIONS(1878), - [anon_sym_SEMI_SEMI] = ACTIONS(1876), - [anon_sym_PIPE_AMP] = ACTIONS(1876), - [anon_sym_AMP_AMP] = ACTIONS(1876), - [anon_sym_PIPE_PIPE] = ACTIONS(1876), - [anon_sym_EQ_TILDE] = ACTIONS(1876), - [anon_sym_EQ_EQ] = ACTIONS(1876), - [anon_sym_EQ] = ACTIONS(1878), - [anon_sym_LT] = ACTIONS(1876), - [anon_sym_GT] = ACTIONS(1876), - [anon_sym_BANG_EQ] = ACTIONS(1876), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1876), - [anon_sym_LF] = ACTIONS(1876), - [anon_sym_AMP] = ACTIONS(1878), + [aux_sym_concatenation_repeat1] = STATE(1028), + [sym_file_descriptor] = ACTIONS(1763), + [sym__concat] = ACTIONS(3295), + [sym_variable_name] = ACTIONS(1763), + [ts_builtin_sym_end] = ACTIONS(1763), + [anon_sym_SEMI] = ACTIONS(1765), + [anon_sym_PIPE] = ACTIONS(1765), + [anon_sym_SEMI_SEMI] = ACTIONS(1763), + [anon_sym_PIPE_AMP] = ACTIONS(1763), + [anon_sym_AMP_AMP] = ACTIONS(1763), + [anon_sym_PIPE_PIPE] = ACTIONS(1763), + [anon_sym_LT] = ACTIONS(1765), + [anon_sym_GT] = ACTIONS(1765), + [anon_sym_GT_GT] = ACTIONS(1763), + [anon_sym_AMP_GT] = ACTIONS(1765), + [anon_sym_AMP_GT_GT] = ACTIONS(1763), + [anon_sym_LT_AMP] = ACTIONS(1763), + [anon_sym_GT_AMP] = ACTIONS(1763), + [sym__special_characters] = ACTIONS(1763), + [anon_sym_DQUOTE] = ACTIONS(1763), + [anon_sym_DOLLAR] = ACTIONS(1765), + [sym_raw_string] = ACTIONS(1763), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1763), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1763), + [anon_sym_BQUOTE] = ACTIONS(1763), + [anon_sym_LT_LPAREN] = ACTIONS(1763), + [anon_sym_GT_LPAREN] = ACTIONS(1763), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1765), + [anon_sym_LF] = ACTIONS(1763), + [anon_sym_AMP] = ACTIONS(1765), }, [1029] = { - [sym_comment] = ACTIONS(265), - [sym_regex_without_right_brace] = ACTIONS(3324), + [sym_file_descriptor] = ACTIONS(1770), + [sym__concat] = ACTIONS(1770), + [sym_variable_name] = ACTIONS(1770), + [ts_builtin_sym_end] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(1772), + [anon_sym_PIPE] = ACTIONS(1772), + [anon_sym_RPAREN] = ACTIONS(1770), + [anon_sym_SEMI_SEMI] = ACTIONS(1770), + [anon_sym_PIPE_AMP] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1772), + [anon_sym_GT] = ACTIONS(1772), + [anon_sym_GT_GT] = ACTIONS(1770), + [anon_sym_AMP_GT] = ACTIONS(1772), + [anon_sym_AMP_GT_GT] = ACTIONS(1770), + [anon_sym_LT_AMP] = ACTIONS(1770), + [anon_sym_GT_AMP] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(1770), + [anon_sym_DQUOTE] = ACTIONS(1770), + [anon_sym_DOLLAR] = ACTIONS(1772), + [sym_raw_string] = ACTIONS(1770), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1770), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1770), + [anon_sym_BQUOTE] = ACTIONS(1770), + [anon_sym_LT_LPAREN] = ACTIONS(1770), + [anon_sym_GT_LPAREN] = ACTIONS(1770), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1772), + [anon_sym_LF] = ACTIONS(1770), + [anon_sym_AMP] = ACTIONS(1772), }, [1030] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(3298), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_DQUOTE] = ACTIONS(3298), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym__string_content] = ACTIONS(821), + [anon_sym_POUND] = ACTIONS(815), + [sym_comment] = ACTIONS(281), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(823), + [anon_sym_STAR] = ACTIONS(825), + [anon_sym_AT] = ACTIONS(825), + [anon_sym_QMARK] = ACTIONS(825), + [anon_sym_0] = ACTIONS(823), + [anon_sym__] = ACTIONS(823), }, [1031] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(3326), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(901), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), + [sym_concatenation] = STATE(1481), + [sym_string] = STATE(1480), + [sym_simple_expansion] = STATE(1480), + [sym_string_expansion] = STATE(1480), + [sym_expansion] = STATE(1480), + [sym_command_substitution] = STATE(1480), + [sym_process_substitution] = STATE(1480), + [anon_sym_RBRACE] = ACTIONS(3300), + [sym__special_characters] = ACTIONS(3302), + [anon_sym_DQUOTE] = ACTIONS(1841), + [anon_sym_DOLLAR] = ACTIONS(1843), + [sym_raw_string] = ACTIONS(3304), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1849), + [anon_sym_BQUOTE] = ACTIONS(1851), + [anon_sym_LT_LPAREN] = ACTIONS(1853), + [anon_sym_GT_LPAREN] = ACTIONS(1853), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(3304), }, [1032] = { - [sym__concat] = ACTIONS(1884), - [anon_sym_SEMI] = ACTIONS(1886), - [anon_sym_esac] = ACTIONS(1884), - [anon_sym_PIPE] = ACTIONS(1886), - [anon_sym_SEMI_SEMI] = ACTIONS(1884), - [anon_sym_PIPE_AMP] = ACTIONS(1884), - [anon_sym_AMP_AMP] = ACTIONS(1884), - [anon_sym_PIPE_PIPE] = ACTIONS(1884), - [anon_sym_EQ_TILDE] = ACTIONS(1884), - [anon_sym_EQ_EQ] = ACTIONS(1884), - [anon_sym_EQ] = ACTIONS(1886), - [anon_sym_LT] = ACTIONS(1884), - [anon_sym_GT] = ACTIONS(1884), - [anon_sym_BANG_EQ] = ACTIONS(1884), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1884), - [anon_sym_LF] = ACTIONS(1884), - [anon_sym_AMP] = ACTIONS(1886), + [anon_sym_LBRACK] = ACTIONS(857), + [anon_sym_EQ] = ACTIONS(3306), + [sym_comment] = ACTIONS(55), }, [1033] = { - [anon_sym_SEMI] = ACTIONS(3328), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(3326), - [anon_sym_SEMI_SEMI] = ACTIONS(3330), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(3330), - [anon_sym_AMP] = ACTIONS(3328), + [sym_concatenation] = STATE(1485), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1485), + [anon_sym_RBRACE] = ACTIONS(3308), + [anon_sym_EQ] = ACTIONS(3310), + [anon_sym_DASH] = ACTIONS(3310), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(3312), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(3314), + [anon_sym_COLON] = ACTIONS(3310), + [anon_sym_COLON_QMARK] = ACTIONS(3310), + [anon_sym_COLON_DASH] = ACTIONS(3310), + [anon_sym_PERCENT] = ACTIONS(3310), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1034] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(3328), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(3326), - [anon_sym_SEMI_SEMI] = ACTIONS(3330), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(3330), - [anon_sym_AMP] = ACTIONS(3328), + [sym_concatenation] = STATE(1487), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1487), + [anon_sym_RBRACE] = ACTIONS(3300), + [anon_sym_EQ] = ACTIONS(3316), + [anon_sym_DASH] = ACTIONS(3316), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(3318), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(3320), + [anon_sym_COLON] = ACTIONS(3316), + [anon_sym_COLON_QMARK] = ACTIONS(3316), + [anon_sym_COLON_DASH] = ACTIONS(3316), + [anon_sym_PERCENT] = ACTIONS(3316), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1035] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(3326), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), + [sym_file_descriptor] = ACTIONS(1871), + [sym__concat] = ACTIONS(1871), + [sym_variable_name] = ACTIONS(1871), + [ts_builtin_sym_end] = ACTIONS(1871), + [anon_sym_SEMI] = ACTIONS(1873), + [anon_sym_PIPE] = ACTIONS(1873), + [anon_sym_RPAREN] = ACTIONS(1871), + [anon_sym_SEMI_SEMI] = ACTIONS(1871), + [anon_sym_PIPE_AMP] = ACTIONS(1871), + [anon_sym_AMP_AMP] = ACTIONS(1871), + [anon_sym_PIPE_PIPE] = ACTIONS(1871), + [anon_sym_LT] = ACTIONS(1873), + [anon_sym_GT] = ACTIONS(1873), + [anon_sym_GT_GT] = ACTIONS(1871), + [anon_sym_AMP_GT] = ACTIONS(1873), + [anon_sym_AMP_GT_GT] = ACTIONS(1871), + [anon_sym_LT_AMP] = ACTIONS(1871), + [anon_sym_GT_AMP] = ACTIONS(1871), + [sym__special_characters] = ACTIONS(1871), + [anon_sym_DQUOTE] = ACTIONS(1871), + [anon_sym_DOLLAR] = ACTIONS(1873), + [sym_raw_string] = ACTIONS(1871), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1871), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1871), + [anon_sym_BQUOTE] = ACTIONS(1871), + [anon_sym_LT_LPAREN] = ACTIONS(1871), + [anon_sym_GT_LPAREN] = ACTIONS(1871), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1873), + [anon_sym_LF] = ACTIONS(1871), + [anon_sym_AMP] = ACTIONS(1873), }, [1036] = { - [anon_sym_SEMI] = ACTIONS(3332), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_SEMI_SEMI] = ACTIONS(3334), - [anon_sym_PIPE_AMP] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(883), - [anon_sym_PIPE_PIPE] = ACTIONS(883), - [anon_sym_BQUOTE] = ACTIONS(3326), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(3334), - [anon_sym_AMP] = ACTIONS(3332), + [sym_concatenation] = STATE(1490), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1490), + [sym_regex] = ACTIONS(3322), + [anon_sym_RBRACE] = ACTIONS(3324), + [anon_sym_EQ] = ACTIONS(3326), + [anon_sym_DASH] = ACTIONS(3326), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(3328), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(3326), + [anon_sym_COLON_QMARK] = ACTIONS(3326), + [anon_sym_COLON_DASH] = ACTIONS(3326), + [anon_sym_PERCENT] = ACTIONS(3326), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1037] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(3332), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_SEMI_SEMI] = ACTIONS(3334), - [anon_sym_PIPE_AMP] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(883), - [anon_sym_PIPE_PIPE] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(3326), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(3334), - [anon_sym_AMP] = ACTIONS(3332), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(3324), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1038] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(3336), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(901), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), + [sym_file_descriptor] = ACTIONS(1919), + [sym__concat] = ACTIONS(1919), + [sym_variable_name] = ACTIONS(1919), + [ts_builtin_sym_end] = ACTIONS(1919), + [anon_sym_SEMI] = ACTIONS(1921), + [anon_sym_PIPE] = ACTIONS(1921), + [anon_sym_RPAREN] = ACTIONS(1919), + [anon_sym_SEMI_SEMI] = ACTIONS(1919), + [anon_sym_PIPE_AMP] = ACTIONS(1919), + [anon_sym_AMP_AMP] = ACTIONS(1919), + [anon_sym_PIPE_PIPE] = ACTIONS(1919), + [anon_sym_LT] = ACTIONS(1921), + [anon_sym_GT] = ACTIONS(1921), + [anon_sym_GT_GT] = ACTIONS(1919), + [anon_sym_AMP_GT] = ACTIONS(1921), + [anon_sym_AMP_GT_GT] = ACTIONS(1919), + [anon_sym_LT_AMP] = ACTIONS(1919), + [anon_sym_GT_AMP] = ACTIONS(1919), + [sym__special_characters] = ACTIONS(1919), + [anon_sym_DQUOTE] = ACTIONS(1919), + [anon_sym_DOLLAR] = ACTIONS(1921), + [sym_raw_string] = ACTIONS(1919), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1919), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1919), + [anon_sym_BQUOTE] = ACTIONS(1919), + [anon_sym_LT_LPAREN] = ACTIONS(1919), + [anon_sym_GT_LPAREN] = ACTIONS(1919), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1921), + [anon_sym_LF] = ACTIONS(1919), + [anon_sym_AMP] = ACTIONS(1921), }, [1039] = { - [sym__concat] = ACTIONS(1916), - [anon_sym_SEMI] = ACTIONS(1918), - [anon_sym_esac] = ACTIONS(1916), - [anon_sym_PIPE] = ACTIONS(1918), - [anon_sym_SEMI_SEMI] = ACTIONS(1916), - [anon_sym_PIPE_AMP] = ACTIONS(1916), - [anon_sym_AMP_AMP] = ACTIONS(1916), - [anon_sym_PIPE_PIPE] = ACTIONS(1916), - [anon_sym_EQ_TILDE] = ACTIONS(1916), - [anon_sym_EQ_EQ] = ACTIONS(1916), - [anon_sym_EQ] = ACTIONS(1918), - [anon_sym_LT] = ACTIONS(1916), - [anon_sym_GT] = ACTIONS(1916), - [anon_sym_BANG_EQ] = ACTIONS(1916), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1916), - [anon_sym_LF] = ACTIONS(1916), - [anon_sym_AMP] = ACTIONS(1918), + [sym_concatenation] = STATE(1487), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1487), + [sym_regex] = ACTIONS(3330), + [anon_sym_RBRACE] = ACTIONS(3300), + [anon_sym_EQ] = ACTIONS(3316), + [anon_sym_DASH] = ACTIONS(3316), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(3318), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(3316), + [anon_sym_COLON_QMARK] = ACTIONS(3316), + [anon_sym_COLON_DASH] = ACTIONS(3316), + [anon_sym_PERCENT] = ACTIONS(3316), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1040] = { - [anon_sym_SEMI] = ACTIONS(3338), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(3336), - [anon_sym_SEMI_SEMI] = ACTIONS(3340), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(3340), - [anon_sym_AMP] = ACTIONS(3338), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(3300), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1041] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(3332), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), + }, + [1042] = { + [sym_file_descriptor] = ACTIONS(1927), + [sym__concat] = ACTIONS(1927), + [sym_variable_name] = ACTIONS(1927), + [ts_builtin_sym_end] = ACTIONS(1927), + [anon_sym_SEMI] = ACTIONS(1929), + [anon_sym_PIPE] = ACTIONS(1929), + [anon_sym_RPAREN] = ACTIONS(1927), + [anon_sym_SEMI_SEMI] = ACTIONS(1927), + [anon_sym_PIPE_AMP] = ACTIONS(1927), + [anon_sym_AMP_AMP] = ACTIONS(1927), + [anon_sym_PIPE_PIPE] = ACTIONS(1927), + [anon_sym_LT] = ACTIONS(1929), + [anon_sym_GT] = ACTIONS(1929), + [anon_sym_GT_GT] = ACTIONS(1927), + [anon_sym_AMP_GT] = ACTIONS(1929), + [anon_sym_AMP_GT_GT] = ACTIONS(1927), + [anon_sym_LT_AMP] = ACTIONS(1927), + [anon_sym_GT_AMP] = ACTIONS(1927), + [sym__special_characters] = ACTIONS(1927), + [anon_sym_DQUOTE] = ACTIONS(1927), + [anon_sym_DOLLAR] = ACTIONS(1929), + [sym_raw_string] = ACTIONS(1927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1927), + [anon_sym_BQUOTE] = ACTIONS(1927), + [anon_sym_LT_LPAREN] = ACTIONS(1927), + [anon_sym_GT_LPAREN] = ACTIONS(1927), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1929), + [anon_sym_LF] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1929), + }, + [1043] = { + [anon_sym_SEMI] = ACTIONS(3334), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(3332), + [anon_sym_SEMI_SEMI] = ACTIONS(3336), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(3336), + [anon_sym_AMP] = ACTIONS(3334), + }, + [1044] = { + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(3334), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(3332), + [anon_sym_SEMI_SEMI] = ACTIONS(3336), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(3336), + [anon_sym_AMP] = ACTIONS(3334), + }, + [1045] = { + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(3332), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), + }, + [1046] = { [anon_sym_SEMI] = ACTIONS(3338), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(3336), + [anon_sym_PIPE] = ACTIONS(919), [anon_sym_SEMI_SEMI] = ACTIONS(3340), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), + [anon_sym_PIPE_AMP] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_BQUOTE] = ACTIONS(3332), + [sym_comment] = ACTIONS(55), [anon_sym_LF] = ACTIONS(3340), [anon_sym_AMP] = ACTIONS(3338), }, - [1042] = { - [anon_sym_SEMI] = ACTIONS(3342), - [anon_sym_SEMI_SEMI] = ACTIONS(3344), - [anon_sym_AMP_AMP] = ACTIONS(1153), - [anon_sym_PIPE_PIPE] = ACTIONS(1153), - [anon_sym_EQ_TILDE] = ACTIONS(1155), - [anon_sym_EQ_EQ] = ACTIONS(1155), - [anon_sym_EQ] = ACTIONS(1157), - [anon_sym_LT] = ACTIONS(1153), - [anon_sym_GT] = ACTIONS(1153), - [anon_sym_BANG_EQ] = ACTIONS(1153), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1153), - [anon_sym_LF] = ACTIONS(3344), - [anon_sym_AMP] = ACTIONS(3342), - }, - [1043] = { - [anon_sym_SEMI] = ACTIONS(2604), - [anon_sym_SEMI_SEMI] = ACTIONS(2602), - [anon_sym_AMP_AMP] = ACTIONS(2602), - [anon_sym_PIPE_PIPE] = ACTIONS(2602), - [anon_sym_EQ_TILDE] = ACTIONS(2602), - [anon_sym_EQ_EQ] = ACTIONS(2602), - [anon_sym_EQ] = ACTIONS(2604), - [anon_sym_LT] = ACTIONS(2602), - [anon_sym_GT] = ACTIONS(2602), - [anon_sym_BANG_EQ] = ACTIONS(2602), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2602), - [anon_sym_LF] = ACTIONS(2602), - [anon_sym_AMP] = ACTIONS(2604), - }, - [1044] = { - [anon_sym_SEMI] = ACTIONS(2604), - [anon_sym_SEMI_SEMI] = ACTIONS(2602), - [anon_sym_AMP_AMP] = ACTIONS(2602), - [anon_sym_PIPE_PIPE] = ACTIONS(2602), - [anon_sym_EQ_TILDE] = ACTIONS(2602), - [anon_sym_EQ_EQ] = ACTIONS(2602), - [anon_sym_EQ] = ACTIONS(2604), - [anon_sym_LT] = ACTIONS(2602), - [anon_sym_GT] = ACTIONS(2602), - [anon_sym_BANG_EQ] = ACTIONS(2602), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2602), - [anon_sym_LF] = ACTIONS(2602), - [anon_sym_AMP] = ACTIONS(2604), - }, - [1045] = { - [sym_string] = STATE(1472), - [sym_simple_expansion] = STATE(1472), - [sym_string_expansion] = STATE(1472), - [sym_expansion] = STATE(1472), - [sym_command_substitution] = STATE(1472), - [sym_process_substitution] = STATE(1472), - [sym__special_characters] = ACTIONS(3346), - [anon_sym_DQUOTE] = ACTIONS(1161), - [anon_sym_DOLLAR] = ACTIONS(1163), - [sym_raw_string] = ACTIONS(3346), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1167), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1169), - [anon_sym_BQUOTE] = ACTIONS(1171), - [anon_sym_LT_LPAREN] = ACTIONS(1173), - [anon_sym_GT_LPAREN] = ACTIONS(1173), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3346), - }, - [1046] = { - [aux_sym_concatenation_repeat1] = STATE(1473), - [sym__concat] = ACTIONS(2240), - [anon_sym_SEMI] = ACTIONS(767), - [anon_sym_SEMI_SEMI] = ACTIONS(765), - [sym__special_characters] = ACTIONS(765), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_DOLLAR] = ACTIONS(767), - [sym_raw_string] = ACTIONS(765), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(765), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(765), - [anon_sym_BQUOTE] = ACTIONS(765), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(767), - [anon_sym_LF] = ACTIONS(765), - [anon_sym_AMP] = ACTIONS(765), - }, [1047] = { - [sym__concat] = ACTIONS(769), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_SEMI_SEMI] = ACTIONS(769), - [sym__special_characters] = ACTIONS(769), - [anon_sym_DQUOTE] = ACTIONS(769), - [anon_sym_DOLLAR] = ACTIONS(771), - [sym_raw_string] = ACTIONS(769), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(769), - [anon_sym_BQUOTE] = ACTIONS(769), - [anon_sym_LT_LPAREN] = ACTIONS(769), - [anon_sym_GT_LPAREN] = ACTIONS(769), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(771), - [anon_sym_LF] = ACTIONS(769), - [anon_sym_AMP] = ACTIONS(769), + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(3338), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_SEMI_SEMI] = ACTIONS(3340), + [anon_sym_PIPE_AMP] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(3332), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(3340), + [anon_sym_AMP] = ACTIONS(3338), }, [1048] = { - [anon_sym_DQUOTE] = ACTIONS(3348), - [anon_sym_DOLLAR] = ACTIONS(775), - [sym__string_content] = ACTIONS(777), - [anon_sym_POUND] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(781), - [anon_sym_STAR] = ACTIONS(783), - [anon_sym_AT] = ACTIONS(783), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_0] = ACTIONS(781), - [anon_sym__] = ACTIONS(781), + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(3342), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), }, [1049] = { - [sym_simple_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [sym_command_substitution] = STATE(141), - [aux_sym_string_repeat1] = STATE(450), - [anon_sym_DQUOTE] = ACTIONS(3348), - [anon_sym_DOLLAR] = ACTIONS(3350), - [sym__string_content] = ACTIONS(257), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(261), - [anon_sym_BQUOTE] = ACTIONS(263), - [sym_comment] = ACTIONS(265), + [sym_file_descriptor] = ACTIONS(1959), + [sym__concat] = ACTIONS(1959), + [sym_variable_name] = ACTIONS(1959), + [ts_builtin_sym_end] = ACTIONS(1959), + [anon_sym_SEMI] = ACTIONS(1961), + [anon_sym_PIPE] = ACTIONS(1961), + [anon_sym_RPAREN] = ACTIONS(1959), + [anon_sym_SEMI_SEMI] = ACTIONS(1959), + [anon_sym_PIPE_AMP] = ACTIONS(1959), + [anon_sym_AMP_AMP] = ACTIONS(1959), + [anon_sym_PIPE_PIPE] = ACTIONS(1959), + [anon_sym_LT] = ACTIONS(1961), + [anon_sym_GT] = ACTIONS(1961), + [anon_sym_GT_GT] = ACTIONS(1959), + [anon_sym_AMP_GT] = ACTIONS(1961), + [anon_sym_AMP_GT_GT] = ACTIONS(1959), + [anon_sym_LT_AMP] = ACTIONS(1959), + [anon_sym_GT_AMP] = ACTIONS(1959), + [sym__special_characters] = ACTIONS(1959), + [anon_sym_DQUOTE] = ACTIONS(1959), + [anon_sym_DOLLAR] = ACTIONS(1961), + [sym_raw_string] = ACTIONS(1959), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1959), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1959), + [anon_sym_BQUOTE] = ACTIONS(1959), + [anon_sym_LT_LPAREN] = ACTIONS(1959), + [anon_sym_GT_LPAREN] = ACTIONS(1959), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1961), + [anon_sym_LF] = ACTIONS(1959), + [anon_sym_AMP] = ACTIONS(1961), }, [1050] = { - [sym__concat] = ACTIONS(803), - [anon_sym_SEMI] = ACTIONS(805), - [anon_sym_SEMI_SEMI] = ACTIONS(803), - [sym__special_characters] = ACTIONS(803), - [anon_sym_DQUOTE] = ACTIONS(803), - [anon_sym_DOLLAR] = ACTIONS(805), - [sym_raw_string] = ACTIONS(803), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(803), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(803), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(803), - [anon_sym_GT_LPAREN] = ACTIONS(803), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(805), - [anon_sym_LF] = ACTIONS(803), - [anon_sym_AMP] = ACTIONS(803), + [anon_sym_SEMI] = ACTIONS(3344), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(3342), + [anon_sym_SEMI_SEMI] = ACTIONS(3346), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(3346), + [anon_sym_AMP] = ACTIONS(3344), }, [1051] = { - [sym__concat] = ACTIONS(807), + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(3344), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(3342), + [anon_sym_SEMI_SEMI] = ACTIONS(3346), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(3346), + [anon_sym_AMP] = ACTIONS(3344), + }, + [1052] = { + [sym_do_group] = STATE(1499), + [sym_compound_statement] = STATE(1499), + [anon_sym_SEMI] = ACTIONS(3348), + [anon_sym_do] = ACTIONS(1212), + [anon_sym_LBRACE] = ACTIONS(3350), + [sym_comment] = ACTIONS(55), + }, + [1053] = { + [anon_sym_RPAREN_RPAREN] = ACTIONS(3352), + [anon_sym_AMP_AMP] = ACTIONS(493), + [anon_sym_PIPE_PIPE] = ACTIONS(493), + [anon_sym_EQ_TILDE] = ACTIONS(495), + [anon_sym_EQ_EQ] = ACTIONS(495), + [anon_sym_EQ] = ACTIONS(497), + [anon_sym_PLUS_EQ] = ACTIONS(493), + [anon_sym_LT] = ACTIONS(497), + [anon_sym_GT] = ACTIONS(497), + [anon_sym_BANG_EQ] = ACTIONS(493), + [anon_sym_PLUS] = ACTIONS(497), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_DASH_EQ] = ACTIONS(493), + [anon_sym_LT_EQ] = ACTIONS(493), + [anon_sym_GT_EQ] = ACTIONS(493), + [anon_sym_PLUS_PLUS] = ACTIONS(499), + [anon_sym_DASH_DASH] = ACTIONS(499), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(493), + }, + [1054] = { + [sym__expression] = STATE(1501), + [sym_binary_expression] = STATE(1501), + [sym_unary_expression] = STATE(1501), + [sym_postfix_expression] = STATE(1501), + [sym_parenthesized_expression] = STATE(1501), + [sym_concatenation] = STATE(1501), + [sym_string] = STATE(44), + [sym_simple_expansion] = STATE(44), + [sym_string_expansion] = STATE(44), + [sym_expansion] = STATE(44), + [sym_command_substitution] = STATE(44), + [sym_process_substitution] = STATE(44), + [anon_sym_RPAREN_RPAREN] = ACTIONS(3352), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(73), + [sym__special_characters] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(79), + [sym_raw_string] = ACTIONS(81), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(83), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(85), + [anon_sym_BQUOTE] = ACTIONS(87), + [anon_sym_LT_LPAREN] = ACTIONS(89), + [anon_sym_GT_LPAREN] = ACTIONS(89), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(91), + [sym_test_operator] = ACTIONS(93), + }, + [1055] = { + [anon_sym_SEMI] = ACTIONS(2333), + [anon_sym_SEMI_SEMI] = ACTIONS(2331), + [anon_sym_AMP_AMP] = ACTIONS(2331), + [anon_sym_PIPE_PIPE] = ACTIONS(2331), + [anon_sym_EQ_TILDE] = ACTIONS(2331), + [anon_sym_EQ_EQ] = ACTIONS(2331), + [anon_sym_EQ] = ACTIONS(2333), + [anon_sym_PLUS_EQ] = ACTIONS(2331), + [anon_sym_LT] = ACTIONS(2333), + [anon_sym_GT] = ACTIONS(2333), + [anon_sym_BANG_EQ] = ACTIONS(2331), + [anon_sym_PLUS] = ACTIONS(2333), + [anon_sym_DASH] = ACTIONS(2333), + [anon_sym_DASH_EQ] = ACTIONS(2331), + [anon_sym_LT_EQ] = ACTIONS(2331), + [anon_sym_GT_EQ] = ACTIONS(2331), + [anon_sym_PLUS_PLUS] = ACTIONS(2331), + [anon_sym_DASH_DASH] = ACTIONS(2331), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(2331), + [anon_sym_LF] = ACTIONS(2331), + [anon_sym_AMP] = ACTIONS(2333), + }, + [1056] = { + [sym__concat] = ACTIONS(1763), + [anon_sym_SEMI] = ACTIONS(1765), + [anon_sym_esac] = ACTIONS(1763), + [anon_sym_PIPE] = ACTIONS(1765), + [anon_sym_SEMI_SEMI] = ACTIONS(1763), + [anon_sym_PIPE_AMP] = ACTIONS(1763), + [anon_sym_AMP_AMP] = ACTIONS(1763), + [anon_sym_PIPE_PIPE] = ACTIONS(1763), + [anon_sym_EQ_TILDE] = ACTIONS(1763), + [anon_sym_EQ_EQ] = ACTIONS(1763), + [anon_sym_EQ] = ACTIONS(1765), + [anon_sym_PLUS_EQ] = ACTIONS(1763), + [anon_sym_LT] = ACTIONS(1765), + [anon_sym_GT] = ACTIONS(1765), + [anon_sym_BANG_EQ] = ACTIONS(1763), + [anon_sym_PLUS] = ACTIONS(1765), + [anon_sym_DASH] = ACTIONS(1765), + [anon_sym_DASH_EQ] = ACTIONS(1763), + [anon_sym_LT_EQ] = ACTIONS(1763), + [anon_sym_GT_EQ] = ACTIONS(1763), + [anon_sym_PLUS_PLUS] = ACTIONS(1763), + [anon_sym_DASH_DASH] = ACTIONS(1763), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(1763), + [anon_sym_LF] = ACTIONS(1763), + [anon_sym_AMP] = ACTIONS(1765), + }, + [1057] = { + [aux_sym_concatenation_repeat1] = STATE(1057), + [sym__concat] = ACTIONS(3354), + [anon_sym_SEMI] = ACTIONS(1765), + [anon_sym_SEMI_SEMI] = ACTIONS(1763), + [anon_sym_AMP_AMP] = ACTIONS(1763), + [anon_sym_PIPE_PIPE] = ACTIONS(1763), + [anon_sym_EQ_TILDE] = ACTIONS(1763), + [anon_sym_EQ_EQ] = ACTIONS(1763), + [anon_sym_EQ] = ACTIONS(1765), + [anon_sym_PLUS_EQ] = ACTIONS(1763), + [anon_sym_LT] = ACTIONS(1765), + [anon_sym_GT] = ACTIONS(1765), + [anon_sym_BANG_EQ] = ACTIONS(1763), + [anon_sym_PLUS] = ACTIONS(1765), + [anon_sym_DASH] = ACTIONS(1765), + [anon_sym_DASH_EQ] = ACTIONS(1763), + [anon_sym_LT_EQ] = ACTIONS(1763), + [anon_sym_GT_EQ] = ACTIONS(1763), + [anon_sym_PLUS_PLUS] = ACTIONS(1763), + [anon_sym_DASH_DASH] = ACTIONS(1763), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(1763), + [anon_sym_LF] = ACTIONS(1763), + [anon_sym_AMP] = ACTIONS(1765), + }, + [1058] = { + [sym__concat] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(1772), + [anon_sym_esac] = ACTIONS(1770), + [anon_sym_PIPE] = ACTIONS(1772), + [anon_sym_SEMI_SEMI] = ACTIONS(1770), + [anon_sym_PIPE_AMP] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_EQ_TILDE] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ] = ACTIONS(1772), + [anon_sym_PLUS_EQ] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1772), + [anon_sym_GT] = ACTIONS(1772), + [anon_sym_BANG_EQ] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1772), + [anon_sym_DASH] = ACTIONS(1772), + [anon_sym_DASH_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(1770), + [anon_sym_LF] = ACTIONS(1770), + [anon_sym_AMP] = ACTIONS(1772), + }, + [1059] = { + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_DQUOTE] = ACTIONS(3357), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym__string_content] = ACTIONS(821), + [anon_sym_POUND] = ACTIONS(815), + [sym_comment] = ACTIONS(281), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(823), + [anon_sym_STAR] = ACTIONS(825), + [anon_sym_AT] = ACTIONS(825), + [anon_sym_QMARK] = ACTIONS(825), + [anon_sym_0] = ACTIONS(823), + [anon_sym__] = ACTIONS(823), + }, + [1060] = { + [sym_concatenation] = STATE(1506), + [sym_string] = STATE(1505), + [sym_simple_expansion] = STATE(1505), + [sym_string_expansion] = STATE(1505), + [sym_expansion] = STATE(1505), + [sym_command_substitution] = STATE(1505), + [sym_process_substitution] = STATE(1505), + [anon_sym_RBRACE] = ACTIONS(3359), + [sym__special_characters] = ACTIONS(3361), + [anon_sym_DQUOTE] = ACTIONS(1841), + [anon_sym_DOLLAR] = ACTIONS(1843), + [sym_raw_string] = ACTIONS(3363), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1849), + [anon_sym_BQUOTE] = ACTIONS(1851), + [anon_sym_LT_LPAREN] = ACTIONS(1853), + [anon_sym_GT_LPAREN] = ACTIONS(1853), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(3363), + }, + [1061] = { + [anon_sym_LBRACK] = ACTIONS(857), + [anon_sym_EQ] = ACTIONS(3365), + [sym_comment] = ACTIONS(55), + }, + [1062] = { + [sym_concatenation] = STATE(1510), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1510), + [anon_sym_RBRACE] = ACTIONS(3367), + [anon_sym_EQ] = ACTIONS(3369), + [anon_sym_DASH] = ACTIONS(3369), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(3371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(3373), + [anon_sym_COLON] = ACTIONS(3369), + [anon_sym_COLON_QMARK] = ACTIONS(3369), + [anon_sym_COLON_DASH] = ACTIONS(3369), + [anon_sym_PERCENT] = ACTIONS(3369), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1063] = { + [sym_concatenation] = STATE(1512), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1512), + [anon_sym_RBRACE] = ACTIONS(3359), + [anon_sym_EQ] = ACTIONS(3375), + [anon_sym_DASH] = ACTIONS(3375), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(3377), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(3379), + [anon_sym_COLON] = ACTIONS(3375), + [anon_sym_COLON_QMARK] = ACTIONS(3375), + [anon_sym_COLON_DASH] = ACTIONS(3375), + [anon_sym_PERCENT] = ACTIONS(3375), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1064] = { + [sym__concat] = ACTIONS(1871), + [anon_sym_SEMI] = ACTIONS(1873), + [anon_sym_esac] = ACTIONS(1871), + [anon_sym_PIPE] = ACTIONS(1873), + [anon_sym_SEMI_SEMI] = ACTIONS(1871), + [anon_sym_PIPE_AMP] = ACTIONS(1871), + [anon_sym_AMP_AMP] = ACTIONS(1871), + [anon_sym_PIPE_PIPE] = ACTIONS(1871), + [anon_sym_EQ_TILDE] = ACTIONS(1871), + [anon_sym_EQ_EQ] = ACTIONS(1871), + [anon_sym_EQ] = ACTIONS(1873), + [anon_sym_PLUS_EQ] = ACTIONS(1871), + [anon_sym_LT] = ACTIONS(1873), + [anon_sym_GT] = ACTIONS(1873), + [anon_sym_BANG_EQ] = ACTIONS(1871), + [anon_sym_PLUS] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1873), + [anon_sym_DASH_EQ] = ACTIONS(1871), + [anon_sym_LT_EQ] = ACTIONS(1871), + [anon_sym_GT_EQ] = ACTIONS(1871), + [anon_sym_PLUS_PLUS] = ACTIONS(1871), + [anon_sym_DASH_DASH] = ACTIONS(1871), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(1871), + [anon_sym_LF] = ACTIONS(1871), + [anon_sym_AMP] = ACTIONS(1873), + }, + [1065] = { + [sym_concatenation] = STATE(1515), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1515), + [sym_regex] = ACTIONS(3381), + [anon_sym_RBRACE] = ACTIONS(3383), + [anon_sym_EQ] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(3385), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(3387), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(3385), + [anon_sym_COLON_QMARK] = ACTIONS(3385), + [anon_sym_COLON_DASH] = ACTIONS(3385), + [anon_sym_PERCENT] = ACTIONS(3385), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1066] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(3383), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1067] = { + [sym__concat] = ACTIONS(1919), + [anon_sym_SEMI] = ACTIONS(1921), + [anon_sym_esac] = ACTIONS(1919), + [anon_sym_PIPE] = ACTIONS(1921), + [anon_sym_SEMI_SEMI] = ACTIONS(1919), + [anon_sym_PIPE_AMP] = ACTIONS(1919), + [anon_sym_AMP_AMP] = ACTIONS(1919), + [anon_sym_PIPE_PIPE] = ACTIONS(1919), + [anon_sym_EQ_TILDE] = ACTIONS(1919), + [anon_sym_EQ_EQ] = ACTIONS(1919), + [anon_sym_EQ] = ACTIONS(1921), + [anon_sym_PLUS_EQ] = ACTIONS(1919), + [anon_sym_LT] = ACTIONS(1921), + [anon_sym_GT] = ACTIONS(1921), + [anon_sym_BANG_EQ] = ACTIONS(1919), + [anon_sym_PLUS] = ACTIONS(1921), + [anon_sym_DASH] = ACTIONS(1921), + [anon_sym_DASH_EQ] = ACTIONS(1919), + [anon_sym_LT_EQ] = ACTIONS(1919), + [anon_sym_GT_EQ] = ACTIONS(1919), + [anon_sym_PLUS_PLUS] = ACTIONS(1919), + [anon_sym_DASH_DASH] = ACTIONS(1919), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(1919), + [anon_sym_LF] = ACTIONS(1919), + [anon_sym_AMP] = ACTIONS(1921), + }, + [1068] = { + [sym_concatenation] = STATE(1512), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1512), + [sym_regex] = ACTIONS(3389), + [anon_sym_RBRACE] = ACTIONS(3359), + [anon_sym_EQ] = ACTIONS(3375), + [anon_sym_DASH] = ACTIONS(3375), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(3377), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(3375), + [anon_sym_COLON_QMARK] = ACTIONS(3375), + [anon_sym_COLON_DASH] = ACTIONS(3375), + [anon_sym_PERCENT] = ACTIONS(3375), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1069] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(3359), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1070] = { + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(3391), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), + }, + [1071] = { + [sym__concat] = ACTIONS(1927), + [anon_sym_SEMI] = ACTIONS(1929), + [anon_sym_esac] = ACTIONS(1927), + [anon_sym_PIPE] = ACTIONS(1929), + [anon_sym_SEMI_SEMI] = ACTIONS(1927), + [anon_sym_PIPE_AMP] = ACTIONS(1927), + [anon_sym_AMP_AMP] = ACTIONS(1927), + [anon_sym_PIPE_PIPE] = ACTIONS(1927), + [anon_sym_EQ_TILDE] = ACTIONS(1927), + [anon_sym_EQ_EQ] = ACTIONS(1927), + [anon_sym_EQ] = ACTIONS(1929), + [anon_sym_PLUS_EQ] = ACTIONS(1927), + [anon_sym_LT] = ACTIONS(1929), + [anon_sym_GT] = ACTIONS(1929), + [anon_sym_BANG_EQ] = ACTIONS(1927), + [anon_sym_PLUS] = ACTIONS(1929), + [anon_sym_DASH] = ACTIONS(1929), + [anon_sym_DASH_EQ] = ACTIONS(1927), + [anon_sym_LT_EQ] = ACTIONS(1927), + [anon_sym_GT_EQ] = ACTIONS(1927), + [anon_sym_PLUS_PLUS] = ACTIONS(1927), + [anon_sym_DASH_DASH] = ACTIONS(1927), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(1927), + [anon_sym_LF] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1929), + }, + [1072] = { + [anon_sym_SEMI] = ACTIONS(3393), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(3391), + [anon_sym_SEMI_SEMI] = ACTIONS(3395), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(3395), + [anon_sym_AMP] = ACTIONS(3393), + }, + [1073] = { + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(3393), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(3391), + [anon_sym_SEMI_SEMI] = ACTIONS(3395), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(3395), + [anon_sym_AMP] = ACTIONS(3393), + }, + [1074] = { + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(3391), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), + }, + [1075] = { + [anon_sym_SEMI] = ACTIONS(3397), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_SEMI_SEMI] = ACTIONS(3399), + [anon_sym_PIPE_AMP] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_BQUOTE] = ACTIONS(3391), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(3399), + [anon_sym_AMP] = ACTIONS(3397), + }, + [1076] = { + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(3397), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_SEMI_SEMI] = ACTIONS(3399), + [anon_sym_PIPE_AMP] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(3391), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(3399), + [anon_sym_AMP] = ACTIONS(3397), + }, + [1077] = { + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(3401), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), + }, + [1078] = { + [sym__concat] = ACTIONS(1959), + [anon_sym_SEMI] = ACTIONS(1961), + [anon_sym_esac] = ACTIONS(1959), + [anon_sym_PIPE] = ACTIONS(1961), + [anon_sym_SEMI_SEMI] = ACTIONS(1959), + [anon_sym_PIPE_AMP] = ACTIONS(1959), + [anon_sym_AMP_AMP] = ACTIONS(1959), + [anon_sym_PIPE_PIPE] = ACTIONS(1959), + [anon_sym_EQ_TILDE] = ACTIONS(1959), + [anon_sym_EQ_EQ] = ACTIONS(1959), + [anon_sym_EQ] = ACTIONS(1961), + [anon_sym_PLUS_EQ] = ACTIONS(1959), + [anon_sym_LT] = ACTIONS(1961), + [anon_sym_GT] = ACTIONS(1961), + [anon_sym_BANG_EQ] = ACTIONS(1959), + [anon_sym_PLUS] = ACTIONS(1961), + [anon_sym_DASH] = ACTIONS(1961), + [anon_sym_DASH_EQ] = ACTIONS(1959), + [anon_sym_LT_EQ] = ACTIONS(1959), + [anon_sym_GT_EQ] = ACTIONS(1959), + [anon_sym_PLUS_PLUS] = ACTIONS(1959), + [anon_sym_DASH_DASH] = ACTIONS(1959), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(1959), + [anon_sym_LF] = ACTIONS(1959), + [anon_sym_AMP] = ACTIONS(1961), + }, + [1079] = { + [anon_sym_SEMI] = ACTIONS(3403), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(3401), + [anon_sym_SEMI_SEMI] = ACTIONS(3405), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(3405), + [anon_sym_AMP] = ACTIONS(3403), + }, + [1080] = { + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(3403), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(3401), + [anon_sym_SEMI_SEMI] = ACTIONS(3405), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(3405), + [anon_sym_AMP] = ACTIONS(3403), + }, + [1081] = { + [anon_sym_SEMI] = ACTIONS(3407), + [anon_sym_SEMI_SEMI] = ACTIONS(3409), + [anon_sym_AMP_AMP] = ACTIONS(1188), + [anon_sym_PIPE_PIPE] = ACTIONS(1188), + [anon_sym_EQ_TILDE] = ACTIONS(1190), + [anon_sym_EQ_EQ] = ACTIONS(1190), + [anon_sym_EQ] = ACTIONS(1192), + [anon_sym_PLUS_EQ] = ACTIONS(1188), + [anon_sym_LT] = ACTIONS(1192), + [anon_sym_GT] = ACTIONS(1192), + [anon_sym_BANG_EQ] = ACTIONS(1188), + [anon_sym_PLUS] = ACTIONS(1192), + [anon_sym_DASH] = ACTIONS(1192), + [anon_sym_DASH_EQ] = ACTIONS(1188), + [anon_sym_LT_EQ] = ACTIONS(1188), + [anon_sym_GT_EQ] = ACTIONS(1188), + [anon_sym_PLUS_PLUS] = ACTIONS(1194), + [anon_sym_DASH_DASH] = ACTIONS(1194), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(1188), + [anon_sym_LF] = ACTIONS(3409), + [anon_sym_AMP] = ACTIONS(3407), + }, + [1082] = { + [anon_sym_SEMI] = ACTIONS(2422), + [anon_sym_SEMI_SEMI] = ACTIONS(2420), + [anon_sym_AMP_AMP] = ACTIONS(2420), + [anon_sym_PIPE_PIPE] = ACTIONS(2420), + [anon_sym_EQ_TILDE] = ACTIONS(2420), + [anon_sym_EQ_EQ] = ACTIONS(2420), + [anon_sym_EQ] = ACTIONS(2422), + [anon_sym_PLUS_EQ] = ACTIONS(2420), + [anon_sym_LT] = ACTIONS(2422), + [anon_sym_GT] = ACTIONS(2422), + [anon_sym_BANG_EQ] = ACTIONS(2420), + [anon_sym_PLUS] = ACTIONS(2422), + [anon_sym_DASH] = ACTIONS(2422), + [anon_sym_DASH_EQ] = ACTIONS(2420), + [anon_sym_LT_EQ] = ACTIONS(2420), + [anon_sym_GT_EQ] = ACTIONS(2420), + [anon_sym_PLUS_PLUS] = ACTIONS(2420), + [anon_sym_DASH_DASH] = ACTIONS(2420), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(2420), + [anon_sym_LF] = ACTIONS(2420), + [anon_sym_AMP] = ACTIONS(2422), + }, + [1083] = { + [anon_sym_SEMI] = ACTIONS(2422), + [anon_sym_SEMI_SEMI] = ACTIONS(2420), + [anon_sym_AMP_AMP] = ACTIONS(2420), + [anon_sym_PIPE_PIPE] = ACTIONS(2420), + [anon_sym_EQ_TILDE] = ACTIONS(2420), + [anon_sym_EQ_EQ] = ACTIONS(2420), + [anon_sym_EQ] = ACTIONS(2422), + [anon_sym_PLUS_EQ] = ACTIONS(2420), + [anon_sym_LT] = ACTIONS(2422), + [anon_sym_GT] = ACTIONS(2422), + [anon_sym_BANG_EQ] = ACTIONS(2420), + [anon_sym_PLUS] = ACTIONS(2422), + [anon_sym_DASH] = ACTIONS(2422), + [anon_sym_DASH_EQ] = ACTIONS(2420), + [anon_sym_LT_EQ] = ACTIONS(2420), + [anon_sym_GT_EQ] = ACTIONS(2420), + [anon_sym_PLUS_PLUS] = ACTIONS(2420), + [anon_sym_DASH_DASH] = ACTIONS(2420), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(2420), + [anon_sym_LF] = ACTIONS(2420), + [anon_sym_AMP] = ACTIONS(2422), + }, + [1084] = { + [sym_string] = STATE(1523), + [sym_simple_expansion] = STATE(1523), + [sym_string_expansion] = STATE(1523), + [sym_expansion] = STATE(1523), + [sym_command_substitution] = STATE(1523), + [sym_process_substitution] = STATE(1523), + [sym__special_characters] = ACTIONS(3411), + [anon_sym_DQUOTE] = ACTIONS(1198), + [anon_sym_DOLLAR] = ACTIONS(1200), + [sym_raw_string] = ACTIONS(3411), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1204), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1206), + [anon_sym_BQUOTE] = ACTIONS(1208), + [anon_sym_LT_LPAREN] = ACTIONS(1210), + [anon_sym_GT_LPAREN] = ACTIONS(1210), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(3411), + }, + [1085] = { + [aux_sym_concatenation_repeat1] = STATE(1524), + [sym__concat] = ACTIONS(2245), [anon_sym_SEMI] = ACTIONS(809), [anon_sym_SEMI_SEMI] = ACTIONS(807), [sym__special_characters] = ACTIONS(807), @@ -36023,12 +38058,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(807), [anon_sym_LT_LPAREN] = ACTIONS(807), [anon_sym_GT_LPAREN] = ACTIONS(807), - [sym_comment] = ACTIONS(53), + [sym_comment] = ACTIONS(55), [sym_word] = ACTIONS(809), [anon_sym_LF] = ACTIONS(807), [anon_sym_AMP] = ACTIONS(807), }, - [1052] = { + [1086] = { [sym__concat] = ACTIONS(811), [anon_sym_SEMI] = ACTIONS(813), [anon_sym_SEMI_SEMI] = ACTIONS(811), @@ -36041,2755 +38076,1364 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(811), [anon_sym_LT_LPAREN] = ACTIONS(811), [anon_sym_GT_LPAREN] = ACTIONS(811), - [sym_comment] = ACTIONS(53), + [sym_comment] = ACTIONS(55), [sym_word] = ACTIONS(813), [anon_sym_LF] = ACTIONS(811), [anon_sym_AMP] = ACTIONS(811), }, - [1053] = { - [anon_sym_LBRACK] = ACTIONS(815), - [anon_sym_EQ] = ACTIONS(3352), - [sym_comment] = ACTIONS(53), - }, - [1054] = { - [sym_subscript] = STATE(1479), - [sym_variable_name] = ACTIONS(3354), - [anon_sym_DOLLAR] = ACTIONS(3356), - [anon_sym_DASH] = ACTIONS(3356), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3358), - [anon_sym_STAR] = ACTIONS(3360), - [anon_sym_AT] = ACTIONS(3360), - [anon_sym_QMARK] = ACTIONS(3360), - [anon_sym_0] = ACTIONS(3358), - [anon_sym__] = ACTIONS(3358), - }, - [1055] = { - [sym_concatenation] = STATE(1482), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(1482), - [anon_sym_RBRACE] = ACTIONS(3362), - [anon_sym_EQ] = ACTIONS(3364), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(3366), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(3368), - [anon_sym_COLON] = ACTIONS(3364), - [anon_sym_COLON_QMARK] = ACTIONS(3364), - [anon_sym_COLON_DASH] = ACTIONS(3364), - [anon_sym_PERCENT] = ACTIONS(3364), - [anon_sym_DASH] = ACTIONS(3364), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [1056] = { - [sym_concatenation] = STATE(1485), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(1485), - [anon_sym_RBRACE] = ACTIONS(3370), - [anon_sym_EQ] = ACTIONS(3372), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(3374), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(3376), - [anon_sym_COLON] = ACTIONS(3372), - [anon_sym_COLON_QMARK] = ACTIONS(3372), - [anon_sym_COLON_DASH] = ACTIONS(3372), - [anon_sym_PERCENT] = ACTIONS(3372), - [anon_sym_DASH] = ACTIONS(3372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [1057] = { - [anon_sym_SEMI] = ACTIONS(3378), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(3380), - [anon_sym_SEMI_SEMI] = ACTIONS(3382), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(3382), - [anon_sym_AMP] = ACTIONS(3378), - }, - [1058] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(3378), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(3380), - [anon_sym_SEMI_SEMI] = ACTIONS(3382), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(3382), - [anon_sym_AMP] = ACTIONS(3378), - }, - [1059] = { - [sym__terminated_statement] = STATE(190), - [sym_for_statement] = STATE(1488), - [sym_c_style_for_statement] = STATE(1488), - [sym_while_statement] = STATE(1488), - [sym_if_statement] = STATE(1488), - [sym_case_statement] = STATE(1488), - [sym_function_definition] = STATE(1488), - [sym_subshell] = STATE(1488), - [sym_pipeline] = STATE(1488), - [sym_list] = STATE(1488), - [sym_negated_command] = STATE(1488), - [sym_test_command] = STATE(1488), - [sym_declaration_command] = STATE(1488), - [sym_unset_command] = STATE(1488), - [sym_command] = STATE(1488), - [sym_command_name] = STATE(78), - [sym_variable_assignment] = STATE(1489), - [sym_subscript] = STATE(80), - [sym_file_redirect] = STATE(82), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(75), - [sym_simple_expansion] = STATE(75), - [sym_string_expansion] = STATE(75), - [sym_expansion] = STATE(75), - [sym_command_substitution] = STATE(75), - [sym_process_substitution] = STATE(75), - [aux_sym__statements_repeat1] = STATE(190), - [aux_sym_command_repeat1] = STATE(82), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(111), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(119), - [anon_sym_declare] = ACTIONS(121), - [anon_sym_typeset] = ACTIONS(121), - [anon_sym_export] = ACTIONS(121), - [anon_sym_readonly] = ACTIONS(121), - [anon_sym_local] = ACTIONS(121), - [anon_sym_unset] = ACTIONS(123), - [anon_sym_unsetenv] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), - }, - [1060] = { - [anon_sym_SEMI] = ACTIONS(3384), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_SEMI_SEMI] = ACTIONS(3386), - [anon_sym_PIPE_AMP] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(883), - [anon_sym_PIPE_PIPE] = ACTIONS(883), - [anon_sym_BQUOTE] = ACTIONS(3380), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(3386), - [anon_sym_AMP] = ACTIONS(3384), - }, - [1061] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(3384), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_SEMI_SEMI] = ACTIONS(3386), - [anon_sym_PIPE_AMP] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(883), - [anon_sym_PIPE_PIPE] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(3380), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(3386), - [anon_sym_AMP] = ACTIONS(3384), - }, - [1062] = { - [sym__terminated_statement] = STATE(190), - [sym_for_statement] = STATE(1491), - [sym_c_style_for_statement] = STATE(1491), - [sym_while_statement] = STATE(1491), - [sym_if_statement] = STATE(1491), - [sym_case_statement] = STATE(1491), - [sym_function_definition] = STATE(1491), - [sym_subshell] = STATE(1491), - [sym_pipeline] = STATE(1491), - [sym_list] = STATE(1491), - [sym_negated_command] = STATE(1491), - [sym_test_command] = STATE(1491), - [sym_declaration_command] = STATE(1491), - [sym_unset_command] = STATE(1491), - [sym_command] = STATE(1491), - [sym_command_name] = STATE(165), - [sym_variable_assignment] = STATE(1492), - [sym_subscript] = STATE(53), - [sym_file_redirect] = STATE(168), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(47), - [sym_simple_expansion] = STATE(47), - [sym_string_expansion] = STATE(47), - [sym_expansion] = STATE(47), - [sym_command_substitution] = STATE(47), - [sym_process_substitution] = STATE(47), - [aux_sym__statements_repeat1] = STATE(190), - [aux_sym_command_repeat1] = STATE(168), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(69), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(289), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(291), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(293), - [anon_sym_LBRACK] = ACTIONS(295), - [anon_sym_LBRACK_LBRACK] = ACTIONS(297), - [anon_sym_declare] = ACTIONS(299), - [anon_sym_typeset] = ACTIONS(299), - [anon_sym_export] = ACTIONS(299), - [anon_sym_readonly] = ACTIONS(299), - [anon_sym_local] = ACTIONS(299), - [anon_sym_unset] = ACTIONS(301), - [anon_sym_unsetenv] = ACTIONS(301), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(87), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(303), - }, - [1063] = { - [anon_sym_SEMI] = ACTIONS(3388), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(3390), - [anon_sym_SEMI_SEMI] = ACTIONS(3392), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(3392), - [anon_sym_AMP] = ACTIONS(3388), - }, - [1064] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(3388), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(3390), - [anon_sym_SEMI_SEMI] = ACTIONS(3392), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(3392), - [anon_sym_AMP] = ACTIONS(3388), - }, - [1065] = { - [sym__terminated_statement] = STATE(190), - [sym_for_statement] = STATE(1495), - [sym_c_style_for_statement] = STATE(1495), - [sym_while_statement] = STATE(1495), - [sym_if_statement] = STATE(1495), - [sym_case_statement] = STATE(1495), - [sym_function_definition] = STATE(1495), - [sym_subshell] = STATE(1495), - [sym_pipeline] = STATE(1495), - [sym_list] = STATE(1495), - [sym_negated_command] = STATE(1495), - [sym_test_command] = STATE(1495), - [sym_declaration_command] = STATE(1495), - [sym_unset_command] = STATE(1495), - [sym_command] = STATE(1495), - [sym_command_name] = STATE(78), - [sym_variable_assignment] = STATE(1496), - [sym_subscript] = STATE(80), - [sym_file_redirect] = STATE(82), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(75), - [sym_simple_expansion] = STATE(75), - [sym_string_expansion] = STATE(75), - [sym_expansion] = STATE(75), - [sym_command_substitution] = STATE(75), - [sym_process_substitution] = STATE(75), - [aux_sym__statements_repeat1] = STATE(190), - [aux_sym_command_repeat1] = STATE(82), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(111), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(119), - [anon_sym_declare] = ACTIONS(121), - [anon_sym_typeset] = ACTIONS(121), - [anon_sym_export] = ACTIONS(121), - [anon_sym_readonly] = ACTIONS(121), - [anon_sym_local] = ACTIONS(121), - [anon_sym_unset] = ACTIONS(123), - [anon_sym_unsetenv] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), - }, - [1066] = { - [sym_do_group] = STATE(1497), - [anon_sym_do] = ACTIONS(1175), - [sym_comment] = ACTIONS(53), - }, - [1067] = { - [sym_concatenation] = STATE(1067), - [sym_string] = STATE(592), - [sym_simple_expansion] = STATE(592), - [sym_string_expansion] = STATE(592), - [sym_expansion] = STATE(592), - [sym_command_substitution] = STATE(592), - [sym_process_substitution] = STATE(592), - [aux_sym_for_statement_repeat1] = STATE(1067), - [anon_sym_SEMI] = ACTIONS(3394), - [anon_sym_SEMI_SEMI] = ACTIONS(3182), - [sym__special_characters] = ACTIONS(3396), - [anon_sym_DQUOTE] = ACTIONS(3399), - [anon_sym_DOLLAR] = ACTIONS(3402), - [sym_raw_string] = ACTIONS(3405), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3408), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3411), - [anon_sym_BQUOTE] = ACTIONS(3414), - [anon_sym_LT_LPAREN] = ACTIONS(3417), - [anon_sym_GT_LPAREN] = ACTIONS(3417), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3420), - [anon_sym_LF] = ACTIONS(3182), - [anon_sym_AMP] = ACTIONS(3182), - }, - [1068] = { - [ts_builtin_sym_end] = ACTIONS(2323), - [anon_sym_SEMI] = ACTIONS(2325), - [anon_sym_esac] = ACTIONS(2323), - [anon_sym_PIPE] = ACTIONS(2325), - [anon_sym_RPAREN] = ACTIONS(2323), - [anon_sym_SEMI_SEMI] = ACTIONS(2323), - [anon_sym_PIPE_AMP] = ACTIONS(2323), - [anon_sym_AMP_AMP] = ACTIONS(2323), - [anon_sym_PIPE_PIPE] = ACTIONS(2323), - [anon_sym_BQUOTE] = ACTIONS(2323), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(2323), - [anon_sym_AMP] = ACTIONS(2325), - }, - [1069] = { - [sym__terminated_statement] = STATE(1085), - [sym_for_statement] = STATE(521), - [sym_c_style_for_statement] = STATE(521), - [sym_while_statement] = STATE(521), - [sym_if_statement] = STATE(521), - [sym_case_statement] = STATE(521), - [sym_function_definition] = STATE(521), - [sym_subshell] = STATE(521), - [sym_pipeline] = STATE(521), - [sym_list] = STATE(521), - [sym_negated_command] = STATE(521), - [sym_test_command] = STATE(521), - [sym_declaration_command] = STATE(521), - [sym_unset_command] = STATE(521), - [sym_command] = STATE(521), - [sym_command_name] = STATE(51), - [sym_variable_assignment] = STATE(522), - [sym_subscript] = STATE(53), - [sym_file_redirect] = STATE(54), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(47), - [sym_simple_expansion] = STATE(47), - [sym_string_expansion] = STATE(47), - [sym_expansion] = STATE(47), - [sym_command_substitution] = STATE(47), - [sym_process_substitution] = STATE(47), - [aux_sym__statements_repeat1] = STATE(1085), - [aux_sym_command_repeat1] = STATE(54), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(69), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(71), - [anon_sym_done] = ACTIONS(3423), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(73), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(75), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_LBRACK_LBRACK] = ACTIONS(79), - [anon_sym_declare] = ACTIONS(81), - [anon_sym_typeset] = ACTIONS(81), - [anon_sym_export] = ACTIONS(81), - [anon_sym_readonly] = ACTIONS(81), - [anon_sym_local] = ACTIONS(81), - [anon_sym_unset] = ACTIONS(83), - [anon_sym_unsetenv] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(87), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(89), - }, - [1070] = { - [aux_sym_concatenation_repeat1] = STATE(1499), - [sym_file_descriptor] = ACTIONS(765), - [sym__concat] = ACTIONS(1095), - [sym_variable_name] = ACTIONS(765), - [anon_sym_SEMI] = ACTIONS(767), - [anon_sym_PIPE] = ACTIONS(767), - [anon_sym_SEMI_SEMI] = ACTIONS(765), - [anon_sym_PIPE_AMP] = ACTIONS(765), - [anon_sym_AMP_AMP] = ACTIONS(765), - [anon_sym_PIPE_PIPE] = ACTIONS(765), - [anon_sym_LT] = ACTIONS(767), - [anon_sym_GT] = ACTIONS(767), - [anon_sym_GT_GT] = ACTIONS(765), - [anon_sym_AMP_GT] = ACTIONS(767), - [anon_sym_AMP_GT_GT] = ACTIONS(765), - [anon_sym_LT_AMP] = ACTIONS(765), - [anon_sym_GT_AMP] = ACTIONS(765), - [sym__special_characters] = ACTIONS(765), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_DOLLAR] = ACTIONS(767), - [sym_raw_string] = ACTIONS(765), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(765), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(765), - [anon_sym_BQUOTE] = ACTIONS(765), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(767), - [anon_sym_LF] = ACTIONS(765), - [anon_sym_AMP] = ACTIONS(767), - }, - [1071] = { - [sym_file_redirect] = STATE(626), - [sym_heredoc_redirect] = STATE(626), - [sym_heredoc_body] = STATE(1086), - [sym_herestring_redirect] = STATE(626), - [aux_sym_while_statement_repeat1] = STATE(626), - [sym__simple_heredoc_body] = ACTIONS(321), - [sym__heredoc_body_beginning] = ACTIONS(323), - [sym_file_descriptor] = ACTIONS(453), - [anon_sym_SEMI] = ACTIONS(2331), - [anon_sym_PIPE] = ACTIONS(2331), - [anon_sym_SEMI_SEMI] = ACTIONS(2329), - [anon_sym_PIPE_AMP] = ACTIONS(2329), - [anon_sym_AMP_AMP] = ACTIONS(2329), - [anon_sym_PIPE_PIPE] = ACTIONS(2329), - [anon_sym_LT] = ACTIONS(457), - [anon_sym_GT] = ACTIONS(457), - [anon_sym_GT_GT] = ACTIONS(459), - [anon_sym_AMP_GT] = ACTIONS(457), - [anon_sym_AMP_GT_GT] = ACTIONS(459), - [anon_sym_LT_AMP] = ACTIONS(459), - [anon_sym_GT_AMP] = ACTIONS(459), - [anon_sym_LT_LT] = ACTIONS(337), - [anon_sym_LT_LT_DASH] = ACTIONS(339), - [anon_sym_LT_LT_LT] = ACTIONS(461), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(2329), - [anon_sym_AMP] = ACTIONS(2331), - }, - [1072] = { - [sym_compound_statement] = STATE(1500), - [anon_sym_LBRACE] = ACTIONS(511), - [sym_comment] = ACTIONS(53), - }, - [1073] = { - [anon_sym_LT] = ACTIONS(3425), - [anon_sym_GT] = ACTIONS(3425), - [anon_sym_GT_GT] = ACTIONS(3427), - [anon_sym_AMP_GT] = ACTIONS(3425), - [anon_sym_AMP_GT_GT] = ACTIONS(3427), - [anon_sym_LT_AMP] = ACTIONS(3427), - [anon_sym_GT_AMP] = ACTIONS(3427), - [sym_comment] = ACTIONS(53), - }, - [1074] = { - [sym_concatenation] = STATE(1135), - [sym_string] = STATE(1503), - [sym_simple_expansion] = STATE(1503), - [sym_string_expansion] = STATE(1503), - [sym_expansion] = STATE(1503), - [sym_command_substitution] = STATE(1503), - [sym_process_substitution] = STATE(1503), - [sym__special_characters] = ACTIONS(3429), - [anon_sym_DQUOTE] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(215), - [sym_raw_string] = ACTIONS(3431), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(219), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(221), - [anon_sym_BQUOTE] = ACTIONS(223), - [anon_sym_LT_LPAREN] = ACTIONS(225), - [anon_sym_GT_LPAREN] = ACTIONS(225), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3431), - }, - [1075] = { - [anon_sym_LT] = ACTIONS(3433), - [anon_sym_GT] = ACTIONS(3433), - [anon_sym_GT_GT] = ACTIONS(3435), - [anon_sym_AMP_GT] = ACTIONS(3433), - [anon_sym_AMP_GT_GT] = ACTIONS(3435), - [anon_sym_LT_AMP] = ACTIONS(3435), - [anon_sym_GT_AMP] = ACTIONS(3435), - [sym_comment] = ACTIONS(53), - }, - [1076] = { - [sym_concatenation] = STATE(1186), - [sym_string] = STATE(1506), - [sym_simple_expansion] = STATE(1506), - [sym_string_expansion] = STATE(1506), - [sym_expansion] = STATE(1506), - [sym_command_substitution] = STATE(1506), - [sym_process_substitution] = STATE(1506), - [sym__special_characters] = ACTIONS(3437), - [anon_sym_DQUOTE] = ACTIONS(2612), - [anon_sym_DOLLAR] = ACTIONS(2614), - [sym_raw_string] = ACTIONS(3439), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2618), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2620), - [anon_sym_BQUOTE] = ACTIONS(2622), - [anon_sym_LT_LPAREN] = ACTIONS(2624), - [anon_sym_GT_LPAREN] = ACTIONS(2624), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3439), - }, - [1077] = { - [sym_concatenation] = STATE(1190), - [sym_string] = STATE(1508), - [sym_simple_expansion] = STATE(1508), - [sym_string_expansion] = STATE(1508), - [sym_expansion] = STATE(1508), - [sym_command_substitution] = STATE(1508), - [sym_process_substitution] = STATE(1508), - [sym__special_characters] = ACTIONS(3441), - [anon_sym_DQUOTE] = ACTIONS(2612), - [anon_sym_DOLLAR] = ACTIONS(2614), - [sym_raw_string] = ACTIONS(3443), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2618), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2620), - [anon_sym_BQUOTE] = ACTIONS(2622), - [anon_sym_LT_LPAREN] = ACTIONS(2624), - [anon_sym_GT_LPAREN] = ACTIONS(2624), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3443), - }, - [1078] = { - [sym_file_redirect] = STATE(1509), - [sym_heredoc_redirect] = STATE(1509), - [sym_herestring_redirect] = STATE(1509), - [aux_sym_while_statement_repeat1] = STATE(1509), - [sym_file_descriptor] = ACTIONS(2284), - [anon_sym_SEMI] = ACTIONS(2634), - [anon_sym_PIPE] = ACTIONS(2634), - [anon_sym_SEMI_SEMI] = ACTIONS(2632), - [anon_sym_PIPE_AMP] = ACTIONS(2632), - [anon_sym_AMP_AMP] = ACTIONS(2632), - [anon_sym_PIPE_PIPE] = ACTIONS(2632), - [anon_sym_LT] = ACTIONS(2286), - [anon_sym_GT] = ACTIONS(2286), - [anon_sym_GT_GT] = ACTIONS(2288), - [anon_sym_AMP_GT] = ACTIONS(2286), - [anon_sym_AMP_GT_GT] = ACTIONS(2288), - [anon_sym_LT_AMP] = ACTIONS(2288), - [anon_sym_GT_AMP] = ACTIONS(2288), - [anon_sym_LT_LT] = ACTIONS(1413), - [anon_sym_LT_LT_DASH] = ACTIONS(1415), - [anon_sym_LT_LT_LT] = ACTIONS(2290), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(2632), - [anon_sym_AMP] = ACTIONS(2634), - }, - [1079] = { - [aux_sym_concatenation_repeat1] = STATE(607), - [sym__concat] = ACTIONS(655), - [sym_variable_name] = ACTIONS(1093), - [anon_sym_SEMI] = ACTIONS(1097), - [anon_sym_PIPE] = ACTIONS(1097), - [anon_sym_SEMI_SEMI] = ACTIONS(1093), - [anon_sym_PIPE_AMP] = ACTIONS(1093), - [anon_sym_AMP_AMP] = ACTIONS(1093), - [anon_sym_PIPE_PIPE] = ACTIONS(1093), - [sym__special_characters] = ACTIONS(1093), - [anon_sym_DQUOTE] = ACTIONS(1093), - [anon_sym_DOLLAR] = ACTIONS(1097), - [sym_raw_string] = ACTIONS(1093), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1093), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1093), - [anon_sym_BQUOTE] = ACTIONS(1093), - [anon_sym_LT_LPAREN] = ACTIONS(1093), - [anon_sym_GT_LPAREN] = ACTIONS(1093), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1097), - [sym_word] = ACTIONS(1097), - [anon_sym_LF] = ACTIONS(1093), - [anon_sym_AMP] = ACTIONS(1097), - }, - [1080] = { - [aux_sym_concatenation_repeat1] = STATE(607), - [sym__concat] = ACTIONS(655), - [sym_variable_name] = ACTIONS(1071), - [anon_sym_SEMI] = ACTIONS(1073), - [anon_sym_PIPE] = ACTIONS(1073), - [anon_sym_SEMI_SEMI] = ACTIONS(1071), - [anon_sym_PIPE_AMP] = ACTIONS(1071), - [anon_sym_AMP_AMP] = ACTIONS(1071), - [anon_sym_PIPE_PIPE] = ACTIONS(1071), - [sym__special_characters] = ACTIONS(1071), - [anon_sym_DQUOTE] = ACTIONS(1071), - [anon_sym_DOLLAR] = ACTIONS(1073), - [sym_raw_string] = ACTIONS(1071), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1071), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1071), - [anon_sym_BQUOTE] = ACTIONS(1071), - [anon_sym_LT_LPAREN] = ACTIONS(1071), - [anon_sym_GT_LPAREN] = ACTIONS(1071), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1073), - [sym_word] = ACTIONS(1073), - [anon_sym_LF] = ACTIONS(1071), - [anon_sym_AMP] = ACTIONS(1073), - }, - [1081] = { - [aux_sym_concatenation_repeat1] = STATE(1081), - [sym__concat] = ACTIONS(2687), - [sym_variable_name] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(1726), - [anon_sym_SEMI_SEMI] = ACTIONS(1724), - [anon_sym_PIPE_AMP] = ACTIONS(1724), - [anon_sym_AMP_AMP] = ACTIONS(1724), - [anon_sym_PIPE_PIPE] = ACTIONS(1724), - [sym__special_characters] = ACTIONS(1724), - [anon_sym_DQUOTE] = ACTIONS(1724), - [anon_sym_DOLLAR] = ACTIONS(1726), - [sym_raw_string] = ACTIONS(1724), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1724), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1724), - [anon_sym_BQUOTE] = ACTIONS(1724), - [anon_sym_LT_LPAREN] = ACTIONS(1724), - [anon_sym_GT_LPAREN] = ACTIONS(1724), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1726), - [sym_word] = ACTIONS(1726), - [anon_sym_LF] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1726), - }, - [1082] = { - [aux_sym_concatenation_repeat1] = STATE(1082), - [sym__concat] = ACTIONS(2736), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(1726), - [anon_sym_SEMI_SEMI] = ACTIONS(1724), - [anon_sym_PIPE_AMP] = ACTIONS(1724), - [anon_sym_AMP_AMP] = ACTIONS(1724), - [anon_sym_PIPE_PIPE] = ACTIONS(1724), - [sym__special_characters] = ACTIONS(1724), - [anon_sym_DQUOTE] = ACTIONS(1724), - [anon_sym_DOLLAR] = ACTIONS(1726), - [sym_raw_string] = ACTIONS(1724), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1724), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1724), - [anon_sym_BQUOTE] = ACTIONS(1724), - [anon_sym_LT_LPAREN] = ACTIONS(1724), - [anon_sym_GT_LPAREN] = ACTIONS(1724), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1726), - [sym_word] = ACTIONS(1726), - [anon_sym_LF] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1726), - }, - [1083] = { - [sym_file_redirect] = STATE(1363), - [sym_file_descriptor] = ACTIONS(2278), - [anon_sym_SEMI] = ACTIONS(2462), - [anon_sym_PIPE] = ACTIONS(2462), - [anon_sym_SEMI_SEMI] = ACTIONS(2460), - [anon_sym_PIPE_AMP] = ACTIONS(2460), - [anon_sym_AMP_AMP] = ACTIONS(2460), - [anon_sym_PIPE_PIPE] = ACTIONS(2460), - [anon_sym_LT] = ACTIONS(2280), - [anon_sym_GT] = ACTIONS(2280), - [anon_sym_GT_GT] = ACTIONS(2282), - [anon_sym_AMP_GT] = ACTIONS(2280), - [anon_sym_AMP_GT_GT] = ACTIONS(2282), - [anon_sym_LT_AMP] = ACTIONS(2282), - [anon_sym_GT_AMP] = ACTIONS(2282), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(2460), - [anon_sym_AMP] = ACTIONS(2462), - }, - [1084] = { - [sym__simple_heredoc_body] = ACTIONS(3445), - [sym__heredoc_body_beginning] = ACTIONS(3445), - [sym_file_descriptor] = ACTIONS(3445), - [ts_builtin_sym_end] = ACTIONS(3445), - [anon_sym_SEMI] = ACTIONS(3447), - [anon_sym_esac] = ACTIONS(3445), - [anon_sym_PIPE] = ACTIONS(3447), - [anon_sym_RPAREN] = ACTIONS(3445), - [anon_sym_SEMI_SEMI] = ACTIONS(3445), - [anon_sym_PIPE_AMP] = ACTIONS(3445), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_GT] = ACTIONS(3447), - [anon_sym_GT_GT] = ACTIONS(3445), - [anon_sym_AMP_GT] = ACTIONS(3447), - [anon_sym_AMP_GT_GT] = ACTIONS(3445), - [anon_sym_LT_AMP] = ACTIONS(3445), - [anon_sym_GT_AMP] = ACTIONS(3445), - [anon_sym_LT_LT] = ACTIONS(3447), - [anon_sym_LT_LT_DASH] = ACTIONS(3445), - [anon_sym_LT_LT_LT] = ACTIONS(3445), - [anon_sym_BQUOTE] = ACTIONS(3445), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(3445), - [anon_sym_AMP] = ACTIONS(3447), - }, - [1085] = { - [sym__terminated_statement] = STATE(1085), - [sym_for_statement] = STATE(521), - [sym_c_style_for_statement] = STATE(521), - [sym_while_statement] = STATE(521), - [sym_if_statement] = STATE(521), - [sym_case_statement] = STATE(521), - [sym_function_definition] = STATE(521), - [sym_subshell] = STATE(521), - [sym_pipeline] = STATE(521), - [sym_list] = STATE(521), - [sym_negated_command] = STATE(521), - [sym_test_command] = STATE(521), - [sym_declaration_command] = STATE(521), - [sym_unset_command] = STATE(521), - [sym_command] = STATE(521), - [sym_command_name] = STATE(51), - [sym_variable_assignment] = STATE(522), - [sym_subscript] = STATE(53), - [sym_file_redirect] = STATE(54), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(47), - [sym_simple_expansion] = STATE(47), - [sym_string_expansion] = STATE(47), - [sym_expansion] = STATE(47), - [sym_command_substitution] = STATE(47), - [sym_process_substitution] = STATE(47), - [aux_sym__statements_repeat1] = STATE(1085), - [aux_sym_command_repeat1] = STATE(54), - [sym_file_descriptor] = ACTIONS(965), - [sym_variable_name] = ACTIONS(968), - [anon_sym_for] = ACTIONS(971), - [anon_sym_while] = ACTIONS(974), - [anon_sym_done] = ACTIONS(3449), - [anon_sym_if] = ACTIONS(977), - [anon_sym_case] = ACTIONS(980), - [anon_sym_function] = ACTIONS(983), - [anon_sym_LPAREN] = ACTIONS(986), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_LBRACK] = ACTIONS(992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(995), - [anon_sym_declare] = ACTIONS(998), - [anon_sym_typeset] = ACTIONS(998), - [anon_sym_export] = ACTIONS(998), - [anon_sym_readonly] = ACTIONS(998), - [anon_sym_local] = ACTIONS(998), - [anon_sym_unset] = ACTIONS(1001), - [anon_sym_unsetenv] = ACTIONS(1001), - [anon_sym_LT] = ACTIONS(1004), - [anon_sym_GT] = ACTIONS(1004), - [anon_sym_GT_GT] = ACTIONS(1007), - [anon_sym_AMP_GT] = ACTIONS(1004), - [anon_sym_AMP_GT_GT] = ACTIONS(1007), - [anon_sym_LT_AMP] = ACTIONS(1007), - [anon_sym_GT_AMP] = ACTIONS(1007), - [sym__special_characters] = ACTIONS(1010), - [anon_sym_DQUOTE] = ACTIONS(1013), - [anon_sym_DOLLAR] = ACTIONS(1016), - [sym_raw_string] = ACTIONS(1019), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1022), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1025), - [anon_sym_BQUOTE] = ACTIONS(1028), - [anon_sym_LT_LPAREN] = ACTIONS(1031), - [anon_sym_GT_LPAREN] = ACTIONS(1031), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1034), - }, - [1086] = { - [ts_builtin_sym_end] = ACTIONS(3451), - [anon_sym_SEMI] = ACTIONS(3453), - [anon_sym_esac] = ACTIONS(3451), - [anon_sym_PIPE] = ACTIONS(3453), - [anon_sym_RPAREN] = ACTIONS(3451), - [anon_sym_SEMI_SEMI] = ACTIONS(3451), - [anon_sym_PIPE_AMP] = ACTIONS(3451), - [anon_sym_AMP_AMP] = ACTIONS(3451), - [anon_sym_PIPE_PIPE] = ACTIONS(3451), - [anon_sym_BQUOTE] = ACTIONS(3451), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(3451), - [anon_sym_AMP] = ACTIONS(3453), - }, [1087] = { - [aux_sym_concatenation_repeat1] = STATE(1089), - [sym__simple_heredoc_body] = ACTIONS(1053), - [sym__heredoc_body_beginning] = ACTIONS(1053), - [sym_file_descriptor] = ACTIONS(1053), - [sym__concat] = ACTIONS(249), - [anon_sym_SEMI] = ACTIONS(1055), - [anon_sym_PIPE] = ACTIONS(1055), - [anon_sym_SEMI_SEMI] = ACTIONS(1053), - [anon_sym_PIPE_AMP] = ACTIONS(1053), - [anon_sym_AMP_AMP] = ACTIONS(1053), - [anon_sym_PIPE_PIPE] = ACTIONS(1053), - [anon_sym_LT] = ACTIONS(1055), - [anon_sym_GT] = ACTIONS(1055), - [anon_sym_GT_GT] = ACTIONS(1053), - [anon_sym_AMP_GT] = ACTIONS(1055), - [anon_sym_AMP_GT_GT] = ACTIONS(1053), - [anon_sym_LT_AMP] = ACTIONS(1053), - [anon_sym_GT_AMP] = ACTIONS(1053), - [anon_sym_LT_LT] = ACTIONS(1055), - [anon_sym_LT_LT_DASH] = ACTIONS(1053), - [anon_sym_LT_LT_LT] = ACTIONS(1053), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1053), - [anon_sym_AMP] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_DQUOTE] = ACTIONS(3413), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym__string_content] = ACTIONS(821), + [anon_sym_POUND] = ACTIONS(815), + [sym_comment] = ACTIONS(281), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(823), + [anon_sym_STAR] = ACTIONS(825), + [anon_sym_AT] = ACTIONS(825), + [anon_sym_QMARK] = ACTIONS(825), + [anon_sym_0] = ACTIONS(823), + [anon_sym__] = ACTIONS(823), }, [1088] = { - [aux_sym_concatenation_repeat1] = STATE(1089), - [sym__simple_heredoc_body] = ACTIONS(1057), - [sym__heredoc_body_beginning] = ACTIONS(1057), - [sym_file_descriptor] = ACTIONS(1057), - [sym__concat] = ACTIONS(249), - [anon_sym_SEMI] = ACTIONS(1059), - [anon_sym_PIPE] = ACTIONS(1059), - [anon_sym_SEMI_SEMI] = ACTIONS(1057), - [anon_sym_PIPE_AMP] = ACTIONS(1057), - [anon_sym_AMP_AMP] = ACTIONS(1057), - [anon_sym_PIPE_PIPE] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_GT_GT] = ACTIONS(1057), - [anon_sym_AMP_GT] = ACTIONS(1059), - [anon_sym_AMP_GT_GT] = ACTIONS(1057), - [anon_sym_LT_AMP] = ACTIONS(1057), - [anon_sym_GT_AMP] = ACTIONS(1057), - [anon_sym_LT_LT] = ACTIONS(1059), - [anon_sym_LT_LT_DASH] = ACTIONS(1057), - [anon_sym_LT_LT_LT] = ACTIONS(1057), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), + [sym_simple_expansion] = STATE(148), + [sym_expansion] = STATE(148), + [sym_command_substitution] = STATE(148), + [aux_sym_string_repeat1] = STATE(473), + [anon_sym_DQUOTE] = ACTIONS(3413), + [anon_sym_DOLLAR] = ACTIONS(3415), + [sym__string_content] = ACTIONS(273), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(277), + [anon_sym_BQUOTE] = ACTIONS(279), + [sym_comment] = ACTIONS(281), }, [1089] = { - [aux_sym_concatenation_repeat1] = STATE(1510), - [sym__simple_heredoc_body] = ACTIONS(765), - [sym__heredoc_body_beginning] = ACTIONS(765), - [sym_file_descriptor] = ACTIONS(765), - [sym__concat] = ACTIONS(249), - [anon_sym_SEMI] = ACTIONS(767), - [anon_sym_PIPE] = ACTIONS(767), - [anon_sym_SEMI_SEMI] = ACTIONS(765), - [anon_sym_PIPE_AMP] = ACTIONS(765), - [anon_sym_AMP_AMP] = ACTIONS(765), - [anon_sym_PIPE_PIPE] = ACTIONS(765), - [anon_sym_LT] = ACTIONS(767), - [anon_sym_GT] = ACTIONS(767), - [anon_sym_GT_GT] = ACTIONS(765), - [anon_sym_AMP_GT] = ACTIONS(767), - [anon_sym_AMP_GT_GT] = ACTIONS(765), - [anon_sym_LT_AMP] = ACTIONS(765), - [anon_sym_GT_AMP] = ACTIONS(765), - [anon_sym_LT_LT] = ACTIONS(767), - [anon_sym_LT_LT_DASH] = ACTIONS(765), - [anon_sym_LT_LT_LT] = ACTIONS(765), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(765), - [anon_sym_AMP] = ACTIONS(767), + [sym__concat] = ACTIONS(845), + [anon_sym_SEMI] = ACTIONS(847), + [anon_sym_SEMI_SEMI] = ACTIONS(845), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(845), + [anon_sym_DOLLAR] = ACTIONS(847), + [sym_raw_string] = ACTIONS(845), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(845), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), + [anon_sym_BQUOTE] = ACTIONS(845), + [anon_sym_LT_LPAREN] = ACTIONS(845), + [anon_sym_GT_LPAREN] = ACTIONS(845), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(847), + [anon_sym_LF] = ACTIONS(845), + [anon_sym_AMP] = ACTIONS(845), }, [1090] = { - [sym_file_redirect] = STATE(626), - [sym_heredoc_redirect] = STATE(626), - [sym_heredoc_body] = STATE(1375), - [sym_herestring_redirect] = STATE(626), - [aux_sym_while_statement_repeat1] = STATE(626), - [sym__simple_heredoc_body] = ACTIONS(321), - [sym__heredoc_body_beginning] = ACTIONS(323), - [sym_file_descriptor] = ACTIONS(453), - [anon_sym_SEMI] = ACTIONS(3120), - [anon_sym_PIPE] = ACTIONS(3120), - [anon_sym_SEMI_SEMI] = ACTIONS(3118), - [anon_sym_PIPE_AMP] = ACTIONS(3118), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_PIPE_PIPE] = ACTIONS(3118), - [anon_sym_LT] = ACTIONS(457), - [anon_sym_GT] = ACTIONS(457), - [anon_sym_GT_GT] = ACTIONS(459), - [anon_sym_AMP_GT] = ACTIONS(457), - [anon_sym_AMP_GT_GT] = ACTIONS(459), - [anon_sym_LT_AMP] = ACTIONS(459), - [anon_sym_GT_AMP] = ACTIONS(459), - [anon_sym_LT_LT] = ACTIONS(337), - [anon_sym_LT_LT_DASH] = ACTIONS(339), - [anon_sym_LT_LT_LT] = ACTIONS(461), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(3118), - [anon_sym_AMP] = ACTIONS(3120), + [sym__concat] = ACTIONS(849), + [anon_sym_SEMI] = ACTIONS(851), + [anon_sym_SEMI_SEMI] = ACTIONS(849), + [sym__special_characters] = ACTIONS(849), + [anon_sym_DQUOTE] = ACTIONS(849), + [anon_sym_DOLLAR] = ACTIONS(851), + [sym_raw_string] = ACTIONS(849), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(849), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(849), + [anon_sym_BQUOTE] = ACTIONS(849), + [anon_sym_LT_LPAREN] = ACTIONS(849), + [anon_sym_GT_LPAREN] = ACTIONS(849), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(851), + [anon_sym_LF] = ACTIONS(849), + [anon_sym_AMP] = ACTIONS(849), }, [1091] = { - [anon_sym_then] = ACTIONS(3455), - [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(853), + [anon_sym_SEMI] = ACTIONS(855), + [anon_sym_SEMI_SEMI] = ACTIONS(853), + [sym__special_characters] = ACTIONS(853), + [anon_sym_DQUOTE] = ACTIONS(853), + [anon_sym_DOLLAR] = ACTIONS(855), + [sym_raw_string] = ACTIONS(853), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(853), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(853), + [anon_sym_BQUOTE] = ACTIONS(853), + [anon_sym_LT_LPAREN] = ACTIONS(853), + [anon_sym_GT_LPAREN] = ACTIONS(853), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(855), + [anon_sym_LF] = ACTIONS(853), + [anon_sym_AMP] = ACTIONS(853), }, [1092] = { - [sym__terminated_statement] = STATE(1512), - [sym_for_statement] = STATE(521), - [sym_c_style_for_statement] = STATE(521), - [sym_while_statement] = STATE(521), - [sym_if_statement] = STATE(521), - [sym_case_statement] = STATE(521), - [sym_function_definition] = STATE(521), - [sym_subshell] = STATE(521), - [sym_pipeline] = STATE(521), - [sym_list] = STATE(521), - [sym_negated_command] = STATE(521), - [sym_test_command] = STATE(521), - [sym_declaration_command] = STATE(521), - [sym_unset_command] = STATE(521), - [sym_command] = STATE(521), - [sym_command_name] = STATE(51), - [sym_variable_assignment] = STATE(522), - [sym_subscript] = STATE(53), - [sym_file_redirect] = STATE(54), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(47), - [sym_simple_expansion] = STATE(47), - [sym_string_expansion] = STATE(47), - [sym_expansion] = STATE(47), - [sym_command_substitution] = STATE(47), - [sym_process_substitution] = STATE(47), - [aux_sym__statements_repeat1] = STATE(1512), - [aux_sym_command_repeat1] = STATE(54), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(69), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(71), - [anon_sym_if] = ACTIONS(15), - [anon_sym_fi] = ACTIONS(3457), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(73), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(75), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_LBRACK_LBRACK] = ACTIONS(79), - [anon_sym_declare] = ACTIONS(81), - [anon_sym_typeset] = ACTIONS(81), - [anon_sym_export] = ACTIONS(81), - [anon_sym_readonly] = ACTIONS(81), - [anon_sym_local] = ACTIONS(81), - [anon_sym_unset] = ACTIONS(83), - [anon_sym_unsetenv] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(87), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(857), + [anon_sym_EQ] = ACTIONS(3417), + [sym_comment] = ACTIONS(55), }, [1093] = { - [ts_builtin_sym_end] = ACTIONS(3459), - [anon_sym_SEMI] = ACTIONS(3461), - [anon_sym_esac] = ACTIONS(3459), - [anon_sym_PIPE] = ACTIONS(3461), - [anon_sym_RPAREN] = ACTIONS(3459), - [anon_sym_SEMI_SEMI] = ACTIONS(3459), - [anon_sym_PIPE_AMP] = ACTIONS(3459), - [anon_sym_AMP_AMP] = ACTIONS(3459), - [anon_sym_PIPE_PIPE] = ACTIONS(3459), - [anon_sym_BQUOTE] = ACTIONS(3459), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(3459), - [anon_sym_AMP] = ACTIONS(3461), + [sym_subscript] = STATE(1530), + [sym_variable_name] = ACTIONS(3419), + [anon_sym_DASH] = ACTIONS(3421), + [anon_sym_DOLLAR] = ACTIONS(3421), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3423), + [anon_sym_STAR] = ACTIONS(3425), + [anon_sym_AT] = ACTIONS(3425), + [anon_sym_QMARK] = ACTIONS(3425), + [anon_sym_0] = ACTIONS(3423), + [anon_sym__] = ACTIONS(3423), }, [1094] = { - [anon_sym_fi] = ACTIONS(3463), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(1533), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1533), + [anon_sym_RBRACE] = ACTIONS(3427), + [anon_sym_EQ] = ACTIONS(3429), + [anon_sym_DASH] = ACTIONS(3429), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(3431), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(3433), + [anon_sym_COLON] = ACTIONS(3429), + [anon_sym_COLON_QMARK] = ACTIONS(3429), + [anon_sym_COLON_DASH] = ACTIONS(3429), + [anon_sym_PERCENT] = ACTIONS(3429), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1095] = { - [sym__terminated_statement] = STATE(1095), - [sym_for_statement] = STATE(521), - [sym_c_style_for_statement] = STATE(521), - [sym_while_statement] = STATE(521), - [sym_if_statement] = STATE(521), - [sym_case_statement] = STATE(521), - [sym_function_definition] = STATE(521), - [sym_subshell] = STATE(521), - [sym_pipeline] = STATE(521), - [sym_list] = STATE(521), - [sym_negated_command] = STATE(521), - [sym_test_command] = STATE(521), - [sym_declaration_command] = STATE(521), - [sym_unset_command] = STATE(521), - [sym_command] = STATE(521), - [sym_command_name] = STATE(51), - [sym_variable_assignment] = STATE(522), - [sym_subscript] = STATE(53), - [sym_file_redirect] = STATE(54), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(47), - [sym_simple_expansion] = STATE(47), - [sym_string_expansion] = STATE(47), - [sym_expansion] = STATE(47), - [sym_command_substitution] = STATE(47), - [sym_process_substitution] = STATE(47), - [aux_sym__statements_repeat1] = STATE(1095), - [aux_sym_command_repeat1] = STATE(54), - [sym_file_descriptor] = ACTIONS(965), - [sym_variable_name] = ACTIONS(968), - [anon_sym_for] = ACTIONS(971), - [anon_sym_while] = ACTIONS(974), - [anon_sym_if] = ACTIONS(977), - [anon_sym_fi] = ACTIONS(3449), - [anon_sym_elif] = ACTIONS(3449), - [anon_sym_else] = ACTIONS(3449), - [anon_sym_case] = ACTIONS(980), - [anon_sym_function] = ACTIONS(983), - [anon_sym_LPAREN] = ACTIONS(986), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_LBRACK] = ACTIONS(992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(995), - [anon_sym_declare] = ACTIONS(998), - [anon_sym_typeset] = ACTIONS(998), - [anon_sym_export] = ACTIONS(998), - [anon_sym_readonly] = ACTIONS(998), - [anon_sym_local] = ACTIONS(998), - [anon_sym_unset] = ACTIONS(1001), - [anon_sym_unsetenv] = ACTIONS(1001), - [anon_sym_LT] = ACTIONS(1004), - [anon_sym_GT] = ACTIONS(1004), - [anon_sym_GT_GT] = ACTIONS(1007), - [anon_sym_AMP_GT] = ACTIONS(1004), - [anon_sym_AMP_GT_GT] = ACTIONS(1007), - [anon_sym_LT_AMP] = ACTIONS(1007), - [anon_sym_GT_AMP] = ACTIONS(1007), - [sym__special_characters] = ACTIONS(1010), - [anon_sym_DQUOTE] = ACTIONS(1013), - [anon_sym_DOLLAR] = ACTIONS(1016), - [sym_raw_string] = ACTIONS(1019), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1022), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1025), - [anon_sym_BQUOTE] = ACTIONS(1028), - [anon_sym_LT_LPAREN] = ACTIONS(1031), - [anon_sym_GT_LPAREN] = ACTIONS(1031), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1034), + [sym_concatenation] = STATE(1536), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1536), + [anon_sym_RBRACE] = ACTIONS(3435), + [anon_sym_EQ] = ACTIONS(3437), + [anon_sym_DASH] = ACTIONS(3437), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(3439), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(3441), + [anon_sym_COLON] = ACTIONS(3437), + [anon_sym_COLON_QMARK] = ACTIONS(3437), + [anon_sym_COLON_DASH] = ACTIONS(3437), + [anon_sym_PERCENT] = ACTIONS(3437), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1096] = { - [sym_elif_clause] = STATE(1097), - [sym_else_clause] = STATE(1514), - [aux_sym_if_statement_repeat1] = STATE(1097), - [anon_sym_fi] = ACTIONS(3463), - [anon_sym_elif] = ACTIONS(2371), - [anon_sym_else] = ACTIONS(2373), - [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(3443), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(3445), + [anon_sym_SEMI_SEMI] = ACTIONS(3447), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(3447), + [anon_sym_AMP] = ACTIONS(3443), }, [1097] = { - [sym_elif_clause] = STATE(1097), - [aux_sym_if_statement_repeat1] = STATE(1097), - [anon_sym_fi] = ACTIONS(3465), - [anon_sym_elif] = ACTIONS(3467), - [anon_sym_else] = ACTIONS(3465), - [sym_comment] = ACTIONS(53), + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(3443), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(3445), + [anon_sym_SEMI_SEMI] = ACTIONS(3447), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(3447), + [anon_sym_AMP] = ACTIONS(3443), }, [1098] = { - [ts_builtin_sym_end] = ACTIONS(3470), - [anon_sym_SEMI] = ACTIONS(3472), - [anon_sym_esac] = ACTIONS(3470), - [anon_sym_PIPE] = ACTIONS(3472), - [anon_sym_RPAREN] = ACTIONS(3470), - [anon_sym_SEMI_SEMI] = ACTIONS(3470), - [anon_sym_PIPE_AMP] = ACTIONS(3470), - [anon_sym_AMP_AMP] = ACTIONS(3470), - [anon_sym_PIPE_PIPE] = ACTIONS(3470), - [anon_sym_BQUOTE] = ACTIONS(3470), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(3470), - [anon_sym_AMP] = ACTIONS(3472), + [sym__terminated_statement] = STATE(198), + [sym_for_statement] = STATE(1539), + [sym_c_style_for_statement] = STATE(1539), + [sym_while_statement] = STATE(1539), + [sym_if_statement] = STATE(1539), + [sym_case_statement] = STATE(1539), + [sym_function_definition] = STATE(1539), + [sym_subshell] = STATE(1539), + [sym_pipeline] = STATE(1539), + [sym_list] = STATE(1539), + [sym_negated_command] = STATE(1539), + [sym_test_command] = STATE(1539), + [sym_declaration_command] = STATE(1539), + [sym_unset_command] = STATE(1539), + [sym_command] = STATE(1539), + [sym_command_name] = STATE(92), + [sym_variable_assignment] = STATE(1540), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(96), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), + [aux_sym__statements_repeat1] = STATE(198), + [aux_sym_command_repeat1] = STATE(96), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(137), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(149), + [anon_sym_declare] = ACTIONS(151), + [anon_sym_typeset] = ACTIONS(151), + [anon_sym_export] = ACTIONS(151), + [anon_sym_readonly] = ACTIONS(151), + [anon_sym_local] = ACTIONS(151), + [anon_sym_unset] = ACTIONS(153), + [anon_sym_unsetenv] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(159), }, [1099] = { - [aux_sym_case_item_repeat1] = STATE(1517), - [aux_sym_concatenation_repeat1] = STATE(1518), - [sym__concat] = ACTIONS(623), - [anon_sym_PIPE] = ACTIONS(3474), - [anon_sym_RPAREN] = ACTIONS(3476), - [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(3449), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_SEMI_SEMI] = ACTIONS(3451), + [anon_sym_PIPE_AMP] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_BQUOTE] = ACTIONS(3445), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(3451), + [anon_sym_AMP] = ACTIONS(3449), }, [1100] = { - [aux_sym_case_item_repeat1] = STATE(1520), - [aux_sym_concatenation_repeat1] = STATE(1518), - [sym__concat] = ACTIONS(623), - [anon_sym_PIPE] = ACTIONS(3474), - [anon_sym_RPAREN] = ACTIONS(3478), - [sym_comment] = ACTIONS(53), + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(3449), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_SEMI_SEMI] = ACTIONS(3451), + [anon_sym_PIPE_AMP] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(3445), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(3451), + [anon_sym_AMP] = ACTIONS(3449), }, [1101] = { - [anon_sym_esac] = ACTIONS(3480), - [sym_comment] = ACTIONS(53), + [sym__terminated_statement] = STATE(198), + [sym_for_statement] = STATE(1542), + [sym_c_style_for_statement] = STATE(1542), + [sym_while_statement] = STATE(1542), + [sym_if_statement] = STATE(1542), + [sym_case_statement] = STATE(1542), + [sym_function_definition] = STATE(1542), + [sym_subshell] = STATE(1542), + [sym_pipeline] = STATE(1542), + [sym_list] = STATE(1542), + [sym_negated_command] = STATE(1542), + [sym_test_command] = STATE(1542), + [sym_declaration_command] = STATE(1542), + [sym_unset_command] = STATE(1542), + [sym_command] = STATE(1542), + [sym_command_name] = STATE(173), + [sym_variable_assignment] = STATE(1543), + [sym_subscript] = STATE(66), + [sym_file_redirect] = STATE(176), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(60), + [sym_simple_expansion] = STATE(60), + [sym_string_expansion] = STATE(60), + [sym_expansion] = STATE(60), + [sym_command_substitution] = STATE(60), + [sym_process_substitution] = STATE(60), + [aux_sym__statements_repeat1] = STATE(198), + [aux_sym_command_repeat1] = STATE(176), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(95), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(305), + [anon_sym_while] = ACTIONS(307), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(311), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(315), + [anon_sym_declare] = ACTIONS(317), + [anon_sym_typeset] = ACTIONS(317), + [anon_sym_export] = ACTIONS(317), + [anon_sym_readonly] = ACTIONS(317), + [anon_sym_local] = ACTIONS(317), + [anon_sym_unset] = ACTIONS(319), + [anon_sym_unsetenv] = ACTIONS(319), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(115), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(321), }, [1102] = { - [aux_sym_case_item_repeat1] = STATE(1520), - [anon_sym_PIPE] = ACTIONS(3474), - [anon_sym_RPAREN] = ACTIONS(3478), - [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(3453), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(3455), + [anon_sym_SEMI_SEMI] = ACTIONS(3457), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(3457), + [anon_sym_AMP] = ACTIONS(3453), }, [1103] = { - [sym_case_item] = STATE(1523), - [sym_last_case_item] = STATE(1522), - [sym_concatenation] = STATE(1102), - [sym_string] = STATE(1100), - [sym_simple_expansion] = STATE(1100), - [sym_string_expansion] = STATE(1100), - [sym_expansion] = STATE(1100), - [sym_command_substitution] = STATE(1100), - [sym_process_substitution] = STATE(1100), - [aux_sym_case_statement_repeat1] = STATE(1523), - [sym__special_characters] = ACTIONS(2377), - [anon_sym_DQUOTE] = ACTIONS(163), - [anon_sym_DOLLAR] = ACTIONS(165), - [sym_raw_string] = ACTIONS(2379), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(169), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(171), - [anon_sym_BQUOTE] = ACTIONS(173), - [anon_sym_LT_LPAREN] = ACTIONS(175), - [anon_sym_GT_LPAREN] = ACTIONS(175), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2379), + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(3453), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(3455), + [anon_sym_SEMI_SEMI] = ACTIONS(3457), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(3457), + [anon_sym_AMP] = ACTIONS(3453), }, [1104] = { - [sym_case_item] = STATE(1524), - [sym_last_case_item] = STATE(1522), - [sym_concatenation] = STATE(1102), - [sym_string] = STATE(1100), - [sym_simple_expansion] = STATE(1100), - [sym_string_expansion] = STATE(1100), - [sym_expansion] = STATE(1100), - [sym_command_substitution] = STATE(1100), - [sym_process_substitution] = STATE(1100), - [aux_sym_case_statement_repeat1] = STATE(1524), - [anon_sym_esac] = ACTIONS(3482), - [sym__special_characters] = ACTIONS(2377), - [anon_sym_DQUOTE] = ACTIONS(163), - [anon_sym_DOLLAR] = ACTIONS(165), - [sym_raw_string] = ACTIONS(2379), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(169), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(171), - [anon_sym_BQUOTE] = ACTIONS(173), - [anon_sym_LT_LPAREN] = ACTIONS(175), - [anon_sym_GT_LPAREN] = ACTIONS(175), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2381), + [sym__terminated_statement] = STATE(198), + [sym_for_statement] = STATE(1546), + [sym_c_style_for_statement] = STATE(1546), + [sym_while_statement] = STATE(1546), + [sym_if_statement] = STATE(1546), + [sym_case_statement] = STATE(1546), + [sym_function_definition] = STATE(1546), + [sym_subshell] = STATE(1546), + [sym_pipeline] = STATE(1546), + [sym_list] = STATE(1546), + [sym_negated_command] = STATE(1546), + [sym_test_command] = STATE(1546), + [sym_declaration_command] = STATE(1546), + [sym_unset_command] = STATE(1546), + [sym_command] = STATE(1546), + [sym_command_name] = STATE(92), + [sym_variable_assignment] = STATE(1547), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(96), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), + [aux_sym__statements_repeat1] = STATE(198), + [aux_sym_command_repeat1] = STATE(96), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(137), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(149), + [anon_sym_declare] = ACTIONS(151), + [anon_sym_typeset] = ACTIONS(151), + [anon_sym_export] = ACTIONS(151), + [anon_sym_readonly] = ACTIONS(151), + [anon_sym_local] = ACTIONS(151), + [anon_sym_unset] = ACTIONS(153), + [anon_sym_unsetenv] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(159), }, [1105] = { - [sym__concat] = ACTIONS(2876), - [anon_sym_in] = ACTIONS(2876), - [anon_sym_SEMI] = ACTIONS(2878), - [anon_sym_SEMI_SEMI] = ACTIONS(2876), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(2876), - [anon_sym_AMP] = ACTIONS(2876), + [sym_do_group] = STATE(1548), + [anon_sym_do] = ACTIONS(1212), + [sym_comment] = ACTIONS(55), }, [1106] = { - [ts_builtin_sym_end] = ACTIONS(3484), - [anon_sym_SEMI] = ACTIONS(3486), - [anon_sym_esac] = ACTIONS(3484), - [anon_sym_PIPE] = ACTIONS(3486), - [anon_sym_RPAREN] = ACTIONS(3484), - [anon_sym_SEMI_SEMI] = ACTIONS(3484), - [anon_sym_PIPE_AMP] = ACTIONS(3484), - [anon_sym_AMP_AMP] = ACTIONS(3484), - [anon_sym_PIPE_PIPE] = ACTIONS(3484), - [anon_sym_BQUOTE] = ACTIONS(3484), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(3484), - [anon_sym_AMP] = ACTIONS(3486), + [sym_concatenation] = STATE(1106), + [sym_string] = STATE(617), + [sym_simple_expansion] = STATE(617), + [sym_string_expansion] = STATE(617), + [sym_expansion] = STATE(617), + [sym_command_substitution] = STATE(617), + [sym_process_substitution] = STATE(617), + [aux_sym_for_statement_repeat1] = STATE(1106), + [anon_sym_SEMI] = ACTIONS(3459), + [anon_sym_SEMI_SEMI] = ACTIONS(3269), + [sym__special_characters] = ACTIONS(3461), + [anon_sym_DQUOTE] = ACTIONS(3464), + [anon_sym_DOLLAR] = ACTIONS(3467), + [sym_raw_string] = ACTIONS(3470), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3473), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3476), + [anon_sym_BQUOTE] = ACTIONS(3479), + [anon_sym_LT_LPAREN] = ACTIONS(3482), + [anon_sym_GT_LPAREN] = ACTIONS(3482), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(3485), + [anon_sym_LF] = ACTIONS(3269), + [anon_sym_AMP] = ACTIONS(3269), }, [1107] = { - [anon_sym_esac] = ACTIONS(3488), - [sym_comment] = ACTIONS(53), + [ts_builtin_sym_end] = ACTIONS(2471), + [anon_sym_SEMI] = ACTIONS(2473), + [anon_sym_esac] = ACTIONS(2471), + [anon_sym_PIPE] = ACTIONS(2473), + [anon_sym_RPAREN] = ACTIONS(2471), + [anon_sym_SEMI_SEMI] = ACTIONS(2471), + [anon_sym_PIPE_AMP] = ACTIONS(2471), + [anon_sym_AMP_AMP] = ACTIONS(2471), + [anon_sym_PIPE_PIPE] = ACTIONS(2471), + [anon_sym_BQUOTE] = ACTIONS(2471), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2471), + [anon_sym_AMP] = ACTIONS(2473), }, [1108] = { - [sym_case_item] = STATE(1523), - [sym_last_case_item] = STATE(1526), - [sym_concatenation] = STATE(1102), - [sym_string] = STATE(1100), - [sym_simple_expansion] = STATE(1100), - [sym_string_expansion] = STATE(1100), - [sym_expansion] = STATE(1100), - [sym_command_substitution] = STATE(1100), - [sym_process_substitution] = STATE(1100), - [aux_sym_case_statement_repeat1] = STATE(1523), - [sym__special_characters] = ACTIONS(2377), - [anon_sym_DQUOTE] = ACTIONS(163), - [anon_sym_DOLLAR] = ACTIONS(165), - [sym_raw_string] = ACTIONS(2379), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(169), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(171), - [anon_sym_BQUOTE] = ACTIONS(173), - [anon_sym_LT_LPAREN] = ACTIONS(175), - [anon_sym_GT_LPAREN] = ACTIONS(175), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2379), + [sym__terminated_statement] = STATE(1187), + [sym_for_statement] = STATE(545), + [sym_c_style_for_statement] = STATE(545), + [sym_while_statement] = STATE(545), + [sym_if_statement] = STATE(545), + [sym_case_statement] = STATE(545), + [sym_function_definition] = STATE(545), + [sym_subshell] = STATE(545), + [sym_pipeline] = STATE(545), + [sym_list] = STATE(545), + [sym_negated_command] = STATE(545), + [sym_test_command] = STATE(545), + [sym_declaration_command] = STATE(545), + [sym_unset_command] = STATE(545), + [sym_command] = STATE(545), + [sym_command_name] = STATE(64), + [sym_variable_assignment] = STATE(546), + [sym_subscript] = STATE(66), + [sym_file_redirect] = STATE(67), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(60), + [sym_simple_expansion] = STATE(60), + [sym_string_expansion] = STATE(60), + [sym_expansion] = STATE(60), + [sym_command_substitution] = STATE(60), + [sym_process_substitution] = STATE(60), + [aux_sym__statements_repeat1] = STATE(1187), + [aux_sym_command_repeat1] = STATE(67), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(95), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(97), + [anon_sym_while] = ACTIONS(99), + [anon_sym_done] = ACTIONS(3488), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(101), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_LBRACK] = ACTIONS(107), + [anon_sym_declare] = ACTIONS(109), + [anon_sym_typeset] = ACTIONS(109), + [anon_sym_export] = ACTIONS(109), + [anon_sym_readonly] = ACTIONS(109), + [anon_sym_local] = ACTIONS(109), + [anon_sym_unset] = ACTIONS(111), + [anon_sym_unsetenv] = ACTIONS(111), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(115), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(117), }, [1109] = { - [sym_case_item] = STATE(1527), - [sym_last_case_item] = STATE(1526), - [sym_concatenation] = STATE(1102), - [sym_string] = STATE(1100), - [sym_simple_expansion] = STATE(1100), - [sym_string_expansion] = STATE(1100), - [sym_expansion] = STATE(1100), - [sym_command_substitution] = STATE(1100), - [sym_process_substitution] = STATE(1100), - [aux_sym_case_statement_repeat1] = STATE(1527), - [anon_sym_esac] = ACTIONS(3490), - [sym__special_characters] = ACTIONS(2377), - [anon_sym_DQUOTE] = ACTIONS(163), - [anon_sym_DOLLAR] = ACTIONS(165), - [sym_raw_string] = ACTIONS(2379), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(169), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(171), - [anon_sym_BQUOTE] = ACTIONS(173), - [anon_sym_LT_LPAREN] = ACTIONS(175), - [anon_sym_GT_LPAREN] = ACTIONS(175), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2381), + [anon_sym_RPAREN] = ACTIONS(2331), + [anon_sym_AMP_AMP] = ACTIONS(2331), + [anon_sym_PIPE_PIPE] = ACTIONS(2331), + [anon_sym_EQ_TILDE] = ACTIONS(2331), + [anon_sym_EQ_EQ] = ACTIONS(2331), + [anon_sym_EQ] = ACTIONS(2333), + [anon_sym_PLUS_EQ] = ACTIONS(2331), + [anon_sym_LT] = ACTIONS(2333), + [anon_sym_GT] = ACTIONS(2333), + [anon_sym_BANG_EQ] = ACTIONS(2331), + [anon_sym_PLUS] = ACTIONS(2333), + [anon_sym_DASH] = ACTIONS(2333), + [anon_sym_DASH_EQ] = ACTIONS(2331), + [anon_sym_LT_EQ] = ACTIONS(2331), + [anon_sym_GT_EQ] = ACTIONS(2331), + [anon_sym_PLUS_PLUS] = ACTIONS(2331), + [anon_sym_DASH_DASH] = ACTIONS(2331), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(2331), }, [1110] = { - [sym__concat] = ACTIONS(2890), - [anon_sym_in] = ACTIONS(2890), - [anon_sym_SEMI] = ACTIONS(2892), - [anon_sym_SEMI_SEMI] = ACTIONS(2890), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(2890), - [anon_sym_AMP] = ACTIONS(2890), + [sym__concat] = ACTIONS(1763), + [anon_sym_PIPE] = ACTIONS(1765), + [anon_sym_RPAREN] = ACTIONS(1763), + [anon_sym_AMP_AMP] = ACTIONS(1763), + [anon_sym_PIPE_PIPE] = ACTIONS(1763), + [anon_sym_EQ_TILDE] = ACTIONS(1763), + [anon_sym_EQ_EQ] = ACTIONS(1763), + [anon_sym_EQ] = ACTIONS(1765), + [anon_sym_PLUS_EQ] = ACTIONS(1763), + [anon_sym_LT] = ACTIONS(1765), + [anon_sym_GT] = ACTIONS(1765), + [anon_sym_BANG_EQ] = ACTIONS(1763), + [anon_sym_PLUS] = ACTIONS(1765), + [anon_sym_DASH] = ACTIONS(1765), + [anon_sym_DASH_EQ] = ACTIONS(1763), + [anon_sym_LT_EQ] = ACTIONS(1763), + [anon_sym_GT_EQ] = ACTIONS(1763), + [anon_sym_PLUS_PLUS] = ACTIONS(1763), + [anon_sym_DASH_DASH] = ACTIONS(1763), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(1763), }, [1111] = { - [aux_sym_concatenation_repeat1] = STATE(1293), - [sym__concat] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(3492), - [sym_comment] = ACTIONS(53), + [aux_sym_concatenation_repeat1] = STATE(1111), + [sym__concat] = ACTIONS(3490), + [anon_sym_RPAREN] = ACTIONS(1763), + [anon_sym_AMP_AMP] = ACTIONS(1763), + [anon_sym_PIPE_PIPE] = ACTIONS(1763), + [anon_sym_EQ_TILDE] = ACTIONS(1763), + [anon_sym_EQ_EQ] = ACTIONS(1763), + [anon_sym_EQ] = ACTIONS(1765), + [anon_sym_PLUS_EQ] = ACTIONS(1763), + [anon_sym_LT] = ACTIONS(1765), + [anon_sym_GT] = ACTIONS(1765), + [anon_sym_BANG_EQ] = ACTIONS(1763), + [anon_sym_PLUS] = ACTIONS(1765), + [anon_sym_DASH] = ACTIONS(1765), + [anon_sym_DASH_EQ] = ACTIONS(1763), + [anon_sym_LT_EQ] = ACTIONS(1763), + [anon_sym_GT_EQ] = ACTIONS(1763), + [anon_sym_PLUS_PLUS] = ACTIONS(1763), + [anon_sym_DASH_DASH] = ACTIONS(1763), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(1763), }, [1112] = { - [aux_sym_concatenation_repeat1] = STATE(1293), - [sym__concat] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(3494), - [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(1770), + [anon_sym_PIPE] = ACTIONS(1772), + [anon_sym_RPAREN] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_EQ_TILDE] = ACTIONS(1770), + [anon_sym_EQ_EQ] = ACTIONS(1770), + [anon_sym_EQ] = ACTIONS(1772), + [anon_sym_PLUS_EQ] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1772), + [anon_sym_GT] = ACTIONS(1772), + [anon_sym_BANG_EQ] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1772), + [anon_sym_DASH] = ACTIONS(1772), + [anon_sym_DASH_EQ] = ACTIONS(1770), + [anon_sym_LT_EQ] = ACTIONS(1770), + [anon_sym_GT_EQ] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(1770), }, [1113] = { - [anon_sym_RBRACE] = ACTIONS(3494), - [sym_comment] = ACTIONS(53), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_DQUOTE] = ACTIONS(3493), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym__string_content] = ACTIONS(821), + [anon_sym_POUND] = ACTIONS(815), + [sym_comment] = ACTIONS(281), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(823), + [anon_sym_STAR] = ACTIONS(825), + [anon_sym_AT] = ACTIONS(825), + [anon_sym_QMARK] = ACTIONS(825), + [anon_sym_0] = ACTIONS(823), + [anon_sym__] = ACTIONS(823), }, [1114] = { - [sym_concatenation] = STATE(1532), - [sym_string] = STATE(1531), - [sym_simple_expansion] = STATE(1531), - [sym_string_expansion] = STATE(1531), - [sym_expansion] = STATE(1531), - [sym_command_substitution] = STATE(1531), - [sym_process_substitution] = STATE(1531), - [anon_sym_RBRACE] = ACTIONS(3494), - [sym__special_characters] = ACTIONS(3496), - [anon_sym_DQUOTE] = ACTIONS(1802), - [anon_sym_DOLLAR] = ACTIONS(1804), - [sym_raw_string] = ACTIONS(3498), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1808), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1810), - [anon_sym_BQUOTE] = ACTIONS(1812), - [anon_sym_LT_LPAREN] = ACTIONS(1814), - [anon_sym_GT_LPAREN] = ACTIONS(1814), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3498), - }, - [1115] = { - [sym__concat] = ACTIONS(2926), - [anon_sym_in] = ACTIONS(2926), - [anon_sym_SEMI] = ACTIONS(2928), - [anon_sym_SEMI_SEMI] = ACTIONS(2926), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(2926), - [anon_sym_AMP] = ACTIONS(2926), - }, - [1116] = { - [sym_comment] = ACTIONS(265), - [sym_regex_without_right_brace] = ACTIONS(3500), - }, - [1117] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(3502), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [1118] = { - [sym_comment] = ACTIONS(265), - [sym_regex_without_right_brace] = ACTIONS(3504), - }, - [1119] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(3494), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [1120] = { - [sym_concatenation] = STATE(1537), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(1537), - [anon_sym_RBRACE] = ACTIONS(3506), - [anon_sym_EQ] = ACTIONS(3508), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(3510), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(3508), - [anon_sym_COLON_QMARK] = ACTIONS(3508), - [anon_sym_COLON_DASH] = ACTIONS(3508), - [anon_sym_PERCENT] = ACTIONS(3508), - [anon_sym_DASH] = ACTIONS(3508), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [1121] = { - [sym__concat] = ACTIONS(2990), - [anon_sym_in] = ACTIONS(2990), - [anon_sym_SEMI] = ACTIONS(2992), - [anon_sym_SEMI_SEMI] = ACTIONS(2990), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(2990), - [anon_sym_AMP] = ACTIONS(2990), - }, - [1122] = { - [sym_concatenation] = STATE(1538), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(1538), - [anon_sym_RBRACE] = ACTIONS(3494), - [anon_sym_EQ] = ACTIONS(3512), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(3514), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(3512), - [anon_sym_COLON_QMARK] = ACTIONS(3512), - [anon_sym_COLON_DASH] = ACTIONS(3512), - [anon_sym_PERCENT] = ACTIONS(3512), - [anon_sym_DASH] = ACTIONS(3512), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [1123] = { - [sym__concat] = ACTIONS(3033), - [anon_sym_in] = ACTIONS(3033), - [anon_sym_SEMI] = ACTIONS(3035), - [anon_sym_SEMI_SEMI] = ACTIONS(3033), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(3033), - [anon_sym_AMP] = ACTIONS(3033), - }, - [1124] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(3516), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(901), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), - }, - [1125] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(3516), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), - }, - [1126] = { - [sym__concat] = ACTIONS(3071), - [anon_sym_in] = ACTIONS(3071), - [anon_sym_SEMI] = ACTIONS(3073), - [anon_sym_SEMI_SEMI] = ACTIONS(3071), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(3071), - [anon_sym_AMP] = ACTIONS(3071), - }, - [1127] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(3518), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(901), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), - }, - [1128] = { - [sym_file_redirect] = STATE(1541), - [sym_file_descriptor] = ACTIONS(1285), - [ts_builtin_sym_end] = ACTIONS(3520), - [anon_sym_SEMI] = ACTIONS(3522), - [anon_sym_PIPE] = ACTIONS(3522), - [anon_sym_SEMI_SEMI] = ACTIONS(3520), - [anon_sym_PIPE_AMP] = ACTIONS(3520), - [anon_sym_AMP_AMP] = ACTIONS(3520), - [anon_sym_PIPE_PIPE] = ACTIONS(3520), - [anon_sym_LT] = ACTIONS(1291), - [anon_sym_GT] = ACTIONS(1291), - [anon_sym_GT_GT] = ACTIONS(1293), - [anon_sym_AMP_GT] = ACTIONS(1291), - [anon_sym_AMP_GT_GT] = ACTIONS(1293), - [anon_sym_LT_AMP] = ACTIONS(1293), - [anon_sym_GT_AMP] = ACTIONS(1293), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(3520), - [anon_sym_AMP] = ACTIONS(3522), - }, - [1129] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_RBRACE] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(901), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), - }, - [1130] = { - [sym_file_descriptor] = ACTIONS(3524), - [ts_builtin_sym_end] = ACTIONS(3524), - [anon_sym_SEMI] = ACTIONS(3526), - [anon_sym_esac] = ACTIONS(3524), - [anon_sym_PIPE] = ACTIONS(3526), - [anon_sym_RPAREN] = ACTIONS(3524), - [anon_sym_SEMI_SEMI] = ACTIONS(3524), - [anon_sym_PIPE_AMP] = ACTIONS(3524), - [anon_sym_AMP_AMP] = ACTIONS(3524), - [anon_sym_PIPE_PIPE] = ACTIONS(3524), - [anon_sym_LT] = ACTIONS(3526), - [anon_sym_GT] = ACTIONS(3526), - [anon_sym_GT_GT] = ACTIONS(3524), - [anon_sym_AMP_GT] = ACTIONS(3526), - [anon_sym_AMP_GT_GT] = ACTIONS(3524), - [anon_sym_LT_AMP] = ACTIONS(3524), - [anon_sym_GT_AMP] = ACTIONS(3524), - [anon_sym_BQUOTE] = ACTIONS(3524), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(3524), - [anon_sym_AMP] = ACTIONS(3526), - }, - [1131] = { - [sym__terminated_statement] = STATE(1131), - [sym_for_statement] = STATE(667), - [sym_c_style_for_statement] = STATE(667), - [sym_while_statement] = STATE(667), - [sym_if_statement] = STATE(667), - [sym_case_statement] = STATE(667), - [sym_function_definition] = STATE(667), - [sym_subshell] = STATE(667), - [sym_pipeline] = STATE(667), - [sym_list] = STATE(667), - [sym_negated_command] = STATE(667), - [sym_test_command] = STATE(667), - [sym_declaration_command] = STATE(667), - [sym_unset_command] = STATE(667), - [sym_command] = STATE(667), - [sym_command_name] = STATE(51), - [sym_variable_assignment] = STATE(668), - [sym_subscript] = STATE(53), - [sym_file_redirect] = STATE(54), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(47), - [sym_simple_expansion] = STATE(47), - [sym_string_expansion] = STATE(47), - [sym_expansion] = STATE(47), - [sym_command_substitution] = STATE(47), - [sym_process_substitution] = STATE(47), - [aux_sym__statements_repeat1] = STATE(1131), - [aux_sym_command_repeat1] = STATE(54), - [sym_file_descriptor] = ACTIONS(965), - [sym_variable_name] = ACTIONS(968), - [anon_sym_for] = ACTIONS(971), - [anon_sym_while] = ACTIONS(974), - [anon_sym_if] = ACTIONS(977), - [anon_sym_case] = ACTIONS(980), - [anon_sym_function] = ACTIONS(983), - [anon_sym_LPAREN] = ACTIONS(986), - [anon_sym_RBRACE] = ACTIONS(3528), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_LBRACK] = ACTIONS(992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(995), - [anon_sym_declare] = ACTIONS(998), - [anon_sym_typeset] = ACTIONS(998), - [anon_sym_export] = ACTIONS(998), - [anon_sym_readonly] = ACTIONS(998), - [anon_sym_local] = ACTIONS(998), - [anon_sym_unset] = ACTIONS(1001), - [anon_sym_unsetenv] = ACTIONS(1001), - [anon_sym_LT] = ACTIONS(1004), - [anon_sym_GT] = ACTIONS(1004), - [anon_sym_GT_GT] = ACTIONS(1007), - [anon_sym_AMP_GT] = ACTIONS(1004), - [anon_sym_AMP_GT_GT] = ACTIONS(1007), - [anon_sym_LT_AMP] = ACTIONS(1007), - [anon_sym_GT_AMP] = ACTIONS(1007), - [sym__special_characters] = ACTIONS(1010), - [anon_sym_DQUOTE] = ACTIONS(1013), - [anon_sym_DOLLAR] = ACTIONS(1016), - [sym_raw_string] = ACTIONS(1019), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1022), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1025), - [anon_sym_BQUOTE] = ACTIONS(1028), - [anon_sym_LT_LPAREN] = ACTIONS(1031), - [anon_sym_GT_LPAREN] = ACTIONS(1031), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1034), - }, - [1132] = { - [sym_concatenation] = STATE(1544), - [sym_string] = STATE(1543), - [sym_simple_expansion] = STATE(1543), - [sym_string_expansion] = STATE(1543), - [sym_expansion] = STATE(1543), - [sym_command_substitution] = STATE(1543), - [sym_process_substitution] = STATE(1543), - [sym__special_characters] = ACTIONS(3530), - [anon_sym_DQUOTE] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(215), - [sym_raw_string] = ACTIONS(3532), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(219), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(221), - [anon_sym_BQUOTE] = ACTIONS(223), - [anon_sym_LT_LPAREN] = ACTIONS(225), - [anon_sym_GT_LPAREN] = ACTIONS(225), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3532), - }, - [1133] = { - [aux_sym_concatenation_repeat1] = STATE(1545), - [sym__concat] = ACTIONS(693), - [ts_builtin_sym_end] = ACTIONS(731), - [anon_sym_SEMI] = ACTIONS(735), - [anon_sym_PIPE] = ACTIONS(735), - [anon_sym_SEMI_SEMI] = ACTIONS(731), - [anon_sym_PIPE_AMP] = ACTIONS(731), - [anon_sym_AMP_AMP] = ACTIONS(731), - [anon_sym_PIPE_PIPE] = ACTIONS(731), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(731), - [anon_sym_AMP] = ACTIONS(735), - }, - [1134] = { - [aux_sym_concatenation_repeat1] = STATE(1545), - [sym__concat] = ACTIONS(693), - [ts_builtin_sym_end] = ACTIONS(749), - [anon_sym_SEMI] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(751), - [anon_sym_SEMI_SEMI] = ACTIONS(749), - [anon_sym_PIPE_AMP] = ACTIONS(749), - [anon_sym_AMP_AMP] = ACTIONS(749), - [anon_sym_PIPE_PIPE] = ACTIONS(749), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(749), - [anon_sym_AMP] = ACTIONS(751), - }, - [1135] = { - [ts_builtin_sym_end] = ACTIONS(749), - [anon_sym_SEMI] = ACTIONS(751), - [anon_sym_esac] = ACTIONS(749), - [anon_sym_PIPE] = ACTIONS(751), - [anon_sym_RPAREN] = ACTIONS(749), - [anon_sym_SEMI_SEMI] = ACTIONS(749), - [anon_sym_PIPE_AMP] = ACTIONS(749), - [anon_sym_AMP_AMP] = ACTIONS(749), - [anon_sym_PIPE_PIPE] = ACTIONS(749), - [anon_sym_BQUOTE] = ACTIONS(749), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(749), - [anon_sym_AMP] = ACTIONS(751), - }, - [1136] = { - [aux_sym_concatenation_repeat1] = STATE(1546), - [sym_file_descriptor] = ACTIONS(765), - [sym__concat] = ACTIONS(1095), - [sym_variable_name] = ACTIONS(765), - [anon_sym_SEMI] = ACTIONS(767), - [anon_sym_PIPE] = ACTIONS(767), - [anon_sym_RPAREN] = ACTIONS(765), - [anon_sym_SEMI_SEMI] = ACTIONS(765), - [anon_sym_PIPE_AMP] = ACTIONS(765), - [anon_sym_AMP_AMP] = ACTIONS(765), - [anon_sym_PIPE_PIPE] = ACTIONS(765), - [anon_sym_LT] = ACTIONS(767), - [anon_sym_GT] = ACTIONS(767), - [anon_sym_GT_GT] = ACTIONS(765), - [anon_sym_AMP_GT] = ACTIONS(767), - [anon_sym_AMP_GT_GT] = ACTIONS(765), - [anon_sym_LT_AMP] = ACTIONS(765), - [anon_sym_GT_AMP] = ACTIONS(765), - [sym__special_characters] = ACTIONS(765), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_DOLLAR] = ACTIONS(767), - [sym_raw_string] = ACTIONS(765), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(765), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(765), - [anon_sym_BQUOTE] = ACTIONS(765), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(767), - [anon_sym_LF] = ACTIONS(765), - [anon_sym_AMP] = ACTIONS(767), - }, - [1137] = { - [sym_file_redirect] = STATE(696), - [sym_heredoc_redirect] = STATE(696), - [sym_heredoc_body] = STATE(1086), - [sym_herestring_redirect] = STATE(696), - [aux_sym_while_statement_repeat1] = STATE(696), - [sym__simple_heredoc_body] = ACTIONS(321), - [sym__heredoc_body_beginning] = ACTIONS(323), - [sym_file_descriptor] = ACTIONS(549), - [anon_sym_SEMI] = ACTIONS(2331), - [anon_sym_PIPE] = ACTIONS(2331), - [anon_sym_RPAREN] = ACTIONS(2329), - [anon_sym_SEMI_SEMI] = ACTIONS(2329), - [anon_sym_PIPE_AMP] = ACTIONS(2329), - [anon_sym_AMP_AMP] = ACTIONS(2329), - [anon_sym_PIPE_PIPE] = ACTIONS(2329), - [anon_sym_LT] = ACTIONS(553), - [anon_sym_GT] = ACTIONS(553), - [anon_sym_GT_GT] = ACTIONS(555), - [anon_sym_AMP_GT] = ACTIONS(553), - [anon_sym_AMP_GT_GT] = ACTIONS(555), - [anon_sym_LT_AMP] = ACTIONS(555), - [anon_sym_GT_AMP] = ACTIONS(555), - [anon_sym_LT_LT] = ACTIONS(337), - [anon_sym_LT_LT_DASH] = ACTIONS(339), - [anon_sym_LT_LT_LT] = ACTIONS(557), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(2329), - [anon_sym_AMP] = ACTIONS(2331), - }, - [1138] = { - [sym_compound_statement] = STATE(1547), - [anon_sym_LBRACE] = ACTIONS(511), - [sym_comment] = ACTIONS(53), - }, - [1139] = { - [anon_sym_LT] = ACTIONS(3534), - [anon_sym_GT] = ACTIONS(3534), - [anon_sym_GT_GT] = ACTIONS(3536), - [anon_sym_AMP_GT] = ACTIONS(3534), - [anon_sym_AMP_GT_GT] = ACTIONS(3536), - [anon_sym_LT_AMP] = ACTIONS(3536), - [anon_sym_GT_AMP] = ACTIONS(3536), - [sym_comment] = ACTIONS(53), - }, - [1140] = { - [sym_concatenation] = STATE(1135), - [sym_string] = STATE(1550), - [sym_simple_expansion] = STATE(1550), - [sym_string_expansion] = STATE(1550), - [sym_expansion] = STATE(1550), - [sym_command_substitution] = STATE(1550), - [sym_process_substitution] = STATE(1550), - [sym__special_characters] = ACTIONS(3538), - [anon_sym_DQUOTE] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(215), - [sym_raw_string] = ACTIONS(3540), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(219), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(221), - [anon_sym_BQUOTE] = ACTIONS(223), - [anon_sym_LT_LPAREN] = ACTIONS(225), - [anon_sym_GT_LPAREN] = ACTIONS(225), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3540), - }, - [1141] = { - [anon_sym_LT] = ACTIONS(3542), - [anon_sym_GT] = ACTIONS(3542), - [anon_sym_GT_GT] = ACTIONS(3544), - [anon_sym_AMP_GT] = ACTIONS(3542), - [anon_sym_AMP_GT_GT] = ACTIONS(3544), - [anon_sym_LT_AMP] = ACTIONS(3544), - [anon_sym_GT_AMP] = ACTIONS(3544), - [sym_comment] = ACTIONS(53), - }, - [1142] = { - [sym_concatenation] = STATE(1186), + [sym_concatenation] = STATE(1554), [sym_string] = STATE(1553), [sym_simple_expansion] = STATE(1553), [sym_string_expansion] = STATE(1553), [sym_expansion] = STATE(1553), [sym_command_substitution] = STATE(1553), [sym_process_substitution] = STATE(1553), - [sym__special_characters] = ACTIONS(3546), - [anon_sym_DQUOTE] = ACTIONS(2612), - [anon_sym_DOLLAR] = ACTIONS(2614), - [sym_raw_string] = ACTIONS(3548), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2618), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2620), - [anon_sym_BQUOTE] = ACTIONS(2622), - [anon_sym_LT_LPAREN] = ACTIONS(2624), - [anon_sym_GT_LPAREN] = ACTIONS(2624), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3548), + [anon_sym_RBRACE] = ACTIONS(3495), + [sym__special_characters] = ACTIONS(3497), + [anon_sym_DQUOTE] = ACTIONS(1841), + [anon_sym_DOLLAR] = ACTIONS(1843), + [sym_raw_string] = ACTIONS(3499), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1849), + [anon_sym_BQUOTE] = ACTIONS(1851), + [anon_sym_LT_LPAREN] = ACTIONS(1853), + [anon_sym_GT_LPAREN] = ACTIONS(1853), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(3499), }, - [1143] = { - [sym_concatenation] = STATE(1190), - [sym_string] = STATE(1555), - [sym_simple_expansion] = STATE(1555), - [sym_string_expansion] = STATE(1555), - [sym_expansion] = STATE(1555), - [sym_command_substitution] = STATE(1555), - [sym_process_substitution] = STATE(1555), - [sym__special_characters] = ACTIONS(3550), - [anon_sym_DQUOTE] = ACTIONS(2612), - [anon_sym_DOLLAR] = ACTIONS(2614), - [sym_raw_string] = ACTIONS(3552), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2618), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2620), - [anon_sym_BQUOTE] = ACTIONS(2622), - [anon_sym_LT_LPAREN] = ACTIONS(2624), - [anon_sym_GT_LPAREN] = ACTIONS(2624), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3552), + [1115] = { + [anon_sym_LBRACK] = ACTIONS(857), + [anon_sym_EQ] = ACTIONS(3501), + [sym_comment] = ACTIONS(55), }, - [1144] = { - [sym_file_redirect] = STATE(1556), - [sym_heredoc_redirect] = STATE(1556), - [sym_herestring_redirect] = STATE(1556), - [aux_sym_while_statement_repeat1] = STATE(1556), - [sym_file_descriptor] = ACTIONS(2472), - [anon_sym_SEMI] = ACTIONS(2634), - [anon_sym_PIPE] = ACTIONS(2634), - [anon_sym_RPAREN] = ACTIONS(2632), - [anon_sym_SEMI_SEMI] = ACTIONS(2632), - [anon_sym_PIPE_AMP] = ACTIONS(2632), - [anon_sym_AMP_AMP] = ACTIONS(2632), - [anon_sym_PIPE_PIPE] = ACTIONS(2632), - [anon_sym_LT] = ACTIONS(2474), - [anon_sym_GT] = ACTIONS(2474), - [anon_sym_GT_GT] = ACTIONS(2476), - [anon_sym_AMP_GT] = ACTIONS(2474), - [anon_sym_AMP_GT_GT] = ACTIONS(2476), - [anon_sym_LT_AMP] = ACTIONS(2476), - [anon_sym_GT_AMP] = ACTIONS(2476), - [anon_sym_LT_LT] = ACTIONS(1413), - [anon_sym_LT_LT_DASH] = ACTIONS(1415), - [anon_sym_LT_LT_LT] = ACTIONS(2478), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(2632), - [anon_sym_AMP] = ACTIONS(2634), + [1116] = { + [sym_concatenation] = STATE(1558), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1558), + [anon_sym_RBRACE] = ACTIONS(3503), + [anon_sym_EQ] = ACTIONS(3505), + [anon_sym_DASH] = ACTIONS(3505), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(3507), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(3509), + [anon_sym_COLON] = ACTIONS(3505), + [anon_sym_COLON_QMARK] = ACTIONS(3505), + [anon_sym_COLON_DASH] = ACTIONS(3505), + [anon_sym_PERCENT] = ACTIONS(3505), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, - [1145] = { - [aux_sym_concatenation_repeat1] = STATE(680), - [sym__concat] = ACTIONS(655), - [sym_variable_name] = ACTIONS(1093), - [anon_sym_SEMI] = ACTIONS(1097), - [anon_sym_PIPE] = ACTIONS(1097), - [anon_sym_RPAREN] = ACTIONS(1093), - [anon_sym_SEMI_SEMI] = ACTIONS(1093), - [anon_sym_PIPE_AMP] = ACTIONS(1093), - [anon_sym_AMP_AMP] = ACTIONS(1093), - [anon_sym_PIPE_PIPE] = ACTIONS(1093), - [sym__special_characters] = ACTIONS(1093), - [anon_sym_DQUOTE] = ACTIONS(1093), - [anon_sym_DOLLAR] = ACTIONS(1097), - [sym_raw_string] = ACTIONS(1093), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1093), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1093), - [anon_sym_BQUOTE] = ACTIONS(1093), - [anon_sym_LT_LPAREN] = ACTIONS(1093), - [anon_sym_GT_LPAREN] = ACTIONS(1093), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1097), - [sym_word] = ACTIONS(1097), - [anon_sym_LF] = ACTIONS(1093), - [anon_sym_AMP] = ACTIONS(1097), + [1117] = { + [sym_concatenation] = STATE(1560), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1560), + [anon_sym_RBRACE] = ACTIONS(3495), + [anon_sym_EQ] = ACTIONS(3511), + [anon_sym_DASH] = ACTIONS(3511), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(3513), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(3515), + [anon_sym_COLON] = ACTIONS(3511), + [anon_sym_COLON_QMARK] = ACTIONS(3511), + [anon_sym_COLON_DASH] = ACTIONS(3511), + [anon_sym_PERCENT] = ACTIONS(3511), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, - [1146] = { - [aux_sym_concatenation_repeat1] = STATE(680), - [sym__concat] = ACTIONS(655), - [sym_variable_name] = ACTIONS(1071), - [anon_sym_SEMI] = ACTIONS(1073), - [anon_sym_PIPE] = ACTIONS(1073), - [anon_sym_RPAREN] = ACTIONS(1071), - [anon_sym_SEMI_SEMI] = ACTIONS(1071), - [anon_sym_PIPE_AMP] = ACTIONS(1071), - [anon_sym_AMP_AMP] = ACTIONS(1071), - [anon_sym_PIPE_PIPE] = ACTIONS(1071), - [sym__special_characters] = ACTIONS(1071), - [anon_sym_DQUOTE] = ACTIONS(1071), - [anon_sym_DOLLAR] = ACTIONS(1073), - [sym_raw_string] = ACTIONS(1071), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1071), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1071), - [anon_sym_BQUOTE] = ACTIONS(1071), - [anon_sym_LT_LPAREN] = ACTIONS(1071), - [anon_sym_GT_LPAREN] = ACTIONS(1071), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1073), - [sym_word] = ACTIONS(1073), - [anon_sym_LF] = ACTIONS(1071), - [anon_sym_AMP] = ACTIONS(1073), + [1118] = { + [sym__concat] = ACTIONS(1871), + [anon_sym_PIPE] = ACTIONS(1873), + [anon_sym_RPAREN] = ACTIONS(1871), + [anon_sym_AMP_AMP] = ACTIONS(1871), + [anon_sym_PIPE_PIPE] = ACTIONS(1871), + [anon_sym_EQ_TILDE] = ACTIONS(1871), + [anon_sym_EQ_EQ] = ACTIONS(1871), + [anon_sym_EQ] = ACTIONS(1873), + [anon_sym_PLUS_EQ] = ACTIONS(1871), + [anon_sym_LT] = ACTIONS(1873), + [anon_sym_GT] = ACTIONS(1873), + [anon_sym_BANG_EQ] = ACTIONS(1871), + [anon_sym_PLUS] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1873), + [anon_sym_DASH_EQ] = ACTIONS(1871), + [anon_sym_LT_EQ] = ACTIONS(1871), + [anon_sym_GT_EQ] = ACTIONS(1871), + [anon_sym_PLUS_PLUS] = ACTIONS(1871), + [anon_sym_DASH_DASH] = ACTIONS(1871), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(1871), }, - [1147] = { - [aux_sym_concatenation_repeat1] = STATE(1147), - [sym__concat] = ACTIONS(2687), - [sym_variable_name] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(1726), - [anon_sym_RPAREN] = ACTIONS(1724), - [anon_sym_SEMI_SEMI] = ACTIONS(1724), - [anon_sym_PIPE_AMP] = ACTIONS(1724), - [anon_sym_AMP_AMP] = ACTIONS(1724), - [anon_sym_PIPE_PIPE] = ACTIONS(1724), - [sym__special_characters] = ACTIONS(1724), - [anon_sym_DQUOTE] = ACTIONS(1724), - [anon_sym_DOLLAR] = ACTIONS(1726), - [sym_raw_string] = ACTIONS(1724), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1724), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1724), - [anon_sym_BQUOTE] = ACTIONS(1724), - [anon_sym_LT_LPAREN] = ACTIONS(1724), - [anon_sym_GT_LPAREN] = ACTIONS(1724), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1726), - [sym_word] = ACTIONS(1726), - [anon_sym_LF] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1726), - }, - [1148] = { - [aux_sym_concatenation_repeat1] = STATE(1148), - [sym__concat] = ACTIONS(2736), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(1726), - [anon_sym_RPAREN] = ACTIONS(1724), - [anon_sym_SEMI_SEMI] = ACTIONS(1724), - [anon_sym_PIPE_AMP] = ACTIONS(1724), - [anon_sym_AMP_AMP] = ACTIONS(1724), - [anon_sym_PIPE_PIPE] = ACTIONS(1724), - [sym__special_characters] = ACTIONS(1724), - [anon_sym_DQUOTE] = ACTIONS(1724), - [anon_sym_DOLLAR] = ACTIONS(1726), - [sym_raw_string] = ACTIONS(1724), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1724), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1724), - [anon_sym_BQUOTE] = ACTIONS(1724), - [anon_sym_LT_LPAREN] = ACTIONS(1724), - [anon_sym_GT_LPAREN] = ACTIONS(1724), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1726), - [sym_word] = ACTIONS(1726), - [anon_sym_LF] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1726), - }, - [1149] = { - [sym_file_redirect] = STATE(1363), - [sym_file_descriptor] = ACTIONS(2466), - [anon_sym_SEMI] = ACTIONS(2462), - [anon_sym_PIPE] = ACTIONS(2462), - [anon_sym_RPAREN] = ACTIONS(2460), - [anon_sym_SEMI_SEMI] = ACTIONS(2460), - [anon_sym_PIPE_AMP] = ACTIONS(2460), - [anon_sym_AMP_AMP] = ACTIONS(2460), - [anon_sym_PIPE_PIPE] = ACTIONS(2460), - [anon_sym_LT] = ACTIONS(2468), - [anon_sym_GT] = ACTIONS(2468), - [anon_sym_GT_GT] = ACTIONS(2470), - [anon_sym_AMP_GT] = ACTIONS(2468), - [anon_sym_AMP_GT_GT] = ACTIONS(2470), - [anon_sym_LT_AMP] = ACTIONS(2470), - [anon_sym_GT_AMP] = ACTIONS(2470), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(2460), - [anon_sym_AMP] = ACTIONS(2462), - }, - [1150] = { - [aux_sym_concatenation_repeat1] = STATE(1152), - [sym__simple_heredoc_body] = ACTIONS(1053), - [sym__heredoc_body_beginning] = ACTIONS(1053), - [sym_file_descriptor] = ACTIONS(1053), - [sym__concat] = ACTIONS(249), - [anon_sym_SEMI] = ACTIONS(1055), - [anon_sym_PIPE] = ACTIONS(1055), - [anon_sym_RPAREN] = ACTIONS(1053), - [anon_sym_SEMI_SEMI] = ACTIONS(1053), - [anon_sym_PIPE_AMP] = ACTIONS(1053), - [anon_sym_AMP_AMP] = ACTIONS(1053), - [anon_sym_PIPE_PIPE] = ACTIONS(1053), - [anon_sym_LT] = ACTIONS(1055), - [anon_sym_GT] = ACTIONS(1055), - [anon_sym_GT_GT] = ACTIONS(1053), - [anon_sym_AMP_GT] = ACTIONS(1055), - [anon_sym_AMP_GT_GT] = ACTIONS(1053), - [anon_sym_LT_AMP] = ACTIONS(1053), - [anon_sym_GT_AMP] = ACTIONS(1053), - [anon_sym_LT_LT] = ACTIONS(1055), - [anon_sym_LT_LT_DASH] = ACTIONS(1053), - [anon_sym_LT_LT_LT] = ACTIONS(1053), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1053), - [anon_sym_AMP] = ACTIONS(1055), - }, - [1151] = { - [aux_sym_concatenation_repeat1] = STATE(1152), - [sym__simple_heredoc_body] = ACTIONS(1057), - [sym__heredoc_body_beginning] = ACTIONS(1057), - [sym_file_descriptor] = ACTIONS(1057), - [sym__concat] = ACTIONS(249), - [anon_sym_SEMI] = ACTIONS(1059), - [anon_sym_PIPE] = ACTIONS(1059), - [anon_sym_RPAREN] = ACTIONS(1057), - [anon_sym_SEMI_SEMI] = ACTIONS(1057), - [anon_sym_PIPE_AMP] = ACTIONS(1057), - [anon_sym_AMP_AMP] = ACTIONS(1057), - [anon_sym_PIPE_PIPE] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_GT_GT] = ACTIONS(1057), - [anon_sym_AMP_GT] = ACTIONS(1059), - [anon_sym_AMP_GT_GT] = ACTIONS(1057), - [anon_sym_LT_AMP] = ACTIONS(1057), - [anon_sym_GT_AMP] = ACTIONS(1057), - [anon_sym_LT_LT] = ACTIONS(1059), - [anon_sym_LT_LT_DASH] = ACTIONS(1057), - [anon_sym_LT_LT_LT] = ACTIONS(1057), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), - }, - [1152] = { - [aux_sym_concatenation_repeat1] = STATE(1557), - [sym__simple_heredoc_body] = ACTIONS(765), - [sym__heredoc_body_beginning] = ACTIONS(765), - [sym_file_descriptor] = ACTIONS(765), - [sym__concat] = ACTIONS(249), - [anon_sym_SEMI] = ACTIONS(767), - [anon_sym_PIPE] = ACTIONS(767), - [anon_sym_RPAREN] = ACTIONS(765), - [anon_sym_SEMI_SEMI] = ACTIONS(765), - [anon_sym_PIPE_AMP] = ACTIONS(765), - [anon_sym_AMP_AMP] = ACTIONS(765), - [anon_sym_PIPE_PIPE] = ACTIONS(765), - [anon_sym_LT] = ACTIONS(767), - [anon_sym_GT] = ACTIONS(767), - [anon_sym_GT_GT] = ACTIONS(765), - [anon_sym_AMP_GT] = ACTIONS(767), - [anon_sym_AMP_GT_GT] = ACTIONS(765), - [anon_sym_LT_AMP] = ACTIONS(765), - [anon_sym_GT_AMP] = ACTIONS(765), - [anon_sym_LT_LT] = ACTIONS(767), - [anon_sym_LT_LT_DASH] = ACTIONS(765), - [anon_sym_LT_LT_LT] = ACTIONS(765), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(765), - [anon_sym_AMP] = ACTIONS(767), - }, - [1153] = { - [ts_builtin_sym_end] = ACTIONS(3554), - [anon_sym_SEMI] = ACTIONS(3556), - [anon_sym_esac] = ACTIONS(3554), - [anon_sym_PIPE] = ACTIONS(3556), - [anon_sym_RPAREN] = ACTIONS(3554), - [anon_sym_SEMI_SEMI] = ACTIONS(3554), - [anon_sym_PIPE_AMP] = ACTIONS(3554), - [anon_sym_AMP_AMP] = ACTIONS(3554), - [anon_sym_PIPE_PIPE] = ACTIONS(3554), - [anon_sym_BQUOTE] = ACTIONS(3554), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(3554), - [anon_sym_AMP] = ACTIONS(3556), - }, - [1154] = { - [sym_file_redirect] = STATE(696), - [sym_heredoc_redirect] = STATE(696), - [sym_heredoc_body] = STATE(1375), - [sym_herestring_redirect] = STATE(696), - [aux_sym_while_statement_repeat1] = STATE(696), - [sym__simple_heredoc_body] = ACTIONS(321), - [sym__heredoc_body_beginning] = ACTIONS(323), - [sym_file_descriptor] = ACTIONS(549), - [anon_sym_SEMI] = ACTIONS(3120), - [anon_sym_PIPE] = ACTIONS(3120), - [anon_sym_RPAREN] = ACTIONS(3118), - [anon_sym_SEMI_SEMI] = ACTIONS(3118), - [anon_sym_PIPE_AMP] = ACTIONS(3118), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_PIPE_PIPE] = ACTIONS(3118), - [anon_sym_LT] = ACTIONS(553), - [anon_sym_GT] = ACTIONS(553), - [anon_sym_GT_GT] = ACTIONS(555), - [anon_sym_AMP_GT] = ACTIONS(553), - [anon_sym_AMP_GT_GT] = ACTIONS(555), - [anon_sym_LT_AMP] = ACTIONS(555), - [anon_sym_GT_AMP] = ACTIONS(555), - [anon_sym_LT_LT] = ACTIONS(337), - [anon_sym_LT_LT_DASH] = ACTIONS(339), - [anon_sym_LT_LT_LT] = ACTIONS(557), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(3118), - [anon_sym_AMP] = ACTIONS(3120), - }, - [1155] = { - [sym_file_descriptor] = ACTIONS(2056), - [sym_variable_name] = ACTIONS(2056), - [anon_sym_LT] = ACTIONS(2058), - [anon_sym_GT] = ACTIONS(2058), - [anon_sym_GT_GT] = ACTIONS(2056), - [anon_sym_AMP_GT] = ACTIONS(2058), - [anon_sym_AMP_GT_GT] = ACTIONS(2056), - [anon_sym_LT_AMP] = ACTIONS(2056), - [anon_sym_GT_AMP] = ACTIONS(2056), - [sym__special_characters] = ACTIONS(2056), - [anon_sym_DQUOTE] = ACTIONS(2056), - [anon_sym_DOLLAR] = ACTIONS(2058), - [sym_raw_string] = ACTIONS(2056), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2056), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2056), - [anon_sym_BQUOTE] = ACTIONS(2056), - [anon_sym_LT_LPAREN] = ACTIONS(2056), - [anon_sym_GT_LPAREN] = ACTIONS(2056), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2056), - }, - [1156] = { - [sym_concatenation] = STATE(977), - [sym_string] = STATE(534), - [sym_simple_expansion] = STATE(534), - [sym_string_expansion] = STATE(534), - [sym_expansion] = STATE(534), - [sym_command_substitution] = STATE(534), - [sym_process_substitution] = STATE(534), - [aux_sym_for_statement_repeat1] = STATE(977), - [anon_sym_RPAREN] = ACTIONS(3558), - [sym__special_characters] = ACTIONS(1077), - [anon_sym_DQUOTE] = ACTIONS(1079), - [anon_sym_DOLLAR] = ACTIONS(1081), - [sym_raw_string] = ACTIONS(1083), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1085), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1087), - [anon_sym_BQUOTE] = ACTIONS(1089), - [anon_sym_LT_LPAREN] = ACTIONS(1091), - [anon_sym_GT_LPAREN] = ACTIONS(1091), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1083), - }, - [1157] = { - [aux_sym_concatenation_repeat1] = STATE(1157), - [sym__concat] = ACTIONS(2636), - [anon_sym_RPAREN] = ACTIONS(1724), - [anon_sym_AMP_AMP] = ACTIONS(1724), - [anon_sym_PIPE_PIPE] = ACTIONS(1724), - [anon_sym_EQ_TILDE] = ACTIONS(1724), - [anon_sym_EQ_EQ] = ACTIONS(1724), - [anon_sym_EQ] = ACTIONS(1726), - [anon_sym_LT] = ACTIONS(1724), - [anon_sym_GT] = ACTIONS(1724), - [anon_sym_BANG_EQ] = ACTIONS(1724), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1724), - }, - [1158] = { - [sym__concat] = ACTIONS(2876), - [anon_sym_AMP_AMP] = ACTIONS(2876), - [anon_sym_PIPE_PIPE] = ACTIONS(2876), - [anon_sym_RBRACK] = ACTIONS(2876), - [anon_sym_EQ_TILDE] = ACTIONS(2876), - [anon_sym_EQ_EQ] = ACTIONS(2876), - [anon_sym_EQ] = ACTIONS(2878), - [anon_sym_LT] = ACTIONS(2876), - [anon_sym_GT] = ACTIONS(2876), - [anon_sym_BANG_EQ] = ACTIONS(2876), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2876), - }, - [1159] = { - [sym__concat] = ACTIONS(2890), - [anon_sym_AMP_AMP] = ACTIONS(2890), - [anon_sym_PIPE_PIPE] = ACTIONS(2890), - [anon_sym_RBRACK] = ACTIONS(2890), - [anon_sym_EQ_TILDE] = ACTIONS(2890), - [anon_sym_EQ_EQ] = ACTIONS(2890), - [anon_sym_EQ] = ACTIONS(2892), - [anon_sym_LT] = ACTIONS(2890), - [anon_sym_GT] = ACTIONS(2890), - [anon_sym_BANG_EQ] = ACTIONS(2890), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2890), - }, - [1160] = { - [aux_sym_concatenation_repeat1] = STATE(1293), - [sym__concat] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(3560), - [sym_comment] = ACTIONS(53), - }, - [1161] = { - [aux_sym_concatenation_repeat1] = STATE(1293), - [sym__concat] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(3562), - [sym_comment] = ACTIONS(53), - }, - [1162] = { - [anon_sym_RBRACE] = ACTIONS(3562), - [sym_comment] = ACTIONS(53), - }, - [1163] = { + [1119] = { [sym_concatenation] = STATE(1563), - [sym_string] = STATE(1562), - [sym_simple_expansion] = STATE(1562), - [sym_string_expansion] = STATE(1562), - [sym_expansion] = STATE(1562), - [sym_command_substitution] = STATE(1562), - [sym_process_substitution] = STATE(1562), - [anon_sym_RBRACE] = ACTIONS(3562), - [sym__special_characters] = ACTIONS(3564), - [anon_sym_DQUOTE] = ACTIONS(1802), - [anon_sym_DOLLAR] = ACTIONS(1804), - [sym_raw_string] = ACTIONS(3566), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1808), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1810), - [anon_sym_BQUOTE] = ACTIONS(1812), - [anon_sym_LT_LPAREN] = ACTIONS(1814), - [anon_sym_GT_LPAREN] = ACTIONS(1814), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3566), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1563), + [sym_regex] = ACTIONS(3517), + [anon_sym_RBRACE] = ACTIONS(3519), + [anon_sym_EQ] = ACTIONS(3521), + [anon_sym_DASH] = ACTIONS(3521), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(3523), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(3521), + [anon_sym_COLON_QMARK] = ACTIONS(3521), + [anon_sym_COLON_DASH] = ACTIONS(3521), + [anon_sym_PERCENT] = ACTIONS(3521), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, - [1164] = { - [sym__concat] = ACTIONS(2926), - [anon_sym_AMP_AMP] = ACTIONS(2926), - [anon_sym_PIPE_PIPE] = ACTIONS(2926), - [anon_sym_RBRACK] = ACTIONS(2926), - [anon_sym_EQ_TILDE] = ACTIONS(2926), - [anon_sym_EQ_EQ] = ACTIONS(2926), - [anon_sym_EQ] = ACTIONS(2928), - [anon_sym_LT] = ACTIONS(2926), - [anon_sym_GT] = ACTIONS(2926), - [anon_sym_BANG_EQ] = ACTIONS(2926), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2926), + [1120] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(3519), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, - [1165] = { - [sym_comment] = ACTIONS(265), - [sym_regex_without_right_brace] = ACTIONS(3568), + [1121] = { + [sym__concat] = ACTIONS(1919), + [anon_sym_PIPE] = ACTIONS(1921), + [anon_sym_RPAREN] = ACTIONS(1919), + [anon_sym_AMP_AMP] = ACTIONS(1919), + [anon_sym_PIPE_PIPE] = ACTIONS(1919), + [anon_sym_EQ_TILDE] = ACTIONS(1919), + [anon_sym_EQ_EQ] = ACTIONS(1919), + [anon_sym_EQ] = ACTIONS(1921), + [anon_sym_PLUS_EQ] = ACTIONS(1919), + [anon_sym_LT] = ACTIONS(1921), + [anon_sym_GT] = ACTIONS(1921), + [anon_sym_BANG_EQ] = ACTIONS(1919), + [anon_sym_PLUS] = ACTIONS(1921), + [anon_sym_DASH] = ACTIONS(1921), + [anon_sym_DASH_EQ] = ACTIONS(1919), + [anon_sym_LT_EQ] = ACTIONS(1919), + [anon_sym_GT_EQ] = ACTIONS(1919), + [anon_sym_PLUS_PLUS] = ACTIONS(1919), + [anon_sym_DASH_DASH] = ACTIONS(1919), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(1919), }, - [1166] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(3570), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [1122] = { + [sym_concatenation] = STATE(1560), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1560), + [sym_regex] = ACTIONS(3525), + [anon_sym_RBRACE] = ACTIONS(3495), + [anon_sym_EQ] = ACTIONS(3511), + [anon_sym_DASH] = ACTIONS(3511), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(3513), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(3511), + [anon_sym_COLON_QMARK] = ACTIONS(3511), + [anon_sym_COLON_DASH] = ACTIONS(3511), + [anon_sym_PERCENT] = ACTIONS(3511), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, - [1167] = { - [sym_comment] = ACTIONS(265), - [sym_regex_without_right_brace] = ACTIONS(3572), + [1123] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(3495), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, - [1168] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(3562), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [1124] = { + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(3527), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), }, - [1169] = { - [sym_concatenation] = STATE(1568), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(1568), - [anon_sym_RBRACE] = ACTIONS(3574), - [anon_sym_EQ] = ACTIONS(3576), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(3578), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(3576), - [anon_sym_COLON_QMARK] = ACTIONS(3576), - [anon_sym_COLON_DASH] = ACTIONS(3576), - [anon_sym_PERCENT] = ACTIONS(3576), - [anon_sym_DASH] = ACTIONS(3576), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [1125] = { + [sym__concat] = ACTIONS(1927), + [anon_sym_PIPE] = ACTIONS(1929), + [anon_sym_RPAREN] = ACTIONS(1927), + [anon_sym_AMP_AMP] = ACTIONS(1927), + [anon_sym_PIPE_PIPE] = ACTIONS(1927), + [anon_sym_EQ_TILDE] = ACTIONS(1927), + [anon_sym_EQ_EQ] = ACTIONS(1927), + [anon_sym_EQ] = ACTIONS(1929), + [anon_sym_PLUS_EQ] = ACTIONS(1927), + [anon_sym_LT] = ACTIONS(1929), + [anon_sym_GT] = ACTIONS(1929), + [anon_sym_BANG_EQ] = ACTIONS(1927), + [anon_sym_PLUS] = ACTIONS(1929), + [anon_sym_DASH] = ACTIONS(1929), + [anon_sym_DASH_EQ] = ACTIONS(1927), + [anon_sym_LT_EQ] = ACTIONS(1927), + [anon_sym_GT_EQ] = ACTIONS(1927), + [anon_sym_PLUS_PLUS] = ACTIONS(1927), + [anon_sym_DASH_DASH] = ACTIONS(1927), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(1927), }, - [1170] = { - [sym__concat] = ACTIONS(2990), - [anon_sym_AMP_AMP] = ACTIONS(2990), - [anon_sym_PIPE_PIPE] = ACTIONS(2990), - [anon_sym_RBRACK] = ACTIONS(2990), - [anon_sym_EQ_TILDE] = ACTIONS(2990), - [anon_sym_EQ_EQ] = ACTIONS(2990), - [anon_sym_EQ] = ACTIONS(2992), - [anon_sym_LT] = ACTIONS(2990), - [anon_sym_GT] = ACTIONS(2990), - [anon_sym_BANG_EQ] = ACTIONS(2990), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2990), + [1126] = { + [anon_sym_SEMI] = ACTIONS(3529), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(3527), + [anon_sym_SEMI_SEMI] = ACTIONS(3531), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(3531), + [anon_sym_AMP] = ACTIONS(3529), }, - [1171] = { - [sym_concatenation] = STATE(1569), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(1569), - [anon_sym_RBRACE] = ACTIONS(3562), - [anon_sym_EQ] = ACTIONS(3580), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(3582), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(3580), - [anon_sym_COLON_QMARK] = ACTIONS(3580), - [anon_sym_COLON_DASH] = ACTIONS(3580), - [anon_sym_PERCENT] = ACTIONS(3580), - [anon_sym_DASH] = ACTIONS(3580), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [1127] = { + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(3529), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(3527), + [anon_sym_SEMI_SEMI] = ACTIONS(3531), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(3531), + [anon_sym_AMP] = ACTIONS(3529), }, - [1172] = { - [sym__concat] = ACTIONS(3033), - [anon_sym_AMP_AMP] = ACTIONS(3033), - [anon_sym_PIPE_PIPE] = ACTIONS(3033), - [anon_sym_RBRACK] = ACTIONS(3033), - [anon_sym_EQ_TILDE] = ACTIONS(3033), - [anon_sym_EQ_EQ] = ACTIONS(3033), - [anon_sym_EQ] = ACTIONS(3035), - [anon_sym_LT] = ACTIONS(3033), - [anon_sym_GT] = ACTIONS(3033), - [anon_sym_BANG_EQ] = ACTIONS(3033), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(3033), + [1128] = { + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(3527), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), }, - [1173] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(3584), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(901), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), + [1129] = { + [anon_sym_SEMI] = ACTIONS(3533), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_SEMI_SEMI] = ACTIONS(3535), + [anon_sym_PIPE_AMP] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_BQUOTE] = ACTIONS(3527), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(3535), + [anon_sym_AMP] = ACTIONS(3533), }, - [1174] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(3584), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), + [1130] = { + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(3533), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_SEMI_SEMI] = ACTIONS(3535), + [anon_sym_PIPE_AMP] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(3527), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(3535), + [anon_sym_AMP] = ACTIONS(3533), }, - [1175] = { - [sym__concat] = ACTIONS(3071), - [anon_sym_AMP_AMP] = ACTIONS(3071), - [anon_sym_PIPE_PIPE] = ACTIONS(3071), - [anon_sym_RBRACK] = ACTIONS(3071), - [anon_sym_EQ_TILDE] = ACTIONS(3071), - [anon_sym_EQ_EQ] = ACTIONS(3071), - [anon_sym_EQ] = ACTIONS(3073), - [anon_sym_LT] = ACTIONS(3071), - [anon_sym_GT] = ACTIONS(3071), - [anon_sym_BANG_EQ] = ACTIONS(3071), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(3071), + [1131] = { + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(3537), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), }, - [1176] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(3586), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(901), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), + [1132] = { + [sym__concat] = ACTIONS(1959), + [anon_sym_PIPE] = ACTIONS(1961), + [anon_sym_RPAREN] = ACTIONS(1959), + [anon_sym_AMP_AMP] = ACTIONS(1959), + [anon_sym_PIPE_PIPE] = ACTIONS(1959), + [anon_sym_EQ_TILDE] = ACTIONS(1959), + [anon_sym_EQ_EQ] = ACTIONS(1959), + [anon_sym_EQ] = ACTIONS(1961), + [anon_sym_PLUS_EQ] = ACTIONS(1959), + [anon_sym_LT] = ACTIONS(1961), + [anon_sym_GT] = ACTIONS(1961), + [anon_sym_BANG_EQ] = ACTIONS(1959), + [anon_sym_PLUS] = ACTIONS(1961), + [anon_sym_DASH] = ACTIONS(1961), + [anon_sym_DASH_EQ] = ACTIONS(1959), + [anon_sym_LT_EQ] = ACTIONS(1959), + [anon_sym_GT_EQ] = ACTIONS(1959), + [anon_sym_PLUS_PLUS] = ACTIONS(1959), + [anon_sym_DASH_DASH] = ACTIONS(1959), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(1959), }, - [1177] = { + [1133] = { + [anon_sym_SEMI] = ACTIONS(3539), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(3537), + [anon_sym_SEMI_SEMI] = ACTIONS(3541), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(3541), + [anon_sym_AMP] = ACTIONS(3539), + }, + [1134] = { + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(3539), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(3537), + [anon_sym_SEMI_SEMI] = ACTIONS(3541), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(3541), + [anon_sym_AMP] = ACTIONS(3539), + }, + [1135] = { + [anon_sym_RPAREN] = ACTIONS(2420), + [anon_sym_AMP_AMP] = ACTIONS(2420), + [anon_sym_PIPE_PIPE] = ACTIONS(2420), + [anon_sym_EQ_TILDE] = ACTIONS(2420), + [anon_sym_EQ_EQ] = ACTIONS(2420), + [anon_sym_EQ] = ACTIONS(2422), + [anon_sym_PLUS_EQ] = ACTIONS(2420), + [anon_sym_LT] = ACTIONS(2422), + [anon_sym_GT] = ACTIONS(2422), + [anon_sym_BANG_EQ] = ACTIONS(2420), + [anon_sym_PLUS] = ACTIONS(2422), + [anon_sym_DASH] = ACTIONS(2422), + [anon_sym_DASH_EQ] = ACTIONS(2420), + [anon_sym_LT_EQ] = ACTIONS(2420), + [anon_sym_GT_EQ] = ACTIONS(2420), + [anon_sym_PLUS_PLUS] = ACTIONS(2420), + [anon_sym_DASH_DASH] = ACTIONS(2420), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(2420), + }, + [1136] = { + [anon_sym_RPAREN] = ACTIONS(2420), + [anon_sym_AMP_AMP] = ACTIONS(2420), + [anon_sym_PIPE_PIPE] = ACTIONS(2420), + [anon_sym_EQ_TILDE] = ACTIONS(2420), + [anon_sym_EQ_EQ] = ACTIONS(2420), + [anon_sym_EQ] = ACTIONS(2422), + [anon_sym_PLUS_EQ] = ACTIONS(2420), + [anon_sym_LT] = ACTIONS(2422), + [anon_sym_GT] = ACTIONS(2422), + [anon_sym_BANG_EQ] = ACTIONS(2420), + [anon_sym_PLUS] = ACTIONS(2422), + [anon_sym_DASH] = ACTIONS(2422), + [anon_sym_DASH_EQ] = ACTIONS(2420), + [anon_sym_LT_EQ] = ACTIONS(2420), + [anon_sym_GT_EQ] = ACTIONS(2420), + [anon_sym_PLUS_PLUS] = ACTIONS(2420), + [anon_sym_DASH_DASH] = ACTIONS(2420), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(2420), + }, + [1137] = { + [sym__concat] = ACTIONS(2959), + [anon_sym_RPAREN_RPAREN] = ACTIONS(2959), + [anon_sym_AMP_AMP] = ACTIONS(2959), + [anon_sym_PIPE_PIPE] = ACTIONS(2959), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2959), + [anon_sym_EQ_TILDE] = ACTIONS(2959), + [anon_sym_EQ_EQ] = ACTIONS(2959), + [anon_sym_EQ] = ACTIONS(2961), + [anon_sym_PLUS_EQ] = ACTIONS(2959), + [anon_sym_LT] = ACTIONS(2961), + [anon_sym_GT] = ACTIONS(2961), + [anon_sym_BANG_EQ] = ACTIONS(2959), + [anon_sym_PLUS] = ACTIONS(2961), + [anon_sym_DASH] = ACTIONS(2961), + [anon_sym_DASH_EQ] = ACTIONS(2959), + [anon_sym_LT_EQ] = ACTIONS(2959), + [anon_sym_GT_EQ] = ACTIONS(2959), + [anon_sym_PLUS_PLUS] = ACTIONS(2959), + [anon_sym_DASH_DASH] = ACTIONS(2959), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(2959), + }, + [1138] = { + [sym__concat] = ACTIONS(2973), + [anon_sym_RPAREN_RPAREN] = ACTIONS(2973), + [anon_sym_AMP_AMP] = ACTIONS(2973), + [anon_sym_PIPE_PIPE] = ACTIONS(2973), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2973), + [anon_sym_EQ_TILDE] = ACTIONS(2973), + [anon_sym_EQ_EQ] = ACTIONS(2973), + [anon_sym_EQ] = ACTIONS(2975), + [anon_sym_PLUS_EQ] = ACTIONS(2973), + [anon_sym_LT] = ACTIONS(2975), + [anon_sym_GT] = ACTIONS(2975), + [anon_sym_BANG_EQ] = ACTIONS(2973), + [anon_sym_PLUS] = ACTIONS(2975), + [anon_sym_DASH] = ACTIONS(2975), + [anon_sym_DASH_EQ] = ACTIONS(2973), + [anon_sym_LT_EQ] = ACTIONS(2973), + [anon_sym_GT_EQ] = ACTIONS(2973), + [anon_sym_PLUS_PLUS] = ACTIONS(2973), + [anon_sym_DASH_DASH] = ACTIONS(2973), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(2973), + }, + [1139] = { + [aux_sym_concatenation_repeat1] = STATE(1366), + [sym__concat] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(3543), + [sym_comment] = ACTIONS(55), + }, + [1140] = { + [aux_sym_concatenation_repeat1] = STATE(1366), + [sym__concat] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(3545), + [sym_comment] = ACTIONS(55), + }, + [1141] = { + [anon_sym_RBRACE] = ACTIONS(3545), + [sym_comment] = ACTIONS(55), + }, + [1142] = { [sym_concatenation] = STATE(1574), [sym_string] = STATE(1573), [sym_simple_expansion] = STATE(1573), @@ -38797,8817 +39441,2735 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(1573), [sym_command_substitution] = STATE(1573), [sym_process_substitution] = STATE(1573), - [sym__special_characters] = ACTIONS(3588), - [anon_sym_DQUOTE] = ACTIONS(2612), - [anon_sym_DOLLAR] = ACTIONS(2614), - [sym_raw_string] = ACTIONS(3590), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2618), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2620), - [anon_sym_BQUOTE] = ACTIONS(2622), - [anon_sym_LT_LPAREN] = ACTIONS(2624), - [anon_sym_GT_LPAREN] = ACTIONS(2624), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3590), + [anon_sym_RBRACE] = ACTIONS(3545), + [sym__special_characters] = ACTIONS(3547), + [anon_sym_DQUOTE] = ACTIONS(1841), + [anon_sym_DOLLAR] = ACTIONS(1843), + [sym_raw_string] = ACTIONS(3549), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1849), + [anon_sym_BQUOTE] = ACTIONS(1851), + [anon_sym_LT_LPAREN] = ACTIONS(1853), + [anon_sym_GT_LPAREN] = ACTIONS(1853), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(3549), }, - [1178] = { - [aux_sym_concatenation_repeat1] = STATE(1576), - [sym_file_descriptor] = ACTIONS(731), - [sym__concat] = ACTIONS(3592), - [ts_builtin_sym_end] = ACTIONS(731), - [anon_sym_SEMI] = ACTIONS(735), - [anon_sym_PIPE] = ACTIONS(735), - [anon_sym_SEMI_SEMI] = ACTIONS(731), - [anon_sym_PIPE_AMP] = ACTIONS(731), - [anon_sym_AMP_AMP] = ACTIONS(731), - [anon_sym_PIPE_PIPE] = ACTIONS(731), - [anon_sym_LT] = ACTIONS(735), - [anon_sym_GT] = ACTIONS(735), - [anon_sym_GT_GT] = ACTIONS(731), - [anon_sym_AMP_GT] = ACTIONS(735), - [anon_sym_AMP_GT_GT] = ACTIONS(731), - [anon_sym_LT_AMP] = ACTIONS(731), - [anon_sym_GT_AMP] = ACTIONS(731), - [anon_sym_LT_LT] = ACTIONS(735), - [anon_sym_LT_LT_DASH] = ACTIONS(731), - [anon_sym_LT_LT_LT] = ACTIONS(731), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(731), - [anon_sym_AMP] = ACTIONS(735), + [1143] = { + [sym__concat] = ACTIONS(3009), + [anon_sym_RPAREN_RPAREN] = ACTIONS(3009), + [anon_sym_AMP_AMP] = ACTIONS(3009), + [anon_sym_PIPE_PIPE] = ACTIONS(3009), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3009), + [anon_sym_EQ_TILDE] = ACTIONS(3009), + [anon_sym_EQ_EQ] = ACTIONS(3009), + [anon_sym_EQ] = ACTIONS(3011), + [anon_sym_PLUS_EQ] = ACTIONS(3009), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_GT] = ACTIONS(3011), + [anon_sym_BANG_EQ] = ACTIONS(3009), + [anon_sym_PLUS] = ACTIONS(3011), + [anon_sym_DASH] = ACTIONS(3011), + [anon_sym_DASH_EQ] = ACTIONS(3009), + [anon_sym_LT_EQ] = ACTIONS(3009), + [anon_sym_GT_EQ] = ACTIONS(3009), + [anon_sym_PLUS_PLUS] = ACTIONS(3009), + [anon_sym_DASH_DASH] = ACTIONS(3009), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(3009), }, - [1179] = { - [sym_simple_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [sym_command_substitution] = STATE(141), - [aux_sym_string_repeat1] = STATE(1579), - [anon_sym_DQUOTE] = ACTIONS(3594), - [anon_sym_DOLLAR] = ACTIONS(3596), - [sym__string_content] = ACTIONS(257), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(261), - [anon_sym_BQUOTE] = ACTIONS(263), - [sym_comment] = ACTIONS(265), + [1144] = { + [sym_concatenation] = STATE(1577), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1577), + [sym_regex] = ACTIONS(3551), + [anon_sym_RBRACE] = ACTIONS(3553), + [anon_sym_EQ] = ACTIONS(3555), + [anon_sym_DASH] = ACTIONS(3555), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(3557), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(3555), + [anon_sym_COLON_QMARK] = ACTIONS(3555), + [anon_sym_COLON_DASH] = ACTIONS(3555), + [anon_sym_PERCENT] = ACTIONS(3555), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, - [1180] = { - [sym_string] = STATE(1581), - [anon_sym_DQUOTE] = ACTIONS(2612), - [anon_sym_DOLLAR] = ACTIONS(3598), - [sym_raw_string] = ACTIONS(3600), - [anon_sym_POUND] = ACTIONS(3598), - [anon_sym_DASH] = ACTIONS(3598), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3602), - [anon_sym_STAR] = ACTIONS(3604), - [anon_sym_AT] = ACTIONS(3604), - [anon_sym_QMARK] = ACTIONS(3604), - [anon_sym_0] = ACTIONS(3602), - [anon_sym__] = ACTIONS(3602), + [1145] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(3553), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, - [1181] = { - [aux_sym_concatenation_repeat1] = STATE(1576), - [sym_file_descriptor] = ACTIONS(749), - [sym__concat] = ACTIONS(3592), - [ts_builtin_sym_end] = ACTIONS(749), - [anon_sym_SEMI] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(751), - [anon_sym_SEMI_SEMI] = ACTIONS(749), - [anon_sym_PIPE_AMP] = ACTIONS(749), - [anon_sym_AMP_AMP] = ACTIONS(749), - [anon_sym_PIPE_PIPE] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(751), - [anon_sym_GT] = ACTIONS(751), - [anon_sym_GT_GT] = ACTIONS(749), - [anon_sym_AMP_GT] = ACTIONS(751), - [anon_sym_AMP_GT_GT] = ACTIONS(749), - [anon_sym_LT_AMP] = ACTIONS(749), - [anon_sym_GT_AMP] = ACTIONS(749), - [anon_sym_LT_LT] = ACTIONS(751), - [anon_sym_LT_LT_DASH] = ACTIONS(749), - [anon_sym_LT_LT_LT] = ACTIONS(749), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(749), - [anon_sym_AMP] = ACTIONS(751), + [1146] = { + [sym_concatenation] = STATE(1579), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1579), + [sym_regex] = ACTIONS(3559), + [anon_sym_RBRACE] = ACTIONS(3545), + [anon_sym_EQ] = ACTIONS(3561), + [anon_sym_DASH] = ACTIONS(3561), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(3563), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(3561), + [anon_sym_COLON_QMARK] = ACTIONS(3561), + [anon_sym_COLON_DASH] = ACTIONS(3561), + [anon_sym_PERCENT] = ACTIONS(3561), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, - [1182] = { - [sym_subscript] = STATE(1586), - [sym_variable_name] = ACTIONS(3606), - [anon_sym_BANG] = ACTIONS(3608), - [anon_sym_DOLLAR] = ACTIONS(3610), - [anon_sym_POUND] = ACTIONS(3608), - [anon_sym_DASH] = ACTIONS(3610), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3612), - [anon_sym_STAR] = ACTIONS(3614), - [anon_sym_AT] = ACTIONS(3614), - [anon_sym_QMARK] = ACTIONS(3614), - [anon_sym_0] = ACTIONS(3612), - [anon_sym__] = ACTIONS(3612), + [1147] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(3545), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, - [1183] = { - [sym__terminated_statement] = STATE(1589), - [sym_for_statement] = STATE(1587), - [sym_c_style_for_statement] = STATE(1587), - [sym_while_statement] = STATE(1587), - [sym_if_statement] = STATE(1587), - [sym_case_statement] = STATE(1587), - [sym_function_definition] = STATE(1587), - [sym_subshell] = STATE(1587), - [sym_pipeline] = STATE(1587), - [sym_list] = STATE(1587), - [sym_negated_command] = STATE(1587), - [sym_test_command] = STATE(1587), - [sym_declaration_command] = STATE(1587), - [sym_unset_command] = STATE(1587), - [sym_command] = STATE(1587), - [sym_command_name] = STATE(78), - [sym_variable_assignment] = STATE(1588), - [sym_subscript] = STATE(80), - [sym_file_redirect] = STATE(82), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(75), - [sym_simple_expansion] = STATE(75), - [sym_string_expansion] = STATE(75), - [sym_expansion] = STATE(75), - [sym_command_substitution] = STATE(75), - [sym_process_substitution] = STATE(75), - [aux_sym__statements_repeat1] = STATE(1589), - [aux_sym_command_repeat1] = STATE(82), + [1148] = { + [sym_concatenation] = STATE(1581), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1581), + [anon_sym_RBRACE] = ACTIONS(3565), + [anon_sym_EQ] = ACTIONS(3567), + [anon_sym_DASH] = ACTIONS(3567), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(3569), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(3567), + [anon_sym_COLON_QMARK] = ACTIONS(3567), + [anon_sym_COLON_DASH] = ACTIONS(3567), + [anon_sym_PERCENT] = ACTIONS(3567), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1149] = { + [sym__concat] = ACTIONS(3065), + [anon_sym_RPAREN_RPAREN] = ACTIONS(3065), + [anon_sym_AMP_AMP] = ACTIONS(3065), + [anon_sym_PIPE_PIPE] = ACTIONS(3065), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3065), + [anon_sym_EQ_TILDE] = ACTIONS(3065), + [anon_sym_EQ_EQ] = ACTIONS(3065), + [anon_sym_EQ] = ACTIONS(3067), + [anon_sym_PLUS_EQ] = ACTIONS(3065), + [anon_sym_LT] = ACTIONS(3067), + [anon_sym_GT] = ACTIONS(3067), + [anon_sym_BANG_EQ] = ACTIONS(3065), + [anon_sym_PLUS] = ACTIONS(3067), + [anon_sym_DASH] = ACTIONS(3067), + [anon_sym_DASH_EQ] = ACTIONS(3065), + [anon_sym_LT_EQ] = ACTIONS(3065), + [anon_sym_GT_EQ] = ACTIONS(3065), + [anon_sym_PLUS_PLUS] = ACTIONS(3065), + [anon_sym_DASH_DASH] = ACTIONS(3065), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(3065), + }, + [1150] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(3565), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1151] = { + [sym_concatenation] = STATE(1579), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1579), + [anon_sym_RBRACE] = ACTIONS(3545), + [anon_sym_EQ] = ACTIONS(3561), + [anon_sym_DASH] = ACTIONS(3561), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(3563), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(3561), + [anon_sym_COLON_QMARK] = ACTIONS(3561), + [anon_sym_COLON_DASH] = ACTIONS(3561), + [anon_sym_PERCENT] = ACTIONS(3561), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1152] = { + [sym__concat] = ACTIONS(3120), + [anon_sym_RPAREN_RPAREN] = ACTIONS(3120), + [anon_sym_AMP_AMP] = ACTIONS(3120), + [anon_sym_PIPE_PIPE] = ACTIONS(3120), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3120), + [anon_sym_EQ_TILDE] = ACTIONS(3120), + [anon_sym_EQ_EQ] = ACTIONS(3120), + [anon_sym_EQ] = ACTIONS(3122), + [anon_sym_PLUS_EQ] = ACTIONS(3120), + [anon_sym_LT] = ACTIONS(3122), + [anon_sym_GT] = ACTIONS(3122), + [anon_sym_BANG_EQ] = ACTIONS(3120), + [anon_sym_PLUS] = ACTIONS(3122), + [anon_sym_DASH] = ACTIONS(3122), + [anon_sym_DASH_EQ] = ACTIONS(3120), + [anon_sym_LT_EQ] = ACTIONS(3120), + [anon_sym_GT_EQ] = ACTIONS(3120), + [anon_sym_PLUS_PLUS] = ACTIONS(3120), + [anon_sym_DASH_DASH] = ACTIONS(3120), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(3120), + }, + [1153] = { + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(3571), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), + }, + [1154] = { + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(3571), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), + }, + [1155] = { + [sym__concat] = ACTIONS(3158), + [anon_sym_RPAREN_RPAREN] = ACTIONS(3158), + [anon_sym_AMP_AMP] = ACTIONS(3158), + [anon_sym_PIPE_PIPE] = ACTIONS(3158), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3158), + [anon_sym_EQ_TILDE] = ACTIONS(3158), + [anon_sym_EQ_EQ] = ACTIONS(3158), + [anon_sym_EQ] = ACTIONS(3160), + [anon_sym_PLUS_EQ] = ACTIONS(3158), + [anon_sym_LT] = ACTIONS(3160), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_BANG_EQ] = ACTIONS(3158), + [anon_sym_PLUS] = ACTIONS(3160), + [anon_sym_DASH] = ACTIONS(3160), + [anon_sym_DASH_EQ] = ACTIONS(3158), + [anon_sym_LT_EQ] = ACTIONS(3158), + [anon_sym_GT_EQ] = ACTIONS(3158), + [anon_sym_PLUS_PLUS] = ACTIONS(3158), + [anon_sym_DASH_DASH] = ACTIONS(3158), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(3158), + }, + [1156] = { + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(3573), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), + }, + [1157] = { + [sym_concatenation] = STATE(1586), + [sym_string] = STATE(1585), + [sym_simple_expansion] = STATE(1585), + [sym_string_expansion] = STATE(1585), + [sym_expansion] = STATE(1585), + [sym_command_substitution] = STATE(1585), + [sym_process_substitution] = STATE(1585), + [sym__special_characters] = ACTIONS(3575), + [anon_sym_DQUOTE] = ACTIONS(2396), + [anon_sym_DOLLAR] = ACTIONS(2398), + [sym_raw_string] = ACTIONS(3577), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2402), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2404), + [anon_sym_BQUOTE] = ACTIONS(2406), + [anon_sym_LT_LPAREN] = ACTIONS(2408), + [anon_sym_GT_LPAREN] = ACTIONS(2408), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(3577), + }, + [1158] = { + [aux_sym_concatenation_repeat1] = STATE(1588), + [sym_file_descriptor] = ACTIONS(773), + [sym__concat] = ACTIONS(3579), + [ts_builtin_sym_end] = ACTIONS(773), + [anon_sym_SEMI] = ACTIONS(777), + [anon_sym_PIPE] = ACTIONS(777), + [anon_sym_SEMI_SEMI] = ACTIONS(773), + [anon_sym_PIPE_AMP] = ACTIONS(773), + [anon_sym_AMP_AMP] = ACTIONS(773), + [anon_sym_PIPE_PIPE] = ACTIONS(773), + [anon_sym_LT] = ACTIONS(777), + [anon_sym_GT] = ACTIONS(777), + [anon_sym_GT_GT] = ACTIONS(773), + [anon_sym_AMP_GT] = ACTIONS(777), + [anon_sym_AMP_GT_GT] = ACTIONS(773), + [anon_sym_LT_AMP] = ACTIONS(773), + [anon_sym_GT_AMP] = ACTIONS(773), + [anon_sym_LT_LT] = ACTIONS(777), + [anon_sym_LT_LT_DASH] = ACTIONS(773), + [anon_sym_LT_LT_LT] = ACTIONS(773), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(773), + [anon_sym_AMP] = ACTIONS(777), + }, + [1159] = { + [sym_simple_expansion] = STATE(148), + [sym_expansion] = STATE(148), + [sym_command_substitution] = STATE(148), + [aux_sym_string_repeat1] = STATE(1591), + [anon_sym_DQUOTE] = ACTIONS(3581), + [anon_sym_DOLLAR] = ACTIONS(3583), + [sym__string_content] = ACTIONS(273), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(277), + [anon_sym_BQUOTE] = ACTIONS(279), + [sym_comment] = ACTIONS(281), + }, + [1160] = { + [sym_string] = STATE(1593), + [anon_sym_DASH] = ACTIONS(3585), + [anon_sym_DQUOTE] = ACTIONS(2396), + [anon_sym_DOLLAR] = ACTIONS(3585), + [sym_raw_string] = ACTIONS(3587), + [anon_sym_POUND] = ACTIONS(3585), + [sym_comment] = ACTIONS(281), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3589), + [anon_sym_STAR] = ACTIONS(3591), + [anon_sym_AT] = ACTIONS(3591), + [anon_sym_QMARK] = ACTIONS(3591), + [anon_sym_0] = ACTIONS(3589), + [anon_sym__] = ACTIONS(3589), + }, + [1161] = { + [aux_sym_concatenation_repeat1] = STATE(1588), + [sym_file_descriptor] = ACTIONS(791), + [sym__concat] = ACTIONS(3579), + [ts_builtin_sym_end] = ACTIONS(791), + [anon_sym_SEMI] = ACTIONS(793), + [anon_sym_PIPE] = ACTIONS(793), + [anon_sym_SEMI_SEMI] = ACTIONS(791), + [anon_sym_PIPE_AMP] = ACTIONS(791), + [anon_sym_AMP_AMP] = ACTIONS(791), + [anon_sym_PIPE_PIPE] = ACTIONS(791), + [anon_sym_LT] = ACTIONS(793), + [anon_sym_GT] = ACTIONS(793), + [anon_sym_GT_GT] = ACTIONS(791), + [anon_sym_AMP_GT] = ACTIONS(793), + [anon_sym_AMP_GT_GT] = ACTIONS(791), + [anon_sym_LT_AMP] = ACTIONS(791), + [anon_sym_GT_AMP] = ACTIONS(791), + [anon_sym_LT_LT] = ACTIONS(793), + [anon_sym_LT_LT_DASH] = ACTIONS(791), + [anon_sym_LT_LT_LT] = ACTIONS(791), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(791), + [anon_sym_AMP] = ACTIONS(793), + }, + [1162] = { + [sym_subscript] = STATE(1598), + [sym_variable_name] = ACTIONS(3593), + [anon_sym_BANG] = ACTIONS(3595), + [anon_sym_DASH] = ACTIONS(3597), + [anon_sym_DOLLAR] = ACTIONS(3597), + [anon_sym_POUND] = ACTIONS(3595), + [sym_comment] = ACTIONS(281), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3599), + [anon_sym_STAR] = ACTIONS(3601), + [anon_sym_AT] = ACTIONS(3601), + [anon_sym_QMARK] = ACTIONS(3601), + [anon_sym_0] = ACTIONS(3599), + [anon_sym__] = ACTIONS(3599), + }, + [1163] = { + [sym__terminated_statement] = STATE(1601), + [sym_for_statement] = STATE(1599), + [sym_c_style_for_statement] = STATE(1599), + [sym_while_statement] = STATE(1599), + [sym_if_statement] = STATE(1599), + [sym_case_statement] = STATE(1599), + [sym_function_definition] = STATE(1599), + [sym_subshell] = STATE(1599), + [sym_pipeline] = STATE(1599), + [sym_list] = STATE(1599), + [sym_negated_command] = STATE(1599), + [sym_test_command] = STATE(1599), + [sym_declaration_command] = STATE(1599), + [sym_unset_command] = STATE(1599), + [sym_command] = STATE(1599), + [sym_command_name] = STATE(92), + [sym_variable_assignment] = STATE(1600), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(96), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), + [aux_sym__statements_repeat1] = STATE(1601), + [aux_sym_command_repeat1] = STATE(96), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), + [sym_variable_name] = ACTIONS(137), [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(111), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(119), - [anon_sym_declare] = ACTIONS(121), - [anon_sym_typeset] = ACTIONS(121), - [anon_sym_export] = ACTIONS(121), - [anon_sym_readonly] = ACTIONS(121), - [anon_sym_local] = ACTIONS(121), - [anon_sym_unset] = ACTIONS(123), - [anon_sym_unsetenv] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), + [anon_sym_LPAREN_LPAREN] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(149), + [anon_sym_declare] = ACTIONS(151), + [anon_sym_typeset] = ACTIONS(151), + [anon_sym_export] = ACTIONS(151), + [anon_sym_readonly] = ACTIONS(151), + [anon_sym_local] = ACTIONS(151), + [anon_sym_unset] = ACTIONS(153), + [anon_sym_unsetenv] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(159), }, - [1184] = { - [sym__terminated_statement] = STATE(1592), - [sym_for_statement] = STATE(1590), - [sym_c_style_for_statement] = STATE(1590), - [sym_while_statement] = STATE(1590), - [sym_if_statement] = STATE(1590), - [sym_case_statement] = STATE(1590), - [sym_function_definition] = STATE(1590), - [sym_subshell] = STATE(1590), - [sym_pipeline] = STATE(1590), - [sym_list] = STATE(1590), - [sym_negated_command] = STATE(1590), - [sym_test_command] = STATE(1590), - [sym_declaration_command] = STATE(1590), - [sym_unset_command] = STATE(1590), - [sym_command] = STATE(1590), - [sym_command_name] = STATE(165), - [sym_variable_assignment] = STATE(1591), - [sym_subscript] = STATE(53), - [sym_file_redirect] = STATE(168), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(47), - [sym_simple_expansion] = STATE(47), - [sym_string_expansion] = STATE(47), - [sym_expansion] = STATE(47), - [sym_command_substitution] = STATE(47), - [sym_process_substitution] = STATE(47), - [aux_sym__statements_repeat1] = STATE(1592), - [aux_sym_command_repeat1] = STATE(168), + [1164] = { + [sym__terminated_statement] = STATE(1604), + [sym_for_statement] = STATE(1602), + [sym_c_style_for_statement] = STATE(1602), + [sym_while_statement] = STATE(1602), + [sym_if_statement] = STATE(1602), + [sym_case_statement] = STATE(1602), + [sym_function_definition] = STATE(1602), + [sym_subshell] = STATE(1602), + [sym_pipeline] = STATE(1602), + [sym_list] = STATE(1602), + [sym_negated_command] = STATE(1602), + [sym_test_command] = STATE(1602), + [sym_declaration_command] = STATE(1602), + [sym_unset_command] = STATE(1602), + [sym_command] = STATE(1602), + [sym_command_name] = STATE(173), + [sym_variable_assignment] = STATE(1603), + [sym_subscript] = STATE(66), + [sym_file_redirect] = STATE(176), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(60), + [sym_simple_expansion] = STATE(60), + [sym_string_expansion] = STATE(60), + [sym_expansion] = STATE(60), + [sym_command_substitution] = STATE(60), + [sym_process_substitution] = STATE(60), + [aux_sym__statements_repeat1] = STATE(1604), + [aux_sym_command_repeat1] = STATE(176), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(69), + [sym_variable_name] = ACTIONS(95), [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(289), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(291), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(293), - [anon_sym_LBRACK] = ACTIONS(295), - [anon_sym_LBRACK_LBRACK] = ACTIONS(297), - [anon_sym_declare] = ACTIONS(299), - [anon_sym_typeset] = ACTIONS(299), - [anon_sym_export] = ACTIONS(299), - [anon_sym_readonly] = ACTIONS(299), - [anon_sym_local] = ACTIONS(299), - [anon_sym_unset] = ACTIONS(301), - [anon_sym_unsetenv] = ACTIONS(301), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(87), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(303), + [anon_sym_LPAREN_LPAREN] = ACTIONS(305), + [anon_sym_while] = ACTIONS(307), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(311), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(315), + [anon_sym_declare] = ACTIONS(317), + [anon_sym_typeset] = ACTIONS(317), + [anon_sym_export] = ACTIONS(317), + [anon_sym_readonly] = ACTIONS(317), + [anon_sym_local] = ACTIONS(317), + [anon_sym_unset] = ACTIONS(319), + [anon_sym_unsetenv] = ACTIONS(319), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(115), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(321), }, - [1185] = { - [sym__terminated_statement] = STATE(1595), - [sym_for_statement] = STATE(1593), - [sym_c_style_for_statement] = STATE(1593), - [sym_while_statement] = STATE(1593), - [sym_if_statement] = STATE(1593), - [sym_case_statement] = STATE(1593), - [sym_function_definition] = STATE(1593), - [sym_subshell] = STATE(1593), - [sym_pipeline] = STATE(1593), - [sym_list] = STATE(1593), - [sym_negated_command] = STATE(1593), - [sym_test_command] = STATE(1593), - [sym_declaration_command] = STATE(1593), - [sym_unset_command] = STATE(1593), - [sym_command] = STATE(1593), - [sym_command_name] = STATE(78), - [sym_variable_assignment] = STATE(1594), - [sym_subscript] = STATE(80), - [sym_file_redirect] = STATE(82), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(75), - [sym_simple_expansion] = STATE(75), - [sym_string_expansion] = STATE(75), - [sym_expansion] = STATE(75), - [sym_command_substitution] = STATE(75), - [sym_process_substitution] = STATE(75), - [aux_sym__statements_repeat1] = STATE(1595), - [aux_sym_command_repeat1] = STATE(82), + [1165] = { + [sym__terminated_statement] = STATE(1607), + [sym_for_statement] = STATE(1605), + [sym_c_style_for_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_case_statement] = STATE(1605), + [sym_function_definition] = STATE(1605), + [sym_subshell] = STATE(1605), + [sym_pipeline] = STATE(1605), + [sym_list] = STATE(1605), + [sym_negated_command] = STATE(1605), + [sym_test_command] = STATE(1605), + [sym_declaration_command] = STATE(1605), + [sym_unset_command] = STATE(1605), + [sym_command] = STATE(1605), + [sym_command_name] = STATE(92), + [sym_variable_assignment] = STATE(1606), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(96), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), + [aux_sym__statements_repeat1] = STATE(1607), + [aux_sym_command_repeat1] = STATE(96), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), + [sym_variable_name] = ACTIONS(137), [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(111), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(119), - [anon_sym_declare] = ACTIONS(121), - [anon_sym_typeset] = ACTIONS(121), - [anon_sym_export] = ACTIONS(121), - [anon_sym_readonly] = ACTIONS(121), - [anon_sym_local] = ACTIONS(121), - [anon_sym_unset] = ACTIONS(123), - [anon_sym_unsetenv] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), + [anon_sym_LPAREN_LPAREN] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(149), + [anon_sym_declare] = ACTIONS(151), + [anon_sym_typeset] = ACTIONS(151), + [anon_sym_export] = ACTIONS(151), + [anon_sym_readonly] = ACTIONS(151), + [anon_sym_local] = ACTIONS(151), + [anon_sym_unset] = ACTIONS(153), + [anon_sym_unsetenv] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(159), }, - [1186] = { - [sym_file_descriptor] = ACTIONS(749), - [ts_builtin_sym_end] = ACTIONS(749), - [anon_sym_SEMI] = ACTIONS(751), - [anon_sym_esac] = ACTIONS(749), - [anon_sym_PIPE] = ACTIONS(751), - [anon_sym_RPAREN] = ACTIONS(749), - [anon_sym_SEMI_SEMI] = ACTIONS(749), - [anon_sym_PIPE_AMP] = ACTIONS(749), - [anon_sym_AMP_AMP] = ACTIONS(749), - [anon_sym_PIPE_PIPE] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(751), - [anon_sym_GT] = ACTIONS(751), - [anon_sym_GT_GT] = ACTIONS(749), - [anon_sym_AMP_GT] = ACTIONS(751), - [anon_sym_AMP_GT_GT] = ACTIONS(749), - [anon_sym_LT_AMP] = ACTIONS(749), - [anon_sym_GT_AMP] = ACTIONS(749), - [anon_sym_LT_LT] = ACTIONS(751), - [anon_sym_LT_LT_DASH] = ACTIONS(749), - [anon_sym_LT_LT_LT] = ACTIONS(749), - [anon_sym_BQUOTE] = ACTIONS(749), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(749), - [anon_sym_AMP] = ACTIONS(751), + [1166] = { + [sym_file_descriptor] = ACTIONS(791), + [ts_builtin_sym_end] = ACTIONS(791), + [anon_sym_SEMI] = ACTIONS(793), + [anon_sym_esac] = ACTIONS(791), + [anon_sym_PIPE] = ACTIONS(793), + [anon_sym_RPAREN] = ACTIONS(791), + [anon_sym_SEMI_SEMI] = ACTIONS(791), + [anon_sym_PIPE_AMP] = ACTIONS(791), + [anon_sym_AMP_AMP] = ACTIONS(791), + [anon_sym_PIPE_PIPE] = ACTIONS(791), + [anon_sym_LT] = ACTIONS(793), + [anon_sym_GT] = ACTIONS(793), + [anon_sym_GT_GT] = ACTIONS(791), + [anon_sym_AMP_GT] = ACTIONS(793), + [anon_sym_AMP_GT_GT] = ACTIONS(791), + [anon_sym_LT_AMP] = ACTIONS(791), + [anon_sym_GT_AMP] = ACTIONS(791), + [anon_sym_LT_LT] = ACTIONS(793), + [anon_sym_LT_LT_DASH] = ACTIONS(791), + [anon_sym_LT_LT_LT] = ACTIONS(791), + [anon_sym_BQUOTE] = ACTIONS(791), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(791), + [anon_sym_AMP] = ACTIONS(793), }, - [1187] = { - [sym_file_descriptor] = ACTIONS(1968), - [ts_builtin_sym_end] = ACTIONS(1968), - [anon_sym_SEMI] = ACTIONS(1970), - [anon_sym_esac] = ACTIONS(1968), - [anon_sym_PIPE] = ACTIONS(1970), - [anon_sym_RPAREN] = ACTIONS(1968), - [anon_sym_SEMI_SEMI] = ACTIONS(1968), - [anon_sym_PIPE_AMP] = ACTIONS(1968), - [anon_sym_AMP_AMP] = ACTIONS(1968), - [anon_sym_PIPE_PIPE] = ACTIONS(1968), - [anon_sym_LT] = ACTIONS(1970), - [anon_sym_GT] = ACTIONS(1970), - [anon_sym_GT_GT] = ACTIONS(1968), - [anon_sym_AMP_GT] = ACTIONS(1970), - [anon_sym_AMP_GT_GT] = ACTIONS(1968), - [anon_sym_LT_AMP] = ACTIONS(1968), - [anon_sym_GT_AMP] = ACTIONS(1968), - [anon_sym_LT_LT] = ACTIONS(1970), - [anon_sym_LT_LT_DASH] = ACTIONS(1968), - [anon_sym_LT_LT_LT] = ACTIONS(1968), - [anon_sym_BQUOTE] = ACTIONS(1968), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1968), - [anon_sym_AMP] = ACTIONS(1970), + [1167] = { + [sym_file_descriptor] = ACTIONS(2011), + [ts_builtin_sym_end] = ACTIONS(2011), + [anon_sym_SEMI] = ACTIONS(2013), + [anon_sym_esac] = ACTIONS(2011), + [anon_sym_PIPE] = ACTIONS(2013), + [anon_sym_RPAREN] = ACTIONS(2011), + [anon_sym_SEMI_SEMI] = ACTIONS(2011), + [anon_sym_PIPE_AMP] = ACTIONS(2011), + [anon_sym_AMP_AMP] = ACTIONS(2011), + [anon_sym_PIPE_PIPE] = ACTIONS(2011), + [anon_sym_LT] = ACTIONS(2013), + [anon_sym_GT] = ACTIONS(2013), + [anon_sym_GT_GT] = ACTIONS(2011), + [anon_sym_AMP_GT] = ACTIONS(2013), + [anon_sym_AMP_GT_GT] = ACTIONS(2011), + [anon_sym_LT_AMP] = ACTIONS(2011), + [anon_sym_GT_AMP] = ACTIONS(2011), + [anon_sym_LT_LT] = ACTIONS(2013), + [anon_sym_LT_LT_DASH] = ACTIONS(2011), + [anon_sym_LT_LT_LT] = ACTIONS(2011), + [anon_sym_BQUOTE] = ACTIONS(2011), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2011), + [anon_sym_AMP] = ACTIONS(2013), }, - [1188] = { - [aux_sym_concatenation_repeat1] = STATE(1576), - [sym_file_descriptor] = ACTIONS(1972), - [sym__concat] = ACTIONS(3592), - [ts_builtin_sym_end] = ACTIONS(1972), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_PIPE] = ACTIONS(1974), - [anon_sym_SEMI_SEMI] = ACTIONS(1972), - [anon_sym_PIPE_AMP] = ACTIONS(1972), - [anon_sym_AMP_AMP] = ACTIONS(1972), - [anon_sym_PIPE_PIPE] = ACTIONS(1972), - [anon_sym_LT] = ACTIONS(1974), - [anon_sym_GT] = ACTIONS(1974), - [anon_sym_GT_GT] = ACTIONS(1972), - [anon_sym_AMP_GT] = ACTIONS(1974), - [anon_sym_AMP_GT_GT] = ACTIONS(1972), - [anon_sym_LT_AMP] = ACTIONS(1972), - [anon_sym_GT_AMP] = ACTIONS(1972), - [anon_sym_LT_LT] = ACTIONS(1974), - [anon_sym_LT_LT_DASH] = ACTIONS(1972), - [anon_sym_LT_LT_LT] = ACTIONS(1972), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1972), - [anon_sym_AMP] = ACTIONS(1974), + [1168] = { + [aux_sym_concatenation_repeat1] = STATE(1588), + [sym_file_descriptor] = ACTIONS(2015), + [sym__concat] = ACTIONS(3579), + [ts_builtin_sym_end] = ACTIONS(2015), + [anon_sym_SEMI] = ACTIONS(2017), + [anon_sym_PIPE] = ACTIONS(2017), + [anon_sym_SEMI_SEMI] = ACTIONS(2015), + [anon_sym_PIPE_AMP] = ACTIONS(2015), + [anon_sym_AMP_AMP] = ACTIONS(2015), + [anon_sym_PIPE_PIPE] = ACTIONS(2015), + [anon_sym_LT] = ACTIONS(2017), + [anon_sym_GT] = ACTIONS(2017), + [anon_sym_GT_GT] = ACTIONS(2015), + [anon_sym_AMP_GT] = ACTIONS(2017), + [anon_sym_AMP_GT_GT] = ACTIONS(2015), + [anon_sym_LT_AMP] = ACTIONS(2015), + [anon_sym_GT_AMP] = ACTIONS(2015), + [anon_sym_LT_LT] = ACTIONS(2017), + [anon_sym_LT_LT_DASH] = ACTIONS(2015), + [anon_sym_LT_LT_LT] = ACTIONS(2015), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2017), }, - [1189] = { - [aux_sym_concatenation_repeat1] = STATE(1576), - [sym_file_descriptor] = ACTIONS(1976), - [sym__concat] = ACTIONS(3592), - [ts_builtin_sym_end] = ACTIONS(1976), - [anon_sym_SEMI] = ACTIONS(1978), - [anon_sym_PIPE] = ACTIONS(1978), - [anon_sym_SEMI_SEMI] = ACTIONS(1976), - [anon_sym_PIPE_AMP] = ACTIONS(1976), - [anon_sym_AMP_AMP] = ACTIONS(1976), - [anon_sym_PIPE_PIPE] = ACTIONS(1976), - [anon_sym_LT] = ACTIONS(1978), - [anon_sym_GT] = ACTIONS(1978), - [anon_sym_GT_GT] = ACTIONS(1976), - [anon_sym_AMP_GT] = ACTIONS(1978), - [anon_sym_AMP_GT_GT] = ACTIONS(1976), - [anon_sym_LT_AMP] = ACTIONS(1976), - [anon_sym_GT_AMP] = ACTIONS(1976), - [anon_sym_LT_LT] = ACTIONS(1978), - [anon_sym_LT_LT_DASH] = ACTIONS(1976), - [anon_sym_LT_LT_LT] = ACTIONS(1976), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1978), + [1169] = { + [aux_sym_concatenation_repeat1] = STATE(1588), + [sym_file_descriptor] = ACTIONS(2019), + [sym__concat] = ACTIONS(3579), + [ts_builtin_sym_end] = ACTIONS(2019), + [anon_sym_SEMI] = ACTIONS(2021), + [anon_sym_PIPE] = ACTIONS(2021), + [anon_sym_SEMI_SEMI] = ACTIONS(2019), + [anon_sym_PIPE_AMP] = ACTIONS(2019), + [anon_sym_AMP_AMP] = ACTIONS(2019), + [anon_sym_PIPE_PIPE] = ACTIONS(2019), + [anon_sym_LT] = ACTIONS(2021), + [anon_sym_GT] = ACTIONS(2021), + [anon_sym_GT_GT] = ACTIONS(2019), + [anon_sym_AMP_GT] = ACTIONS(2021), + [anon_sym_AMP_GT_GT] = ACTIONS(2019), + [anon_sym_LT_AMP] = ACTIONS(2019), + [anon_sym_GT_AMP] = ACTIONS(2019), + [anon_sym_LT_LT] = ACTIONS(2021), + [anon_sym_LT_LT_DASH] = ACTIONS(2019), + [anon_sym_LT_LT_LT] = ACTIONS(2019), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2019), + [anon_sym_AMP] = ACTIONS(2021), }, - [1190] = { - [sym_file_descriptor] = ACTIONS(1976), - [ts_builtin_sym_end] = ACTIONS(1976), - [anon_sym_SEMI] = ACTIONS(1978), - [anon_sym_esac] = ACTIONS(1976), - [anon_sym_PIPE] = ACTIONS(1978), - [anon_sym_RPAREN] = ACTIONS(1976), - [anon_sym_SEMI_SEMI] = ACTIONS(1976), - [anon_sym_PIPE_AMP] = ACTIONS(1976), - [anon_sym_AMP_AMP] = ACTIONS(1976), - [anon_sym_PIPE_PIPE] = ACTIONS(1976), - [anon_sym_LT] = ACTIONS(1978), - [anon_sym_GT] = ACTIONS(1978), - [anon_sym_GT_GT] = ACTIONS(1976), - [anon_sym_AMP_GT] = ACTIONS(1978), - [anon_sym_AMP_GT_GT] = ACTIONS(1976), - [anon_sym_LT_AMP] = ACTIONS(1976), - [anon_sym_GT_AMP] = ACTIONS(1976), - [anon_sym_LT_LT] = ACTIONS(1978), - [anon_sym_LT_LT_DASH] = ACTIONS(1976), - [anon_sym_LT_LT_LT] = ACTIONS(1976), - [anon_sym_BQUOTE] = ACTIONS(1976), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1978), + [1170] = { + [sym_file_descriptor] = ACTIONS(2019), + [ts_builtin_sym_end] = ACTIONS(2019), + [anon_sym_SEMI] = ACTIONS(2021), + [anon_sym_esac] = ACTIONS(2019), + [anon_sym_PIPE] = ACTIONS(2021), + [anon_sym_RPAREN] = ACTIONS(2019), + [anon_sym_SEMI_SEMI] = ACTIONS(2019), + [anon_sym_PIPE_AMP] = ACTIONS(2019), + [anon_sym_AMP_AMP] = ACTIONS(2019), + [anon_sym_PIPE_PIPE] = ACTIONS(2019), + [anon_sym_LT] = ACTIONS(2021), + [anon_sym_GT] = ACTIONS(2021), + [anon_sym_GT_GT] = ACTIONS(2019), + [anon_sym_AMP_GT] = ACTIONS(2021), + [anon_sym_AMP_GT_GT] = ACTIONS(2019), + [anon_sym_LT_AMP] = ACTIONS(2019), + [anon_sym_GT_AMP] = ACTIONS(2019), + [anon_sym_LT_LT] = ACTIONS(2021), + [anon_sym_LT_LT_DASH] = ACTIONS(2019), + [anon_sym_LT_LT_LT] = ACTIONS(2019), + [anon_sym_BQUOTE] = ACTIONS(2019), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2019), + [anon_sym_AMP] = ACTIONS(2021), }, - [1191] = { - [sym_file_redirect] = STATE(1191), - [sym_heredoc_redirect] = STATE(1191), - [sym_herestring_redirect] = STATE(1191), - [aux_sym_while_statement_repeat1] = STATE(1191), - [sym_file_descriptor] = ACTIONS(3616), - [ts_builtin_sym_end] = ACTIONS(1984), - [anon_sym_SEMI] = ACTIONS(1989), - [anon_sym_PIPE] = ACTIONS(1989), - [anon_sym_SEMI_SEMI] = ACTIONS(1984), - [anon_sym_PIPE_AMP] = ACTIONS(1984), - [anon_sym_AMP_AMP] = ACTIONS(1984), - [anon_sym_PIPE_PIPE] = ACTIONS(1984), - [anon_sym_LT] = ACTIONS(3619), - [anon_sym_GT] = ACTIONS(3619), - [anon_sym_GT_GT] = ACTIONS(3622), - [anon_sym_AMP_GT] = ACTIONS(3619), - [anon_sym_AMP_GT_GT] = ACTIONS(3622), - [anon_sym_LT_AMP] = ACTIONS(3622), - [anon_sym_GT_AMP] = ACTIONS(3622), - [anon_sym_LT_LT] = ACTIONS(3625), - [anon_sym_LT_LT_DASH] = ACTIONS(3628), - [anon_sym_LT_LT_LT] = ACTIONS(3631), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1984), - [anon_sym_AMP] = ACTIONS(1989), + [1171] = { + [sym_file_redirect] = STATE(1171), + [sym_heredoc_redirect] = STATE(1171), + [sym_herestring_redirect] = STATE(1171), + [aux_sym_while_statement_repeat1] = STATE(1171), + [sym_file_descriptor] = ACTIONS(3603), + [ts_builtin_sym_end] = ACTIONS(2027), + [anon_sym_SEMI] = ACTIONS(2032), + [anon_sym_PIPE] = ACTIONS(2032), + [anon_sym_SEMI_SEMI] = ACTIONS(2027), + [anon_sym_PIPE_AMP] = ACTIONS(2027), + [anon_sym_AMP_AMP] = ACTIONS(2027), + [anon_sym_PIPE_PIPE] = ACTIONS(2027), + [anon_sym_LT] = ACTIONS(3606), + [anon_sym_GT] = ACTIONS(3606), + [anon_sym_GT_GT] = ACTIONS(3609), + [anon_sym_AMP_GT] = ACTIONS(3606), + [anon_sym_AMP_GT_GT] = ACTIONS(3609), + [anon_sym_LT_AMP] = ACTIONS(3609), + [anon_sym_GT_AMP] = ACTIONS(3609), + [anon_sym_LT_LT] = ACTIONS(3612), + [anon_sym_LT_LT_DASH] = ACTIONS(3615), + [anon_sym_LT_LT_LT] = ACTIONS(3618), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2027), + [anon_sym_AMP] = ACTIONS(2032), }, - [1192] = { - [sym__concat] = ACTIONS(2876), - [anon_sym_PIPE] = ACTIONS(2878), - [anon_sym_RPAREN] = ACTIONS(2876), - [anon_sym_AMP_AMP] = ACTIONS(2876), - [anon_sym_PIPE_PIPE] = ACTIONS(2876), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2876), - [anon_sym_EQ_TILDE] = ACTIONS(2876), - [anon_sym_EQ_EQ] = ACTIONS(2876), - [anon_sym_EQ] = ACTIONS(2878), - [anon_sym_LT] = ACTIONS(2876), - [anon_sym_GT] = ACTIONS(2876), - [anon_sym_BANG_EQ] = ACTIONS(2876), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2876), + [1172] = { + [aux_sym_concatenation_repeat1] = STATE(1608), + [sym_file_descriptor] = ACTIONS(807), + [sym__concat] = ACTIONS(1130), + [sym_variable_name] = ACTIONS(807), + [anon_sym_SEMI] = ACTIONS(809), + [anon_sym_PIPE] = ACTIONS(809), + [anon_sym_SEMI_SEMI] = ACTIONS(807), + [anon_sym_PIPE_AMP] = ACTIONS(807), + [anon_sym_AMP_AMP] = ACTIONS(807), + [anon_sym_PIPE_PIPE] = ACTIONS(807), + [anon_sym_LT] = ACTIONS(809), + [anon_sym_GT] = ACTIONS(809), + [anon_sym_GT_GT] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(809), + [anon_sym_AMP_GT_GT] = ACTIONS(807), + [anon_sym_LT_AMP] = ACTIONS(807), + [anon_sym_GT_AMP] = ACTIONS(807), + [sym__special_characters] = ACTIONS(807), + [anon_sym_DQUOTE] = ACTIONS(807), + [anon_sym_DOLLAR] = ACTIONS(809), + [sym_raw_string] = ACTIONS(807), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(807), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(807), + [anon_sym_BQUOTE] = ACTIONS(807), + [anon_sym_LT_LPAREN] = ACTIONS(807), + [anon_sym_GT_LPAREN] = ACTIONS(807), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(809), + [anon_sym_LF] = ACTIONS(807), + [anon_sym_AMP] = ACTIONS(809), }, - [1193] = { - [sym__concat] = ACTIONS(2890), - [anon_sym_PIPE] = ACTIONS(2892), - [anon_sym_RPAREN] = ACTIONS(2890), - [anon_sym_AMP_AMP] = ACTIONS(2890), - [anon_sym_PIPE_PIPE] = ACTIONS(2890), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2890), - [anon_sym_EQ_TILDE] = ACTIONS(2890), - [anon_sym_EQ_EQ] = ACTIONS(2890), - [anon_sym_EQ] = ACTIONS(2892), - [anon_sym_LT] = ACTIONS(2890), - [anon_sym_GT] = ACTIONS(2890), - [anon_sym_BANG_EQ] = ACTIONS(2890), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2890), + [1173] = { + [anon_sym_LT] = ACTIONS(3621), + [anon_sym_GT] = ACTIONS(3621), + [anon_sym_GT_GT] = ACTIONS(3623), + [anon_sym_AMP_GT] = ACTIONS(3621), + [anon_sym_AMP_GT_GT] = ACTIONS(3623), + [anon_sym_LT_AMP] = ACTIONS(3623), + [anon_sym_GT_AMP] = ACTIONS(3623), + [sym_comment] = ACTIONS(55), }, - [1194] = { - [aux_sym_concatenation_repeat1] = STATE(1293), - [sym__concat] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(3634), - [sym_comment] = ACTIONS(53), + [1174] = { + [sym_concatenation] = STATE(1166), + [sym_string] = STATE(1611), + [sym_simple_expansion] = STATE(1611), + [sym_string_expansion] = STATE(1611), + [sym_expansion] = STATE(1611), + [sym_command_substitution] = STATE(1611), + [sym_process_substitution] = STATE(1611), + [sym__special_characters] = ACTIONS(3625), + [anon_sym_DQUOTE] = ACTIONS(2396), + [anon_sym_DOLLAR] = ACTIONS(2398), + [sym_raw_string] = ACTIONS(3627), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2402), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2404), + [anon_sym_BQUOTE] = ACTIONS(2406), + [anon_sym_LT_LPAREN] = ACTIONS(2408), + [anon_sym_GT_LPAREN] = ACTIONS(2408), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(3627), }, - [1195] = { - [aux_sym_concatenation_repeat1] = STATE(1293), - [sym__concat] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(3636), - [sym_comment] = ACTIONS(53), - }, - [1196] = { - [anon_sym_RBRACE] = ACTIONS(3636), - [sym_comment] = ACTIONS(53), - }, - [1197] = { - [sym_concatenation] = STATE(1600), - [sym_string] = STATE(1599), - [sym_simple_expansion] = STATE(1599), - [sym_string_expansion] = STATE(1599), - [sym_expansion] = STATE(1599), - [sym_command_substitution] = STATE(1599), - [sym_process_substitution] = STATE(1599), - [anon_sym_RBRACE] = ACTIONS(3636), - [sym__special_characters] = ACTIONS(3638), - [anon_sym_DQUOTE] = ACTIONS(1802), - [anon_sym_DOLLAR] = ACTIONS(1804), - [sym_raw_string] = ACTIONS(3640), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1808), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1810), - [anon_sym_BQUOTE] = ACTIONS(1812), - [anon_sym_LT_LPAREN] = ACTIONS(1814), - [anon_sym_GT_LPAREN] = ACTIONS(1814), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3640), - }, - [1198] = { - [sym__concat] = ACTIONS(2926), - [anon_sym_PIPE] = ACTIONS(2928), - [anon_sym_RPAREN] = ACTIONS(2926), - [anon_sym_AMP_AMP] = ACTIONS(2926), - [anon_sym_PIPE_PIPE] = ACTIONS(2926), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2926), - [anon_sym_EQ_TILDE] = ACTIONS(2926), - [anon_sym_EQ_EQ] = ACTIONS(2926), - [anon_sym_EQ] = ACTIONS(2928), - [anon_sym_LT] = ACTIONS(2926), - [anon_sym_GT] = ACTIONS(2926), - [anon_sym_BANG_EQ] = ACTIONS(2926), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2926), - }, - [1199] = { - [sym_comment] = ACTIONS(265), - [sym_regex_without_right_brace] = ACTIONS(3642), - }, - [1200] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(3644), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [1201] = { - [sym_comment] = ACTIONS(265), - [sym_regex_without_right_brace] = ACTIONS(3646), - }, - [1202] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(3636), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [1203] = { - [sym_concatenation] = STATE(1605), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(1605), - [anon_sym_RBRACE] = ACTIONS(3648), - [anon_sym_EQ] = ACTIONS(3650), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(3652), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(3650), - [anon_sym_COLON_QMARK] = ACTIONS(3650), - [anon_sym_COLON_DASH] = ACTIONS(3650), - [anon_sym_PERCENT] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [1204] = { - [sym__concat] = ACTIONS(2990), - [anon_sym_PIPE] = ACTIONS(2992), - [anon_sym_RPAREN] = ACTIONS(2990), - [anon_sym_AMP_AMP] = ACTIONS(2990), - [anon_sym_PIPE_PIPE] = ACTIONS(2990), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2990), - [anon_sym_EQ_TILDE] = ACTIONS(2990), - [anon_sym_EQ_EQ] = ACTIONS(2990), - [anon_sym_EQ] = ACTIONS(2992), - [anon_sym_LT] = ACTIONS(2990), - [anon_sym_GT] = ACTIONS(2990), - [anon_sym_BANG_EQ] = ACTIONS(2990), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2990), - }, - [1205] = { - [sym_concatenation] = STATE(1606), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(1606), - [anon_sym_RBRACE] = ACTIONS(3636), - [anon_sym_EQ] = ACTIONS(3654), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(3656), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(3654), - [anon_sym_COLON_QMARK] = ACTIONS(3654), - [anon_sym_COLON_DASH] = ACTIONS(3654), - [anon_sym_PERCENT] = ACTIONS(3654), - [anon_sym_DASH] = ACTIONS(3654), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [1206] = { - [sym__concat] = ACTIONS(3033), - [anon_sym_PIPE] = ACTIONS(3035), - [anon_sym_RPAREN] = ACTIONS(3033), - [anon_sym_AMP_AMP] = ACTIONS(3033), - [anon_sym_PIPE_PIPE] = ACTIONS(3033), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3033), - [anon_sym_EQ_TILDE] = ACTIONS(3033), - [anon_sym_EQ_EQ] = ACTIONS(3033), - [anon_sym_EQ] = ACTIONS(3035), - [anon_sym_LT] = ACTIONS(3033), - [anon_sym_GT] = ACTIONS(3033), - [anon_sym_BANG_EQ] = ACTIONS(3033), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(3033), - }, - [1207] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(3658), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(901), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), - }, - [1208] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(3658), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), - }, - [1209] = { - [sym__concat] = ACTIONS(3071), - [anon_sym_PIPE] = ACTIONS(3073), - [anon_sym_RPAREN] = ACTIONS(3071), - [anon_sym_AMP_AMP] = ACTIONS(3071), - [anon_sym_PIPE_PIPE] = ACTIONS(3071), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3071), - [anon_sym_EQ_TILDE] = ACTIONS(3071), - [anon_sym_EQ_EQ] = ACTIONS(3071), - [anon_sym_EQ] = ACTIONS(3073), - [anon_sym_LT] = ACTIONS(3071), - [anon_sym_GT] = ACTIONS(3071), - [anon_sym_BANG_EQ] = ACTIONS(3071), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(3071), - }, - [1210] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(3660), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(901), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), - }, - [1211] = { - [sym_variable_name] = ACTIONS(2056), - [ts_builtin_sym_end] = ACTIONS(2056), - [anon_sym_SEMI] = ACTIONS(2058), - [anon_sym_PIPE] = ACTIONS(2058), - [anon_sym_RPAREN] = ACTIONS(2056), - [anon_sym_SEMI_SEMI] = ACTIONS(2056), - [anon_sym_PIPE_AMP] = ACTIONS(2056), - [anon_sym_AMP_AMP] = ACTIONS(2056), - [anon_sym_PIPE_PIPE] = ACTIONS(2056), - [sym__special_characters] = ACTIONS(2056), - [anon_sym_DQUOTE] = ACTIONS(2056), - [anon_sym_DOLLAR] = ACTIONS(2058), - [sym_raw_string] = ACTIONS(2056), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2056), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2056), - [anon_sym_BQUOTE] = ACTIONS(2056), - [anon_sym_LT_LPAREN] = ACTIONS(2056), - [anon_sym_GT_LPAREN] = ACTIONS(2056), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2058), - [sym_word] = ACTIONS(2058), - [anon_sym_LF] = ACTIONS(2056), - [anon_sym_AMP] = ACTIONS(2058), - }, - [1212] = { - [sym_concatenation] = STATE(977), - [sym_string] = STATE(534), - [sym_simple_expansion] = STATE(534), - [sym_string_expansion] = STATE(534), - [sym_expansion] = STATE(534), - [sym_command_substitution] = STATE(534), - [sym_process_substitution] = STATE(534), - [aux_sym_for_statement_repeat1] = STATE(977), - [anon_sym_RPAREN] = ACTIONS(3662), - [sym__special_characters] = ACTIONS(1077), - [anon_sym_DQUOTE] = ACTIONS(1079), - [anon_sym_DOLLAR] = ACTIONS(1081), - [sym_raw_string] = ACTIONS(1083), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1085), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1087), - [anon_sym_BQUOTE] = ACTIONS(1089), - [anon_sym_LT_LPAREN] = ACTIONS(1091), - [anon_sym_GT_LPAREN] = ACTIONS(1091), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1083), - }, - [1213] = { - [sym__concat] = ACTIONS(2876), - [sym_variable_name] = ACTIONS(2876), - [ts_builtin_sym_end] = ACTIONS(2876), - [anon_sym_SEMI] = ACTIONS(2878), - [anon_sym_PIPE] = ACTIONS(2878), - [anon_sym_RPAREN] = ACTIONS(2876), - [anon_sym_SEMI_SEMI] = ACTIONS(2876), - [anon_sym_PIPE_AMP] = ACTIONS(2876), - [anon_sym_AMP_AMP] = ACTIONS(2876), - [anon_sym_PIPE_PIPE] = ACTIONS(2876), - [sym__special_characters] = ACTIONS(2876), - [anon_sym_DQUOTE] = ACTIONS(2876), - [anon_sym_DOLLAR] = ACTIONS(2878), - [sym_raw_string] = ACTIONS(2876), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2876), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2876), - [anon_sym_BQUOTE] = ACTIONS(2876), - [anon_sym_LT_LPAREN] = ACTIONS(2876), - [anon_sym_GT_LPAREN] = ACTIONS(2876), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2878), - [sym_word] = ACTIONS(2878), - [anon_sym_LF] = ACTIONS(2876), - [anon_sym_AMP] = ACTIONS(2878), - }, - [1214] = { - [sym__concat] = ACTIONS(2890), - [sym_variable_name] = ACTIONS(2890), - [ts_builtin_sym_end] = ACTIONS(2890), - [anon_sym_SEMI] = ACTIONS(2892), - [anon_sym_PIPE] = ACTIONS(2892), - [anon_sym_RPAREN] = ACTIONS(2890), - [anon_sym_SEMI_SEMI] = ACTIONS(2890), - [anon_sym_PIPE_AMP] = ACTIONS(2890), - [anon_sym_AMP_AMP] = ACTIONS(2890), - [anon_sym_PIPE_PIPE] = ACTIONS(2890), - [sym__special_characters] = ACTIONS(2890), - [anon_sym_DQUOTE] = ACTIONS(2890), - [anon_sym_DOLLAR] = ACTIONS(2892), - [sym_raw_string] = ACTIONS(2890), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2890), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2890), - [anon_sym_BQUOTE] = ACTIONS(2890), - [anon_sym_LT_LPAREN] = ACTIONS(2890), - [anon_sym_GT_LPAREN] = ACTIONS(2890), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2892), - [sym_word] = ACTIONS(2892), - [anon_sym_LF] = ACTIONS(2890), - [anon_sym_AMP] = ACTIONS(2892), - }, - [1215] = { - [aux_sym_concatenation_repeat1] = STATE(1293), - [sym__concat] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(3664), - [sym_comment] = ACTIONS(53), - }, - [1216] = { - [aux_sym_concatenation_repeat1] = STATE(1293), - [sym__concat] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(3666), - [sym_comment] = ACTIONS(53), - }, - [1217] = { - [anon_sym_RBRACE] = ACTIONS(3666), - [sym_comment] = ACTIONS(53), - }, - [1218] = { - [sym_concatenation] = STATE(1614), + [1175] = { + [sym_concatenation] = STATE(1170), [sym_string] = STATE(1613), [sym_simple_expansion] = STATE(1613), [sym_string_expansion] = STATE(1613), [sym_expansion] = STATE(1613), [sym_command_substitution] = STATE(1613), [sym_process_substitution] = STATE(1613), - [anon_sym_RBRACE] = ACTIONS(3666), - [sym__special_characters] = ACTIONS(3668), - [anon_sym_DQUOTE] = ACTIONS(1802), - [anon_sym_DOLLAR] = ACTIONS(1804), - [sym_raw_string] = ACTIONS(3670), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1808), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1810), - [anon_sym_BQUOTE] = ACTIONS(1812), - [anon_sym_LT_LPAREN] = ACTIONS(1814), - [anon_sym_GT_LPAREN] = ACTIONS(1814), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3670), + [sym__special_characters] = ACTIONS(3629), + [anon_sym_DQUOTE] = ACTIONS(2396), + [anon_sym_DOLLAR] = ACTIONS(2398), + [sym_raw_string] = ACTIONS(3631), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2402), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2404), + [anon_sym_BQUOTE] = ACTIONS(2406), + [anon_sym_LT_LPAREN] = ACTIONS(2408), + [anon_sym_GT_LPAREN] = ACTIONS(2408), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(3631), + }, + [1176] = { + [sym_file_redirect] = STATE(1614), + [sym_heredoc_redirect] = STATE(1614), + [sym_herestring_redirect] = STATE(1614), + [aux_sym_while_statement_repeat1] = STATE(1614), + [sym_file_descriptor] = ACTIONS(2424), + [anon_sym_SEMI] = ACTIONS(2418), + [anon_sym_PIPE] = ACTIONS(2418), + [anon_sym_SEMI_SEMI] = ACTIONS(2416), + [anon_sym_PIPE_AMP] = ACTIONS(2416), + [anon_sym_AMP_AMP] = ACTIONS(2416), + [anon_sym_PIPE_PIPE] = ACTIONS(2416), + [anon_sym_LT] = ACTIONS(2426), + [anon_sym_GT] = ACTIONS(2426), + [anon_sym_GT_GT] = ACTIONS(2428), + [anon_sym_AMP_GT] = ACTIONS(2426), + [anon_sym_AMP_GT_GT] = ACTIONS(2428), + [anon_sym_LT_AMP] = ACTIONS(2428), + [anon_sym_GT_AMP] = ACTIONS(2428), + [anon_sym_LT_LT] = ACTIONS(1308), + [anon_sym_LT_LT_DASH] = ACTIONS(1310), + [anon_sym_LT_LT_LT] = ACTIONS(2430), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2416), + [anon_sym_AMP] = ACTIONS(2418), + }, + [1177] = { + [sym_file_redirect] = STATE(710), + [sym_heredoc_redirect] = STATE(710), + [sym_heredoc_body] = STATE(1188), + [sym_herestring_redirect] = STATE(710), + [aux_sym_while_statement_repeat1] = STATE(710), + [sym__simple_heredoc_body] = ACTIONS(339), + [sym__heredoc_body_beginning] = ACTIONS(341), + [sym_file_descriptor] = ACTIONS(537), + [anon_sym_SEMI] = ACTIONS(2479), + [anon_sym_PIPE] = ACTIONS(2479), + [anon_sym_SEMI_SEMI] = ACTIONS(2477), + [anon_sym_PIPE_AMP] = ACTIONS(2477), + [anon_sym_AMP_AMP] = ACTIONS(2477), + [anon_sym_PIPE_PIPE] = ACTIONS(2477), + [anon_sym_LT] = ACTIONS(541), + [anon_sym_GT] = ACTIONS(541), + [anon_sym_GT_GT] = ACTIONS(543), + [anon_sym_AMP_GT] = ACTIONS(541), + [anon_sym_AMP_GT_GT] = ACTIONS(543), + [anon_sym_LT_AMP] = ACTIONS(543), + [anon_sym_GT_AMP] = ACTIONS(543), + [anon_sym_LT_LT] = ACTIONS(355), + [anon_sym_LT_LT_DASH] = ACTIONS(357), + [anon_sym_LT_LT_LT] = ACTIONS(545), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2477), + [anon_sym_AMP] = ACTIONS(2479), + }, + [1178] = { + [sym_compound_statement] = STATE(1615), + [anon_sym_LBRACE] = ACTIONS(595), + [sym_comment] = ACTIONS(55), + }, + [1179] = { + [anon_sym_LT] = ACTIONS(3633), + [anon_sym_GT] = ACTIONS(3633), + [anon_sym_GT_GT] = ACTIONS(3635), + [anon_sym_AMP_GT] = ACTIONS(3633), + [anon_sym_AMP_GT_GT] = ACTIONS(3635), + [anon_sym_LT_AMP] = ACTIONS(3635), + [anon_sym_GT_AMP] = ACTIONS(3635), + [sym_comment] = ACTIONS(55), + }, + [1180] = { + [sym_concatenation] = STATE(1238), + [sym_string] = STATE(1618), + [sym_simple_expansion] = STATE(1618), + [sym_string_expansion] = STATE(1618), + [sym_expansion] = STATE(1618), + [sym_command_substitution] = STATE(1618), + [sym_process_substitution] = STATE(1618), + [sym__special_characters] = ACTIONS(3637), + [anon_sym_DQUOTE] = ACTIONS(229), + [anon_sym_DOLLAR] = ACTIONS(231), + [sym_raw_string] = ACTIONS(3639), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), + [anon_sym_BQUOTE] = ACTIONS(239), + [anon_sym_LT_LPAREN] = ACTIONS(241), + [anon_sym_GT_LPAREN] = ACTIONS(241), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(3639), + }, + [1181] = { + [aux_sym_concatenation_repeat1] = STATE(691), + [sym__concat] = ACTIONS(697), + [sym_variable_name] = ACTIONS(1128), + [anon_sym_SEMI] = ACTIONS(1132), + [anon_sym_PIPE] = ACTIONS(1132), + [anon_sym_SEMI_SEMI] = ACTIONS(1128), + [anon_sym_PIPE_AMP] = ACTIONS(1128), + [anon_sym_AMP_AMP] = ACTIONS(1128), + [anon_sym_PIPE_PIPE] = ACTIONS(1128), + [sym__special_characters] = ACTIONS(1128), + [anon_sym_DQUOTE] = ACTIONS(1128), + [anon_sym_DOLLAR] = ACTIONS(1132), + [sym_raw_string] = ACTIONS(1128), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1128), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1128), + [anon_sym_BQUOTE] = ACTIONS(1128), + [anon_sym_LT_LPAREN] = ACTIONS(1128), + [anon_sym_GT_LPAREN] = ACTIONS(1128), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1132), + [sym_word] = ACTIONS(1132), + [anon_sym_LF] = ACTIONS(1128), + [anon_sym_AMP] = ACTIONS(1132), + }, + [1182] = { + [aux_sym_concatenation_repeat1] = STATE(691), + [sym__concat] = ACTIONS(697), + [sym_variable_name] = ACTIONS(1106), + [anon_sym_SEMI] = ACTIONS(1108), + [anon_sym_PIPE] = ACTIONS(1108), + [anon_sym_SEMI_SEMI] = ACTIONS(1106), + [anon_sym_PIPE_AMP] = ACTIONS(1106), + [anon_sym_AMP_AMP] = ACTIONS(1106), + [anon_sym_PIPE_PIPE] = ACTIONS(1106), + [sym__special_characters] = ACTIONS(1106), + [anon_sym_DQUOTE] = ACTIONS(1106), + [anon_sym_DOLLAR] = ACTIONS(1108), + [sym_raw_string] = ACTIONS(1106), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1106), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1106), + [anon_sym_BQUOTE] = ACTIONS(1106), + [anon_sym_LT_LPAREN] = ACTIONS(1106), + [anon_sym_GT_LPAREN] = ACTIONS(1106), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1108), + [sym_word] = ACTIONS(1108), + [anon_sym_LF] = ACTIONS(1106), + [anon_sym_AMP] = ACTIONS(1108), + }, + [1183] = { + [aux_sym_concatenation_repeat1] = STATE(1183), + [sym__concat] = ACTIONS(2754), + [sym_variable_name] = ACTIONS(1763), + [anon_sym_SEMI] = ACTIONS(1765), + [anon_sym_PIPE] = ACTIONS(1765), + [anon_sym_SEMI_SEMI] = ACTIONS(1763), + [anon_sym_PIPE_AMP] = ACTIONS(1763), + [anon_sym_AMP_AMP] = ACTIONS(1763), + [anon_sym_PIPE_PIPE] = ACTIONS(1763), + [sym__special_characters] = ACTIONS(1763), + [anon_sym_DQUOTE] = ACTIONS(1763), + [anon_sym_DOLLAR] = ACTIONS(1765), + [sym_raw_string] = ACTIONS(1763), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1763), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1763), + [anon_sym_BQUOTE] = ACTIONS(1763), + [anon_sym_LT_LPAREN] = ACTIONS(1763), + [anon_sym_GT_LPAREN] = ACTIONS(1763), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1765), + [sym_word] = ACTIONS(1765), + [anon_sym_LF] = ACTIONS(1763), + [anon_sym_AMP] = ACTIONS(1765), + }, + [1184] = { + [aux_sym_concatenation_repeat1] = STATE(1184), + [sym__concat] = ACTIONS(2807), + [anon_sym_SEMI] = ACTIONS(1765), + [anon_sym_PIPE] = ACTIONS(1765), + [anon_sym_SEMI_SEMI] = ACTIONS(1763), + [anon_sym_PIPE_AMP] = ACTIONS(1763), + [anon_sym_AMP_AMP] = ACTIONS(1763), + [anon_sym_PIPE_PIPE] = ACTIONS(1763), + [sym__special_characters] = ACTIONS(1763), + [anon_sym_DQUOTE] = ACTIONS(1763), + [anon_sym_DOLLAR] = ACTIONS(1765), + [sym_raw_string] = ACTIONS(1763), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1763), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1763), + [anon_sym_BQUOTE] = ACTIONS(1763), + [anon_sym_LT_LPAREN] = ACTIONS(1763), + [anon_sym_GT_LPAREN] = ACTIONS(1763), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1765), + [sym_word] = ACTIONS(1765), + [anon_sym_LF] = ACTIONS(1763), + [anon_sym_AMP] = ACTIONS(1765), + }, + [1185] = { + [sym_file_redirect] = STATE(1437), + [sym_file_descriptor] = ACTIONS(2434), + [anon_sym_SEMI] = ACTIONS(2614), + [anon_sym_PIPE] = ACTIONS(2614), + [anon_sym_SEMI_SEMI] = ACTIONS(2612), + [anon_sym_PIPE_AMP] = ACTIONS(2612), + [anon_sym_AMP_AMP] = ACTIONS(2612), + [anon_sym_PIPE_PIPE] = ACTIONS(2612), + [anon_sym_LT] = ACTIONS(2436), + [anon_sym_GT] = ACTIONS(2436), + [anon_sym_GT_GT] = ACTIONS(2438), + [anon_sym_AMP_GT] = ACTIONS(2436), + [anon_sym_AMP_GT_GT] = ACTIONS(2438), + [anon_sym_LT_AMP] = ACTIONS(2438), + [anon_sym_GT_AMP] = ACTIONS(2438), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2612), + [anon_sym_AMP] = ACTIONS(2614), + }, + [1186] = { + [sym__simple_heredoc_body] = ACTIONS(3641), + [sym__heredoc_body_beginning] = ACTIONS(3641), + [sym_file_descriptor] = ACTIONS(3641), + [ts_builtin_sym_end] = ACTIONS(3641), + [anon_sym_SEMI] = ACTIONS(3643), + [anon_sym_esac] = ACTIONS(3641), + [anon_sym_PIPE] = ACTIONS(3643), + [anon_sym_RPAREN] = ACTIONS(3641), + [anon_sym_SEMI_SEMI] = ACTIONS(3641), + [anon_sym_PIPE_AMP] = ACTIONS(3641), + [anon_sym_AMP_AMP] = ACTIONS(3641), + [anon_sym_PIPE_PIPE] = ACTIONS(3641), + [anon_sym_LT] = ACTIONS(3643), + [anon_sym_GT] = ACTIONS(3643), + [anon_sym_GT_GT] = ACTIONS(3641), + [anon_sym_AMP_GT] = ACTIONS(3643), + [anon_sym_AMP_GT_GT] = ACTIONS(3641), + [anon_sym_LT_AMP] = ACTIONS(3641), + [anon_sym_GT_AMP] = ACTIONS(3641), + [anon_sym_LT_LT] = ACTIONS(3643), + [anon_sym_LT_LT_DASH] = ACTIONS(3641), + [anon_sym_LT_LT_LT] = ACTIONS(3641), + [anon_sym_BQUOTE] = ACTIONS(3641), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(3641), + [anon_sym_AMP] = ACTIONS(3643), + }, + [1187] = { + [sym__terminated_statement] = STATE(1187), + [sym_for_statement] = STATE(545), + [sym_c_style_for_statement] = STATE(545), + [sym_while_statement] = STATE(545), + [sym_if_statement] = STATE(545), + [sym_case_statement] = STATE(545), + [sym_function_definition] = STATE(545), + [sym_subshell] = STATE(545), + [sym_pipeline] = STATE(545), + [sym_list] = STATE(545), + [sym_negated_command] = STATE(545), + [sym_test_command] = STATE(545), + [sym_declaration_command] = STATE(545), + [sym_unset_command] = STATE(545), + [sym_command] = STATE(545), + [sym_command_name] = STATE(64), + [sym_variable_assignment] = STATE(546), + [sym_subscript] = STATE(66), + [sym_file_redirect] = STATE(67), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(60), + [sym_simple_expansion] = STATE(60), + [sym_string_expansion] = STATE(60), + [sym_expansion] = STATE(60), + [sym_command_substitution] = STATE(60), + [sym_process_substitution] = STATE(60), + [aux_sym__statements_repeat1] = STATE(1187), + [aux_sym_command_repeat1] = STATE(67), + [sym_file_descriptor] = ACTIONS(997), + [sym_variable_name] = ACTIONS(1000), + [anon_sym_for] = ACTIONS(1003), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1006), + [anon_sym_while] = ACTIONS(1009), + [anon_sym_done] = ACTIONS(3645), + [anon_sym_if] = ACTIONS(1012), + [anon_sym_case] = ACTIONS(1015), + [anon_sym_function] = ACTIONS(1018), + [anon_sym_LPAREN] = ACTIONS(1021), + [anon_sym_BANG] = ACTIONS(1024), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1030), + [anon_sym_declare] = ACTIONS(1033), + [anon_sym_typeset] = ACTIONS(1033), + [anon_sym_export] = ACTIONS(1033), + [anon_sym_readonly] = ACTIONS(1033), + [anon_sym_local] = ACTIONS(1033), + [anon_sym_unset] = ACTIONS(1036), + [anon_sym_unsetenv] = ACTIONS(1036), + [anon_sym_LT] = ACTIONS(1039), + [anon_sym_GT] = ACTIONS(1039), + [anon_sym_GT_GT] = ACTIONS(1042), + [anon_sym_AMP_GT] = ACTIONS(1039), + [anon_sym_AMP_GT_GT] = ACTIONS(1042), + [anon_sym_LT_AMP] = ACTIONS(1042), + [anon_sym_GT_AMP] = ACTIONS(1042), + [sym__special_characters] = ACTIONS(1045), + [anon_sym_DQUOTE] = ACTIONS(1048), + [anon_sym_DOLLAR] = ACTIONS(1051), + [sym_raw_string] = ACTIONS(1054), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1057), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1060), + [anon_sym_BQUOTE] = ACTIONS(1063), + [anon_sym_LT_LPAREN] = ACTIONS(1066), + [anon_sym_GT_LPAREN] = ACTIONS(1066), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1069), + }, + [1188] = { + [ts_builtin_sym_end] = ACTIONS(3647), + [anon_sym_SEMI] = ACTIONS(3649), + [anon_sym_esac] = ACTIONS(3647), + [anon_sym_PIPE] = ACTIONS(3649), + [anon_sym_RPAREN] = ACTIONS(3647), + [anon_sym_SEMI_SEMI] = ACTIONS(3647), + [anon_sym_PIPE_AMP] = ACTIONS(3647), + [anon_sym_AMP_AMP] = ACTIONS(3647), + [anon_sym_PIPE_PIPE] = ACTIONS(3647), + [anon_sym_BQUOTE] = ACTIONS(3647), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(3647), + [anon_sym_AMP] = ACTIONS(3649), + }, + [1189] = { + [aux_sym_concatenation_repeat1] = STATE(1191), + [sym__simple_heredoc_body] = ACTIONS(1088), + [sym__heredoc_body_beginning] = ACTIONS(1088), + [sym_file_descriptor] = ACTIONS(1088), + [sym__concat] = ACTIONS(265), + [anon_sym_SEMI] = ACTIONS(1090), + [anon_sym_PIPE] = ACTIONS(1090), + [anon_sym_SEMI_SEMI] = ACTIONS(1088), + [anon_sym_PIPE_AMP] = ACTIONS(1088), + [anon_sym_AMP_AMP] = ACTIONS(1088), + [anon_sym_PIPE_PIPE] = ACTIONS(1088), + [anon_sym_LT] = ACTIONS(1090), + [anon_sym_GT] = ACTIONS(1090), + [anon_sym_GT_GT] = ACTIONS(1088), + [anon_sym_AMP_GT] = ACTIONS(1090), + [anon_sym_AMP_GT_GT] = ACTIONS(1088), + [anon_sym_LT_AMP] = ACTIONS(1088), + [anon_sym_GT_AMP] = ACTIONS(1088), + [anon_sym_LT_LT] = ACTIONS(1090), + [anon_sym_LT_LT_DASH] = ACTIONS(1088), + [anon_sym_LT_LT_LT] = ACTIONS(1088), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1088), + [anon_sym_AMP] = ACTIONS(1090), + }, + [1190] = { + [aux_sym_concatenation_repeat1] = STATE(1191), + [sym__simple_heredoc_body] = ACTIONS(1092), + [sym__heredoc_body_beginning] = ACTIONS(1092), + [sym_file_descriptor] = ACTIONS(1092), + [sym__concat] = ACTIONS(265), + [anon_sym_SEMI] = ACTIONS(1094), + [anon_sym_PIPE] = ACTIONS(1094), + [anon_sym_SEMI_SEMI] = ACTIONS(1092), + [anon_sym_PIPE_AMP] = ACTIONS(1092), + [anon_sym_AMP_AMP] = ACTIONS(1092), + [anon_sym_PIPE_PIPE] = ACTIONS(1092), + [anon_sym_LT] = ACTIONS(1094), + [anon_sym_GT] = ACTIONS(1094), + [anon_sym_GT_GT] = ACTIONS(1092), + [anon_sym_AMP_GT] = ACTIONS(1094), + [anon_sym_AMP_GT_GT] = ACTIONS(1092), + [anon_sym_LT_AMP] = ACTIONS(1092), + [anon_sym_GT_AMP] = ACTIONS(1092), + [anon_sym_LT_LT] = ACTIONS(1094), + [anon_sym_LT_LT_DASH] = ACTIONS(1092), + [anon_sym_LT_LT_LT] = ACTIONS(1092), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1092), + [anon_sym_AMP] = ACTIONS(1094), + }, + [1191] = { + [aux_sym_concatenation_repeat1] = STATE(1619), + [sym__simple_heredoc_body] = ACTIONS(807), + [sym__heredoc_body_beginning] = ACTIONS(807), + [sym_file_descriptor] = ACTIONS(807), + [sym__concat] = ACTIONS(265), + [anon_sym_SEMI] = ACTIONS(809), + [anon_sym_PIPE] = ACTIONS(809), + [anon_sym_SEMI_SEMI] = ACTIONS(807), + [anon_sym_PIPE_AMP] = ACTIONS(807), + [anon_sym_AMP_AMP] = ACTIONS(807), + [anon_sym_PIPE_PIPE] = ACTIONS(807), + [anon_sym_LT] = ACTIONS(809), + [anon_sym_GT] = ACTIONS(809), + [anon_sym_GT_GT] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(809), + [anon_sym_AMP_GT_GT] = ACTIONS(807), + [anon_sym_LT_AMP] = ACTIONS(807), + [anon_sym_GT_AMP] = ACTIONS(807), + [anon_sym_LT_LT] = ACTIONS(809), + [anon_sym_LT_LT_DASH] = ACTIONS(807), + [anon_sym_LT_LT_LT] = ACTIONS(807), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(807), + [anon_sym_AMP] = ACTIONS(809), + }, + [1192] = { + [sym_file_redirect] = STATE(710), + [sym_heredoc_redirect] = STATE(710), + [sym_heredoc_body] = STATE(1449), + [sym_herestring_redirect] = STATE(710), + [aux_sym_while_statement_repeat1] = STATE(710), + [sym__simple_heredoc_body] = ACTIONS(339), + [sym__heredoc_body_beginning] = ACTIONS(341), + [sym_file_descriptor] = ACTIONS(537), + [anon_sym_SEMI] = ACTIONS(3207), + [anon_sym_PIPE] = ACTIONS(3207), + [anon_sym_SEMI_SEMI] = ACTIONS(3205), + [anon_sym_PIPE_AMP] = ACTIONS(3205), + [anon_sym_AMP_AMP] = ACTIONS(3205), + [anon_sym_PIPE_PIPE] = ACTIONS(3205), + [anon_sym_LT] = ACTIONS(541), + [anon_sym_GT] = ACTIONS(541), + [anon_sym_GT_GT] = ACTIONS(543), + [anon_sym_AMP_GT] = ACTIONS(541), + [anon_sym_AMP_GT_GT] = ACTIONS(543), + [anon_sym_LT_AMP] = ACTIONS(543), + [anon_sym_GT_AMP] = ACTIONS(543), + [anon_sym_LT_LT] = ACTIONS(355), + [anon_sym_LT_LT_DASH] = ACTIONS(357), + [anon_sym_LT_LT_LT] = ACTIONS(545), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(3205), + [anon_sym_AMP] = ACTIONS(3207), + }, + [1193] = { + [anon_sym_then] = ACTIONS(3651), + [sym_comment] = ACTIONS(55), + }, + [1194] = { + [sym__terminated_statement] = STATE(1621), + [sym_for_statement] = STATE(545), + [sym_c_style_for_statement] = STATE(545), + [sym_while_statement] = STATE(545), + [sym_if_statement] = STATE(545), + [sym_case_statement] = STATE(545), + [sym_function_definition] = STATE(545), + [sym_subshell] = STATE(545), + [sym_pipeline] = STATE(545), + [sym_list] = STATE(545), + [sym_negated_command] = STATE(545), + [sym_test_command] = STATE(545), + [sym_declaration_command] = STATE(545), + [sym_unset_command] = STATE(545), + [sym_command] = STATE(545), + [sym_command_name] = STATE(64), + [sym_variable_assignment] = STATE(546), + [sym_subscript] = STATE(66), + [sym_file_redirect] = STATE(67), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(60), + [sym_simple_expansion] = STATE(60), + [sym_string_expansion] = STATE(60), + [sym_expansion] = STATE(60), + [sym_command_substitution] = STATE(60), + [sym_process_substitution] = STATE(60), + [aux_sym__statements_repeat1] = STATE(1621), + [aux_sym_command_repeat1] = STATE(67), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(95), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(97), + [anon_sym_while] = ACTIONS(99), + [anon_sym_if] = ACTIONS(17), + [anon_sym_fi] = ACTIONS(3653), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(101), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_LBRACK] = ACTIONS(107), + [anon_sym_declare] = ACTIONS(109), + [anon_sym_typeset] = ACTIONS(109), + [anon_sym_export] = ACTIONS(109), + [anon_sym_readonly] = ACTIONS(109), + [anon_sym_local] = ACTIONS(109), + [anon_sym_unset] = ACTIONS(111), + [anon_sym_unsetenv] = ACTIONS(111), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(115), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(117), + }, + [1195] = { + [ts_builtin_sym_end] = ACTIONS(3655), + [anon_sym_SEMI] = ACTIONS(3657), + [anon_sym_esac] = ACTIONS(3655), + [anon_sym_PIPE] = ACTIONS(3657), + [anon_sym_RPAREN] = ACTIONS(3655), + [anon_sym_SEMI_SEMI] = ACTIONS(3655), + [anon_sym_PIPE_AMP] = ACTIONS(3655), + [anon_sym_AMP_AMP] = ACTIONS(3655), + [anon_sym_PIPE_PIPE] = ACTIONS(3655), + [anon_sym_BQUOTE] = ACTIONS(3655), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(3655), + [anon_sym_AMP] = ACTIONS(3657), + }, + [1196] = { + [anon_sym_fi] = ACTIONS(3659), + [sym_comment] = ACTIONS(55), + }, + [1197] = { + [sym__terminated_statement] = STATE(1197), + [sym_for_statement] = STATE(545), + [sym_c_style_for_statement] = STATE(545), + [sym_while_statement] = STATE(545), + [sym_if_statement] = STATE(545), + [sym_case_statement] = STATE(545), + [sym_function_definition] = STATE(545), + [sym_subshell] = STATE(545), + [sym_pipeline] = STATE(545), + [sym_list] = STATE(545), + [sym_negated_command] = STATE(545), + [sym_test_command] = STATE(545), + [sym_declaration_command] = STATE(545), + [sym_unset_command] = STATE(545), + [sym_command] = STATE(545), + [sym_command_name] = STATE(64), + [sym_variable_assignment] = STATE(546), + [sym_subscript] = STATE(66), + [sym_file_redirect] = STATE(67), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(60), + [sym_simple_expansion] = STATE(60), + [sym_string_expansion] = STATE(60), + [sym_expansion] = STATE(60), + [sym_command_substitution] = STATE(60), + [sym_process_substitution] = STATE(60), + [aux_sym__statements_repeat1] = STATE(1197), + [aux_sym_command_repeat1] = STATE(67), + [sym_file_descriptor] = ACTIONS(997), + [sym_variable_name] = ACTIONS(1000), + [anon_sym_for] = ACTIONS(1003), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1006), + [anon_sym_while] = ACTIONS(1009), + [anon_sym_if] = ACTIONS(1012), + [anon_sym_fi] = ACTIONS(3645), + [anon_sym_elif] = ACTIONS(3645), + [anon_sym_else] = ACTIONS(3645), + [anon_sym_case] = ACTIONS(1015), + [anon_sym_function] = ACTIONS(1018), + [anon_sym_LPAREN] = ACTIONS(1021), + [anon_sym_BANG] = ACTIONS(1024), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1030), + [anon_sym_declare] = ACTIONS(1033), + [anon_sym_typeset] = ACTIONS(1033), + [anon_sym_export] = ACTIONS(1033), + [anon_sym_readonly] = ACTIONS(1033), + [anon_sym_local] = ACTIONS(1033), + [anon_sym_unset] = ACTIONS(1036), + [anon_sym_unsetenv] = ACTIONS(1036), + [anon_sym_LT] = ACTIONS(1039), + [anon_sym_GT] = ACTIONS(1039), + [anon_sym_GT_GT] = ACTIONS(1042), + [anon_sym_AMP_GT] = ACTIONS(1039), + [anon_sym_AMP_GT_GT] = ACTIONS(1042), + [anon_sym_LT_AMP] = ACTIONS(1042), + [anon_sym_GT_AMP] = ACTIONS(1042), + [sym__special_characters] = ACTIONS(1045), + [anon_sym_DQUOTE] = ACTIONS(1048), + [anon_sym_DOLLAR] = ACTIONS(1051), + [sym_raw_string] = ACTIONS(1054), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1057), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1060), + [anon_sym_BQUOTE] = ACTIONS(1063), + [anon_sym_LT_LPAREN] = ACTIONS(1066), + [anon_sym_GT_LPAREN] = ACTIONS(1066), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1069), + }, + [1198] = { + [sym_elif_clause] = STATE(1199), + [sym_else_clause] = STATE(1623), + [aux_sym_if_statement_repeat1] = STATE(1199), + [anon_sym_fi] = ACTIONS(3659), + [anon_sym_elif] = ACTIONS(2519), + [anon_sym_else] = ACTIONS(2521), + [sym_comment] = ACTIONS(55), + }, + [1199] = { + [sym_elif_clause] = STATE(1199), + [aux_sym_if_statement_repeat1] = STATE(1199), + [anon_sym_fi] = ACTIONS(3661), + [anon_sym_elif] = ACTIONS(3663), + [anon_sym_else] = ACTIONS(3661), + [sym_comment] = ACTIONS(55), + }, + [1200] = { + [ts_builtin_sym_end] = ACTIONS(3666), + [anon_sym_SEMI] = ACTIONS(3668), + [anon_sym_esac] = ACTIONS(3666), + [anon_sym_PIPE] = ACTIONS(3668), + [anon_sym_RPAREN] = ACTIONS(3666), + [anon_sym_SEMI_SEMI] = ACTIONS(3666), + [anon_sym_PIPE_AMP] = ACTIONS(3666), + [anon_sym_AMP_AMP] = ACTIONS(3666), + [anon_sym_PIPE_PIPE] = ACTIONS(3666), + [anon_sym_BQUOTE] = ACTIONS(3666), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(3666), + [anon_sym_AMP] = ACTIONS(3668), + }, + [1201] = { + [aux_sym_case_item_repeat1] = STATE(1626), + [aux_sym_concatenation_repeat1] = STATE(1627), + [sym__concat] = ACTIONS(1214), + [anon_sym_PIPE] = ACTIONS(3670), + [anon_sym_RPAREN] = ACTIONS(3672), + [sym_comment] = ACTIONS(55), + }, + [1202] = { + [aux_sym_case_item_repeat1] = STATE(1629), + [aux_sym_concatenation_repeat1] = STATE(1627), + [sym__concat] = ACTIONS(1214), + [anon_sym_PIPE] = ACTIONS(3670), + [anon_sym_RPAREN] = ACTIONS(3674), + [sym_comment] = ACTIONS(55), + }, + [1203] = { + [anon_sym_esac] = ACTIONS(3676), + [sym_comment] = ACTIONS(55), + }, + [1204] = { + [aux_sym_case_item_repeat1] = STATE(1629), + [anon_sym_PIPE] = ACTIONS(3670), + [anon_sym_RPAREN] = ACTIONS(3674), + [sym_comment] = ACTIONS(55), + }, + [1205] = { + [sym_case_item] = STATE(1632), + [sym_last_case_item] = STATE(1631), + [sym_concatenation] = STATE(1204), + [sym_string] = STATE(1202), + [sym_simple_expansion] = STATE(1202), + [sym_string_expansion] = STATE(1202), + [sym_expansion] = STATE(1202), + [sym_command_substitution] = STATE(1202), + [sym_process_substitution] = STATE(1202), + [aux_sym_case_statement_repeat1] = STATE(1632), + [sym__special_characters] = ACTIONS(2525), + [anon_sym_DQUOTE] = ACTIONS(441), + [anon_sym_DOLLAR] = ACTIONS(443), + [sym_raw_string] = ACTIONS(2527), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(447), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(449), + [anon_sym_BQUOTE] = ACTIONS(451), + [anon_sym_LT_LPAREN] = ACTIONS(453), + [anon_sym_GT_LPAREN] = ACTIONS(453), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(2527), + }, + [1206] = { + [sym_case_item] = STATE(1633), + [sym_last_case_item] = STATE(1631), + [sym_concatenation] = STATE(1204), + [sym_string] = STATE(1202), + [sym_simple_expansion] = STATE(1202), + [sym_string_expansion] = STATE(1202), + [sym_expansion] = STATE(1202), + [sym_command_substitution] = STATE(1202), + [sym_process_substitution] = STATE(1202), + [aux_sym_case_statement_repeat1] = STATE(1633), + [anon_sym_esac] = ACTIONS(3678), + [sym__special_characters] = ACTIONS(2525), + [anon_sym_DQUOTE] = ACTIONS(441), + [anon_sym_DOLLAR] = ACTIONS(443), + [sym_raw_string] = ACTIONS(2527), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(447), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(449), + [anon_sym_BQUOTE] = ACTIONS(451), + [anon_sym_LT_LPAREN] = ACTIONS(453), + [anon_sym_GT_LPAREN] = ACTIONS(453), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(2529), + }, + [1207] = { + [sym__concat] = ACTIONS(2959), + [anon_sym_in] = ACTIONS(2959), + [anon_sym_SEMI] = ACTIONS(2961), + [anon_sym_SEMI_SEMI] = ACTIONS(2959), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2959), + [anon_sym_AMP] = ACTIONS(2959), + }, + [1208] = { + [ts_builtin_sym_end] = ACTIONS(3680), + [anon_sym_SEMI] = ACTIONS(3682), + [anon_sym_esac] = ACTIONS(3680), + [anon_sym_PIPE] = ACTIONS(3682), + [anon_sym_RPAREN] = ACTIONS(3680), + [anon_sym_SEMI_SEMI] = ACTIONS(3680), + [anon_sym_PIPE_AMP] = ACTIONS(3680), + [anon_sym_AMP_AMP] = ACTIONS(3680), + [anon_sym_PIPE_PIPE] = ACTIONS(3680), + [anon_sym_BQUOTE] = ACTIONS(3680), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(3680), + [anon_sym_AMP] = ACTIONS(3682), + }, + [1209] = { + [anon_sym_esac] = ACTIONS(3684), + [sym_comment] = ACTIONS(55), + }, + [1210] = { + [sym_case_item] = STATE(1632), + [sym_last_case_item] = STATE(1635), + [sym_concatenation] = STATE(1204), + [sym_string] = STATE(1202), + [sym_simple_expansion] = STATE(1202), + [sym_string_expansion] = STATE(1202), + [sym_expansion] = STATE(1202), + [sym_command_substitution] = STATE(1202), + [sym_process_substitution] = STATE(1202), + [aux_sym_case_statement_repeat1] = STATE(1632), + [sym__special_characters] = ACTIONS(2525), + [anon_sym_DQUOTE] = ACTIONS(441), + [anon_sym_DOLLAR] = ACTIONS(443), + [sym_raw_string] = ACTIONS(2527), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(447), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(449), + [anon_sym_BQUOTE] = ACTIONS(451), + [anon_sym_LT_LPAREN] = ACTIONS(453), + [anon_sym_GT_LPAREN] = ACTIONS(453), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(2527), + }, + [1211] = { + [sym_case_item] = STATE(1636), + [sym_last_case_item] = STATE(1635), + [sym_concatenation] = STATE(1204), + [sym_string] = STATE(1202), + [sym_simple_expansion] = STATE(1202), + [sym_string_expansion] = STATE(1202), + [sym_expansion] = STATE(1202), + [sym_command_substitution] = STATE(1202), + [sym_process_substitution] = STATE(1202), + [aux_sym_case_statement_repeat1] = STATE(1636), + [anon_sym_esac] = ACTIONS(3686), + [sym__special_characters] = ACTIONS(2525), + [anon_sym_DQUOTE] = ACTIONS(441), + [anon_sym_DOLLAR] = ACTIONS(443), + [sym_raw_string] = ACTIONS(2527), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(447), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(449), + [anon_sym_BQUOTE] = ACTIONS(451), + [anon_sym_LT_LPAREN] = ACTIONS(453), + [anon_sym_GT_LPAREN] = ACTIONS(453), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(2529), + }, + [1212] = { + [sym__concat] = ACTIONS(2973), + [anon_sym_in] = ACTIONS(2973), + [anon_sym_SEMI] = ACTIONS(2975), + [anon_sym_SEMI_SEMI] = ACTIONS(2973), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2973), + [anon_sym_AMP] = ACTIONS(2973), + }, + [1213] = { + [aux_sym_concatenation_repeat1] = STATE(1366), + [sym__concat] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(3688), + [sym_comment] = ACTIONS(55), + }, + [1214] = { + [aux_sym_concatenation_repeat1] = STATE(1366), + [sym__concat] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(3690), + [sym_comment] = ACTIONS(55), + }, + [1215] = { + [anon_sym_RBRACE] = ACTIONS(3690), + [sym_comment] = ACTIONS(55), + }, + [1216] = { + [sym_concatenation] = STATE(1641), + [sym_string] = STATE(1640), + [sym_simple_expansion] = STATE(1640), + [sym_string_expansion] = STATE(1640), + [sym_expansion] = STATE(1640), + [sym_command_substitution] = STATE(1640), + [sym_process_substitution] = STATE(1640), + [anon_sym_RBRACE] = ACTIONS(3690), + [sym__special_characters] = ACTIONS(3692), + [anon_sym_DQUOTE] = ACTIONS(1841), + [anon_sym_DOLLAR] = ACTIONS(1843), + [sym_raw_string] = ACTIONS(3694), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1849), + [anon_sym_BQUOTE] = ACTIONS(1851), + [anon_sym_LT_LPAREN] = ACTIONS(1853), + [anon_sym_GT_LPAREN] = ACTIONS(1853), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(3694), + }, + [1217] = { + [sym__concat] = ACTIONS(3009), + [anon_sym_in] = ACTIONS(3009), + [anon_sym_SEMI] = ACTIONS(3011), + [anon_sym_SEMI_SEMI] = ACTIONS(3009), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(3009), + [anon_sym_AMP] = ACTIONS(3009), + }, + [1218] = { + [sym_concatenation] = STATE(1644), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1644), + [sym_regex] = ACTIONS(3696), + [anon_sym_RBRACE] = ACTIONS(3698), + [anon_sym_EQ] = ACTIONS(3700), + [anon_sym_DASH] = ACTIONS(3700), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(3702), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(3700), + [anon_sym_COLON_QMARK] = ACTIONS(3700), + [anon_sym_COLON_DASH] = ACTIONS(3700), + [anon_sym_PERCENT] = ACTIONS(3700), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1219] = { - [sym__concat] = ACTIONS(2926), - [sym_variable_name] = ACTIONS(2926), - [ts_builtin_sym_end] = ACTIONS(2926), - [anon_sym_SEMI] = ACTIONS(2928), - [anon_sym_PIPE] = ACTIONS(2928), - [anon_sym_RPAREN] = ACTIONS(2926), - [anon_sym_SEMI_SEMI] = ACTIONS(2926), - [anon_sym_PIPE_AMP] = ACTIONS(2926), - [anon_sym_AMP_AMP] = ACTIONS(2926), - [anon_sym_PIPE_PIPE] = ACTIONS(2926), - [sym__special_characters] = ACTIONS(2926), - [anon_sym_DQUOTE] = ACTIONS(2926), - [anon_sym_DOLLAR] = ACTIONS(2928), - [sym_raw_string] = ACTIONS(2926), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2926), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2926), - [anon_sym_BQUOTE] = ACTIONS(2926), - [anon_sym_LT_LPAREN] = ACTIONS(2926), - [anon_sym_GT_LPAREN] = ACTIONS(2926), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2928), - [sym_word] = ACTIONS(2928), - [anon_sym_LF] = ACTIONS(2926), - [anon_sym_AMP] = ACTIONS(2928), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(3698), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1220] = { - [sym_comment] = ACTIONS(265), - [sym_regex_without_right_brace] = ACTIONS(3672), + [sym_concatenation] = STATE(1646), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1646), + [sym_regex] = ACTIONS(3704), + [anon_sym_RBRACE] = ACTIONS(3690), + [anon_sym_EQ] = ACTIONS(3706), + [anon_sym_DASH] = ACTIONS(3706), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(3708), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(3706), + [anon_sym_COLON_QMARK] = ACTIONS(3706), + [anon_sym_COLON_DASH] = ACTIONS(3706), + [anon_sym_PERCENT] = ACTIONS(3706), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1221] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(3674), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(3690), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1222] = { - [sym_comment] = ACTIONS(265), - [sym_regex_without_right_brace] = ACTIONS(3676), - }, - [1223] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(3666), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [1224] = { - [sym_concatenation] = STATE(1619), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(1619), - [anon_sym_RBRACE] = ACTIONS(3678), - [anon_sym_EQ] = ACTIONS(3680), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(3682), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(3680), - [anon_sym_COLON_QMARK] = ACTIONS(3680), - [anon_sym_COLON_DASH] = ACTIONS(3680), - [anon_sym_PERCENT] = ACTIONS(3680), - [anon_sym_DASH] = ACTIONS(3680), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [1225] = { - [sym__concat] = ACTIONS(2990), - [sym_variable_name] = ACTIONS(2990), - [ts_builtin_sym_end] = ACTIONS(2990), - [anon_sym_SEMI] = ACTIONS(2992), - [anon_sym_PIPE] = ACTIONS(2992), - [anon_sym_RPAREN] = ACTIONS(2990), - [anon_sym_SEMI_SEMI] = ACTIONS(2990), - [anon_sym_PIPE_AMP] = ACTIONS(2990), - [anon_sym_AMP_AMP] = ACTIONS(2990), - [anon_sym_PIPE_PIPE] = ACTIONS(2990), - [sym__special_characters] = ACTIONS(2990), - [anon_sym_DQUOTE] = ACTIONS(2990), - [anon_sym_DOLLAR] = ACTIONS(2992), - [sym_raw_string] = ACTIONS(2990), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2990), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2990), - [anon_sym_BQUOTE] = ACTIONS(2990), - [anon_sym_LT_LPAREN] = ACTIONS(2990), - [anon_sym_GT_LPAREN] = ACTIONS(2990), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2992), - [sym_word] = ACTIONS(2992), - [anon_sym_LF] = ACTIONS(2990), - [anon_sym_AMP] = ACTIONS(2992), - }, - [1226] = { - [sym_concatenation] = STATE(1620), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(1620), - [anon_sym_RBRACE] = ACTIONS(3666), - [anon_sym_EQ] = ACTIONS(3684), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(3686), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(3684), - [anon_sym_COLON_QMARK] = ACTIONS(3684), - [anon_sym_COLON_DASH] = ACTIONS(3684), - [anon_sym_PERCENT] = ACTIONS(3684), - [anon_sym_DASH] = ACTIONS(3684), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [1227] = { - [sym__concat] = ACTIONS(3033), - [sym_variable_name] = ACTIONS(3033), - [ts_builtin_sym_end] = ACTIONS(3033), - [anon_sym_SEMI] = ACTIONS(3035), - [anon_sym_PIPE] = ACTIONS(3035), - [anon_sym_RPAREN] = ACTIONS(3033), - [anon_sym_SEMI_SEMI] = ACTIONS(3033), - [anon_sym_PIPE_AMP] = ACTIONS(3033), - [anon_sym_AMP_AMP] = ACTIONS(3033), - [anon_sym_PIPE_PIPE] = ACTIONS(3033), - [sym__special_characters] = ACTIONS(3033), - [anon_sym_DQUOTE] = ACTIONS(3033), - [anon_sym_DOLLAR] = ACTIONS(3035), - [sym_raw_string] = ACTIONS(3033), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3033), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3033), - [anon_sym_BQUOTE] = ACTIONS(3033), - [anon_sym_LT_LPAREN] = ACTIONS(3033), - [anon_sym_GT_LPAREN] = ACTIONS(3033), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3035), - [sym_word] = ACTIONS(3035), - [anon_sym_LF] = ACTIONS(3033), - [anon_sym_AMP] = ACTIONS(3035), - }, - [1228] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(3688), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(901), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), - }, - [1229] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(3688), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), - }, - [1230] = { - [sym__concat] = ACTIONS(3071), - [sym_variable_name] = ACTIONS(3071), - [ts_builtin_sym_end] = ACTIONS(3071), - [anon_sym_SEMI] = ACTIONS(3073), - [anon_sym_PIPE] = ACTIONS(3073), - [anon_sym_RPAREN] = ACTIONS(3071), - [anon_sym_SEMI_SEMI] = ACTIONS(3071), - [anon_sym_PIPE_AMP] = ACTIONS(3071), - [anon_sym_AMP_AMP] = ACTIONS(3071), - [anon_sym_PIPE_PIPE] = ACTIONS(3071), - [sym__special_characters] = ACTIONS(3071), - [anon_sym_DQUOTE] = ACTIONS(3071), - [anon_sym_DOLLAR] = ACTIONS(3073), - [sym_raw_string] = ACTIONS(3071), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3071), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3071), - [anon_sym_BQUOTE] = ACTIONS(3071), - [anon_sym_LT_LPAREN] = ACTIONS(3071), - [anon_sym_GT_LPAREN] = ACTIONS(3071), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3073), - [sym_word] = ACTIONS(3073), - [anon_sym_LF] = ACTIONS(3071), - [anon_sym_AMP] = ACTIONS(3073), - }, - [1231] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(3690), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(901), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), - }, - [1232] = { - [sym__concat] = ACTIONS(2876), - [ts_builtin_sym_end] = ACTIONS(2876), - [anon_sym_SEMI] = ACTIONS(2878), - [anon_sym_PIPE] = ACTIONS(2878), - [anon_sym_RPAREN] = ACTIONS(2876), - [anon_sym_SEMI_SEMI] = ACTIONS(2876), - [anon_sym_PIPE_AMP] = ACTIONS(2876), - [anon_sym_AMP_AMP] = ACTIONS(2876), - [anon_sym_PIPE_PIPE] = ACTIONS(2876), - [sym__special_characters] = ACTIONS(2876), - [anon_sym_DQUOTE] = ACTIONS(2876), - [anon_sym_DOLLAR] = ACTIONS(2878), - [sym_raw_string] = ACTIONS(2876), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2876), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2876), - [anon_sym_BQUOTE] = ACTIONS(2876), - [anon_sym_LT_LPAREN] = ACTIONS(2876), - [anon_sym_GT_LPAREN] = ACTIONS(2876), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2878), - [sym_word] = ACTIONS(2878), - [anon_sym_LF] = ACTIONS(2876), - [anon_sym_AMP] = ACTIONS(2878), - }, - [1233] = { - [sym__concat] = ACTIONS(2890), - [ts_builtin_sym_end] = ACTIONS(2890), - [anon_sym_SEMI] = ACTIONS(2892), - [anon_sym_PIPE] = ACTIONS(2892), - [anon_sym_RPAREN] = ACTIONS(2890), - [anon_sym_SEMI_SEMI] = ACTIONS(2890), - [anon_sym_PIPE_AMP] = ACTIONS(2890), - [anon_sym_AMP_AMP] = ACTIONS(2890), - [anon_sym_PIPE_PIPE] = ACTIONS(2890), - [sym__special_characters] = ACTIONS(2890), - [anon_sym_DQUOTE] = ACTIONS(2890), - [anon_sym_DOLLAR] = ACTIONS(2892), - [sym_raw_string] = ACTIONS(2890), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2890), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2890), - [anon_sym_BQUOTE] = ACTIONS(2890), - [anon_sym_LT_LPAREN] = ACTIONS(2890), - [anon_sym_GT_LPAREN] = ACTIONS(2890), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2892), - [sym_word] = ACTIONS(2892), - [anon_sym_LF] = ACTIONS(2890), - [anon_sym_AMP] = ACTIONS(2892), - }, - [1234] = { - [aux_sym_concatenation_repeat1] = STATE(1293), - [sym__concat] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(3692), - [sym_comment] = ACTIONS(53), - }, - [1235] = { - [aux_sym_concatenation_repeat1] = STATE(1293), - [sym__concat] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(3694), - [sym_comment] = ACTIONS(53), - }, - [1236] = { - [anon_sym_RBRACE] = ACTIONS(3694), - [sym_comment] = ACTIONS(53), - }, - [1237] = { - [sym_concatenation] = STATE(1627), - [sym_string] = STATE(1626), - [sym_simple_expansion] = STATE(1626), - [sym_string_expansion] = STATE(1626), - [sym_expansion] = STATE(1626), - [sym_command_substitution] = STATE(1626), - [sym_process_substitution] = STATE(1626), - [anon_sym_RBRACE] = ACTIONS(3694), - [sym__special_characters] = ACTIONS(3696), - [anon_sym_DQUOTE] = ACTIONS(1802), - [anon_sym_DOLLAR] = ACTIONS(1804), - [sym_raw_string] = ACTIONS(3698), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1808), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1810), - [anon_sym_BQUOTE] = ACTIONS(1812), - [anon_sym_LT_LPAREN] = ACTIONS(1814), - [anon_sym_GT_LPAREN] = ACTIONS(1814), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3698), - }, - [1238] = { - [sym__concat] = ACTIONS(2926), - [ts_builtin_sym_end] = ACTIONS(2926), - [anon_sym_SEMI] = ACTIONS(2928), - [anon_sym_PIPE] = ACTIONS(2928), - [anon_sym_RPAREN] = ACTIONS(2926), - [anon_sym_SEMI_SEMI] = ACTIONS(2926), - [anon_sym_PIPE_AMP] = ACTIONS(2926), - [anon_sym_AMP_AMP] = ACTIONS(2926), - [anon_sym_PIPE_PIPE] = ACTIONS(2926), - [sym__special_characters] = ACTIONS(2926), - [anon_sym_DQUOTE] = ACTIONS(2926), - [anon_sym_DOLLAR] = ACTIONS(2928), - [sym_raw_string] = ACTIONS(2926), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2926), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2926), - [anon_sym_BQUOTE] = ACTIONS(2926), - [anon_sym_LT_LPAREN] = ACTIONS(2926), - [anon_sym_GT_LPAREN] = ACTIONS(2926), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2928), - [sym_word] = ACTIONS(2928), - [anon_sym_LF] = ACTIONS(2926), - [anon_sym_AMP] = ACTIONS(2928), - }, - [1239] = { - [sym_comment] = ACTIONS(265), - [sym_regex_without_right_brace] = ACTIONS(3700), - }, - [1240] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(3702), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [1241] = { - [sym_comment] = ACTIONS(265), - [sym_regex_without_right_brace] = ACTIONS(3704), - }, - [1242] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(3694), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [1243] = { - [sym_concatenation] = STATE(1632), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(1632), - [anon_sym_RBRACE] = ACTIONS(3706), - [anon_sym_EQ] = ACTIONS(3708), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(3710), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(3708), - [anon_sym_COLON_QMARK] = ACTIONS(3708), - [anon_sym_COLON_DASH] = ACTIONS(3708), - [anon_sym_PERCENT] = ACTIONS(3708), - [anon_sym_DASH] = ACTIONS(3708), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [1244] = { - [sym__concat] = ACTIONS(2990), - [ts_builtin_sym_end] = ACTIONS(2990), - [anon_sym_SEMI] = ACTIONS(2992), - [anon_sym_PIPE] = ACTIONS(2992), - [anon_sym_RPAREN] = ACTIONS(2990), - [anon_sym_SEMI_SEMI] = ACTIONS(2990), - [anon_sym_PIPE_AMP] = ACTIONS(2990), - [anon_sym_AMP_AMP] = ACTIONS(2990), - [anon_sym_PIPE_PIPE] = ACTIONS(2990), - [sym__special_characters] = ACTIONS(2990), - [anon_sym_DQUOTE] = ACTIONS(2990), - [anon_sym_DOLLAR] = ACTIONS(2992), - [sym_raw_string] = ACTIONS(2990), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2990), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2990), - [anon_sym_BQUOTE] = ACTIONS(2990), - [anon_sym_LT_LPAREN] = ACTIONS(2990), - [anon_sym_GT_LPAREN] = ACTIONS(2990), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2992), - [sym_word] = ACTIONS(2992), - [anon_sym_LF] = ACTIONS(2990), - [anon_sym_AMP] = ACTIONS(2992), - }, - [1245] = { - [sym_concatenation] = STATE(1633), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(1633), - [anon_sym_RBRACE] = ACTIONS(3694), + [sym_concatenation] = STATE(1648), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1648), + [anon_sym_RBRACE] = ACTIONS(3710), [anon_sym_EQ] = ACTIONS(3712), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), + [anon_sym_DASH] = ACTIONS(3712), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), [anon_sym_POUND] = ACTIONS(3714), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), [anon_sym_COLON] = ACTIONS(3712), [anon_sym_COLON_QMARK] = ACTIONS(3712), [anon_sym_COLON_DASH] = ACTIONS(3712), [anon_sym_PERCENT] = ACTIONS(3712), - [anon_sym_DASH] = ACTIONS(3712), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, - [1246] = { - [sym__concat] = ACTIONS(3033), - [ts_builtin_sym_end] = ACTIONS(3033), - [anon_sym_SEMI] = ACTIONS(3035), - [anon_sym_PIPE] = ACTIONS(3035), - [anon_sym_RPAREN] = ACTIONS(3033), - [anon_sym_SEMI_SEMI] = ACTIONS(3033), - [anon_sym_PIPE_AMP] = ACTIONS(3033), - [anon_sym_AMP_AMP] = ACTIONS(3033), - [anon_sym_PIPE_PIPE] = ACTIONS(3033), - [sym__special_characters] = ACTIONS(3033), - [anon_sym_DQUOTE] = ACTIONS(3033), - [anon_sym_DOLLAR] = ACTIONS(3035), - [sym_raw_string] = ACTIONS(3033), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3033), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3033), - [anon_sym_BQUOTE] = ACTIONS(3033), - [anon_sym_LT_LPAREN] = ACTIONS(3033), - [anon_sym_GT_LPAREN] = ACTIONS(3033), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3035), - [sym_word] = ACTIONS(3035), - [anon_sym_LF] = ACTIONS(3033), - [anon_sym_AMP] = ACTIONS(3035), + [1223] = { + [sym__concat] = ACTIONS(3065), + [anon_sym_in] = ACTIONS(3065), + [anon_sym_SEMI] = ACTIONS(3067), + [anon_sym_SEMI_SEMI] = ACTIONS(3065), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(3065), + [anon_sym_AMP] = ACTIONS(3065), }, - [1247] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(3716), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(901), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), + [1224] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(3710), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, - [1248] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(3716), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), - }, - [1249] = { - [sym__concat] = ACTIONS(3071), - [ts_builtin_sym_end] = ACTIONS(3071), - [anon_sym_SEMI] = ACTIONS(3073), - [anon_sym_PIPE] = ACTIONS(3073), - [anon_sym_RPAREN] = ACTIONS(3071), - [anon_sym_SEMI_SEMI] = ACTIONS(3071), - [anon_sym_PIPE_AMP] = ACTIONS(3071), - [anon_sym_AMP_AMP] = ACTIONS(3071), - [anon_sym_PIPE_PIPE] = ACTIONS(3071), - [sym__special_characters] = ACTIONS(3071), - [anon_sym_DQUOTE] = ACTIONS(3071), - [anon_sym_DOLLAR] = ACTIONS(3073), - [sym_raw_string] = ACTIONS(3071), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3071), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3071), - [anon_sym_BQUOTE] = ACTIONS(3071), - [anon_sym_LT_LPAREN] = ACTIONS(3071), - [anon_sym_GT_LPAREN] = ACTIONS(3071), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3073), - [sym_word] = ACTIONS(3073), - [anon_sym_LF] = ACTIONS(3071), - [anon_sym_AMP] = ACTIONS(3073), - }, - [1250] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(3718), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(901), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), - }, - [1251] = { - [sym_file_descriptor] = ACTIONS(2876), - [sym__concat] = ACTIONS(2876), - [sym_variable_name] = ACTIONS(2876), - [anon_sym_LT] = ACTIONS(2878), - [anon_sym_GT] = ACTIONS(2878), - [anon_sym_GT_GT] = ACTIONS(2876), - [anon_sym_AMP_GT] = ACTIONS(2878), - [anon_sym_AMP_GT_GT] = ACTIONS(2876), - [anon_sym_LT_AMP] = ACTIONS(2876), - [anon_sym_GT_AMP] = ACTIONS(2876), - [sym__special_characters] = ACTIONS(2876), - [anon_sym_DQUOTE] = ACTIONS(2876), - [anon_sym_DOLLAR] = ACTIONS(2878), - [sym_raw_string] = ACTIONS(2876), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2876), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2876), - [anon_sym_BQUOTE] = ACTIONS(2876), - [anon_sym_LT_LPAREN] = ACTIONS(2876), - [anon_sym_GT_LPAREN] = ACTIONS(2876), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2876), - }, - [1252] = { - [sym_file_descriptor] = ACTIONS(2890), - [sym__concat] = ACTIONS(2890), - [sym_variable_name] = ACTIONS(2890), - [anon_sym_LT] = ACTIONS(2892), - [anon_sym_GT] = ACTIONS(2892), - [anon_sym_GT_GT] = ACTIONS(2890), - [anon_sym_AMP_GT] = ACTIONS(2892), - [anon_sym_AMP_GT_GT] = ACTIONS(2890), - [anon_sym_LT_AMP] = ACTIONS(2890), - [anon_sym_GT_AMP] = ACTIONS(2890), - [sym__special_characters] = ACTIONS(2890), - [anon_sym_DQUOTE] = ACTIONS(2890), - [anon_sym_DOLLAR] = ACTIONS(2892), - [sym_raw_string] = ACTIONS(2890), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2890), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2890), - [anon_sym_BQUOTE] = ACTIONS(2890), - [anon_sym_LT_LPAREN] = ACTIONS(2890), - [anon_sym_GT_LPAREN] = ACTIONS(2890), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2890), - }, - [1253] = { - [aux_sym_concatenation_repeat1] = STATE(1293), - [sym__concat] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(3720), - [sym_comment] = ACTIONS(53), - }, - [1254] = { - [aux_sym_concatenation_repeat1] = STATE(1293), - [sym__concat] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(3722), - [sym_comment] = ACTIONS(53), - }, - [1255] = { - [anon_sym_RBRACE] = ACTIONS(3722), - [sym_comment] = ACTIONS(53), - }, - [1256] = { - [sym_concatenation] = STATE(1640), - [sym_string] = STATE(1639), - [sym_simple_expansion] = STATE(1639), - [sym_string_expansion] = STATE(1639), - [sym_expansion] = STATE(1639), - [sym_command_substitution] = STATE(1639), - [sym_process_substitution] = STATE(1639), - [anon_sym_RBRACE] = ACTIONS(3722), - [sym__special_characters] = ACTIONS(3724), - [anon_sym_DQUOTE] = ACTIONS(1802), - [anon_sym_DOLLAR] = ACTIONS(1804), - [sym_raw_string] = ACTIONS(3726), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1808), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1810), - [anon_sym_BQUOTE] = ACTIONS(1812), - [anon_sym_LT_LPAREN] = ACTIONS(1814), - [anon_sym_GT_LPAREN] = ACTIONS(1814), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3726), - }, - [1257] = { - [sym_file_descriptor] = ACTIONS(2926), - [sym__concat] = ACTIONS(2926), - [sym_variable_name] = ACTIONS(2926), - [anon_sym_LT] = ACTIONS(2928), - [anon_sym_GT] = ACTIONS(2928), - [anon_sym_GT_GT] = ACTIONS(2926), - [anon_sym_AMP_GT] = ACTIONS(2928), - [anon_sym_AMP_GT_GT] = ACTIONS(2926), - [anon_sym_LT_AMP] = ACTIONS(2926), - [anon_sym_GT_AMP] = ACTIONS(2926), - [sym__special_characters] = ACTIONS(2926), - [anon_sym_DQUOTE] = ACTIONS(2926), - [anon_sym_DOLLAR] = ACTIONS(2928), - [sym_raw_string] = ACTIONS(2926), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2926), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2926), - [anon_sym_BQUOTE] = ACTIONS(2926), - [anon_sym_LT_LPAREN] = ACTIONS(2926), - [anon_sym_GT_LPAREN] = ACTIONS(2926), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2926), - }, - [1258] = { - [sym_comment] = ACTIONS(265), - [sym_regex_without_right_brace] = ACTIONS(3728), - }, - [1259] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(3730), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [1260] = { - [sym_comment] = ACTIONS(265), - [sym_regex_without_right_brace] = ACTIONS(3732), - }, - [1261] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(3722), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [1262] = { - [sym_concatenation] = STATE(1645), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(1645), - [anon_sym_RBRACE] = ACTIONS(3734), - [anon_sym_EQ] = ACTIONS(3736), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(3738), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(3736), - [anon_sym_COLON_QMARK] = ACTIONS(3736), - [anon_sym_COLON_DASH] = ACTIONS(3736), - [anon_sym_PERCENT] = ACTIONS(3736), - [anon_sym_DASH] = ACTIONS(3736), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [1263] = { - [sym_file_descriptor] = ACTIONS(2990), - [sym__concat] = ACTIONS(2990), - [sym_variable_name] = ACTIONS(2990), - [anon_sym_LT] = ACTIONS(2992), - [anon_sym_GT] = ACTIONS(2992), - [anon_sym_GT_GT] = ACTIONS(2990), - [anon_sym_AMP_GT] = ACTIONS(2992), - [anon_sym_AMP_GT_GT] = ACTIONS(2990), - [anon_sym_LT_AMP] = ACTIONS(2990), - [anon_sym_GT_AMP] = ACTIONS(2990), - [sym__special_characters] = ACTIONS(2990), - [anon_sym_DQUOTE] = ACTIONS(2990), - [anon_sym_DOLLAR] = ACTIONS(2992), - [sym_raw_string] = ACTIONS(2990), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2990), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2990), - [anon_sym_BQUOTE] = ACTIONS(2990), - [anon_sym_LT_LPAREN] = ACTIONS(2990), - [anon_sym_GT_LPAREN] = ACTIONS(2990), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2990), - }, - [1264] = { + [1225] = { [sym_concatenation] = STATE(1646), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), [aux_sym_expansion_repeat1] = STATE(1646), - [anon_sym_RBRACE] = ACTIONS(3722), - [anon_sym_EQ] = ACTIONS(3740), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(3742), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(3740), - [anon_sym_COLON_QMARK] = ACTIONS(3740), - [anon_sym_COLON_DASH] = ACTIONS(3740), - [anon_sym_PERCENT] = ACTIONS(3740), - [anon_sym_DASH] = ACTIONS(3740), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [1265] = { - [sym_file_descriptor] = ACTIONS(3033), - [sym__concat] = ACTIONS(3033), - [sym_variable_name] = ACTIONS(3033), - [anon_sym_LT] = ACTIONS(3035), - [anon_sym_GT] = ACTIONS(3035), - [anon_sym_GT_GT] = ACTIONS(3033), - [anon_sym_AMP_GT] = ACTIONS(3035), - [anon_sym_AMP_GT_GT] = ACTIONS(3033), - [anon_sym_LT_AMP] = ACTIONS(3033), - [anon_sym_GT_AMP] = ACTIONS(3033), - [sym__special_characters] = ACTIONS(3033), - [anon_sym_DQUOTE] = ACTIONS(3033), - [anon_sym_DOLLAR] = ACTIONS(3035), - [sym_raw_string] = ACTIONS(3033), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3033), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3033), - [anon_sym_BQUOTE] = ACTIONS(3033), - [anon_sym_LT_LPAREN] = ACTIONS(3033), - [anon_sym_GT_LPAREN] = ACTIONS(3033), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3033), - }, - [1266] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(3744), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(901), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), - }, - [1267] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(3744), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), - }, - [1268] = { - [sym_file_descriptor] = ACTIONS(3071), - [sym__concat] = ACTIONS(3071), - [sym_variable_name] = ACTIONS(3071), - [anon_sym_LT] = ACTIONS(3073), - [anon_sym_GT] = ACTIONS(3073), - [anon_sym_GT_GT] = ACTIONS(3071), - [anon_sym_AMP_GT] = ACTIONS(3073), - [anon_sym_AMP_GT_GT] = ACTIONS(3071), - [anon_sym_LT_AMP] = ACTIONS(3071), - [anon_sym_GT_AMP] = ACTIONS(3071), - [sym__special_characters] = ACTIONS(3071), - [anon_sym_DQUOTE] = ACTIONS(3071), - [anon_sym_DOLLAR] = ACTIONS(3073), - [sym_raw_string] = ACTIONS(3071), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3071), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3071), - [anon_sym_BQUOTE] = ACTIONS(3071), - [anon_sym_LT_LPAREN] = ACTIONS(3071), - [anon_sym_GT_LPAREN] = ACTIONS(3071), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3071), - }, - [1269] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(3746), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(901), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), - }, - [1270] = { - [sym__concat] = ACTIONS(2890), - [anon_sym_DQUOTE] = ACTIONS(2892), - [anon_sym_DOLLAR] = ACTIONS(2892), - [sym__string_content] = ACTIONS(2890), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2892), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2892), - [anon_sym_BQUOTE] = ACTIONS(2892), - [sym_comment] = ACTIONS(265), - }, - [1271] = { - [aux_sym_concatenation_repeat1] = STATE(1293), - [sym__concat] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(3748), - [sym_comment] = ACTIONS(53), - }, - [1272] = { - [aux_sym_concatenation_repeat1] = STATE(1293), - [sym__concat] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(3750), - [sym_comment] = ACTIONS(53), - }, - [1273] = { - [anon_sym_RBRACE] = ACTIONS(3750), - [sym_comment] = ACTIONS(53), - }, - [1274] = { - [sym_concatenation] = STATE(1653), - [sym_string] = STATE(1652), - [sym_simple_expansion] = STATE(1652), - [sym_string_expansion] = STATE(1652), - [sym_expansion] = STATE(1652), - [sym_command_substitution] = STATE(1652), - [sym_process_substitution] = STATE(1652), - [anon_sym_RBRACE] = ACTIONS(3750), - [sym__special_characters] = ACTIONS(3752), - [anon_sym_DQUOTE] = ACTIONS(1802), - [anon_sym_DOLLAR] = ACTIONS(1804), - [sym_raw_string] = ACTIONS(3754), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1808), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1810), - [anon_sym_BQUOTE] = ACTIONS(1812), - [anon_sym_LT_LPAREN] = ACTIONS(1814), - [anon_sym_GT_LPAREN] = ACTIONS(1814), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3754), - }, - [1275] = { - [sym__concat] = ACTIONS(2926), - [anon_sym_DQUOTE] = ACTIONS(2928), - [anon_sym_DOLLAR] = ACTIONS(2928), - [sym__string_content] = ACTIONS(2926), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2928), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2928), - [anon_sym_BQUOTE] = ACTIONS(2928), - [sym_comment] = ACTIONS(265), - }, - [1276] = { - [sym_comment] = ACTIONS(265), - [sym_regex_without_right_brace] = ACTIONS(3756), - }, - [1277] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(3758), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [1278] = { - [sym_comment] = ACTIONS(265), - [sym_regex_without_right_brace] = ACTIONS(3760), - }, - [1279] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(3750), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [1280] = { - [sym_concatenation] = STATE(1658), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(1658), - [anon_sym_RBRACE] = ACTIONS(3762), - [anon_sym_EQ] = ACTIONS(3764), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(3766), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(3764), - [anon_sym_COLON_QMARK] = ACTIONS(3764), - [anon_sym_COLON_DASH] = ACTIONS(3764), - [anon_sym_PERCENT] = ACTIONS(3764), - [anon_sym_DASH] = ACTIONS(3764), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [1281] = { - [sym__concat] = ACTIONS(2990), - [anon_sym_DQUOTE] = ACTIONS(2992), - [anon_sym_DOLLAR] = ACTIONS(2992), - [sym__string_content] = ACTIONS(2990), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2992), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2992), - [anon_sym_BQUOTE] = ACTIONS(2992), - [sym_comment] = ACTIONS(265), - }, - [1282] = { - [sym_concatenation] = STATE(1659), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(1659), - [anon_sym_RBRACE] = ACTIONS(3750), - [anon_sym_EQ] = ACTIONS(3768), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(3770), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(3768), - [anon_sym_COLON_QMARK] = ACTIONS(3768), - [anon_sym_COLON_DASH] = ACTIONS(3768), - [anon_sym_PERCENT] = ACTIONS(3768), - [anon_sym_DASH] = ACTIONS(3768), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [1283] = { - [sym__concat] = ACTIONS(3033), - [anon_sym_DQUOTE] = ACTIONS(3035), - [anon_sym_DOLLAR] = ACTIONS(3035), - [sym__string_content] = ACTIONS(3033), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3035), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3035), - [anon_sym_BQUOTE] = ACTIONS(3035), - [sym_comment] = ACTIONS(265), - }, - [1284] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(3772), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(901), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), - }, - [1285] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(3772), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), - }, - [1286] = { - [sym_string] = STATE(710), - [sym_simple_expansion] = STATE(710), - [sym_string_expansion] = STATE(710), - [sym_expansion] = STATE(710), - [sym_command_substitution] = STATE(710), - [sym_process_substitution] = STATE(710), - [anon_sym_RBRACK] = ACTIONS(3774), - [sym__special_characters] = ACTIONS(2044), - [anon_sym_DQUOTE] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(141), - [sym_raw_string] = ACTIONS(1355), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(145), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(147), - [anon_sym_BQUOTE] = ACTIONS(149), - [anon_sym_LT_LPAREN] = ACTIONS(151), - [anon_sym_GT_LPAREN] = ACTIONS(151), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1355), - }, - [1287] = { - [sym__concat] = ACTIONS(3776), - [anon_sym_RBRACE] = ACTIONS(2048), - [anon_sym_EQ] = ACTIONS(3778), - [sym__special_characters] = ACTIONS(3778), - [anon_sym_DQUOTE] = ACTIONS(2048), - [anon_sym_DOLLAR] = ACTIONS(3778), - [sym_raw_string] = ACTIONS(2048), - [anon_sym_POUND] = ACTIONS(2048), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2048), - [anon_sym_SLASH] = ACTIONS(2048), - [anon_sym_COLON] = ACTIONS(3778), - [anon_sym_COLON_QMARK] = ACTIONS(3778), - [anon_sym_COLON_DASH] = ACTIONS(3778), - [anon_sym_PERCENT] = ACTIONS(3778), - [anon_sym_DASH] = ACTIONS(3778), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2048), - [anon_sym_BQUOTE] = ACTIONS(2048), - [anon_sym_LT_LPAREN] = ACTIONS(2048), - [anon_sym_GT_LPAREN] = ACTIONS(2048), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(3778), - }, - [1288] = { - [sym_string] = STATE(710), - [sym_simple_expansion] = STATE(710), - [sym_string_expansion] = STATE(710), - [sym_expansion] = STATE(710), - [sym_command_substitution] = STATE(710), - [sym_process_substitution] = STATE(710), - [anon_sym_RBRACK] = ACTIONS(3780), - [sym__special_characters] = ACTIONS(2044), - [anon_sym_DQUOTE] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(141), - [sym_raw_string] = ACTIONS(1355), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(145), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(147), - [anon_sym_BQUOTE] = ACTIONS(149), - [anon_sym_LT_LPAREN] = ACTIONS(151), - [anon_sym_GT_LPAREN] = ACTIONS(151), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1355), - }, - [1289] = { - [sym__concat] = ACTIONS(3782), - [anon_sym_RBRACE] = ACTIONS(2054), - [anon_sym_EQ] = ACTIONS(3784), - [sym__special_characters] = ACTIONS(3784), - [anon_sym_DQUOTE] = ACTIONS(2054), - [anon_sym_DOLLAR] = ACTIONS(3784), - [sym_raw_string] = ACTIONS(2054), - [anon_sym_POUND] = ACTIONS(2054), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2054), - [anon_sym_SLASH] = ACTIONS(2054), - [anon_sym_COLON] = ACTIONS(3784), - [anon_sym_COLON_QMARK] = ACTIONS(3784), - [anon_sym_COLON_DASH] = ACTIONS(3784), - [anon_sym_PERCENT] = ACTIONS(3784), - [anon_sym_DASH] = ACTIONS(3784), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2054), - [anon_sym_BQUOTE] = ACTIONS(2054), - [anon_sym_LT_LPAREN] = ACTIONS(2054), - [anon_sym_GT_LPAREN] = ACTIONS(2054), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(3784), - }, - [1290] = { - [anon_sym_RBRACK] = ACTIONS(3780), - [sym_comment] = ACTIONS(53), - }, - [1291] = { - [sym_string] = STATE(1665), - [sym_simple_expansion] = STATE(1665), - [sym_string_expansion] = STATE(1665), - [sym_expansion] = STATE(1665), - [sym_command_substitution] = STATE(1665), - [sym_process_substitution] = STATE(1665), - [sym__special_characters] = ACTIONS(3786), - [anon_sym_DQUOTE] = ACTIONS(1802), - [anon_sym_DOLLAR] = ACTIONS(1804), - [sym_raw_string] = ACTIONS(3786), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1808), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1810), - [anon_sym_BQUOTE] = ACTIONS(1812), - [anon_sym_LT_LPAREN] = ACTIONS(1814), - [anon_sym_GT_LPAREN] = ACTIONS(1814), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3786), - }, - [1292] = { - [sym__simple_heredoc_body] = ACTIONS(3788), - [sym__heredoc_body_beginning] = ACTIONS(3788), - [sym_file_descriptor] = ACTIONS(3788), - [sym__concat] = ACTIONS(3788), - [ts_builtin_sym_end] = ACTIONS(3788), - [anon_sym_SEMI] = ACTIONS(3790), - [anon_sym_PIPE] = ACTIONS(3790), - [anon_sym_RPAREN] = ACTIONS(3788), - [anon_sym_SEMI_SEMI] = ACTIONS(3788), - [anon_sym_PIPE_AMP] = ACTIONS(3788), - [anon_sym_AMP_AMP] = ACTIONS(3788), - [anon_sym_PIPE_PIPE] = ACTIONS(3788), - [anon_sym_EQ_TILDE] = ACTIONS(3790), - [anon_sym_EQ_EQ] = ACTIONS(3790), - [anon_sym_LT] = ACTIONS(3790), - [anon_sym_GT] = ACTIONS(3790), - [anon_sym_GT_GT] = ACTIONS(3788), - [anon_sym_AMP_GT] = ACTIONS(3790), - [anon_sym_AMP_GT_GT] = ACTIONS(3788), - [anon_sym_LT_AMP] = ACTIONS(3788), - [anon_sym_GT_AMP] = ACTIONS(3788), - [anon_sym_LT_LT] = ACTIONS(3790), - [anon_sym_LT_LT_DASH] = ACTIONS(3788), - [anon_sym_LT_LT_LT] = ACTIONS(3788), - [sym__special_characters] = ACTIONS(3788), - [anon_sym_DQUOTE] = ACTIONS(3788), - [anon_sym_DOLLAR] = ACTIONS(3790), - [sym_raw_string] = ACTIONS(3788), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3788), - [anon_sym_BQUOTE] = ACTIONS(3788), - [anon_sym_LT_LPAREN] = ACTIONS(3788), - [anon_sym_GT_LPAREN] = ACTIONS(3788), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3790), - [anon_sym_LF] = ACTIONS(3788), - [anon_sym_AMP] = ACTIONS(3790), - }, - [1293] = { - [aux_sym_concatenation_repeat1] = STATE(1666), - [sym__concat] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(765), - [sym_comment] = ACTIONS(53), - }, - [1294] = { - [sym__concat] = ACTIONS(769), - [anon_sym_RBRACE] = ACTIONS(769), - [sym_comment] = ACTIONS(53), - }, - [1295] = { - [anon_sym_DQUOTE] = ACTIONS(3792), - [anon_sym_DOLLAR] = ACTIONS(775), - [sym__string_content] = ACTIONS(777), - [anon_sym_POUND] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(781), - [anon_sym_STAR] = ACTIONS(783), - [anon_sym_AT] = ACTIONS(783), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_0] = ACTIONS(781), - [anon_sym__] = ACTIONS(781), - }, - [1296] = { - [sym_simple_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [sym_command_substitution] = STATE(141), - [aux_sym_string_repeat1] = STATE(450), - [anon_sym_DQUOTE] = ACTIONS(3792), - [anon_sym_DOLLAR] = ACTIONS(3794), - [sym__string_content] = ACTIONS(257), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(261), - [anon_sym_BQUOTE] = ACTIONS(263), - [sym_comment] = ACTIONS(265), - }, - [1297] = { - [sym__concat] = ACTIONS(803), - [anon_sym_RBRACE] = ACTIONS(803), - [sym_comment] = ACTIONS(53), - }, - [1298] = { - [sym__concat] = ACTIONS(807), - [anon_sym_RBRACE] = ACTIONS(807), - [sym_comment] = ACTIONS(53), - }, - [1299] = { - [sym__concat] = ACTIONS(811), - [anon_sym_RBRACE] = ACTIONS(811), - [sym_comment] = ACTIONS(53), - }, - [1300] = { - [sym__simple_heredoc_body] = ACTIONS(3796), - [sym__heredoc_body_beginning] = ACTIONS(3796), - [sym_file_descriptor] = ACTIONS(3796), - [sym__concat] = ACTIONS(3796), - [ts_builtin_sym_end] = ACTIONS(3796), - [anon_sym_SEMI] = ACTIONS(3798), - [anon_sym_PIPE] = ACTIONS(3798), - [anon_sym_RPAREN] = ACTIONS(3796), - [anon_sym_SEMI_SEMI] = ACTIONS(3796), - [anon_sym_PIPE_AMP] = ACTIONS(3796), - [anon_sym_AMP_AMP] = ACTIONS(3796), - [anon_sym_PIPE_PIPE] = ACTIONS(3796), - [anon_sym_EQ_TILDE] = ACTIONS(3798), - [anon_sym_EQ_EQ] = ACTIONS(3798), - [anon_sym_LT] = ACTIONS(3798), - [anon_sym_GT] = ACTIONS(3798), - [anon_sym_GT_GT] = ACTIONS(3796), - [anon_sym_AMP_GT] = ACTIONS(3798), - [anon_sym_AMP_GT_GT] = ACTIONS(3796), - [anon_sym_LT_AMP] = ACTIONS(3796), - [anon_sym_GT_AMP] = ACTIONS(3796), - [anon_sym_LT_LT] = ACTIONS(3798), - [anon_sym_LT_LT_DASH] = ACTIONS(3796), - [anon_sym_LT_LT_LT] = ACTIONS(3796), - [sym__special_characters] = ACTIONS(3796), - [anon_sym_DQUOTE] = ACTIONS(3796), - [anon_sym_DOLLAR] = ACTIONS(3798), - [sym_raw_string] = ACTIONS(3796), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3796), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3796), - [anon_sym_BQUOTE] = ACTIONS(3796), - [anon_sym_LT_LPAREN] = ACTIONS(3796), - [anon_sym_GT_LPAREN] = ACTIONS(3796), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3798), - [anon_sym_LF] = ACTIONS(3796), - [anon_sym_AMP] = ACTIONS(3798), - }, - [1301] = { - [anon_sym_LBRACK] = ACTIONS(815), - [anon_sym_EQ] = ACTIONS(3800), - [sym_comment] = ACTIONS(53), - }, - [1302] = { - [sym_subscript] = STATE(1672), - [sym_variable_name] = ACTIONS(3802), - [anon_sym_DOLLAR] = ACTIONS(3804), - [anon_sym_DASH] = ACTIONS(3804), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3806), - [anon_sym_STAR] = ACTIONS(3808), - [anon_sym_AT] = ACTIONS(3808), - [anon_sym_QMARK] = ACTIONS(3808), - [anon_sym_0] = ACTIONS(3806), - [anon_sym__] = ACTIONS(3806), - }, - [1303] = { - [sym_concatenation] = STATE(1675), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(1675), - [anon_sym_RBRACE] = ACTIONS(3810), - [anon_sym_EQ] = ACTIONS(3812), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(3814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(3816), - [anon_sym_COLON] = ACTIONS(3812), - [anon_sym_COLON_QMARK] = ACTIONS(3812), - [anon_sym_COLON_DASH] = ACTIONS(3812), - [anon_sym_PERCENT] = ACTIONS(3812), - [anon_sym_DASH] = ACTIONS(3812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [1304] = { - [sym_concatenation] = STATE(1678), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(1678), - [anon_sym_RBRACE] = ACTIONS(3818), - [anon_sym_EQ] = ACTIONS(3820), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(3822), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(3824), - [anon_sym_COLON] = ACTIONS(3820), - [anon_sym_COLON_QMARK] = ACTIONS(3820), - [anon_sym_COLON_DASH] = ACTIONS(3820), - [anon_sym_PERCENT] = ACTIONS(3820), - [anon_sym_DASH] = ACTIONS(3820), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [1305] = { - [anon_sym_SEMI] = ACTIONS(3826), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(3828), - [anon_sym_SEMI_SEMI] = ACTIONS(3830), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(3830), - [anon_sym_AMP] = ACTIONS(3826), - }, - [1306] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(3826), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(3828), - [anon_sym_SEMI_SEMI] = ACTIONS(3830), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(3830), - [anon_sym_AMP] = ACTIONS(3826), - }, - [1307] = { - [sym__terminated_statement] = STATE(190), - [sym_for_statement] = STATE(1681), - [sym_c_style_for_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_case_statement] = STATE(1681), - [sym_function_definition] = STATE(1681), - [sym_subshell] = STATE(1681), - [sym_pipeline] = STATE(1681), - [sym_list] = STATE(1681), - [sym_negated_command] = STATE(1681), - [sym_test_command] = STATE(1681), - [sym_declaration_command] = STATE(1681), - [sym_unset_command] = STATE(1681), - [sym_command] = STATE(1681), - [sym_command_name] = STATE(78), - [sym_variable_assignment] = STATE(1682), - [sym_subscript] = STATE(80), - [sym_file_redirect] = STATE(82), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(75), - [sym_simple_expansion] = STATE(75), - [sym_string_expansion] = STATE(75), - [sym_expansion] = STATE(75), - [sym_command_substitution] = STATE(75), - [sym_process_substitution] = STATE(75), - [aux_sym__statements_repeat1] = STATE(190), - [aux_sym_command_repeat1] = STATE(82), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(111), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(119), - [anon_sym_declare] = ACTIONS(121), - [anon_sym_typeset] = ACTIONS(121), - [anon_sym_export] = ACTIONS(121), - [anon_sym_readonly] = ACTIONS(121), - [anon_sym_local] = ACTIONS(121), - [anon_sym_unset] = ACTIONS(123), - [anon_sym_unsetenv] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), - }, - [1308] = { - [anon_sym_SEMI] = ACTIONS(3832), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_SEMI_SEMI] = ACTIONS(3834), - [anon_sym_PIPE_AMP] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(883), - [anon_sym_PIPE_PIPE] = ACTIONS(883), - [anon_sym_BQUOTE] = ACTIONS(3828), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(3834), - [anon_sym_AMP] = ACTIONS(3832), - }, - [1309] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(3832), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_SEMI_SEMI] = ACTIONS(3834), - [anon_sym_PIPE_AMP] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(883), - [anon_sym_PIPE_PIPE] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(3828), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(3834), - [anon_sym_AMP] = ACTIONS(3832), - }, - [1310] = { - [sym__terminated_statement] = STATE(190), - [sym_for_statement] = STATE(1684), - [sym_c_style_for_statement] = STATE(1684), - [sym_while_statement] = STATE(1684), - [sym_if_statement] = STATE(1684), - [sym_case_statement] = STATE(1684), - [sym_function_definition] = STATE(1684), - [sym_subshell] = STATE(1684), - [sym_pipeline] = STATE(1684), - [sym_list] = STATE(1684), - [sym_negated_command] = STATE(1684), - [sym_test_command] = STATE(1684), - [sym_declaration_command] = STATE(1684), - [sym_unset_command] = STATE(1684), - [sym_command] = STATE(1684), - [sym_command_name] = STATE(165), - [sym_variable_assignment] = STATE(1685), - [sym_subscript] = STATE(53), - [sym_file_redirect] = STATE(168), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(47), - [sym_simple_expansion] = STATE(47), - [sym_string_expansion] = STATE(47), - [sym_expansion] = STATE(47), - [sym_command_substitution] = STATE(47), - [sym_process_substitution] = STATE(47), - [aux_sym__statements_repeat1] = STATE(190), - [aux_sym_command_repeat1] = STATE(168), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(69), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(289), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(291), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(293), - [anon_sym_LBRACK] = ACTIONS(295), - [anon_sym_LBRACK_LBRACK] = ACTIONS(297), - [anon_sym_declare] = ACTIONS(299), - [anon_sym_typeset] = ACTIONS(299), - [anon_sym_export] = ACTIONS(299), - [anon_sym_readonly] = ACTIONS(299), - [anon_sym_local] = ACTIONS(299), - [anon_sym_unset] = ACTIONS(301), - [anon_sym_unsetenv] = ACTIONS(301), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(87), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(303), - }, - [1311] = { - [anon_sym_SEMI] = ACTIONS(3836), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(3838), - [anon_sym_SEMI_SEMI] = ACTIONS(3840), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(3840), - [anon_sym_AMP] = ACTIONS(3836), - }, - [1312] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(3836), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(3838), - [anon_sym_SEMI_SEMI] = ACTIONS(3840), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(3840), - [anon_sym_AMP] = ACTIONS(3836), - }, - [1313] = { - [sym__terminated_statement] = STATE(190), - [sym_for_statement] = STATE(1688), - [sym_c_style_for_statement] = STATE(1688), - [sym_while_statement] = STATE(1688), - [sym_if_statement] = STATE(1688), - [sym_case_statement] = STATE(1688), - [sym_function_definition] = STATE(1688), - [sym_subshell] = STATE(1688), - [sym_pipeline] = STATE(1688), - [sym_list] = STATE(1688), - [sym_negated_command] = STATE(1688), - [sym_test_command] = STATE(1688), - [sym_declaration_command] = STATE(1688), - [sym_unset_command] = STATE(1688), - [sym_command] = STATE(1688), - [sym_command_name] = STATE(78), - [sym_variable_assignment] = STATE(1689), - [sym_subscript] = STATE(80), - [sym_file_redirect] = STATE(82), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(75), - [sym_simple_expansion] = STATE(75), - [sym_string_expansion] = STATE(75), - [sym_expansion] = STATE(75), - [sym_command_substitution] = STATE(75), - [sym_process_substitution] = STATE(75), - [aux_sym__statements_repeat1] = STATE(190), - [aux_sym_command_repeat1] = STATE(82), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(111), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(119), - [anon_sym_declare] = ACTIONS(121), - [anon_sym_typeset] = ACTIONS(121), - [anon_sym_export] = ACTIONS(121), - [anon_sym_readonly] = ACTIONS(121), - [anon_sym_local] = ACTIONS(121), - [anon_sym_unset] = ACTIONS(123), - [anon_sym_unsetenv] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), - }, - [1314] = { - [aux_sym_concatenation_repeat1] = STATE(1293), - [sym__concat] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(3842), - [sym_comment] = ACTIONS(53), - }, - [1315] = { - [aux_sym_concatenation_repeat1] = STATE(1293), - [sym__concat] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(3844), - [sym_comment] = ACTIONS(53), - }, - [1316] = { - [anon_sym_RBRACE] = ACTIONS(3844), - [sym_comment] = ACTIONS(53), - }, - [1317] = { - [sym_concatenation] = STATE(1693), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(1693), - [anon_sym_RBRACE] = ACTIONS(3846), - [anon_sym_EQ] = ACTIONS(3848), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(3850), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(3848), - [anon_sym_COLON_QMARK] = ACTIONS(3848), - [anon_sym_COLON_DASH] = ACTIONS(3848), - [anon_sym_PERCENT] = ACTIONS(3848), - [anon_sym_DASH] = ACTIONS(3848), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [1318] = { - [sym__simple_heredoc_body] = ACTIONS(3852), - [sym__heredoc_body_beginning] = ACTIONS(3852), - [sym_file_descriptor] = ACTIONS(3852), - [sym__concat] = ACTIONS(3852), - [ts_builtin_sym_end] = ACTIONS(3852), - [anon_sym_SEMI] = ACTIONS(3854), - [anon_sym_PIPE] = ACTIONS(3854), - [anon_sym_RPAREN] = ACTIONS(3852), - [anon_sym_SEMI_SEMI] = ACTIONS(3852), - [anon_sym_PIPE_AMP] = ACTIONS(3852), - [anon_sym_AMP_AMP] = ACTIONS(3852), - [anon_sym_PIPE_PIPE] = ACTIONS(3852), - [anon_sym_EQ_TILDE] = ACTIONS(3854), - [anon_sym_EQ_EQ] = ACTIONS(3854), - [anon_sym_LT] = ACTIONS(3854), - [anon_sym_GT] = ACTIONS(3854), - [anon_sym_GT_GT] = ACTIONS(3852), - [anon_sym_AMP_GT] = ACTIONS(3854), - [anon_sym_AMP_GT_GT] = ACTIONS(3852), - [anon_sym_LT_AMP] = ACTIONS(3852), - [anon_sym_GT_AMP] = ACTIONS(3852), - [anon_sym_LT_LT] = ACTIONS(3854), - [anon_sym_LT_LT_DASH] = ACTIONS(3852), - [anon_sym_LT_LT_LT] = ACTIONS(3852), - [sym__special_characters] = ACTIONS(3852), - [anon_sym_DQUOTE] = ACTIONS(3852), - [anon_sym_DOLLAR] = ACTIONS(3854), - [sym_raw_string] = ACTIONS(3852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3852), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3852), - [anon_sym_BQUOTE] = ACTIONS(3852), - [anon_sym_LT_LPAREN] = ACTIONS(3852), - [anon_sym_GT_LPAREN] = ACTIONS(3852), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3854), - [anon_sym_LF] = ACTIONS(3852), - [anon_sym_AMP] = ACTIONS(3854), - }, - [1319] = { - [sym_concatenation] = STATE(1694), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(1694), - [anon_sym_RBRACE] = ACTIONS(3844), - [anon_sym_EQ] = ACTIONS(3856), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(3858), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(3856), - [anon_sym_COLON_QMARK] = ACTIONS(3856), - [anon_sym_COLON_DASH] = ACTIONS(3856), - [anon_sym_PERCENT] = ACTIONS(3856), - [anon_sym_DASH] = ACTIONS(3856), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [1320] = { - [sym__concat] = ACTIONS(1724), - [anon_sym_RBRACE] = ACTIONS(1724), - [anon_sym_EQ] = ACTIONS(1726), - [sym__special_characters] = ACTIONS(1726), - [anon_sym_DQUOTE] = ACTIONS(1724), - [anon_sym_DOLLAR] = ACTIONS(1726), - [sym_raw_string] = ACTIONS(1724), - [anon_sym_POUND] = ACTIONS(1724), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1724), - [anon_sym_COLON] = ACTIONS(1726), - [anon_sym_COLON_QMARK] = ACTIONS(1726), - [anon_sym_COLON_DASH] = ACTIONS(1726), - [anon_sym_PERCENT] = ACTIONS(1726), - [anon_sym_DASH] = ACTIONS(1726), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1724), - [anon_sym_BQUOTE] = ACTIONS(1724), - [anon_sym_LT_LPAREN] = ACTIONS(1724), - [anon_sym_GT_LPAREN] = ACTIONS(1724), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(1726), - }, - [1321] = { - [aux_sym_concatenation_repeat1] = STATE(1321), - [sym__concat] = ACTIONS(3860), - [anon_sym_RBRACE] = ACTIONS(1724), - [anon_sym_EQ] = ACTIONS(1726), - [sym__special_characters] = ACTIONS(1726), - [anon_sym_DQUOTE] = ACTIONS(1724), - [anon_sym_DOLLAR] = ACTIONS(1726), - [sym_raw_string] = ACTIONS(1724), - [anon_sym_POUND] = ACTIONS(1724), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1724), - [anon_sym_COLON] = ACTIONS(1726), - [anon_sym_COLON_QMARK] = ACTIONS(1726), - [anon_sym_COLON_DASH] = ACTIONS(1726), - [anon_sym_PERCENT] = ACTIONS(1726), - [anon_sym_DASH] = ACTIONS(1726), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1724), - [anon_sym_BQUOTE] = ACTIONS(1724), - [anon_sym_LT_LPAREN] = ACTIONS(1724), - [anon_sym_GT_LPAREN] = ACTIONS(1724), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(1726), - }, - [1322] = { - [sym__concat] = ACTIONS(1731), - [anon_sym_RBRACE] = ACTIONS(1731), - [anon_sym_EQ] = ACTIONS(1733), - [sym__special_characters] = ACTIONS(1733), - [anon_sym_DQUOTE] = ACTIONS(1731), - [anon_sym_DOLLAR] = ACTIONS(1733), - [sym_raw_string] = ACTIONS(1731), - [anon_sym_POUND] = ACTIONS(1731), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1731), - [anon_sym_COLON] = ACTIONS(1733), - [anon_sym_COLON_QMARK] = ACTIONS(1733), - [anon_sym_COLON_DASH] = ACTIONS(1733), - [anon_sym_PERCENT] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1733), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1731), - [anon_sym_BQUOTE] = ACTIONS(1731), - [anon_sym_LT_LPAREN] = ACTIONS(1731), - [anon_sym_GT_LPAREN] = ACTIONS(1731), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(1733), - }, - [1323] = { - [anon_sym_DQUOTE] = ACTIONS(3863), - [anon_sym_DOLLAR] = ACTIONS(775), - [sym__string_content] = ACTIONS(777), - [anon_sym_POUND] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(781), - [anon_sym_STAR] = ACTIONS(783), - [anon_sym_AT] = ACTIONS(783), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_0] = ACTIONS(781), - [anon_sym__] = ACTIONS(781), - }, - [1324] = { - [sym_concatenation] = STATE(1699), - [sym_string] = STATE(1698), - [sym_simple_expansion] = STATE(1698), - [sym_string_expansion] = STATE(1698), - [sym_expansion] = STATE(1698), - [sym_command_substitution] = STATE(1698), - [sym_process_substitution] = STATE(1698), - [anon_sym_RBRACE] = ACTIONS(3865), - [sym__special_characters] = ACTIONS(3867), - [anon_sym_DQUOTE] = ACTIONS(1802), - [anon_sym_DOLLAR] = ACTIONS(1804), - [sym_raw_string] = ACTIONS(3869), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1808), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1810), - [anon_sym_BQUOTE] = ACTIONS(1812), - [anon_sym_LT_LPAREN] = ACTIONS(1814), - [anon_sym_GT_LPAREN] = ACTIONS(1814), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3869), - }, - [1325] = { - [anon_sym_LBRACK] = ACTIONS(815), - [anon_sym_EQ] = ACTIONS(3871), - [sym_comment] = ACTIONS(53), - }, - [1326] = { - [sym_concatenation] = STATE(1703), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(1703), - [anon_sym_RBRACE] = ACTIONS(3873), - [anon_sym_EQ] = ACTIONS(3875), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(3877), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(3879), - [anon_sym_COLON] = ACTIONS(3875), - [anon_sym_COLON_QMARK] = ACTIONS(3875), - [anon_sym_COLON_DASH] = ACTIONS(3875), - [anon_sym_PERCENT] = ACTIONS(3875), - [anon_sym_DASH] = ACTIONS(3875), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [1327] = { - [sym_concatenation] = STATE(1705), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(1705), - [anon_sym_RBRACE] = ACTIONS(3865), - [anon_sym_EQ] = ACTIONS(3881), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(3883), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(3885), - [anon_sym_COLON] = ACTIONS(3881), - [anon_sym_COLON_QMARK] = ACTIONS(3881), - [anon_sym_COLON_DASH] = ACTIONS(3881), - [anon_sym_PERCENT] = ACTIONS(3881), - [anon_sym_DASH] = ACTIONS(3881), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [1328] = { - [sym__concat] = ACTIONS(1832), - [anon_sym_RBRACE] = ACTIONS(1832), - [anon_sym_EQ] = ACTIONS(1834), - [sym__special_characters] = ACTIONS(1834), - [anon_sym_DQUOTE] = ACTIONS(1832), - [anon_sym_DOLLAR] = ACTIONS(1834), - [sym_raw_string] = ACTIONS(1832), - [anon_sym_POUND] = ACTIONS(1832), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1832), - [anon_sym_COLON] = ACTIONS(1834), - [anon_sym_COLON_QMARK] = ACTIONS(1834), - [anon_sym_COLON_DASH] = ACTIONS(1834), - [anon_sym_PERCENT] = ACTIONS(1834), - [anon_sym_DASH] = ACTIONS(1834), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1832), - [anon_sym_BQUOTE] = ACTIONS(1832), - [anon_sym_LT_LPAREN] = ACTIONS(1832), - [anon_sym_GT_LPAREN] = ACTIONS(1832), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(1834), - }, - [1329] = { - [sym_comment] = ACTIONS(265), - [sym_regex_without_right_brace] = ACTIONS(3887), - }, - [1330] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(3889), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [1331] = { - [sym__concat] = ACTIONS(1876), - [anon_sym_RBRACE] = ACTIONS(1876), - [anon_sym_EQ] = ACTIONS(1878), - [sym__special_characters] = ACTIONS(1878), - [anon_sym_DQUOTE] = ACTIONS(1876), - [anon_sym_DOLLAR] = ACTIONS(1878), - [sym_raw_string] = ACTIONS(1876), - [anon_sym_POUND] = ACTIONS(1876), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1876), - [anon_sym_COLON] = ACTIONS(1878), - [anon_sym_COLON_QMARK] = ACTIONS(1878), - [anon_sym_COLON_DASH] = ACTIONS(1878), - [anon_sym_PERCENT] = ACTIONS(1878), - [anon_sym_DASH] = ACTIONS(1878), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1876), - [anon_sym_BQUOTE] = ACTIONS(1876), - [anon_sym_LT_LPAREN] = ACTIONS(1876), - [anon_sym_GT_LPAREN] = ACTIONS(1876), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(1878), - }, - [1332] = { - [sym_comment] = ACTIONS(265), - [sym_regex_without_right_brace] = ACTIONS(3891), - }, - [1333] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(3865), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [1334] = { - [sym__simple_heredoc_body] = ACTIONS(3893), - [sym__heredoc_body_beginning] = ACTIONS(3893), - [sym_file_descriptor] = ACTIONS(3893), - [sym__concat] = ACTIONS(3893), - [ts_builtin_sym_end] = ACTIONS(3893), - [anon_sym_SEMI] = ACTIONS(3895), - [anon_sym_PIPE] = ACTIONS(3895), - [anon_sym_RPAREN] = ACTIONS(3893), - [anon_sym_SEMI_SEMI] = ACTIONS(3893), - [anon_sym_PIPE_AMP] = ACTIONS(3893), - [anon_sym_AMP_AMP] = ACTIONS(3893), - [anon_sym_PIPE_PIPE] = ACTIONS(3893), - [anon_sym_EQ_TILDE] = ACTIONS(3895), - [anon_sym_EQ_EQ] = ACTIONS(3895), - [anon_sym_LT] = ACTIONS(3895), - [anon_sym_GT] = ACTIONS(3895), - [anon_sym_GT_GT] = ACTIONS(3893), - [anon_sym_AMP_GT] = ACTIONS(3895), - [anon_sym_AMP_GT_GT] = ACTIONS(3893), - [anon_sym_LT_AMP] = ACTIONS(3893), - [anon_sym_GT_AMP] = ACTIONS(3893), - [anon_sym_LT_LT] = ACTIONS(3895), - [anon_sym_LT_LT_DASH] = ACTIONS(3893), - [anon_sym_LT_LT_LT] = ACTIONS(3893), - [sym__special_characters] = ACTIONS(3893), - [anon_sym_DQUOTE] = ACTIONS(3893), - [anon_sym_DOLLAR] = ACTIONS(3895), - [sym_raw_string] = ACTIONS(3893), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3893), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3893), - [anon_sym_BQUOTE] = ACTIONS(3893), - [anon_sym_LT_LPAREN] = ACTIONS(3893), - [anon_sym_GT_LPAREN] = ACTIONS(3893), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3895), - [anon_sym_LF] = ACTIONS(3893), - [anon_sym_AMP] = ACTIONS(3895), - }, - [1335] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(3897), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [1336] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(3899), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(901), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), - }, - [1337] = { - [sym__concat] = ACTIONS(1884), - [anon_sym_RBRACE] = ACTIONS(1884), - [anon_sym_EQ] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(1886), - [anon_sym_DQUOTE] = ACTIONS(1884), - [anon_sym_DOLLAR] = ACTIONS(1886), - [sym_raw_string] = ACTIONS(1884), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1884), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_COLON_QMARK] = ACTIONS(1886), - [anon_sym_COLON_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1884), - [anon_sym_BQUOTE] = ACTIONS(1884), - [anon_sym_LT_LPAREN] = ACTIONS(1884), - [anon_sym_GT_LPAREN] = ACTIONS(1884), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(1886), - }, - [1338] = { - [anon_sym_SEMI] = ACTIONS(3901), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(3899), - [anon_sym_SEMI_SEMI] = ACTIONS(3903), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(3903), - [anon_sym_AMP] = ACTIONS(3901), - }, - [1339] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(3901), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(3899), - [anon_sym_SEMI_SEMI] = ACTIONS(3903), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(3903), - [anon_sym_AMP] = ACTIONS(3901), - }, - [1340] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(3899), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), - }, - [1341] = { - [anon_sym_SEMI] = ACTIONS(3905), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_SEMI_SEMI] = ACTIONS(3907), - [anon_sym_PIPE_AMP] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(883), - [anon_sym_PIPE_PIPE] = ACTIONS(883), - [anon_sym_BQUOTE] = ACTIONS(3899), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(3907), - [anon_sym_AMP] = ACTIONS(3905), - }, - [1342] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(3905), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_SEMI_SEMI] = ACTIONS(3907), - [anon_sym_PIPE_AMP] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(883), - [anon_sym_PIPE_PIPE] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(3899), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(3907), - [anon_sym_AMP] = ACTIONS(3905), - }, - [1343] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(3909), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(901), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), - }, - [1344] = { - [sym__concat] = ACTIONS(1916), - [anon_sym_RBRACE] = ACTIONS(1916), - [anon_sym_EQ] = ACTIONS(1918), - [sym__special_characters] = ACTIONS(1918), - [anon_sym_DQUOTE] = ACTIONS(1916), - [anon_sym_DOLLAR] = ACTIONS(1918), - [sym_raw_string] = ACTIONS(1916), - [anon_sym_POUND] = ACTIONS(1916), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1916), - [anon_sym_COLON] = ACTIONS(1918), - [anon_sym_COLON_QMARK] = ACTIONS(1918), - [anon_sym_COLON_DASH] = ACTIONS(1918), - [anon_sym_PERCENT] = ACTIONS(1918), - [anon_sym_DASH] = ACTIONS(1918), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1916), - [anon_sym_BQUOTE] = ACTIONS(1916), - [anon_sym_LT_LPAREN] = ACTIONS(1916), - [anon_sym_GT_LPAREN] = ACTIONS(1916), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(1918), - }, - [1345] = { - [anon_sym_SEMI] = ACTIONS(3911), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(3909), - [anon_sym_SEMI_SEMI] = ACTIONS(3913), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(3913), - [anon_sym_AMP] = ACTIONS(3911), - }, - [1346] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(3911), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(3909), - [anon_sym_SEMI_SEMI] = ACTIONS(3913), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(3913), - [anon_sym_AMP] = ACTIONS(3911), - }, - [1347] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(3844), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [1348] = { - [sym__simple_heredoc_body] = ACTIONS(3915), - [sym__heredoc_body_beginning] = ACTIONS(3915), - [sym_file_descriptor] = ACTIONS(3915), - [sym__concat] = ACTIONS(3915), - [ts_builtin_sym_end] = ACTIONS(3915), - [anon_sym_SEMI] = ACTIONS(3917), - [anon_sym_PIPE] = ACTIONS(3917), - [anon_sym_RPAREN] = ACTIONS(3915), - [anon_sym_SEMI_SEMI] = ACTIONS(3915), - [anon_sym_PIPE_AMP] = ACTIONS(3915), - [anon_sym_AMP_AMP] = ACTIONS(3915), - [anon_sym_PIPE_PIPE] = ACTIONS(3915), - [anon_sym_EQ_TILDE] = ACTIONS(3917), - [anon_sym_EQ_EQ] = ACTIONS(3917), - [anon_sym_LT] = ACTIONS(3917), - [anon_sym_GT] = ACTIONS(3917), - [anon_sym_GT_GT] = ACTIONS(3915), - [anon_sym_AMP_GT] = ACTIONS(3917), - [anon_sym_AMP_GT_GT] = ACTIONS(3915), - [anon_sym_LT_AMP] = ACTIONS(3915), - [anon_sym_GT_AMP] = ACTIONS(3915), - [anon_sym_LT_LT] = ACTIONS(3917), - [anon_sym_LT_LT_DASH] = ACTIONS(3915), - [anon_sym_LT_LT_LT] = ACTIONS(3915), - [sym__special_characters] = ACTIONS(3915), - [anon_sym_DQUOTE] = ACTIONS(3915), - [anon_sym_DOLLAR] = ACTIONS(3917), - [sym_raw_string] = ACTIONS(3915), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3915), - [anon_sym_BQUOTE] = ACTIONS(3915), - [anon_sym_LT_LPAREN] = ACTIONS(3915), - [anon_sym_GT_LPAREN] = ACTIONS(3915), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3917), - [anon_sym_LF] = ACTIONS(3915), - [anon_sym_AMP] = ACTIONS(3917), - }, - [1349] = { - [sym_file_redirect] = STATE(928), - [sym_heredoc_redirect] = STATE(928), - [sym_heredoc_body] = STATE(1086), - [sym_herestring_redirect] = STATE(928), - [aux_sym_while_statement_repeat1] = STATE(928), - [sym__simple_heredoc_body] = ACTIONS(321), - [sym__heredoc_body_beginning] = ACTIONS(323), - [sym_file_descriptor] = ACTIONS(885), - [anon_sym_SEMI] = ACTIONS(2331), - [anon_sym_PIPE] = ACTIONS(2331), - [anon_sym_SEMI_SEMI] = ACTIONS(2329), - [anon_sym_PIPE_AMP] = ACTIONS(2329), - [anon_sym_AMP_AMP] = ACTIONS(2329), - [anon_sym_PIPE_PIPE] = ACTIONS(2329), - [anon_sym_LT] = ACTIONS(887), - [anon_sym_GT] = ACTIONS(887), - [anon_sym_GT_GT] = ACTIONS(889), - [anon_sym_AMP_GT] = ACTIONS(887), - [anon_sym_AMP_GT_GT] = ACTIONS(889), - [anon_sym_LT_AMP] = ACTIONS(889), - [anon_sym_GT_AMP] = ACTIONS(889), - [anon_sym_LT_LT] = ACTIONS(337), - [anon_sym_LT_LT_DASH] = ACTIONS(339), - [anon_sym_LT_LT_LT] = ACTIONS(891), - [anon_sym_BQUOTE] = ACTIONS(2329), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(2329), - [anon_sym_AMP] = ACTIONS(2331), - }, - [1350] = { - [sym_compound_statement] = STATE(1715), - [anon_sym_LBRACE] = ACTIONS(511), - [sym_comment] = ACTIONS(53), - }, - [1351] = { - [anon_sym_LT] = ACTIONS(3919), - [anon_sym_GT] = ACTIONS(3919), - [anon_sym_GT_GT] = ACTIONS(3921), - [anon_sym_AMP_GT] = ACTIONS(3919), - [anon_sym_AMP_GT_GT] = ACTIONS(3921), - [anon_sym_LT_AMP] = ACTIONS(3921), - [anon_sym_GT_AMP] = ACTIONS(3921), - [sym_comment] = ACTIONS(53), - }, - [1352] = { - [sym_concatenation] = STATE(1135), - [sym_string] = STATE(1718), - [sym_simple_expansion] = STATE(1718), - [sym_string_expansion] = STATE(1718), - [sym_expansion] = STATE(1718), - [sym_command_substitution] = STATE(1718), - [sym_process_substitution] = STATE(1718), - [sym__special_characters] = ACTIONS(3923), - [anon_sym_DQUOTE] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(215), - [sym_raw_string] = ACTIONS(3925), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(219), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(221), - [anon_sym_BQUOTE] = ACTIONS(223), - [anon_sym_LT_LPAREN] = ACTIONS(225), - [anon_sym_GT_LPAREN] = ACTIONS(225), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3925), - }, - [1353] = { - [anon_sym_LT] = ACTIONS(3927), - [anon_sym_GT] = ACTIONS(3927), - [anon_sym_GT_GT] = ACTIONS(3929), - [anon_sym_AMP_GT] = ACTIONS(3927), - [anon_sym_AMP_GT_GT] = ACTIONS(3929), - [anon_sym_LT_AMP] = ACTIONS(3929), - [anon_sym_GT_AMP] = ACTIONS(3929), - [sym_comment] = ACTIONS(53), - }, - [1354] = { - [sym_concatenation] = STATE(1186), - [sym_string] = STATE(1721), - [sym_simple_expansion] = STATE(1721), - [sym_string_expansion] = STATE(1721), - [sym_expansion] = STATE(1721), - [sym_command_substitution] = STATE(1721), - [sym_process_substitution] = STATE(1721), - [sym__special_characters] = ACTIONS(3931), - [anon_sym_DQUOTE] = ACTIONS(2612), - [anon_sym_DOLLAR] = ACTIONS(2614), - [sym_raw_string] = ACTIONS(3933), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2618), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2620), - [anon_sym_BQUOTE] = ACTIONS(2622), - [anon_sym_LT_LPAREN] = ACTIONS(2624), - [anon_sym_GT_LPAREN] = ACTIONS(2624), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3933), - }, - [1355] = { - [sym_concatenation] = STATE(1190), - [sym_string] = STATE(1723), - [sym_simple_expansion] = STATE(1723), - [sym_string_expansion] = STATE(1723), - [sym_expansion] = STATE(1723), - [sym_command_substitution] = STATE(1723), - [sym_process_substitution] = STATE(1723), - [sym__special_characters] = ACTIONS(3935), - [anon_sym_DQUOTE] = ACTIONS(2612), - [anon_sym_DOLLAR] = ACTIONS(2614), - [sym_raw_string] = ACTIONS(3937), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2618), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2620), - [anon_sym_BQUOTE] = ACTIONS(2622), - [anon_sym_LT_LPAREN] = ACTIONS(2624), - [anon_sym_GT_LPAREN] = ACTIONS(2624), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3937), - }, - [1356] = { - [sym_file_redirect] = STATE(1724), - [sym_heredoc_redirect] = STATE(1724), - [sym_herestring_redirect] = STATE(1724), - [aux_sym_while_statement_repeat1] = STATE(1724), - [sym_file_descriptor] = ACTIONS(3047), - [anon_sym_SEMI] = ACTIONS(2634), - [anon_sym_PIPE] = ACTIONS(2634), - [anon_sym_SEMI_SEMI] = ACTIONS(2632), - [anon_sym_PIPE_AMP] = ACTIONS(2632), - [anon_sym_AMP_AMP] = ACTIONS(2632), - [anon_sym_PIPE_PIPE] = ACTIONS(2632), - [anon_sym_LT] = ACTIONS(3049), - [anon_sym_GT] = ACTIONS(3049), - [anon_sym_GT_GT] = ACTIONS(3051), - [anon_sym_AMP_GT] = ACTIONS(3049), - [anon_sym_AMP_GT_GT] = ACTIONS(3051), - [anon_sym_LT_AMP] = ACTIONS(3051), - [anon_sym_GT_AMP] = ACTIONS(3051), - [anon_sym_LT_LT] = ACTIONS(1413), - [anon_sym_LT_LT_DASH] = ACTIONS(1415), - [anon_sym_LT_LT_LT] = ACTIONS(3053), - [anon_sym_BQUOTE] = ACTIONS(2632), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(2632), - [anon_sym_AMP] = ACTIONS(2634), - }, - [1357] = { - [sym_file_redirect] = STATE(1363), - [sym_file_descriptor] = ACTIONS(3041), - [anon_sym_SEMI] = ACTIONS(2462), - [anon_sym_PIPE] = ACTIONS(2462), - [anon_sym_SEMI_SEMI] = ACTIONS(2460), - [anon_sym_PIPE_AMP] = ACTIONS(2460), - [anon_sym_AMP_AMP] = ACTIONS(2460), - [anon_sym_PIPE_PIPE] = ACTIONS(2460), - [anon_sym_LT] = ACTIONS(3043), - [anon_sym_GT] = ACTIONS(3043), - [anon_sym_GT_GT] = ACTIONS(3045), - [anon_sym_AMP_GT] = ACTIONS(3043), - [anon_sym_AMP_GT_GT] = ACTIONS(3045), - [anon_sym_LT_AMP] = ACTIONS(3045), - [anon_sym_GT_AMP] = ACTIONS(3045), - [anon_sym_BQUOTE] = ACTIONS(2460), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(2460), - [anon_sym_AMP] = ACTIONS(2462), - }, - [1358] = { - [aux_sym_concatenation_repeat1] = STATE(1360), - [sym__simple_heredoc_body] = ACTIONS(1053), - [sym__heredoc_body_beginning] = ACTIONS(1053), - [sym_file_descriptor] = ACTIONS(1053), - [sym__concat] = ACTIONS(249), - [anon_sym_SEMI] = ACTIONS(1055), - [anon_sym_PIPE] = ACTIONS(1055), - [anon_sym_SEMI_SEMI] = ACTIONS(1053), - [anon_sym_PIPE_AMP] = ACTIONS(1053), - [anon_sym_AMP_AMP] = ACTIONS(1053), - [anon_sym_PIPE_PIPE] = ACTIONS(1053), - [anon_sym_LT] = ACTIONS(1055), - [anon_sym_GT] = ACTIONS(1055), - [anon_sym_GT_GT] = ACTIONS(1053), - [anon_sym_AMP_GT] = ACTIONS(1055), - [anon_sym_AMP_GT_GT] = ACTIONS(1053), - [anon_sym_LT_AMP] = ACTIONS(1053), - [anon_sym_GT_AMP] = ACTIONS(1053), - [anon_sym_LT_LT] = ACTIONS(1055), - [anon_sym_LT_LT_DASH] = ACTIONS(1053), - [anon_sym_LT_LT_LT] = ACTIONS(1053), - [anon_sym_BQUOTE] = ACTIONS(1053), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1053), - [anon_sym_AMP] = ACTIONS(1055), - }, - [1359] = { - [aux_sym_concatenation_repeat1] = STATE(1360), - [sym__simple_heredoc_body] = ACTIONS(1057), - [sym__heredoc_body_beginning] = ACTIONS(1057), - [sym_file_descriptor] = ACTIONS(1057), - [sym__concat] = ACTIONS(249), - [anon_sym_SEMI] = ACTIONS(1059), - [anon_sym_PIPE] = ACTIONS(1059), - [anon_sym_SEMI_SEMI] = ACTIONS(1057), - [anon_sym_PIPE_AMP] = ACTIONS(1057), - [anon_sym_AMP_AMP] = ACTIONS(1057), - [anon_sym_PIPE_PIPE] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_GT_GT] = ACTIONS(1057), - [anon_sym_AMP_GT] = ACTIONS(1059), - [anon_sym_AMP_GT_GT] = ACTIONS(1057), - [anon_sym_LT_AMP] = ACTIONS(1057), - [anon_sym_GT_AMP] = ACTIONS(1057), - [anon_sym_LT_LT] = ACTIONS(1059), - [anon_sym_LT_LT_DASH] = ACTIONS(1057), - [anon_sym_LT_LT_LT] = ACTIONS(1057), - [anon_sym_BQUOTE] = ACTIONS(1057), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), - }, - [1360] = { - [aux_sym_concatenation_repeat1] = STATE(1725), - [sym__simple_heredoc_body] = ACTIONS(765), - [sym__heredoc_body_beginning] = ACTIONS(765), - [sym_file_descriptor] = ACTIONS(765), - [sym__concat] = ACTIONS(249), - [anon_sym_SEMI] = ACTIONS(767), - [anon_sym_PIPE] = ACTIONS(767), - [anon_sym_SEMI_SEMI] = ACTIONS(765), - [anon_sym_PIPE_AMP] = ACTIONS(765), - [anon_sym_AMP_AMP] = ACTIONS(765), - [anon_sym_PIPE_PIPE] = ACTIONS(765), - [anon_sym_LT] = ACTIONS(767), - [anon_sym_GT] = ACTIONS(767), - [anon_sym_GT_GT] = ACTIONS(765), - [anon_sym_AMP_GT] = ACTIONS(767), - [anon_sym_AMP_GT_GT] = ACTIONS(765), - [anon_sym_LT_AMP] = ACTIONS(765), - [anon_sym_GT_AMP] = ACTIONS(765), - [anon_sym_LT_LT] = ACTIONS(767), - [anon_sym_LT_LT_DASH] = ACTIONS(765), - [anon_sym_LT_LT_LT] = ACTIONS(765), - [anon_sym_BQUOTE] = ACTIONS(765), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(765), - [anon_sym_AMP] = ACTIONS(767), - }, - [1361] = { - [sym_file_redirect] = STATE(928), - [sym_heredoc_redirect] = STATE(928), - [sym_heredoc_body] = STATE(1375), - [sym_herestring_redirect] = STATE(928), - [aux_sym_while_statement_repeat1] = STATE(928), - [sym__simple_heredoc_body] = ACTIONS(321), - [sym__heredoc_body_beginning] = ACTIONS(323), - [sym_file_descriptor] = ACTIONS(885), - [anon_sym_SEMI] = ACTIONS(3120), - [anon_sym_PIPE] = ACTIONS(3120), - [anon_sym_SEMI_SEMI] = ACTIONS(3118), - [anon_sym_PIPE_AMP] = ACTIONS(3118), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_PIPE_PIPE] = ACTIONS(3118), - [anon_sym_LT] = ACTIONS(887), - [anon_sym_GT] = ACTIONS(887), - [anon_sym_GT_GT] = ACTIONS(889), - [anon_sym_AMP_GT] = ACTIONS(887), - [anon_sym_AMP_GT_GT] = ACTIONS(889), - [anon_sym_LT_AMP] = ACTIONS(889), - [anon_sym_GT_AMP] = ACTIONS(889), - [anon_sym_LT_LT] = ACTIONS(337), - [anon_sym_LT_LT_DASH] = ACTIONS(339), - [anon_sym_LT_LT_LT] = ACTIONS(891), - [anon_sym_BQUOTE] = ACTIONS(3118), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(3118), + [anon_sym_RBRACE] = ACTIONS(3690), + [anon_sym_EQ] = ACTIONS(3706), + [anon_sym_DASH] = ACTIONS(3706), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(3708), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(3706), + [anon_sym_COLON_QMARK] = ACTIONS(3706), + [anon_sym_COLON_DASH] = ACTIONS(3706), + [anon_sym_PERCENT] = ACTIONS(3706), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1226] = { + [sym__concat] = ACTIONS(3120), + [anon_sym_in] = ACTIONS(3120), + [anon_sym_SEMI] = ACTIONS(3122), + [anon_sym_SEMI_SEMI] = ACTIONS(3120), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(3120), [anon_sym_AMP] = ACTIONS(3120), }, - [1362] = { - [sym__simple_heredoc_body] = ACTIONS(3939), - [sym__heredoc_body_beginning] = ACTIONS(3939), - [sym_file_descriptor] = ACTIONS(3939), - [sym__concat] = ACTIONS(3939), - [ts_builtin_sym_end] = ACTIONS(3939), - [anon_sym_SEMI] = ACTIONS(3941), - [anon_sym_PIPE] = ACTIONS(3941), - [anon_sym_RPAREN] = ACTIONS(3939), - [anon_sym_SEMI_SEMI] = ACTIONS(3939), - [anon_sym_PIPE_AMP] = ACTIONS(3939), - [anon_sym_AMP_AMP] = ACTIONS(3939), - [anon_sym_PIPE_PIPE] = ACTIONS(3939), - [anon_sym_EQ_TILDE] = ACTIONS(3941), - [anon_sym_EQ_EQ] = ACTIONS(3941), - [anon_sym_LT] = ACTIONS(3941), - [anon_sym_GT] = ACTIONS(3941), - [anon_sym_GT_GT] = ACTIONS(3939), - [anon_sym_AMP_GT] = ACTIONS(3941), - [anon_sym_AMP_GT_GT] = ACTIONS(3939), - [anon_sym_LT_AMP] = ACTIONS(3939), - [anon_sym_GT_AMP] = ACTIONS(3939), - [anon_sym_LT_LT] = ACTIONS(3941), - [anon_sym_LT_LT_DASH] = ACTIONS(3939), - [anon_sym_LT_LT_LT] = ACTIONS(3939), - [sym__special_characters] = ACTIONS(3939), - [anon_sym_DQUOTE] = ACTIONS(3939), - [anon_sym_DOLLAR] = ACTIONS(3941), - [sym_raw_string] = ACTIONS(3939), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3939), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3939), - [anon_sym_BQUOTE] = ACTIONS(3939), - [anon_sym_LT_LPAREN] = ACTIONS(3939), - [anon_sym_GT_LPAREN] = ACTIONS(3939), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3941), - [anon_sym_LF] = ACTIONS(3939), - [anon_sym_AMP] = ACTIONS(3941), - }, - [1363] = { - [ts_builtin_sym_end] = ACTIONS(3520), - [anon_sym_SEMI] = ACTIONS(3522), - [anon_sym_esac] = ACTIONS(3520), - [anon_sym_PIPE] = ACTIONS(3522), - [anon_sym_RPAREN] = ACTIONS(3520), - [anon_sym_SEMI_SEMI] = ACTIONS(3520), - [anon_sym_PIPE_AMP] = ACTIONS(3520), - [anon_sym_AMP_AMP] = ACTIONS(3520), - [anon_sym_PIPE_PIPE] = ACTIONS(3520), - [anon_sym_BQUOTE] = ACTIONS(3520), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(3520), - [anon_sym_AMP] = ACTIONS(3522), - }, - [1364] = { - [sym_concatenation] = STATE(1729), - [sym_string] = STATE(1728), - [sym_simple_expansion] = STATE(1728), - [sym_string_expansion] = STATE(1728), - [sym_expansion] = STATE(1728), - [sym_command_substitution] = STATE(1728), - [sym_process_substitution] = STATE(1728), - [anon_sym_RBRACE] = ACTIONS(3943), - [sym__special_characters] = ACTIONS(3945), - [anon_sym_DQUOTE] = ACTIONS(1802), - [anon_sym_DOLLAR] = ACTIONS(1804), - [sym_raw_string] = ACTIONS(3947), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1808), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1810), - [anon_sym_BQUOTE] = ACTIONS(1812), - [anon_sym_LT_LPAREN] = ACTIONS(1814), - [anon_sym_GT_LPAREN] = ACTIONS(1814), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3947), - }, - [1365] = { - [anon_sym_LBRACK] = ACTIONS(815), - [anon_sym_EQ] = ACTIONS(3949), - [sym_comment] = ACTIONS(53), - }, - [1366] = { - [sym_concatenation] = STATE(1733), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(1733), - [anon_sym_RBRACE] = ACTIONS(3951), - [anon_sym_EQ] = ACTIONS(3953), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(3955), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(3957), - [anon_sym_COLON] = ACTIONS(3953), - [anon_sym_COLON_QMARK] = ACTIONS(3953), - [anon_sym_COLON_DASH] = ACTIONS(3953), - [anon_sym_PERCENT] = ACTIONS(3953), - [anon_sym_DASH] = ACTIONS(3953), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [1367] = { - [sym_concatenation] = STATE(1735), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(1735), - [anon_sym_RBRACE] = ACTIONS(3943), - [anon_sym_EQ] = ACTIONS(3959), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(3961), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(3963), - [anon_sym_COLON] = ACTIONS(3959), - [anon_sym_COLON_QMARK] = ACTIONS(3959), - [anon_sym_COLON_DASH] = ACTIONS(3959), - [anon_sym_PERCENT] = ACTIONS(3959), - [anon_sym_DASH] = ACTIONS(3959), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [1368] = { - [sym__heredoc_body_middle] = ACTIONS(1832), - [sym__heredoc_body_end] = ACTIONS(1832), - [anon_sym_DOLLAR] = ACTIONS(1834), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1832), - [sym_comment] = ACTIONS(53), - }, - [1369] = { - [sym_comment] = ACTIONS(265), - [sym_regex_without_right_brace] = ACTIONS(3965), - }, - [1370] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(3967), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [1371] = { - [sym__heredoc_body_middle] = ACTIONS(1876), - [sym__heredoc_body_end] = ACTIONS(1876), - [anon_sym_DOLLAR] = ACTIONS(1878), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1876), - [sym_comment] = ACTIONS(53), - }, - [1372] = { - [sym_comment] = ACTIONS(265), - [sym_regex_without_right_brace] = ACTIONS(3969), - }, - [1373] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(3943), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [1374] = { - [aux_sym_concatenation_repeat1] = STATE(1374), - [sym__simple_heredoc_body] = ACTIONS(1724), - [sym__heredoc_body_beginning] = ACTIONS(1724), - [sym_file_descriptor] = ACTIONS(1724), - [sym__concat] = ACTIONS(1728), - [ts_builtin_sym_end] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(1726), - [anon_sym_SEMI_SEMI] = ACTIONS(1724), - [anon_sym_PIPE_AMP] = ACTIONS(1724), - [anon_sym_AMP_AMP] = ACTIONS(1724), - [anon_sym_PIPE_PIPE] = ACTIONS(1724), - [anon_sym_LT] = ACTIONS(1726), - [anon_sym_GT] = ACTIONS(1726), - [anon_sym_GT_GT] = ACTIONS(1724), - [anon_sym_AMP_GT] = ACTIONS(1726), - [anon_sym_AMP_GT_GT] = ACTIONS(1724), - [anon_sym_LT_AMP] = ACTIONS(1724), - [anon_sym_GT_AMP] = ACTIONS(1724), - [anon_sym_LT_LT] = ACTIONS(1726), - [anon_sym_LT_LT_DASH] = ACTIONS(1724), - [anon_sym_LT_LT_LT] = ACTIONS(1724), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1726), - }, - [1375] = { - [ts_builtin_sym_end] = ACTIONS(3971), - [anon_sym_SEMI] = ACTIONS(3973), - [anon_sym_esac] = ACTIONS(3971), - [anon_sym_PIPE] = ACTIONS(3973), - [anon_sym_RPAREN] = ACTIONS(3971), - [anon_sym_SEMI_SEMI] = ACTIONS(3971), - [anon_sym_PIPE_AMP] = ACTIONS(3971), - [anon_sym_AMP_AMP] = ACTIONS(3971), - [anon_sym_PIPE_PIPE] = ACTIONS(3971), - [anon_sym_BQUOTE] = ACTIONS(3971), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(3971), - [anon_sym_AMP] = ACTIONS(3973), - }, - [1376] = { - [anon_sym_EQ] = ACTIONS(3975), - [anon_sym_PLUS_EQ] = ACTIONS(3975), - [sym_comment] = ACTIONS(53), - }, - [1377] = { - [anon_sym_EQ] = ACTIONS(3977), - [anon_sym_PLUS_EQ] = ACTIONS(3977), - [sym_comment] = ACTIONS(53), - }, - [1378] = { - [sym__concat] = ACTIONS(1724), - [anon_sym_RPAREN] = ACTIONS(1724), - [sym__special_characters] = ACTIONS(1724), - [anon_sym_DQUOTE] = ACTIONS(1724), - [anon_sym_DOLLAR] = ACTIONS(1726), - [sym_raw_string] = ACTIONS(1724), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1724), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1724), - [anon_sym_BQUOTE] = ACTIONS(1724), - [anon_sym_LT_LPAREN] = ACTIONS(1724), - [anon_sym_GT_LPAREN] = ACTIONS(1724), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1724), - }, - [1379] = { - [aux_sym_concatenation_repeat1] = STATE(1379), - [sym__concat] = ACTIONS(3979), - [anon_sym_RPAREN] = ACTIONS(1724), - [sym__special_characters] = ACTIONS(1724), - [anon_sym_DQUOTE] = ACTIONS(1724), - [anon_sym_DOLLAR] = ACTIONS(1726), - [sym_raw_string] = ACTIONS(1724), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1724), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1724), - [anon_sym_BQUOTE] = ACTIONS(1724), - [anon_sym_LT_LPAREN] = ACTIONS(1724), - [anon_sym_GT_LPAREN] = ACTIONS(1724), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1724), - }, - [1380] = { - [sym__concat] = ACTIONS(1731), - [anon_sym_RPAREN] = ACTIONS(1731), - [sym__special_characters] = ACTIONS(1731), - [anon_sym_DQUOTE] = ACTIONS(1731), - [anon_sym_DOLLAR] = ACTIONS(1733), - [sym_raw_string] = ACTIONS(1731), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1731), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1731), - [anon_sym_BQUOTE] = ACTIONS(1731), - [anon_sym_LT_LPAREN] = ACTIONS(1731), - [anon_sym_GT_LPAREN] = ACTIONS(1731), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1731), - }, - [1381] = { - [anon_sym_DQUOTE] = ACTIONS(3982), - [anon_sym_DOLLAR] = ACTIONS(775), - [sym__string_content] = ACTIONS(777), - [anon_sym_POUND] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(781), - [anon_sym_STAR] = ACTIONS(783), - [anon_sym_AT] = ACTIONS(783), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_0] = ACTIONS(781), - [anon_sym__] = ACTIONS(781), - }, - [1382] = { - [sym_concatenation] = STATE(1743), - [sym_string] = STATE(1742), - [sym_simple_expansion] = STATE(1742), - [sym_string_expansion] = STATE(1742), - [sym_expansion] = STATE(1742), - [sym_command_substitution] = STATE(1742), - [sym_process_substitution] = STATE(1742), - [anon_sym_RBRACE] = ACTIONS(3984), - [sym__special_characters] = ACTIONS(3986), - [anon_sym_DQUOTE] = ACTIONS(1802), - [anon_sym_DOLLAR] = ACTIONS(1804), - [sym_raw_string] = ACTIONS(3988), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1808), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1810), - [anon_sym_BQUOTE] = ACTIONS(1812), - [anon_sym_LT_LPAREN] = ACTIONS(1814), - [anon_sym_GT_LPAREN] = ACTIONS(1814), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3988), - }, - [1383] = { - [anon_sym_LBRACK] = ACTIONS(815), - [anon_sym_EQ] = ACTIONS(3990), - [sym_comment] = ACTIONS(53), - }, - [1384] = { - [sym_concatenation] = STATE(1747), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(1747), - [anon_sym_RBRACE] = ACTIONS(3992), - [anon_sym_EQ] = ACTIONS(3994), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(3996), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(3998), - [anon_sym_COLON] = ACTIONS(3994), - [anon_sym_COLON_QMARK] = ACTIONS(3994), - [anon_sym_COLON_DASH] = ACTIONS(3994), - [anon_sym_PERCENT] = ACTIONS(3994), - [anon_sym_DASH] = ACTIONS(3994), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [1385] = { - [sym_concatenation] = STATE(1749), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(1749), - [anon_sym_RBRACE] = ACTIONS(3984), - [anon_sym_EQ] = ACTIONS(4000), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(4002), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(4004), - [anon_sym_COLON] = ACTIONS(4000), - [anon_sym_COLON_QMARK] = ACTIONS(4000), - [anon_sym_COLON_DASH] = ACTIONS(4000), - [anon_sym_PERCENT] = ACTIONS(4000), - [anon_sym_DASH] = ACTIONS(4000), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [1386] = { - [sym__concat] = ACTIONS(1832), - [anon_sym_RPAREN] = ACTIONS(1832), - [sym__special_characters] = ACTIONS(1832), - [anon_sym_DQUOTE] = ACTIONS(1832), - [anon_sym_DOLLAR] = ACTIONS(1834), - [sym_raw_string] = ACTIONS(1832), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1832), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1832), - [anon_sym_BQUOTE] = ACTIONS(1832), - [anon_sym_LT_LPAREN] = ACTIONS(1832), - [anon_sym_GT_LPAREN] = ACTIONS(1832), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1832), - }, - [1387] = { - [sym_comment] = ACTIONS(265), - [sym_regex_without_right_brace] = ACTIONS(4006), - }, - [1388] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(4008), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [1389] = { - [sym__concat] = ACTIONS(1876), - [anon_sym_RPAREN] = ACTIONS(1876), - [sym__special_characters] = ACTIONS(1876), - [anon_sym_DQUOTE] = ACTIONS(1876), - [anon_sym_DOLLAR] = ACTIONS(1878), - [sym_raw_string] = ACTIONS(1876), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1876), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1876), - [anon_sym_BQUOTE] = ACTIONS(1876), - [anon_sym_LT_LPAREN] = ACTIONS(1876), - [anon_sym_GT_LPAREN] = ACTIONS(1876), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1876), - }, - [1390] = { - [sym_comment] = ACTIONS(265), - [sym_regex_without_right_brace] = ACTIONS(4010), - }, - [1391] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(3984), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [1392] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(4012), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(901), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), - }, - [1393] = { - [sym__concat] = ACTIONS(1884), - [anon_sym_RPAREN] = ACTIONS(1884), - [sym__special_characters] = ACTIONS(1884), - [anon_sym_DQUOTE] = ACTIONS(1884), - [anon_sym_DOLLAR] = ACTIONS(1886), - [sym_raw_string] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1884), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1884), - [anon_sym_BQUOTE] = ACTIONS(1884), - [anon_sym_LT_LPAREN] = ACTIONS(1884), - [anon_sym_GT_LPAREN] = ACTIONS(1884), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1884), - }, - [1394] = { - [anon_sym_SEMI] = ACTIONS(4014), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(4012), - [anon_sym_SEMI_SEMI] = ACTIONS(4016), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(4016), - [anon_sym_AMP] = ACTIONS(4014), - }, - [1395] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(4014), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(4012), - [anon_sym_SEMI_SEMI] = ACTIONS(4016), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(4016), - [anon_sym_AMP] = ACTIONS(4014), - }, - [1396] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(4012), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), - }, - [1397] = { - [anon_sym_SEMI] = ACTIONS(4018), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_SEMI_SEMI] = ACTIONS(4020), - [anon_sym_PIPE_AMP] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(883), - [anon_sym_PIPE_PIPE] = ACTIONS(883), - [anon_sym_BQUOTE] = ACTIONS(4012), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(4020), - [anon_sym_AMP] = ACTIONS(4018), - }, - [1398] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(4018), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_SEMI_SEMI] = ACTIONS(4020), - [anon_sym_PIPE_AMP] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(883), - [anon_sym_PIPE_PIPE] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(4012), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(4020), - [anon_sym_AMP] = ACTIONS(4018), - }, - [1399] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(4022), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(901), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), - }, - [1400] = { - [sym__concat] = ACTIONS(1916), - [anon_sym_RPAREN] = ACTIONS(1916), - [sym__special_characters] = ACTIONS(1916), - [anon_sym_DQUOTE] = ACTIONS(1916), - [anon_sym_DOLLAR] = ACTIONS(1918), - [sym_raw_string] = ACTIONS(1916), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1916), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1916), - [anon_sym_BQUOTE] = ACTIONS(1916), - [anon_sym_LT_LPAREN] = ACTIONS(1916), - [anon_sym_GT_LPAREN] = ACTIONS(1916), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1916), - }, - [1401] = { - [anon_sym_SEMI] = ACTIONS(4024), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(4022), - [anon_sym_SEMI_SEMI] = ACTIONS(4026), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(4026), - [anon_sym_AMP] = ACTIONS(4024), - }, - [1402] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(4024), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(4022), - [anon_sym_SEMI_SEMI] = ACTIONS(4026), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(4026), - [anon_sym_AMP] = ACTIONS(4024), - }, - [1403] = { - [sym_file_descriptor] = ACTIONS(2876), - [sym__concat] = ACTIONS(2876), - [sym_variable_name] = ACTIONS(2876), - [ts_builtin_sym_end] = ACTIONS(2876), - [anon_sym_SEMI] = ACTIONS(2878), - [anon_sym_PIPE] = ACTIONS(2878), - [anon_sym_RPAREN] = ACTIONS(2876), - [anon_sym_SEMI_SEMI] = ACTIONS(2876), - [anon_sym_PIPE_AMP] = ACTIONS(2876), - [anon_sym_AMP_AMP] = ACTIONS(2876), - [anon_sym_PIPE_PIPE] = ACTIONS(2876), - [anon_sym_LT] = ACTIONS(2878), - [anon_sym_GT] = ACTIONS(2878), - [anon_sym_GT_GT] = ACTIONS(2876), - [anon_sym_AMP_GT] = ACTIONS(2878), - [anon_sym_AMP_GT_GT] = ACTIONS(2876), - [anon_sym_LT_AMP] = ACTIONS(2876), - [anon_sym_GT_AMP] = ACTIONS(2876), - [sym__special_characters] = ACTIONS(2876), - [anon_sym_DQUOTE] = ACTIONS(2876), - [anon_sym_DOLLAR] = ACTIONS(2878), - [sym_raw_string] = ACTIONS(2876), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2876), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2876), - [anon_sym_BQUOTE] = ACTIONS(2876), - [anon_sym_LT_LPAREN] = ACTIONS(2876), - [anon_sym_GT_LPAREN] = ACTIONS(2876), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2878), - [anon_sym_LF] = ACTIONS(2876), - [anon_sym_AMP] = ACTIONS(2878), - }, - [1404] = { - [sym_file_descriptor] = ACTIONS(2890), - [sym__concat] = ACTIONS(2890), - [sym_variable_name] = ACTIONS(2890), - [ts_builtin_sym_end] = ACTIONS(2890), - [anon_sym_SEMI] = ACTIONS(2892), - [anon_sym_PIPE] = ACTIONS(2892), - [anon_sym_RPAREN] = ACTIONS(2890), - [anon_sym_SEMI_SEMI] = ACTIONS(2890), - [anon_sym_PIPE_AMP] = ACTIONS(2890), - [anon_sym_AMP_AMP] = ACTIONS(2890), - [anon_sym_PIPE_PIPE] = ACTIONS(2890), - [anon_sym_LT] = ACTIONS(2892), - [anon_sym_GT] = ACTIONS(2892), - [anon_sym_GT_GT] = ACTIONS(2890), - [anon_sym_AMP_GT] = ACTIONS(2892), - [anon_sym_AMP_GT_GT] = ACTIONS(2890), - [anon_sym_LT_AMP] = ACTIONS(2890), - [anon_sym_GT_AMP] = ACTIONS(2890), - [sym__special_characters] = ACTIONS(2890), - [anon_sym_DQUOTE] = ACTIONS(2890), - [anon_sym_DOLLAR] = ACTIONS(2892), - [sym_raw_string] = ACTIONS(2890), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2890), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2890), - [anon_sym_BQUOTE] = ACTIONS(2890), - [anon_sym_LT_LPAREN] = ACTIONS(2890), - [anon_sym_GT_LPAREN] = ACTIONS(2890), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2892), - [anon_sym_LF] = ACTIONS(2890), - [anon_sym_AMP] = ACTIONS(2892), - }, - [1405] = { - [aux_sym_concatenation_repeat1] = STATE(1293), - [sym__concat] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(4028), - [sym_comment] = ACTIONS(53), - }, - [1406] = { - [aux_sym_concatenation_repeat1] = STATE(1293), - [sym__concat] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(4030), - [sym_comment] = ACTIONS(53), - }, - [1407] = { - [anon_sym_RBRACE] = ACTIONS(4030), - [sym_comment] = ACTIONS(53), - }, - [1408] = { - [sym_concatenation] = STATE(1762), - [sym_string] = STATE(1761), - [sym_simple_expansion] = STATE(1761), - [sym_string_expansion] = STATE(1761), - [sym_expansion] = STATE(1761), - [sym_command_substitution] = STATE(1761), - [sym_process_substitution] = STATE(1761), - [anon_sym_RBRACE] = ACTIONS(4030), - [sym__special_characters] = ACTIONS(4032), - [anon_sym_DQUOTE] = ACTIONS(1802), - [anon_sym_DOLLAR] = ACTIONS(1804), - [sym_raw_string] = ACTIONS(4034), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1808), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1810), - [anon_sym_BQUOTE] = ACTIONS(1812), - [anon_sym_LT_LPAREN] = ACTIONS(1814), - [anon_sym_GT_LPAREN] = ACTIONS(1814), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4034), - }, - [1409] = { - [sym_file_descriptor] = ACTIONS(2926), - [sym__concat] = ACTIONS(2926), - [sym_variable_name] = ACTIONS(2926), - [ts_builtin_sym_end] = ACTIONS(2926), - [anon_sym_SEMI] = ACTIONS(2928), - [anon_sym_PIPE] = ACTIONS(2928), - [anon_sym_RPAREN] = ACTIONS(2926), - [anon_sym_SEMI_SEMI] = ACTIONS(2926), - [anon_sym_PIPE_AMP] = ACTIONS(2926), - [anon_sym_AMP_AMP] = ACTIONS(2926), - [anon_sym_PIPE_PIPE] = ACTIONS(2926), - [anon_sym_LT] = ACTIONS(2928), - [anon_sym_GT] = ACTIONS(2928), - [anon_sym_GT_GT] = ACTIONS(2926), - [anon_sym_AMP_GT] = ACTIONS(2928), - [anon_sym_AMP_GT_GT] = ACTIONS(2926), - [anon_sym_LT_AMP] = ACTIONS(2926), - [anon_sym_GT_AMP] = ACTIONS(2926), - [sym__special_characters] = ACTIONS(2926), - [anon_sym_DQUOTE] = ACTIONS(2926), - [anon_sym_DOLLAR] = ACTIONS(2928), - [sym_raw_string] = ACTIONS(2926), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2926), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2926), - [anon_sym_BQUOTE] = ACTIONS(2926), - [anon_sym_LT_LPAREN] = ACTIONS(2926), - [anon_sym_GT_LPAREN] = ACTIONS(2926), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2928), - [anon_sym_LF] = ACTIONS(2926), - [anon_sym_AMP] = ACTIONS(2928), - }, - [1410] = { - [sym_comment] = ACTIONS(265), - [sym_regex_without_right_brace] = ACTIONS(4036), - }, - [1411] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(4038), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [1412] = { - [sym_comment] = ACTIONS(265), - [sym_regex_without_right_brace] = ACTIONS(4040), - }, - [1413] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(4030), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [1414] = { - [sym_concatenation] = STATE(1767), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(1767), - [anon_sym_RBRACE] = ACTIONS(4042), - [anon_sym_EQ] = ACTIONS(4044), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(4046), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(4044), - [anon_sym_COLON_QMARK] = ACTIONS(4044), - [anon_sym_COLON_DASH] = ACTIONS(4044), - [anon_sym_PERCENT] = ACTIONS(4044), - [anon_sym_DASH] = ACTIONS(4044), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [1415] = { - [sym_file_descriptor] = ACTIONS(2990), - [sym__concat] = ACTIONS(2990), - [sym_variable_name] = ACTIONS(2990), - [ts_builtin_sym_end] = ACTIONS(2990), - [anon_sym_SEMI] = ACTIONS(2992), - [anon_sym_PIPE] = ACTIONS(2992), - [anon_sym_RPAREN] = ACTIONS(2990), - [anon_sym_SEMI_SEMI] = ACTIONS(2990), - [anon_sym_PIPE_AMP] = ACTIONS(2990), - [anon_sym_AMP_AMP] = ACTIONS(2990), - [anon_sym_PIPE_PIPE] = ACTIONS(2990), - [anon_sym_LT] = ACTIONS(2992), - [anon_sym_GT] = ACTIONS(2992), - [anon_sym_GT_GT] = ACTIONS(2990), - [anon_sym_AMP_GT] = ACTIONS(2992), - [anon_sym_AMP_GT_GT] = ACTIONS(2990), - [anon_sym_LT_AMP] = ACTIONS(2990), - [anon_sym_GT_AMP] = ACTIONS(2990), - [sym__special_characters] = ACTIONS(2990), - [anon_sym_DQUOTE] = ACTIONS(2990), - [anon_sym_DOLLAR] = ACTIONS(2992), - [sym_raw_string] = ACTIONS(2990), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2990), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2990), - [anon_sym_BQUOTE] = ACTIONS(2990), - [anon_sym_LT_LPAREN] = ACTIONS(2990), - [anon_sym_GT_LPAREN] = ACTIONS(2990), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2992), - [anon_sym_LF] = ACTIONS(2990), - [anon_sym_AMP] = ACTIONS(2992), - }, - [1416] = { - [sym_concatenation] = STATE(1768), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(1768), - [anon_sym_RBRACE] = ACTIONS(4030), - [anon_sym_EQ] = ACTIONS(4048), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(4050), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(4048), - [anon_sym_COLON_QMARK] = ACTIONS(4048), - [anon_sym_COLON_DASH] = ACTIONS(4048), - [anon_sym_PERCENT] = ACTIONS(4048), - [anon_sym_DASH] = ACTIONS(4048), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [1417] = { - [sym_file_descriptor] = ACTIONS(3033), - [sym__concat] = ACTIONS(3033), - [sym_variable_name] = ACTIONS(3033), - [ts_builtin_sym_end] = ACTIONS(3033), - [anon_sym_SEMI] = ACTIONS(3035), - [anon_sym_PIPE] = ACTIONS(3035), - [anon_sym_RPAREN] = ACTIONS(3033), - [anon_sym_SEMI_SEMI] = ACTIONS(3033), - [anon_sym_PIPE_AMP] = ACTIONS(3033), - [anon_sym_AMP_AMP] = ACTIONS(3033), - [anon_sym_PIPE_PIPE] = ACTIONS(3033), - [anon_sym_LT] = ACTIONS(3035), - [anon_sym_GT] = ACTIONS(3035), - [anon_sym_GT_GT] = ACTIONS(3033), - [anon_sym_AMP_GT] = ACTIONS(3035), - [anon_sym_AMP_GT_GT] = ACTIONS(3033), - [anon_sym_LT_AMP] = ACTIONS(3033), - [anon_sym_GT_AMP] = ACTIONS(3033), - [sym__special_characters] = ACTIONS(3033), - [anon_sym_DQUOTE] = ACTIONS(3033), - [anon_sym_DOLLAR] = ACTIONS(3035), - [sym_raw_string] = ACTIONS(3033), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3033), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3033), - [anon_sym_BQUOTE] = ACTIONS(3033), - [anon_sym_LT_LPAREN] = ACTIONS(3033), - [anon_sym_GT_LPAREN] = ACTIONS(3033), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3035), - [anon_sym_LF] = ACTIONS(3033), - [anon_sym_AMP] = ACTIONS(3035), - }, - [1418] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(4052), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(901), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), - }, - [1419] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(4052), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), - }, - [1420] = { - [sym_file_descriptor] = ACTIONS(3071), - [sym__concat] = ACTIONS(3071), - [sym_variable_name] = ACTIONS(3071), - [ts_builtin_sym_end] = ACTIONS(3071), - [anon_sym_SEMI] = ACTIONS(3073), - [anon_sym_PIPE] = ACTIONS(3073), - [anon_sym_RPAREN] = ACTIONS(3071), - [anon_sym_SEMI_SEMI] = ACTIONS(3071), - [anon_sym_PIPE_AMP] = ACTIONS(3071), - [anon_sym_AMP_AMP] = ACTIONS(3071), - [anon_sym_PIPE_PIPE] = ACTIONS(3071), - [anon_sym_LT] = ACTIONS(3073), - [anon_sym_GT] = ACTIONS(3073), - [anon_sym_GT_GT] = ACTIONS(3071), - [anon_sym_AMP_GT] = ACTIONS(3073), - [anon_sym_AMP_GT_GT] = ACTIONS(3071), - [anon_sym_LT_AMP] = ACTIONS(3071), - [anon_sym_GT_AMP] = ACTIONS(3071), - [sym__special_characters] = ACTIONS(3071), - [anon_sym_DQUOTE] = ACTIONS(3071), - [anon_sym_DOLLAR] = ACTIONS(3073), - [sym_raw_string] = ACTIONS(3071), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3071), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3071), - [anon_sym_BQUOTE] = ACTIONS(3071), - [anon_sym_LT_LPAREN] = ACTIONS(3071), - [anon_sym_GT_LPAREN] = ACTIONS(3071), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3073), - [anon_sym_LF] = ACTIONS(3071), - [anon_sym_AMP] = ACTIONS(3073), - }, - [1421] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(4054), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(901), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), - }, - [1422] = { - [sym_do_group] = STATE(1771), - [sym_compound_statement] = STATE(1771), - [anon_sym_do] = ACTIONS(1175), - [anon_sym_LBRACE] = ACTIONS(3259), - [sym_comment] = ACTIONS(53), - }, - [1423] = { - [sym__terminated_statement] = STATE(1773), - [sym_for_statement] = STATE(667), - [sym_c_style_for_statement] = STATE(667), - [sym_while_statement] = STATE(667), - [sym_if_statement] = STATE(667), - [sym_case_statement] = STATE(667), - [sym_function_definition] = STATE(667), - [sym_subshell] = STATE(667), - [sym_pipeline] = STATE(667), - [sym_list] = STATE(667), - [sym_negated_command] = STATE(667), - [sym_test_command] = STATE(667), - [sym_declaration_command] = STATE(667), - [sym_unset_command] = STATE(667), - [sym_command] = STATE(667), - [sym_command_name] = STATE(51), - [sym_variable_assignment] = STATE(668), - [sym_subscript] = STATE(53), - [sym_file_redirect] = STATE(54), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(47), - [sym_simple_expansion] = STATE(47), - [sym_string_expansion] = STATE(47), - [sym_expansion] = STATE(47), - [sym_command_substitution] = STATE(47), - [sym_process_substitution] = STATE(47), - [aux_sym__statements_repeat1] = STATE(1773), - [aux_sym_command_repeat1] = STATE(54), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(69), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(71), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(73), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_RBRACE] = ACTIONS(4056), - [anon_sym_BANG] = ACTIONS(75), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_LBRACK_LBRACK] = ACTIONS(79), - [anon_sym_declare] = ACTIONS(81), - [anon_sym_typeset] = ACTIONS(81), - [anon_sym_export] = ACTIONS(81), - [anon_sym_readonly] = ACTIONS(81), - [anon_sym_local] = ACTIONS(81), - [anon_sym_unset] = ACTIONS(83), - [anon_sym_unsetenv] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(87), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(89), - }, - [1424] = { - [ts_builtin_sym_end] = ACTIONS(4058), - [anon_sym_SEMI] = ACTIONS(4060), - [anon_sym_esac] = ACTIONS(4058), - [anon_sym_PIPE] = ACTIONS(4060), - [anon_sym_RPAREN] = ACTIONS(4058), - [anon_sym_SEMI_SEMI] = ACTIONS(4058), - [anon_sym_PIPE_AMP] = ACTIONS(4058), - [anon_sym_AMP_AMP] = ACTIONS(4058), - [anon_sym_PIPE_PIPE] = ACTIONS(4058), - [anon_sym_BQUOTE] = ACTIONS(4058), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(4058), - [anon_sym_AMP] = ACTIONS(4060), - }, - [1425] = { - [anon_sym_RPAREN] = ACTIONS(4062), - [anon_sym_AMP_AMP] = ACTIONS(1347), - [anon_sym_PIPE_PIPE] = ACTIONS(1347), - [anon_sym_EQ_TILDE] = ACTIONS(1349), - [anon_sym_EQ_EQ] = ACTIONS(1349), - [anon_sym_EQ] = ACTIONS(1351), - [anon_sym_LT] = ACTIONS(1347), - [anon_sym_GT] = ACTIONS(1347), - [anon_sym_BANG_EQ] = ACTIONS(1347), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1347), - }, - [1426] = { - [anon_sym_RPAREN_RPAREN] = ACTIONS(1353), - [anon_sym_AMP_AMP] = ACTIONS(3287), - [anon_sym_PIPE_PIPE] = ACTIONS(3287), - [anon_sym_EQ_TILDE] = ACTIONS(3289), - [anon_sym_EQ_EQ] = ACTIONS(3289), - [anon_sym_EQ] = ACTIONS(3291), - [anon_sym_LT] = ACTIONS(3287), - [anon_sym_GT] = ACTIONS(3287), - [anon_sym_BANG_EQ] = ACTIONS(3287), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(3287), - }, - [1427] = { - [sym_string] = STATE(1775), - [sym_simple_expansion] = STATE(1775), - [sym_string_expansion] = STATE(1775), - [sym_expansion] = STATE(1775), - [sym_command_substitution] = STATE(1775), - [sym_process_substitution] = STATE(1775), - [sym__special_characters] = ACTIONS(4064), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_DOLLAR] = ACTIONS(2152), - [sym_raw_string] = ACTIONS(4064), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2156), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2158), - [anon_sym_BQUOTE] = ACTIONS(2160), - [anon_sym_LT_LPAREN] = ACTIONS(2162), - [anon_sym_GT_LPAREN] = ACTIONS(2162), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4064), - }, - [1428] = { - [aux_sym_concatenation_repeat1] = STATE(1776), - [sym__concat] = ACTIONS(3261), - [anon_sym_RPAREN_RPAREN] = ACTIONS(765), - [anon_sym_AMP_AMP] = ACTIONS(765), - [anon_sym_PIPE_PIPE] = ACTIONS(765), - [anon_sym_EQ_TILDE] = ACTIONS(765), - [anon_sym_EQ_EQ] = ACTIONS(765), - [anon_sym_EQ] = ACTIONS(767), - [anon_sym_LT] = ACTIONS(765), - [anon_sym_GT] = ACTIONS(765), - [anon_sym_BANG_EQ] = ACTIONS(765), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(765), - }, - [1429] = { - [sym__concat] = ACTIONS(769), - [anon_sym_RPAREN_RPAREN] = ACTIONS(769), - [anon_sym_AMP_AMP] = ACTIONS(769), - [anon_sym_PIPE_PIPE] = ACTIONS(769), - [anon_sym_EQ_TILDE] = ACTIONS(769), - [anon_sym_EQ_EQ] = ACTIONS(769), - [anon_sym_EQ] = ACTIONS(771), - [anon_sym_LT] = ACTIONS(769), - [anon_sym_GT] = ACTIONS(769), - [anon_sym_BANG_EQ] = ACTIONS(769), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(769), - }, - [1430] = { - [anon_sym_DQUOTE] = ACTIONS(4066), - [anon_sym_DOLLAR] = ACTIONS(775), - [sym__string_content] = ACTIONS(777), - [anon_sym_POUND] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(781), - [anon_sym_STAR] = ACTIONS(783), - [anon_sym_AT] = ACTIONS(783), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_0] = ACTIONS(781), - [anon_sym__] = ACTIONS(781), - }, - [1431] = { - [sym_simple_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [sym_command_substitution] = STATE(141), - [aux_sym_string_repeat1] = STATE(450), - [anon_sym_DQUOTE] = ACTIONS(4066), - [anon_sym_DOLLAR] = ACTIONS(4068), - [sym__string_content] = ACTIONS(257), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(261), - [anon_sym_BQUOTE] = ACTIONS(263), - [sym_comment] = ACTIONS(265), - }, - [1432] = { - [sym__concat] = ACTIONS(803), - [anon_sym_RPAREN_RPAREN] = ACTIONS(803), - [anon_sym_AMP_AMP] = ACTIONS(803), - [anon_sym_PIPE_PIPE] = ACTIONS(803), - [anon_sym_EQ_TILDE] = ACTIONS(803), - [anon_sym_EQ_EQ] = ACTIONS(803), - [anon_sym_EQ] = ACTIONS(805), - [anon_sym_LT] = ACTIONS(803), - [anon_sym_GT] = ACTIONS(803), - [anon_sym_BANG_EQ] = ACTIONS(803), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(803), - }, - [1433] = { - [sym__concat] = ACTIONS(807), - [anon_sym_RPAREN_RPAREN] = ACTIONS(807), + [1227] = { + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(3716), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), + }, + [1228] = { + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(3716), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), + }, + [1229] = { + [sym__concat] = ACTIONS(3158), + [anon_sym_in] = ACTIONS(3158), + [anon_sym_SEMI] = ACTIONS(3160), + [anon_sym_SEMI_SEMI] = ACTIONS(3158), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(3158), + [anon_sym_AMP] = ACTIONS(3158), + }, + [1230] = { + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(3718), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), + }, + [1231] = { + [sym_file_redirect] = STATE(1651), + [sym_file_descriptor] = ACTIONS(1428), + [ts_builtin_sym_end] = ACTIONS(3720), + [anon_sym_SEMI] = ACTIONS(3722), + [anon_sym_PIPE] = ACTIONS(3722), + [anon_sym_SEMI_SEMI] = ACTIONS(3720), + [anon_sym_PIPE_AMP] = ACTIONS(3720), + [anon_sym_AMP_AMP] = ACTIONS(3720), + [anon_sym_PIPE_PIPE] = ACTIONS(3720), + [anon_sym_LT] = ACTIONS(1434), + [anon_sym_GT] = ACTIONS(1434), + [anon_sym_GT_GT] = ACTIONS(1436), + [anon_sym_AMP_GT] = ACTIONS(1434), + [anon_sym_AMP_GT_GT] = ACTIONS(1436), + [anon_sym_LT_AMP] = ACTIONS(1436), + [anon_sym_GT_AMP] = ACTIONS(1436), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(3720), + [anon_sym_AMP] = ACTIONS(3722), + }, + [1232] = { + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_RBRACE] = ACTIONS(943), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), + }, + [1233] = { + [sym_file_descriptor] = ACTIONS(3724), + [ts_builtin_sym_end] = ACTIONS(3724), + [anon_sym_SEMI] = ACTIONS(3726), + [anon_sym_esac] = ACTIONS(3724), + [anon_sym_PIPE] = ACTIONS(3726), + [anon_sym_RPAREN] = ACTIONS(3724), + [anon_sym_SEMI_SEMI] = ACTIONS(3724), + [anon_sym_PIPE_AMP] = ACTIONS(3724), + [anon_sym_AMP_AMP] = ACTIONS(3724), + [anon_sym_PIPE_PIPE] = ACTIONS(3724), + [anon_sym_LT] = ACTIONS(3726), + [anon_sym_GT] = ACTIONS(3726), + [anon_sym_GT_GT] = ACTIONS(3724), + [anon_sym_AMP_GT] = ACTIONS(3726), + [anon_sym_AMP_GT_GT] = ACTIONS(3724), + [anon_sym_LT_AMP] = ACTIONS(3724), + [anon_sym_GT_AMP] = ACTIONS(3724), + [anon_sym_BQUOTE] = ACTIONS(3724), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(3724), + [anon_sym_AMP] = ACTIONS(3726), + }, + [1234] = { + [sym__terminated_statement] = STATE(1234), + [sym_for_statement] = STATE(751), + [sym_c_style_for_statement] = STATE(751), + [sym_while_statement] = STATE(751), + [sym_if_statement] = STATE(751), + [sym_case_statement] = STATE(751), + [sym_function_definition] = STATE(751), + [sym_subshell] = STATE(751), + [sym_pipeline] = STATE(751), + [sym_list] = STATE(751), + [sym_negated_command] = STATE(751), + [sym_test_command] = STATE(751), + [sym_declaration_command] = STATE(751), + [sym_unset_command] = STATE(751), + [sym_command] = STATE(751), + [sym_command_name] = STATE(64), + [sym_variable_assignment] = STATE(752), + [sym_subscript] = STATE(66), + [sym_file_redirect] = STATE(67), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(60), + [sym_simple_expansion] = STATE(60), + [sym_string_expansion] = STATE(60), + [sym_expansion] = STATE(60), + [sym_command_substitution] = STATE(60), + [sym_process_substitution] = STATE(60), + [aux_sym__statements_repeat1] = STATE(1234), + [aux_sym_command_repeat1] = STATE(67), + [sym_file_descriptor] = ACTIONS(997), + [sym_variable_name] = ACTIONS(1000), + [anon_sym_for] = ACTIONS(1003), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1006), + [anon_sym_while] = ACTIONS(1009), + [anon_sym_if] = ACTIONS(1012), + [anon_sym_case] = ACTIONS(1015), + [anon_sym_function] = ACTIONS(1018), + [anon_sym_LPAREN] = ACTIONS(1021), + [anon_sym_RBRACE] = ACTIONS(3728), + [anon_sym_BANG] = ACTIONS(1024), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1030), + [anon_sym_declare] = ACTIONS(1033), + [anon_sym_typeset] = ACTIONS(1033), + [anon_sym_export] = ACTIONS(1033), + [anon_sym_readonly] = ACTIONS(1033), + [anon_sym_local] = ACTIONS(1033), + [anon_sym_unset] = ACTIONS(1036), + [anon_sym_unsetenv] = ACTIONS(1036), + [anon_sym_LT] = ACTIONS(1039), + [anon_sym_GT] = ACTIONS(1039), + [anon_sym_GT_GT] = ACTIONS(1042), + [anon_sym_AMP_GT] = ACTIONS(1039), + [anon_sym_AMP_GT_GT] = ACTIONS(1042), + [anon_sym_LT_AMP] = ACTIONS(1042), + [anon_sym_GT_AMP] = ACTIONS(1042), + [sym__special_characters] = ACTIONS(1045), + [anon_sym_DQUOTE] = ACTIONS(1048), + [anon_sym_DOLLAR] = ACTIONS(1051), + [sym_raw_string] = ACTIONS(1054), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1057), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1060), + [anon_sym_BQUOTE] = ACTIONS(1063), + [anon_sym_LT_LPAREN] = ACTIONS(1066), + [anon_sym_GT_LPAREN] = ACTIONS(1066), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1069), + }, + [1235] = { + [sym_concatenation] = STATE(1654), + [sym_string] = STATE(1653), + [sym_simple_expansion] = STATE(1653), + [sym_string_expansion] = STATE(1653), + [sym_expansion] = STATE(1653), + [sym_command_substitution] = STATE(1653), + [sym_process_substitution] = STATE(1653), + [sym__special_characters] = ACTIONS(3730), + [anon_sym_DQUOTE] = ACTIONS(229), + [anon_sym_DOLLAR] = ACTIONS(231), + [sym_raw_string] = ACTIONS(3732), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), + [anon_sym_BQUOTE] = ACTIONS(239), + [anon_sym_LT_LPAREN] = ACTIONS(241), + [anon_sym_GT_LPAREN] = ACTIONS(241), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(3732), + }, + [1236] = { + [aux_sym_concatenation_repeat1] = STATE(1655), + [sym__concat] = ACTIONS(735), + [ts_builtin_sym_end] = ACTIONS(773), + [anon_sym_SEMI] = ACTIONS(777), + [anon_sym_PIPE] = ACTIONS(777), + [anon_sym_SEMI_SEMI] = ACTIONS(773), + [anon_sym_PIPE_AMP] = ACTIONS(773), + [anon_sym_AMP_AMP] = ACTIONS(773), + [anon_sym_PIPE_PIPE] = ACTIONS(773), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(773), + [anon_sym_AMP] = ACTIONS(777), + }, + [1237] = { + [aux_sym_concatenation_repeat1] = STATE(1655), + [sym__concat] = ACTIONS(735), + [ts_builtin_sym_end] = ACTIONS(791), + [anon_sym_SEMI] = ACTIONS(793), + [anon_sym_PIPE] = ACTIONS(793), + [anon_sym_SEMI_SEMI] = ACTIONS(791), + [anon_sym_PIPE_AMP] = ACTIONS(791), + [anon_sym_AMP_AMP] = ACTIONS(791), + [anon_sym_PIPE_PIPE] = ACTIONS(791), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(791), + [anon_sym_AMP] = ACTIONS(793), + }, + [1238] = { + [ts_builtin_sym_end] = ACTIONS(791), + [anon_sym_SEMI] = ACTIONS(793), + [anon_sym_esac] = ACTIONS(791), + [anon_sym_PIPE] = ACTIONS(793), + [anon_sym_RPAREN] = ACTIONS(791), + [anon_sym_SEMI_SEMI] = ACTIONS(791), + [anon_sym_PIPE_AMP] = ACTIONS(791), + [anon_sym_AMP_AMP] = ACTIONS(791), + [anon_sym_PIPE_PIPE] = ACTIONS(791), + [anon_sym_BQUOTE] = ACTIONS(791), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(791), + [anon_sym_AMP] = ACTIONS(793), + }, + [1239] = { + [aux_sym_concatenation_repeat1] = STATE(1656), + [sym_file_descriptor] = ACTIONS(807), + [sym__concat] = ACTIONS(1130), + [sym_variable_name] = ACTIONS(807), + [anon_sym_SEMI] = ACTIONS(809), + [anon_sym_PIPE] = ACTIONS(809), + [anon_sym_RPAREN] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(807), + [anon_sym_PIPE_AMP] = ACTIONS(807), [anon_sym_AMP_AMP] = ACTIONS(807), [anon_sym_PIPE_PIPE] = ACTIONS(807), - [anon_sym_EQ_TILDE] = ACTIONS(807), - [anon_sym_EQ_EQ] = ACTIONS(807), - [anon_sym_EQ] = ACTIONS(809), - [anon_sym_LT] = ACTIONS(807), - [anon_sym_GT] = ACTIONS(807), - [anon_sym_BANG_EQ] = ACTIONS(807), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(807), - }, - [1434] = { - [sym__concat] = ACTIONS(811), - [anon_sym_RPAREN_RPAREN] = ACTIONS(811), - [anon_sym_AMP_AMP] = ACTIONS(811), - [anon_sym_PIPE_PIPE] = ACTIONS(811), - [anon_sym_EQ_TILDE] = ACTIONS(811), - [anon_sym_EQ_EQ] = ACTIONS(811), - [anon_sym_EQ] = ACTIONS(813), - [anon_sym_LT] = ACTIONS(811), - [anon_sym_GT] = ACTIONS(811), - [anon_sym_BANG_EQ] = ACTIONS(811), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(811), - }, - [1435] = { - [anon_sym_LBRACK] = ACTIONS(815), - [anon_sym_EQ] = ACTIONS(4070), - [sym_comment] = ACTIONS(53), - }, - [1436] = { - [sym_subscript] = STATE(1782), - [sym_variable_name] = ACTIONS(4072), - [anon_sym_DOLLAR] = ACTIONS(4074), - [anon_sym_DASH] = ACTIONS(4074), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4076), - [anon_sym_STAR] = ACTIONS(4078), - [anon_sym_AT] = ACTIONS(4078), - [anon_sym_QMARK] = ACTIONS(4078), - [anon_sym_0] = ACTIONS(4076), - [anon_sym__] = ACTIONS(4076), - }, - [1437] = { - [sym_concatenation] = STATE(1785), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(1785), - [anon_sym_RBRACE] = ACTIONS(4080), - [anon_sym_EQ] = ACTIONS(4082), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(4084), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(4086), - [anon_sym_COLON] = ACTIONS(4082), - [anon_sym_COLON_QMARK] = ACTIONS(4082), - [anon_sym_COLON_DASH] = ACTIONS(4082), - [anon_sym_PERCENT] = ACTIONS(4082), - [anon_sym_DASH] = ACTIONS(4082), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [1438] = { - [sym_concatenation] = STATE(1788), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(1788), - [anon_sym_RBRACE] = ACTIONS(4088), - [anon_sym_EQ] = ACTIONS(4090), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(4092), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(4094), - [anon_sym_COLON] = ACTIONS(4090), - [anon_sym_COLON_QMARK] = ACTIONS(4090), - [anon_sym_COLON_DASH] = ACTIONS(4090), - [anon_sym_PERCENT] = ACTIONS(4090), - [anon_sym_DASH] = ACTIONS(4090), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [1439] = { - [anon_sym_SEMI] = ACTIONS(4096), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(4098), - [anon_sym_SEMI_SEMI] = ACTIONS(4100), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(4100), - [anon_sym_AMP] = ACTIONS(4096), - }, - [1440] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(4096), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(4098), - [anon_sym_SEMI_SEMI] = ACTIONS(4100), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(4100), - [anon_sym_AMP] = ACTIONS(4096), - }, - [1441] = { - [sym__terminated_statement] = STATE(190), - [sym_for_statement] = STATE(1791), - [sym_c_style_for_statement] = STATE(1791), - [sym_while_statement] = STATE(1791), - [sym_if_statement] = STATE(1791), - [sym_case_statement] = STATE(1791), - [sym_function_definition] = STATE(1791), - [sym_subshell] = STATE(1791), - [sym_pipeline] = STATE(1791), - [sym_list] = STATE(1791), - [sym_negated_command] = STATE(1791), - [sym_test_command] = STATE(1791), - [sym_declaration_command] = STATE(1791), - [sym_unset_command] = STATE(1791), - [sym_command] = STATE(1791), - [sym_command_name] = STATE(78), - [sym_variable_assignment] = STATE(1792), - [sym_subscript] = STATE(80), - [sym_file_redirect] = STATE(82), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(75), - [sym_simple_expansion] = STATE(75), - [sym_string_expansion] = STATE(75), - [sym_expansion] = STATE(75), - [sym_command_substitution] = STATE(75), - [sym_process_substitution] = STATE(75), - [aux_sym__statements_repeat1] = STATE(190), - [aux_sym_command_repeat1] = STATE(82), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(111), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(119), - [anon_sym_declare] = ACTIONS(121), - [anon_sym_typeset] = ACTIONS(121), - [anon_sym_export] = ACTIONS(121), - [anon_sym_readonly] = ACTIONS(121), - [anon_sym_local] = ACTIONS(121), - [anon_sym_unset] = ACTIONS(123), - [anon_sym_unsetenv] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), - }, - [1442] = { - [anon_sym_SEMI] = ACTIONS(4102), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_SEMI_SEMI] = ACTIONS(4104), - [anon_sym_PIPE_AMP] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(883), - [anon_sym_PIPE_PIPE] = ACTIONS(883), - [anon_sym_BQUOTE] = ACTIONS(4098), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(4104), - [anon_sym_AMP] = ACTIONS(4102), - }, - [1443] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(4102), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_SEMI_SEMI] = ACTIONS(4104), - [anon_sym_PIPE_AMP] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(883), - [anon_sym_PIPE_PIPE] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(4098), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(4104), - [anon_sym_AMP] = ACTIONS(4102), - }, - [1444] = { - [sym__terminated_statement] = STATE(190), - [sym_for_statement] = STATE(1794), - [sym_c_style_for_statement] = STATE(1794), - [sym_while_statement] = STATE(1794), - [sym_if_statement] = STATE(1794), - [sym_case_statement] = STATE(1794), - [sym_function_definition] = STATE(1794), - [sym_subshell] = STATE(1794), - [sym_pipeline] = STATE(1794), - [sym_list] = STATE(1794), - [sym_negated_command] = STATE(1794), - [sym_test_command] = STATE(1794), - [sym_declaration_command] = STATE(1794), - [sym_unset_command] = STATE(1794), - [sym_command] = STATE(1794), - [sym_command_name] = STATE(165), - [sym_variable_assignment] = STATE(1795), - [sym_subscript] = STATE(53), - [sym_file_redirect] = STATE(168), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(47), - [sym_simple_expansion] = STATE(47), - [sym_string_expansion] = STATE(47), - [sym_expansion] = STATE(47), - [sym_command_substitution] = STATE(47), - [sym_process_substitution] = STATE(47), - [aux_sym__statements_repeat1] = STATE(190), - [aux_sym_command_repeat1] = STATE(168), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(69), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(289), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(291), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(293), - [anon_sym_LBRACK] = ACTIONS(295), - [anon_sym_LBRACK_LBRACK] = ACTIONS(297), - [anon_sym_declare] = ACTIONS(299), - [anon_sym_typeset] = ACTIONS(299), - [anon_sym_export] = ACTIONS(299), - [anon_sym_readonly] = ACTIONS(299), - [anon_sym_local] = ACTIONS(299), - [anon_sym_unset] = ACTIONS(301), - [anon_sym_unsetenv] = ACTIONS(301), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(87), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(303), - }, - [1445] = { - [anon_sym_SEMI] = ACTIONS(4106), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(4108), - [anon_sym_SEMI_SEMI] = ACTIONS(4110), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(4110), - [anon_sym_AMP] = ACTIONS(4106), - }, - [1446] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(4106), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(4108), - [anon_sym_SEMI_SEMI] = ACTIONS(4110), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(4110), - [anon_sym_AMP] = ACTIONS(4106), - }, - [1447] = { - [sym__terminated_statement] = STATE(190), - [sym_for_statement] = STATE(1798), - [sym_c_style_for_statement] = STATE(1798), - [sym_while_statement] = STATE(1798), - [sym_if_statement] = STATE(1798), - [sym_case_statement] = STATE(1798), - [sym_function_definition] = STATE(1798), - [sym_subshell] = STATE(1798), - [sym_pipeline] = STATE(1798), - [sym_list] = STATE(1798), - [sym_negated_command] = STATE(1798), - [sym_test_command] = STATE(1798), - [sym_declaration_command] = STATE(1798), - [sym_unset_command] = STATE(1798), - [sym_command] = STATE(1798), - [sym_command_name] = STATE(78), - [sym_variable_assignment] = STATE(1799), - [sym_subscript] = STATE(80), - [sym_file_redirect] = STATE(82), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(75), - [sym_simple_expansion] = STATE(75), - [sym_string_expansion] = STATE(75), - [sym_expansion] = STATE(75), - [sym_command_substitution] = STATE(75), - [sym_process_substitution] = STATE(75), - [aux_sym__statements_repeat1] = STATE(190), - [aux_sym_command_repeat1] = STATE(82), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(111), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(119), - [anon_sym_declare] = ACTIONS(121), - [anon_sym_typeset] = ACTIONS(121), - [anon_sym_export] = ACTIONS(121), - [anon_sym_readonly] = ACTIONS(121), - [anon_sym_local] = ACTIONS(121), - [anon_sym_unset] = ACTIONS(123), - [anon_sym_unsetenv] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), - }, - [1448] = { - [sym_do_group] = STATE(1771), - [sym_compound_statement] = STATE(1771), - [anon_sym_SEMI] = ACTIONS(4112), - [anon_sym_do] = ACTIONS(1175), - [anon_sym_LBRACE] = ACTIONS(3259), - [sym_comment] = ACTIONS(53), - }, - [1449] = { - [sym__expression] = STATE(1801), - [sym_binary_expression] = STATE(1801), - [sym_unary_expression] = STATE(1801), - [sym_parenthesized_expression] = STATE(1801), - [sym_concatenation] = STATE(1801), - [sym_string] = STATE(1009), - [sym_simple_expansion] = STATE(1009), - [sym_string_expansion] = STATE(1009), - [sym_expansion] = STATE(1009), - [sym_command_substitution] = STATE(1009), - [sym_process_substitution] = STATE(1009), - [anon_sym_LPAREN] = ACTIONS(2144), - [anon_sym_BANG] = ACTIONS(2146), - [sym__special_characters] = ACTIONS(2148), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_DOLLAR] = ACTIONS(2152), - [sym_raw_string] = ACTIONS(2154), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2156), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2158), - [anon_sym_BQUOTE] = ACTIONS(2160), - [anon_sym_LT_LPAREN] = ACTIONS(2162), - [anon_sym_GT_LPAREN] = ACTIONS(2162), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2164), - [sym_test_operator] = ACTIONS(2166), - }, - [1450] = { - [sym__expression] = STATE(1801), - [sym_binary_expression] = STATE(1801), - [sym_unary_expression] = STATE(1801), - [sym_parenthesized_expression] = STATE(1801), - [sym_concatenation] = STATE(1801), - [sym_string] = STATE(1009), - [sym_simple_expansion] = STATE(1009), - [sym_string_expansion] = STATE(1009), - [sym_expansion] = STATE(1009), - [sym_command_substitution] = STATE(1009), - [sym_process_substitution] = STATE(1009), - [anon_sym_LPAREN] = ACTIONS(4114), - [anon_sym_BANG] = ACTIONS(2146), - [sym__special_characters] = ACTIONS(4116), - [anon_sym_DQUOTE] = ACTIONS(4118), - [anon_sym_DOLLAR] = ACTIONS(2152), - [sym_raw_string] = ACTIONS(2164), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4120), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4122), - [anon_sym_BQUOTE] = ACTIONS(4124), - [anon_sym_LT_LPAREN] = ACTIONS(4126), - [anon_sym_GT_LPAREN] = ACTIONS(4126), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(2164), - [sym_test_operator] = ACTIONS(2146), - [sym_regex] = ACTIONS(4128), - }, - [1451] = { - [anon_sym_RPAREN_RPAREN] = ACTIONS(4130), - [anon_sym_AMP_AMP] = ACTIONS(3287), - [anon_sym_PIPE_PIPE] = ACTIONS(3287), - [anon_sym_EQ_TILDE] = ACTIONS(3289), - [anon_sym_EQ_EQ] = ACTIONS(3289), - [anon_sym_EQ] = ACTIONS(3291), - [anon_sym_LT] = ACTIONS(3287), - [anon_sym_GT] = ACTIONS(3287), - [anon_sym_BANG_EQ] = ACTIONS(3287), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(3287), - }, - [1452] = { - [sym__concat] = ACTIONS(2876), - [anon_sym_SEMI] = ACTIONS(2878), - [anon_sym_esac] = ACTIONS(2876), - [anon_sym_PIPE] = ACTIONS(2878), - [anon_sym_SEMI_SEMI] = ACTIONS(2876), - [anon_sym_PIPE_AMP] = ACTIONS(2876), - [anon_sym_AMP_AMP] = ACTIONS(2876), - [anon_sym_PIPE_PIPE] = ACTIONS(2876), - [anon_sym_EQ_TILDE] = ACTIONS(2876), - [anon_sym_EQ_EQ] = ACTIONS(2876), - [anon_sym_EQ] = ACTIONS(2878), - [anon_sym_LT] = ACTIONS(2876), - [anon_sym_GT] = ACTIONS(2876), - [anon_sym_BANG_EQ] = ACTIONS(2876), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2876), - [anon_sym_LF] = ACTIONS(2876), - [anon_sym_AMP] = ACTIONS(2878), - }, - [1453] = { - [sym__concat] = ACTIONS(2890), - [anon_sym_SEMI] = ACTIONS(2892), - [anon_sym_esac] = ACTIONS(2890), - [anon_sym_PIPE] = ACTIONS(2892), - [anon_sym_SEMI_SEMI] = ACTIONS(2890), - [anon_sym_PIPE_AMP] = ACTIONS(2890), - [anon_sym_AMP_AMP] = ACTIONS(2890), - [anon_sym_PIPE_PIPE] = ACTIONS(2890), - [anon_sym_EQ_TILDE] = ACTIONS(2890), - [anon_sym_EQ_EQ] = ACTIONS(2890), - [anon_sym_EQ] = ACTIONS(2892), - [anon_sym_LT] = ACTIONS(2890), - [anon_sym_GT] = ACTIONS(2890), - [anon_sym_BANG_EQ] = ACTIONS(2890), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2890), - [anon_sym_LF] = ACTIONS(2890), - [anon_sym_AMP] = ACTIONS(2892), - }, - [1454] = { - [aux_sym_concatenation_repeat1] = STATE(1293), - [sym__concat] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(4132), - [sym_comment] = ACTIONS(53), - }, - [1455] = { - [aux_sym_concatenation_repeat1] = STATE(1293), - [sym__concat] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(4134), - [sym_comment] = ACTIONS(53), - }, - [1456] = { - [anon_sym_RBRACE] = ACTIONS(4134), - [sym_comment] = ACTIONS(53), - }, - [1457] = { - [sym_concatenation] = STATE(1808), - [sym_string] = STATE(1807), - [sym_simple_expansion] = STATE(1807), - [sym_string_expansion] = STATE(1807), - [sym_expansion] = STATE(1807), - [sym_command_substitution] = STATE(1807), - [sym_process_substitution] = STATE(1807), - [anon_sym_RBRACE] = ACTIONS(4134), - [sym__special_characters] = ACTIONS(4136), - [anon_sym_DQUOTE] = ACTIONS(1802), - [anon_sym_DOLLAR] = ACTIONS(1804), - [sym_raw_string] = ACTIONS(4138), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1808), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1810), - [anon_sym_BQUOTE] = ACTIONS(1812), - [anon_sym_LT_LPAREN] = ACTIONS(1814), - [anon_sym_GT_LPAREN] = ACTIONS(1814), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4138), - }, - [1458] = { - [sym__concat] = ACTIONS(2926), - [anon_sym_SEMI] = ACTIONS(2928), - [anon_sym_esac] = ACTIONS(2926), - [anon_sym_PIPE] = ACTIONS(2928), - [anon_sym_SEMI_SEMI] = ACTIONS(2926), - [anon_sym_PIPE_AMP] = ACTIONS(2926), - [anon_sym_AMP_AMP] = ACTIONS(2926), - [anon_sym_PIPE_PIPE] = ACTIONS(2926), - [anon_sym_EQ_TILDE] = ACTIONS(2926), - [anon_sym_EQ_EQ] = ACTIONS(2926), - [anon_sym_EQ] = ACTIONS(2928), - [anon_sym_LT] = ACTIONS(2926), - [anon_sym_GT] = ACTIONS(2926), - [anon_sym_BANG_EQ] = ACTIONS(2926), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2926), - [anon_sym_LF] = ACTIONS(2926), - [anon_sym_AMP] = ACTIONS(2928), - }, - [1459] = { - [sym_comment] = ACTIONS(265), - [sym_regex_without_right_brace] = ACTIONS(4140), - }, - [1460] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(4142), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [1461] = { - [sym_comment] = ACTIONS(265), - [sym_regex_without_right_brace] = ACTIONS(4144), - }, - [1462] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(4134), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [1463] = { - [sym_concatenation] = STATE(1813), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(1813), - [anon_sym_RBRACE] = ACTIONS(4146), - [anon_sym_EQ] = ACTIONS(4148), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(4150), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(4148), - [anon_sym_COLON_QMARK] = ACTIONS(4148), - [anon_sym_COLON_DASH] = ACTIONS(4148), - [anon_sym_PERCENT] = ACTIONS(4148), - [anon_sym_DASH] = ACTIONS(4148), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [1464] = { - [sym__concat] = ACTIONS(2990), - [anon_sym_SEMI] = ACTIONS(2992), - [anon_sym_esac] = ACTIONS(2990), - [anon_sym_PIPE] = ACTIONS(2992), - [anon_sym_SEMI_SEMI] = ACTIONS(2990), - [anon_sym_PIPE_AMP] = ACTIONS(2990), - [anon_sym_AMP_AMP] = ACTIONS(2990), - [anon_sym_PIPE_PIPE] = ACTIONS(2990), - [anon_sym_EQ_TILDE] = ACTIONS(2990), - [anon_sym_EQ_EQ] = ACTIONS(2990), - [anon_sym_EQ] = ACTIONS(2992), - [anon_sym_LT] = ACTIONS(2990), - [anon_sym_GT] = ACTIONS(2990), - [anon_sym_BANG_EQ] = ACTIONS(2990), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2990), - [anon_sym_LF] = ACTIONS(2990), - [anon_sym_AMP] = ACTIONS(2992), - }, - [1465] = { - [sym_concatenation] = STATE(1814), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(1814), - [anon_sym_RBRACE] = ACTIONS(4134), - [anon_sym_EQ] = ACTIONS(4152), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(4154), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(4152), - [anon_sym_COLON_QMARK] = ACTIONS(4152), - [anon_sym_COLON_DASH] = ACTIONS(4152), - [anon_sym_PERCENT] = ACTIONS(4152), - [anon_sym_DASH] = ACTIONS(4152), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [1466] = { - [sym__concat] = ACTIONS(3033), - [anon_sym_SEMI] = ACTIONS(3035), - [anon_sym_esac] = ACTIONS(3033), - [anon_sym_PIPE] = ACTIONS(3035), - [anon_sym_SEMI_SEMI] = ACTIONS(3033), - [anon_sym_PIPE_AMP] = ACTIONS(3033), - [anon_sym_AMP_AMP] = ACTIONS(3033), - [anon_sym_PIPE_PIPE] = ACTIONS(3033), - [anon_sym_EQ_TILDE] = ACTIONS(3033), - [anon_sym_EQ_EQ] = ACTIONS(3033), - [anon_sym_EQ] = ACTIONS(3035), - [anon_sym_LT] = ACTIONS(3033), - [anon_sym_GT] = ACTIONS(3033), - [anon_sym_BANG_EQ] = ACTIONS(3033), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(3033), - [anon_sym_LF] = ACTIONS(3033), - [anon_sym_AMP] = ACTIONS(3035), - }, - [1467] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(4156), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(901), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), - }, - [1468] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(4156), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), - }, - [1469] = { - [sym__concat] = ACTIONS(3071), - [anon_sym_SEMI] = ACTIONS(3073), - [anon_sym_esac] = ACTIONS(3071), - [anon_sym_PIPE] = ACTIONS(3073), - [anon_sym_SEMI_SEMI] = ACTIONS(3071), - [anon_sym_PIPE_AMP] = ACTIONS(3071), - [anon_sym_AMP_AMP] = ACTIONS(3071), - [anon_sym_PIPE_PIPE] = ACTIONS(3071), - [anon_sym_EQ_TILDE] = ACTIONS(3071), - [anon_sym_EQ_EQ] = ACTIONS(3071), - [anon_sym_EQ] = ACTIONS(3073), - [anon_sym_LT] = ACTIONS(3071), - [anon_sym_GT] = ACTIONS(3071), - [anon_sym_BANG_EQ] = ACTIONS(3071), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(3071), - [anon_sym_LF] = ACTIONS(3071), - [anon_sym_AMP] = ACTIONS(3073), - }, - [1470] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(4158), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(901), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), - }, - [1471] = { - [sym__expression] = STATE(1817), - [sym_binary_expression] = STATE(1817), - [sym_unary_expression] = STATE(1817), - [sym_parenthesized_expression] = STATE(1817), - [sym_concatenation] = STATE(1817), - [sym_string] = STATE(1009), - [sym_simple_expansion] = STATE(1009), - [sym_string_expansion] = STATE(1009), - [sym_expansion] = STATE(1009), - [sym_command_substitution] = STATE(1009), - [sym_process_substitution] = STATE(1009), - [anon_sym_RPAREN_RPAREN] = ACTIONS(4130), - [anon_sym_LPAREN] = ACTIONS(2144), - [anon_sym_BANG] = ACTIONS(2146), - [sym__special_characters] = ACTIONS(2148), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_DOLLAR] = ACTIONS(2152), - [sym_raw_string] = ACTIONS(2154), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2156), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2158), - [anon_sym_BQUOTE] = ACTIONS(2160), - [anon_sym_LT_LPAREN] = ACTIONS(2162), - [anon_sym_GT_LPAREN] = ACTIONS(2162), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2164), - [sym_test_operator] = ACTIONS(2166), - }, - [1472] = { - [sym__concat] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_SEMI_SEMI] = ACTIONS(1724), - [sym__special_characters] = ACTIONS(1724), - [anon_sym_DQUOTE] = ACTIONS(1724), - [anon_sym_DOLLAR] = ACTIONS(1726), - [sym_raw_string] = ACTIONS(1724), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1724), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1724), - [anon_sym_BQUOTE] = ACTIONS(1724), - [anon_sym_LT_LPAREN] = ACTIONS(1724), - [anon_sym_GT_LPAREN] = ACTIONS(1724), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1726), - [anon_sym_LF] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1724), - }, - [1473] = { - [aux_sym_concatenation_repeat1] = STATE(1473), - [sym__concat] = ACTIONS(4160), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_SEMI_SEMI] = ACTIONS(1724), - [sym__special_characters] = ACTIONS(1724), - [anon_sym_DQUOTE] = ACTIONS(1724), - [anon_sym_DOLLAR] = ACTIONS(1726), - [sym_raw_string] = ACTIONS(1724), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1724), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1724), - [anon_sym_BQUOTE] = ACTIONS(1724), - [anon_sym_LT_LPAREN] = ACTIONS(1724), - [anon_sym_GT_LPAREN] = ACTIONS(1724), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1726), - [anon_sym_LF] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1724), - }, - [1474] = { - [sym__concat] = ACTIONS(1731), - [anon_sym_SEMI] = ACTIONS(1733), - [anon_sym_SEMI_SEMI] = ACTIONS(1731), - [sym__special_characters] = ACTIONS(1731), - [anon_sym_DQUOTE] = ACTIONS(1731), - [anon_sym_DOLLAR] = ACTIONS(1733), - [sym_raw_string] = ACTIONS(1731), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1731), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1731), - [anon_sym_BQUOTE] = ACTIONS(1731), - [anon_sym_LT_LPAREN] = ACTIONS(1731), - [anon_sym_GT_LPAREN] = ACTIONS(1731), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1733), - [anon_sym_LF] = ACTIONS(1731), - [anon_sym_AMP] = ACTIONS(1731), - }, - [1475] = { - [anon_sym_DQUOTE] = ACTIONS(4163), - [anon_sym_DOLLAR] = ACTIONS(775), - [sym__string_content] = ACTIONS(777), - [anon_sym_POUND] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(781), - [anon_sym_STAR] = ACTIONS(783), - [anon_sym_AT] = ACTIONS(783), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_0] = ACTIONS(781), - [anon_sym__] = ACTIONS(781), - }, - [1476] = { - [sym_concatenation] = STATE(1822), - [sym_string] = STATE(1821), - [sym_simple_expansion] = STATE(1821), - [sym_string_expansion] = STATE(1821), - [sym_expansion] = STATE(1821), - [sym_command_substitution] = STATE(1821), - [sym_process_substitution] = STATE(1821), - [anon_sym_RBRACE] = ACTIONS(4165), - [sym__special_characters] = ACTIONS(4167), - [anon_sym_DQUOTE] = ACTIONS(1802), - [anon_sym_DOLLAR] = ACTIONS(1804), - [sym_raw_string] = ACTIONS(4169), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1808), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1810), - [anon_sym_BQUOTE] = ACTIONS(1812), - [anon_sym_LT_LPAREN] = ACTIONS(1814), - [anon_sym_GT_LPAREN] = ACTIONS(1814), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4169), - }, - [1477] = { - [anon_sym_LBRACK] = ACTIONS(815), - [anon_sym_EQ] = ACTIONS(4171), - [sym_comment] = ACTIONS(53), - }, - [1478] = { - [sym_concatenation] = STATE(1826), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(1826), - [anon_sym_RBRACE] = ACTIONS(4173), - [anon_sym_EQ] = ACTIONS(4175), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(4177), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(4179), - [anon_sym_COLON] = ACTIONS(4175), - [anon_sym_COLON_QMARK] = ACTIONS(4175), - [anon_sym_COLON_DASH] = ACTIONS(4175), - [anon_sym_PERCENT] = ACTIONS(4175), - [anon_sym_DASH] = ACTIONS(4175), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [1479] = { - [sym_concatenation] = STATE(1828), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(1828), - [anon_sym_RBRACE] = ACTIONS(4165), - [anon_sym_EQ] = ACTIONS(4181), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(4183), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(4185), - [anon_sym_COLON] = ACTIONS(4181), - [anon_sym_COLON_QMARK] = ACTIONS(4181), - [anon_sym_COLON_DASH] = ACTIONS(4181), - [anon_sym_PERCENT] = ACTIONS(4181), - [anon_sym_DASH] = ACTIONS(4181), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [1480] = { - [sym__concat] = ACTIONS(1832), - [anon_sym_SEMI] = ACTIONS(1834), - [anon_sym_SEMI_SEMI] = ACTIONS(1832), - [sym__special_characters] = ACTIONS(1832), - [anon_sym_DQUOTE] = ACTIONS(1832), - [anon_sym_DOLLAR] = ACTIONS(1834), - [sym_raw_string] = ACTIONS(1832), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1832), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1832), - [anon_sym_BQUOTE] = ACTIONS(1832), - [anon_sym_LT_LPAREN] = ACTIONS(1832), - [anon_sym_GT_LPAREN] = ACTIONS(1832), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1834), - [anon_sym_LF] = ACTIONS(1832), - [anon_sym_AMP] = ACTIONS(1832), - }, - [1481] = { - [sym_comment] = ACTIONS(265), - [sym_regex_without_right_brace] = ACTIONS(4187), - }, - [1482] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(4189), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [1483] = { - [sym__concat] = ACTIONS(1876), - [anon_sym_SEMI] = ACTIONS(1878), - [anon_sym_SEMI_SEMI] = ACTIONS(1876), - [sym__special_characters] = ACTIONS(1876), - [anon_sym_DQUOTE] = ACTIONS(1876), - [anon_sym_DOLLAR] = ACTIONS(1878), - [sym_raw_string] = ACTIONS(1876), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1876), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1876), - [anon_sym_BQUOTE] = ACTIONS(1876), - [anon_sym_LT_LPAREN] = ACTIONS(1876), - [anon_sym_GT_LPAREN] = ACTIONS(1876), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1878), - [anon_sym_LF] = ACTIONS(1876), - [anon_sym_AMP] = ACTIONS(1876), - }, - [1484] = { - [sym_comment] = ACTIONS(265), - [sym_regex_without_right_brace] = ACTIONS(4191), - }, - [1485] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(4165), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [1486] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(4193), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(901), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), - }, - [1487] = { - [sym__concat] = ACTIONS(1884), - [anon_sym_SEMI] = ACTIONS(1886), - [anon_sym_SEMI_SEMI] = ACTIONS(1884), - [sym__special_characters] = ACTIONS(1884), - [anon_sym_DQUOTE] = ACTIONS(1884), - [anon_sym_DOLLAR] = ACTIONS(1886), - [sym_raw_string] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1884), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1884), - [anon_sym_BQUOTE] = ACTIONS(1884), - [anon_sym_LT_LPAREN] = ACTIONS(1884), - [anon_sym_GT_LPAREN] = ACTIONS(1884), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1886), - [anon_sym_LF] = ACTIONS(1884), - [anon_sym_AMP] = ACTIONS(1884), - }, - [1488] = { - [anon_sym_SEMI] = ACTIONS(4195), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(4193), - [anon_sym_SEMI_SEMI] = ACTIONS(4197), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(4197), - [anon_sym_AMP] = ACTIONS(4195), - }, - [1489] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(4195), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(4193), - [anon_sym_SEMI_SEMI] = ACTIONS(4197), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(4197), - [anon_sym_AMP] = ACTIONS(4195), - }, - [1490] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(4193), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), - }, - [1491] = { - [anon_sym_SEMI] = ACTIONS(4199), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_SEMI_SEMI] = ACTIONS(4201), - [anon_sym_PIPE_AMP] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(883), - [anon_sym_PIPE_PIPE] = ACTIONS(883), - [anon_sym_BQUOTE] = ACTIONS(4193), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(4201), - [anon_sym_AMP] = ACTIONS(4199), - }, - [1492] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(4199), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_SEMI_SEMI] = ACTIONS(4201), - [anon_sym_PIPE_AMP] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(883), - [anon_sym_PIPE_PIPE] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(4193), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(4201), - [anon_sym_AMP] = ACTIONS(4199), - }, - [1493] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(4203), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(901), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), - }, - [1494] = { - [sym__concat] = ACTIONS(1916), - [anon_sym_SEMI] = ACTIONS(1918), - [anon_sym_SEMI_SEMI] = ACTIONS(1916), - [sym__special_characters] = ACTIONS(1916), - [anon_sym_DQUOTE] = ACTIONS(1916), - [anon_sym_DOLLAR] = ACTIONS(1918), - [sym_raw_string] = ACTIONS(1916), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1916), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1916), - [anon_sym_BQUOTE] = ACTIONS(1916), - [anon_sym_LT_LPAREN] = ACTIONS(1916), - [anon_sym_GT_LPAREN] = ACTIONS(1916), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1918), - [anon_sym_LF] = ACTIONS(1916), - [anon_sym_AMP] = ACTIONS(1916), - }, - [1495] = { - [anon_sym_SEMI] = ACTIONS(4205), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(4203), - [anon_sym_SEMI_SEMI] = ACTIONS(4207), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(4207), - [anon_sym_AMP] = ACTIONS(4205), - }, - [1496] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(4205), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(4203), - [anon_sym_SEMI_SEMI] = ACTIONS(4207), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(4207), - [anon_sym_AMP] = ACTIONS(4205), - }, - [1497] = { - [ts_builtin_sym_end] = ACTIONS(4209), - [anon_sym_SEMI] = ACTIONS(4211), - [anon_sym_esac] = ACTIONS(4209), - [anon_sym_PIPE] = ACTIONS(4211), - [anon_sym_RPAREN] = ACTIONS(4209), - [anon_sym_SEMI_SEMI] = ACTIONS(4209), - [anon_sym_PIPE_AMP] = ACTIONS(4209), - [anon_sym_AMP_AMP] = ACTIONS(4209), - [anon_sym_PIPE_PIPE] = ACTIONS(4209), - [anon_sym_BQUOTE] = ACTIONS(4209), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(4209), - [anon_sym_AMP] = ACTIONS(4211), - }, - [1498] = { - [ts_builtin_sym_end] = ACTIONS(3445), - [anon_sym_SEMI] = ACTIONS(3447), - [anon_sym_esac] = ACTIONS(3445), - [anon_sym_PIPE] = ACTIONS(3447), - [anon_sym_RPAREN] = ACTIONS(3445), - [anon_sym_SEMI_SEMI] = ACTIONS(3445), - [anon_sym_PIPE_AMP] = ACTIONS(3445), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [anon_sym_BQUOTE] = ACTIONS(3445), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(3445), - [anon_sym_AMP] = ACTIONS(3447), - }, - [1499] = { - [aux_sym_concatenation_repeat1] = STATE(1499), - [sym_file_descriptor] = ACTIONS(1724), - [sym__concat] = ACTIONS(3208), - [sym_variable_name] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(1726), - [anon_sym_SEMI_SEMI] = ACTIONS(1724), - [anon_sym_PIPE_AMP] = ACTIONS(1724), - [anon_sym_AMP_AMP] = ACTIONS(1724), - [anon_sym_PIPE_PIPE] = ACTIONS(1724), - [anon_sym_LT] = ACTIONS(1726), - [anon_sym_GT] = ACTIONS(1726), - [anon_sym_GT_GT] = ACTIONS(1724), - [anon_sym_AMP_GT] = ACTIONS(1726), - [anon_sym_AMP_GT_GT] = ACTIONS(1724), - [anon_sym_LT_AMP] = ACTIONS(1724), - [anon_sym_GT_AMP] = ACTIONS(1724), - [sym__special_characters] = ACTIONS(1724), - [anon_sym_DQUOTE] = ACTIONS(1724), - [anon_sym_DOLLAR] = ACTIONS(1726), - [sym_raw_string] = ACTIONS(1724), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1724), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1724), - [anon_sym_BQUOTE] = ACTIONS(1724), - [anon_sym_LT_LPAREN] = ACTIONS(1724), - [anon_sym_GT_LPAREN] = ACTIONS(1724), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1726), - [anon_sym_LF] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1726), - }, - [1500] = { - [sym_file_redirect] = STATE(1541), - [sym_file_descriptor] = ACTIONS(2278), - [anon_sym_SEMI] = ACTIONS(3522), - [anon_sym_PIPE] = ACTIONS(3522), - [anon_sym_SEMI_SEMI] = ACTIONS(3520), - [anon_sym_PIPE_AMP] = ACTIONS(3520), - [anon_sym_AMP_AMP] = ACTIONS(3520), - [anon_sym_PIPE_PIPE] = ACTIONS(3520), - [anon_sym_LT] = ACTIONS(2280), - [anon_sym_GT] = ACTIONS(2280), - [anon_sym_GT_GT] = ACTIONS(2282), - [anon_sym_AMP_GT] = ACTIONS(2280), - [anon_sym_AMP_GT_GT] = ACTIONS(2282), - [anon_sym_LT_AMP] = ACTIONS(2282), - [anon_sym_GT_AMP] = ACTIONS(2282), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(3520), - [anon_sym_AMP] = ACTIONS(3522), - }, - [1501] = { - [sym_concatenation] = STATE(1544), - [sym_string] = STATE(1838), - [sym_simple_expansion] = STATE(1838), - [sym_string_expansion] = STATE(1838), - [sym_expansion] = STATE(1838), - [sym_command_substitution] = STATE(1838), - [sym_process_substitution] = STATE(1838), - [sym__special_characters] = ACTIONS(4213), - [anon_sym_DQUOTE] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(215), - [sym_raw_string] = ACTIONS(4215), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(219), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(221), - [anon_sym_BQUOTE] = ACTIONS(223), - [anon_sym_LT_LPAREN] = ACTIONS(225), - [anon_sym_GT_LPAREN] = ACTIONS(225), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4215), - }, - [1502] = { - [aux_sym_concatenation_repeat1] = STATE(1839), - [sym__concat] = ACTIONS(693), - [anon_sym_SEMI] = ACTIONS(735), - [anon_sym_PIPE] = ACTIONS(735), - [anon_sym_SEMI_SEMI] = ACTIONS(731), - [anon_sym_PIPE_AMP] = ACTIONS(731), - [anon_sym_AMP_AMP] = ACTIONS(731), - [anon_sym_PIPE_PIPE] = ACTIONS(731), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(731), - [anon_sym_AMP] = ACTIONS(735), - }, - [1503] = { - [aux_sym_concatenation_repeat1] = STATE(1839), - [sym__concat] = ACTIONS(693), - [anon_sym_SEMI] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(751), - [anon_sym_SEMI_SEMI] = ACTIONS(749), - [anon_sym_PIPE_AMP] = ACTIONS(749), - [anon_sym_AMP_AMP] = ACTIONS(749), - [anon_sym_PIPE_PIPE] = ACTIONS(749), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(749), - [anon_sym_AMP] = ACTIONS(751), - }, - [1504] = { - [sym_concatenation] = STATE(1574), - [sym_string] = STATE(1841), - [sym_simple_expansion] = STATE(1841), - [sym_string_expansion] = STATE(1841), - [sym_expansion] = STATE(1841), - [sym_command_substitution] = STATE(1841), - [sym_process_substitution] = STATE(1841), - [sym__special_characters] = ACTIONS(4217), - [anon_sym_DQUOTE] = ACTIONS(2612), - [anon_sym_DOLLAR] = ACTIONS(2614), - [sym_raw_string] = ACTIONS(4219), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2618), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2620), - [anon_sym_BQUOTE] = ACTIONS(2622), - [anon_sym_LT_LPAREN] = ACTIONS(2624), - [anon_sym_GT_LPAREN] = ACTIONS(2624), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4219), - }, - [1505] = { - [aux_sym_concatenation_repeat1] = STATE(1842), - [sym_file_descriptor] = ACTIONS(731), - [sym__concat] = ACTIONS(3592), - [anon_sym_SEMI] = ACTIONS(735), - [anon_sym_PIPE] = ACTIONS(735), - [anon_sym_SEMI_SEMI] = ACTIONS(731), - [anon_sym_PIPE_AMP] = ACTIONS(731), - [anon_sym_AMP_AMP] = ACTIONS(731), - [anon_sym_PIPE_PIPE] = ACTIONS(731), - [anon_sym_LT] = ACTIONS(735), - [anon_sym_GT] = ACTIONS(735), - [anon_sym_GT_GT] = ACTIONS(731), - [anon_sym_AMP_GT] = ACTIONS(735), - [anon_sym_AMP_GT_GT] = ACTIONS(731), - [anon_sym_LT_AMP] = ACTIONS(731), - [anon_sym_GT_AMP] = ACTIONS(731), - [anon_sym_LT_LT] = ACTIONS(735), - [anon_sym_LT_LT_DASH] = ACTIONS(731), - [anon_sym_LT_LT_LT] = ACTIONS(731), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(731), - [anon_sym_AMP] = ACTIONS(735), - }, - [1506] = { - [aux_sym_concatenation_repeat1] = STATE(1842), - [sym_file_descriptor] = ACTIONS(749), - [sym__concat] = ACTIONS(3592), - [anon_sym_SEMI] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(751), - [anon_sym_SEMI_SEMI] = ACTIONS(749), - [anon_sym_PIPE_AMP] = ACTIONS(749), - [anon_sym_AMP_AMP] = ACTIONS(749), - [anon_sym_PIPE_PIPE] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(751), - [anon_sym_GT] = ACTIONS(751), - [anon_sym_GT_GT] = ACTIONS(749), - [anon_sym_AMP_GT] = ACTIONS(751), - [anon_sym_AMP_GT_GT] = ACTIONS(749), - [anon_sym_LT_AMP] = ACTIONS(749), - [anon_sym_GT_AMP] = ACTIONS(749), - [anon_sym_LT_LT] = ACTIONS(751), - [anon_sym_LT_LT_DASH] = ACTIONS(749), - [anon_sym_LT_LT_LT] = ACTIONS(749), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(749), - [anon_sym_AMP] = ACTIONS(751), - }, - [1507] = { - [aux_sym_concatenation_repeat1] = STATE(1842), - [sym_file_descriptor] = ACTIONS(1972), - [sym__concat] = ACTIONS(3592), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_PIPE] = ACTIONS(1974), - [anon_sym_SEMI_SEMI] = ACTIONS(1972), - [anon_sym_PIPE_AMP] = ACTIONS(1972), - [anon_sym_AMP_AMP] = ACTIONS(1972), - [anon_sym_PIPE_PIPE] = ACTIONS(1972), - [anon_sym_LT] = ACTIONS(1974), - [anon_sym_GT] = ACTIONS(1974), - [anon_sym_GT_GT] = ACTIONS(1972), - [anon_sym_AMP_GT] = ACTIONS(1974), - [anon_sym_AMP_GT_GT] = ACTIONS(1972), - [anon_sym_LT_AMP] = ACTIONS(1972), - [anon_sym_GT_AMP] = ACTIONS(1972), - [anon_sym_LT_LT] = ACTIONS(1974), - [anon_sym_LT_LT_DASH] = ACTIONS(1972), - [anon_sym_LT_LT_LT] = ACTIONS(1972), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1972), - [anon_sym_AMP] = ACTIONS(1974), - }, - [1508] = { - [aux_sym_concatenation_repeat1] = STATE(1842), - [sym_file_descriptor] = ACTIONS(1976), - [sym__concat] = ACTIONS(3592), - [anon_sym_SEMI] = ACTIONS(1978), - [anon_sym_PIPE] = ACTIONS(1978), - [anon_sym_SEMI_SEMI] = ACTIONS(1976), - [anon_sym_PIPE_AMP] = ACTIONS(1976), - [anon_sym_AMP_AMP] = ACTIONS(1976), - [anon_sym_PIPE_PIPE] = ACTIONS(1976), - [anon_sym_LT] = ACTIONS(1978), - [anon_sym_GT] = ACTIONS(1978), - [anon_sym_GT_GT] = ACTIONS(1976), - [anon_sym_AMP_GT] = ACTIONS(1978), - [anon_sym_AMP_GT_GT] = ACTIONS(1976), - [anon_sym_LT_AMP] = ACTIONS(1976), - [anon_sym_GT_AMP] = ACTIONS(1976), - [anon_sym_LT_LT] = ACTIONS(1978), - [anon_sym_LT_LT_DASH] = ACTIONS(1976), - [anon_sym_LT_LT_LT] = ACTIONS(1976), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1978), - }, - [1509] = { - [sym_file_redirect] = STATE(1509), - [sym_heredoc_redirect] = STATE(1509), - [sym_herestring_redirect] = STATE(1509), - [aux_sym_while_statement_repeat1] = STATE(1509), - [sym_file_descriptor] = ACTIONS(4221), - [anon_sym_SEMI] = ACTIONS(1989), - [anon_sym_PIPE] = ACTIONS(1989), - [anon_sym_SEMI_SEMI] = ACTIONS(1984), - [anon_sym_PIPE_AMP] = ACTIONS(1984), - [anon_sym_AMP_AMP] = ACTIONS(1984), - [anon_sym_PIPE_PIPE] = ACTIONS(1984), - [anon_sym_LT] = ACTIONS(4224), - [anon_sym_GT] = ACTIONS(4224), - [anon_sym_GT_GT] = ACTIONS(4227), - [anon_sym_AMP_GT] = ACTIONS(4224), - [anon_sym_AMP_GT_GT] = ACTIONS(4227), - [anon_sym_LT_AMP] = ACTIONS(4227), - [anon_sym_GT_AMP] = ACTIONS(4227), - [anon_sym_LT_LT] = ACTIONS(3625), - [anon_sym_LT_LT_DASH] = ACTIONS(3628), - [anon_sym_LT_LT_LT] = ACTIONS(4230), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1984), - [anon_sym_AMP] = ACTIONS(1989), - }, - [1510] = { - [aux_sym_concatenation_repeat1] = STATE(1510), - [sym__simple_heredoc_body] = ACTIONS(1724), - [sym__heredoc_body_beginning] = ACTIONS(1724), - [sym_file_descriptor] = ACTIONS(1724), - [sym__concat] = ACTIONS(1728), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(1726), - [anon_sym_SEMI_SEMI] = ACTIONS(1724), - [anon_sym_PIPE_AMP] = ACTIONS(1724), - [anon_sym_AMP_AMP] = ACTIONS(1724), - [anon_sym_PIPE_PIPE] = ACTIONS(1724), - [anon_sym_LT] = ACTIONS(1726), - [anon_sym_GT] = ACTIONS(1726), - [anon_sym_GT_GT] = ACTIONS(1724), - [anon_sym_AMP_GT] = ACTIONS(1726), - [anon_sym_AMP_GT_GT] = ACTIONS(1724), - [anon_sym_LT_AMP] = ACTIONS(1724), - [anon_sym_GT_AMP] = ACTIONS(1724), - [anon_sym_LT_LT] = ACTIONS(1726), - [anon_sym_LT_LT_DASH] = ACTIONS(1724), - [anon_sym_LT_LT_LT] = ACTIONS(1724), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1726), - }, - [1511] = { - [sym__terminated_statement] = STATE(1843), - [sym_for_statement] = STATE(521), - [sym_c_style_for_statement] = STATE(521), - [sym_while_statement] = STATE(521), - [sym_if_statement] = STATE(521), - [sym_case_statement] = STATE(521), - [sym_function_definition] = STATE(521), - [sym_subshell] = STATE(521), - [sym_pipeline] = STATE(521), - [sym_list] = STATE(521), - [sym_negated_command] = STATE(521), - [sym_test_command] = STATE(521), - [sym_declaration_command] = STATE(521), - [sym_unset_command] = STATE(521), - [sym_command] = STATE(521), - [sym_command_name] = STATE(51), - [sym_variable_assignment] = STATE(522), - [sym_subscript] = STATE(53), - [sym_file_redirect] = STATE(54), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(47), - [sym_simple_expansion] = STATE(47), - [sym_string_expansion] = STATE(47), - [sym_expansion] = STATE(47), - [sym_command_substitution] = STATE(47), - [sym_process_substitution] = STATE(47), - [aux_sym__statements_repeat1] = STATE(1843), - [aux_sym_command_repeat1] = STATE(54), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(69), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(71), - [anon_sym_if] = ACTIONS(15), - [anon_sym_fi] = ACTIONS(4233), - [anon_sym_elif] = ACTIONS(4233), - [anon_sym_else] = ACTIONS(4233), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(73), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(75), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_LBRACK_LBRACK] = ACTIONS(79), - [anon_sym_declare] = ACTIONS(81), - [anon_sym_typeset] = ACTIONS(81), - [anon_sym_export] = ACTIONS(81), - [anon_sym_readonly] = ACTIONS(81), - [anon_sym_local] = ACTIONS(81), - [anon_sym_unset] = ACTIONS(83), - [anon_sym_unsetenv] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(87), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(89), - }, - [1512] = { - [sym__terminated_statement] = STATE(1512), - [sym_for_statement] = STATE(521), - [sym_c_style_for_statement] = STATE(521), - [sym_while_statement] = STATE(521), - [sym_if_statement] = STATE(521), - [sym_case_statement] = STATE(521), - [sym_function_definition] = STATE(521), - [sym_subshell] = STATE(521), - [sym_pipeline] = STATE(521), - [sym_list] = STATE(521), - [sym_negated_command] = STATE(521), - [sym_test_command] = STATE(521), - [sym_declaration_command] = STATE(521), - [sym_unset_command] = STATE(521), - [sym_command] = STATE(521), - [sym_command_name] = STATE(51), - [sym_variable_assignment] = STATE(522), - [sym_subscript] = STATE(53), - [sym_file_redirect] = STATE(54), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(47), - [sym_simple_expansion] = STATE(47), - [sym_string_expansion] = STATE(47), - [sym_expansion] = STATE(47), - [sym_command_substitution] = STATE(47), - [sym_process_substitution] = STATE(47), - [aux_sym__statements_repeat1] = STATE(1512), - [aux_sym_command_repeat1] = STATE(54), - [sym_file_descriptor] = ACTIONS(965), - [sym_variable_name] = ACTIONS(968), - [anon_sym_for] = ACTIONS(971), - [anon_sym_while] = ACTIONS(974), - [anon_sym_if] = ACTIONS(977), - [anon_sym_fi] = ACTIONS(3449), - [anon_sym_case] = ACTIONS(980), - [anon_sym_function] = ACTIONS(983), - [anon_sym_LPAREN] = ACTIONS(986), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_LBRACK] = ACTIONS(992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(995), - [anon_sym_declare] = ACTIONS(998), - [anon_sym_typeset] = ACTIONS(998), - [anon_sym_export] = ACTIONS(998), - [anon_sym_readonly] = ACTIONS(998), - [anon_sym_local] = ACTIONS(998), - [anon_sym_unset] = ACTIONS(1001), - [anon_sym_unsetenv] = ACTIONS(1001), - [anon_sym_LT] = ACTIONS(1004), - [anon_sym_GT] = ACTIONS(1004), - [anon_sym_GT_GT] = ACTIONS(1007), - [anon_sym_AMP_GT] = ACTIONS(1004), - [anon_sym_AMP_GT_GT] = ACTIONS(1007), - [anon_sym_LT_AMP] = ACTIONS(1007), - [anon_sym_GT_AMP] = ACTIONS(1007), - [sym__special_characters] = ACTIONS(1010), - [anon_sym_DQUOTE] = ACTIONS(1013), - [anon_sym_DOLLAR] = ACTIONS(1016), - [sym_raw_string] = ACTIONS(1019), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1022), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1025), - [anon_sym_BQUOTE] = ACTIONS(1028), - [anon_sym_LT_LPAREN] = ACTIONS(1031), - [anon_sym_GT_LPAREN] = ACTIONS(1031), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1034), - }, - [1513] = { - [ts_builtin_sym_end] = ACTIONS(4235), - [anon_sym_SEMI] = ACTIONS(4237), - [anon_sym_esac] = ACTIONS(4235), - [anon_sym_PIPE] = ACTIONS(4237), - [anon_sym_RPAREN] = ACTIONS(4235), - [anon_sym_SEMI_SEMI] = ACTIONS(4235), - [anon_sym_PIPE_AMP] = ACTIONS(4235), - [anon_sym_AMP_AMP] = ACTIONS(4235), - [anon_sym_PIPE_PIPE] = ACTIONS(4235), - [anon_sym_BQUOTE] = ACTIONS(4235), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(4235), - [anon_sym_AMP] = ACTIONS(4237), - }, - [1514] = { - [anon_sym_fi] = ACTIONS(4239), - [sym_comment] = ACTIONS(53), - }, - [1515] = { - [sym_concatenation] = STATE(1847), - [sym_string] = STATE(1846), - [sym_simple_expansion] = STATE(1846), - [sym_string_expansion] = STATE(1846), - [sym_expansion] = STATE(1846), - [sym_command_substitution] = STATE(1846), - [sym_process_substitution] = STATE(1846), - [sym__special_characters] = ACTIONS(4241), - [anon_sym_DQUOTE] = ACTIONS(163), - [anon_sym_DOLLAR] = ACTIONS(165), - [sym_raw_string] = ACTIONS(4243), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(169), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(171), - [anon_sym_BQUOTE] = ACTIONS(173), - [anon_sym_LT_LPAREN] = ACTIONS(175), - [anon_sym_GT_LPAREN] = ACTIONS(175), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4243), - }, - [1516] = { - [sym__terminated_statement] = STATE(1871), - [sym_for_statement] = STATE(1866), - [sym_c_style_for_statement] = STATE(1866), - [sym_while_statement] = STATE(1866), - [sym_if_statement] = STATE(1866), - [sym_case_statement] = STATE(1866), - [sym_function_definition] = STATE(1866), - [sym_subshell] = STATE(1866), - [sym_pipeline] = STATE(1866), - [sym_list] = STATE(1866), - [sym_negated_command] = STATE(1866), - [sym_test_command] = STATE(1866), - [sym_declaration_command] = STATE(1866), - [sym_unset_command] = STATE(1866), - [sym_command] = STATE(1866), - [sym_command_name] = STATE(1867), - [sym_variable_assignment] = STATE(1868), - [sym_subscript] = STATE(1869), - [sym_file_redirect] = STATE(1872), - [sym_concatenation] = STATE(1870), - [sym_string] = STATE(1860), - [sym_simple_expansion] = STATE(1860), - [sym_string_expansion] = STATE(1860), - [sym_expansion] = STATE(1860), - [sym_command_substitution] = STATE(1860), - [sym_process_substitution] = STATE(1860), - [aux_sym__statements_repeat1] = STATE(1871), - [aux_sym_command_repeat1] = STATE(1872), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(4245), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(4247), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_esac] = ACTIONS(4249), - [anon_sym_SEMI_SEMI] = ACTIONS(4251), - [anon_sym_function] = ACTIONS(4253), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(4255), - [anon_sym_LBRACK] = ACTIONS(4257), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4259), - [anon_sym_declare] = ACTIONS(4261), - [anon_sym_typeset] = ACTIONS(4261), - [anon_sym_export] = ACTIONS(4261), - [anon_sym_readonly] = ACTIONS(4261), - [anon_sym_local] = ACTIONS(4261), - [anon_sym_unset] = ACTIONS(4263), - [anon_sym_unsetenv] = ACTIONS(4263), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(4265), - [anon_sym_DQUOTE] = ACTIONS(4267), - [anon_sym_DOLLAR] = ACTIONS(4269), - [sym_raw_string] = ACTIONS(4271), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4273), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4275), - [anon_sym_BQUOTE] = ACTIONS(4277), - [anon_sym_LT_LPAREN] = ACTIONS(4279), - [anon_sym_GT_LPAREN] = ACTIONS(4279), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4281), - }, - [1517] = { - [aux_sym_case_item_repeat1] = STATE(1874), - [anon_sym_PIPE] = ACTIONS(3474), - [anon_sym_RPAREN] = ACTIONS(4283), - [sym_comment] = ACTIONS(53), - }, - [1518] = { - [aux_sym_concatenation_repeat1] = STATE(1875), - [sym__concat] = ACTIONS(623), - [anon_sym_PIPE] = ACTIONS(765), - [anon_sym_RPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(53), - }, - [1519] = { - [sym__terminated_statement] = STATE(1879), - [sym_for_statement] = STATE(1877), - [sym_c_style_for_statement] = STATE(1877), - [sym_while_statement] = STATE(1877), - [sym_if_statement] = STATE(1877), - [sym_case_statement] = STATE(1877), - [sym_function_definition] = STATE(1877), - [sym_subshell] = STATE(1877), - [sym_pipeline] = STATE(1877), - [sym_list] = STATE(1877), - [sym_negated_command] = STATE(1877), - [sym_test_command] = STATE(1877), - [sym_declaration_command] = STATE(1877), - [sym_unset_command] = STATE(1877), - [sym_command] = STATE(1877), - [sym_command_name] = STATE(1867), - [sym_variable_assignment] = STATE(1878), - [sym_subscript] = STATE(1869), - [sym_file_redirect] = STATE(1872), - [sym_concatenation] = STATE(1870), - [sym_string] = STATE(1860), - [sym_simple_expansion] = STATE(1860), - [sym_string_expansion] = STATE(1860), - [sym_expansion] = STATE(1860), - [sym_command_substitution] = STATE(1860), - [sym_process_substitution] = STATE(1860), - [aux_sym__statements_repeat1] = STATE(1879), - [aux_sym_command_repeat1] = STATE(1872), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(4245), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(4247), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_esac] = ACTIONS(4285), - [anon_sym_SEMI_SEMI] = ACTIONS(4287), - [anon_sym_function] = ACTIONS(4253), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(4255), - [anon_sym_LBRACK] = ACTIONS(4257), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4259), - [anon_sym_declare] = ACTIONS(4261), - [anon_sym_typeset] = ACTIONS(4261), - [anon_sym_export] = ACTIONS(4261), - [anon_sym_readonly] = ACTIONS(4261), - [anon_sym_local] = ACTIONS(4261), - [anon_sym_unset] = ACTIONS(4263), - [anon_sym_unsetenv] = ACTIONS(4263), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(4265), - [anon_sym_DQUOTE] = ACTIONS(4267), - [anon_sym_DOLLAR] = ACTIONS(4269), - [sym_raw_string] = ACTIONS(4271), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4273), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4275), - [anon_sym_BQUOTE] = ACTIONS(4277), - [anon_sym_LT_LPAREN] = ACTIONS(4279), - [anon_sym_GT_LPAREN] = ACTIONS(4279), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4281), - }, - [1520] = { - [aux_sym_case_item_repeat1] = STATE(1874), - [anon_sym_PIPE] = ACTIONS(3474), - [anon_sym_RPAREN] = ACTIONS(4289), - [sym_comment] = ACTIONS(53), - }, - [1521] = { - [ts_builtin_sym_end] = ACTIONS(4291), - [anon_sym_SEMI] = ACTIONS(4293), - [anon_sym_esac] = ACTIONS(4291), - [anon_sym_PIPE] = ACTIONS(4293), - [anon_sym_RPAREN] = ACTIONS(4291), - [anon_sym_SEMI_SEMI] = ACTIONS(4291), - [anon_sym_PIPE_AMP] = ACTIONS(4291), - [anon_sym_AMP_AMP] = ACTIONS(4291), - [anon_sym_PIPE_PIPE] = ACTIONS(4291), - [anon_sym_BQUOTE] = ACTIONS(4291), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(4291), - [anon_sym_AMP] = ACTIONS(4293), - }, - [1522] = { - [anon_sym_esac] = ACTIONS(4295), - [sym_comment] = ACTIONS(53), - }, - [1523] = { - [sym_case_item] = STATE(1523), - [sym_concatenation] = STATE(1884), - [sym_string] = STATE(1883), - [sym_simple_expansion] = STATE(1883), - [sym_string_expansion] = STATE(1883), - [sym_expansion] = STATE(1883), - [sym_command_substitution] = STATE(1883), - [sym_process_substitution] = STATE(1883), - [aux_sym_case_statement_repeat1] = STATE(1523), - [sym__special_characters] = ACTIONS(4297), - [anon_sym_DQUOTE] = ACTIONS(4300), - [anon_sym_DOLLAR] = ACTIONS(4303), - [sym_raw_string] = ACTIONS(4306), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4309), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4312), - [anon_sym_BQUOTE] = ACTIONS(4315), - [anon_sym_LT_LPAREN] = ACTIONS(4318), - [anon_sym_GT_LPAREN] = ACTIONS(4318), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4306), - }, - [1524] = { - [sym_case_item] = STATE(1523), - [sym_last_case_item] = STATE(1885), - [sym_concatenation] = STATE(1102), - [sym_string] = STATE(1100), - [sym_simple_expansion] = STATE(1100), - [sym_string_expansion] = STATE(1100), - [sym_expansion] = STATE(1100), - [sym_command_substitution] = STATE(1100), - [sym_process_substitution] = STATE(1100), - [aux_sym_case_statement_repeat1] = STATE(1523), - [sym__special_characters] = ACTIONS(2377), - [anon_sym_DQUOTE] = ACTIONS(163), - [anon_sym_DOLLAR] = ACTIONS(165), - [sym_raw_string] = ACTIONS(2379), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(169), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(171), - [anon_sym_BQUOTE] = ACTIONS(173), - [anon_sym_LT_LPAREN] = ACTIONS(175), - [anon_sym_GT_LPAREN] = ACTIONS(175), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2379), - }, - [1525] = { - [ts_builtin_sym_end] = ACTIONS(4321), - [anon_sym_SEMI] = ACTIONS(4323), - [anon_sym_esac] = ACTIONS(4321), - [anon_sym_PIPE] = ACTIONS(4323), - [anon_sym_RPAREN] = ACTIONS(4321), - [anon_sym_SEMI_SEMI] = ACTIONS(4321), - [anon_sym_PIPE_AMP] = ACTIONS(4321), - [anon_sym_AMP_AMP] = ACTIONS(4321), - [anon_sym_PIPE_PIPE] = ACTIONS(4321), - [anon_sym_BQUOTE] = ACTIONS(4321), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(4321), - [anon_sym_AMP] = ACTIONS(4323), - }, - [1526] = { - [anon_sym_esac] = ACTIONS(4325), - [sym_comment] = ACTIONS(53), - }, - [1527] = { - [sym_case_item] = STATE(1523), - [sym_last_case_item] = STATE(1887), - [sym_concatenation] = STATE(1102), - [sym_string] = STATE(1100), - [sym_simple_expansion] = STATE(1100), - [sym_string_expansion] = STATE(1100), - [sym_expansion] = STATE(1100), - [sym_command_substitution] = STATE(1100), - [sym_process_substitution] = STATE(1100), - [aux_sym_case_statement_repeat1] = STATE(1523), - [sym__special_characters] = ACTIONS(2377), - [anon_sym_DQUOTE] = ACTIONS(163), - [anon_sym_DOLLAR] = ACTIONS(165), - [sym_raw_string] = ACTIONS(2379), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(169), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(171), - [anon_sym_BQUOTE] = ACTIONS(173), - [anon_sym_LT_LPAREN] = ACTIONS(175), - [anon_sym_GT_LPAREN] = ACTIONS(175), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2379), - }, - [1528] = { - [sym__concat] = ACTIONS(3788), - [anon_sym_in] = ACTIONS(3788), - [anon_sym_SEMI] = ACTIONS(3790), - [anon_sym_SEMI_SEMI] = ACTIONS(3788), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(3788), - [anon_sym_AMP] = ACTIONS(3788), - }, - [1529] = { - [sym__concat] = ACTIONS(3796), - [anon_sym_in] = ACTIONS(3796), - [anon_sym_SEMI] = ACTIONS(3798), - [anon_sym_SEMI_SEMI] = ACTIONS(3796), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(3796), - [anon_sym_AMP] = ACTIONS(3796), - }, - [1530] = { - [aux_sym_concatenation_repeat1] = STATE(1293), - [sym__concat] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(4327), - [sym_comment] = ACTIONS(53), - }, - [1531] = { - [aux_sym_concatenation_repeat1] = STATE(1293), - [sym__concat] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(4329), - [sym_comment] = ACTIONS(53), - }, - [1532] = { - [anon_sym_RBRACE] = ACTIONS(4329), - [sym_comment] = ACTIONS(53), - }, - [1533] = { - [sym_concatenation] = STATE(1891), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(1891), - [anon_sym_RBRACE] = ACTIONS(4331), - [anon_sym_EQ] = ACTIONS(4333), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(4335), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(4333), - [anon_sym_COLON_QMARK] = ACTIONS(4333), - [anon_sym_COLON_DASH] = ACTIONS(4333), - [anon_sym_PERCENT] = ACTIONS(4333), - [anon_sym_DASH] = ACTIONS(4333), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [1534] = { - [sym__concat] = ACTIONS(3852), - [anon_sym_in] = ACTIONS(3852), - [anon_sym_SEMI] = ACTIONS(3854), - [anon_sym_SEMI_SEMI] = ACTIONS(3852), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(3852), - [anon_sym_AMP] = ACTIONS(3852), - }, - [1535] = { - [sym_concatenation] = STATE(1892), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(1892), - [anon_sym_RBRACE] = ACTIONS(4329), - [anon_sym_EQ] = ACTIONS(4337), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(4339), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(4337), - [anon_sym_COLON_QMARK] = ACTIONS(4337), - [anon_sym_COLON_DASH] = ACTIONS(4337), - [anon_sym_PERCENT] = ACTIONS(4337), - [anon_sym_DASH] = ACTIONS(4337), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [1536] = { - [sym__concat] = ACTIONS(3893), - [anon_sym_in] = ACTIONS(3893), - [anon_sym_SEMI] = ACTIONS(3895), - [anon_sym_SEMI_SEMI] = ACTIONS(3893), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(3893), - [anon_sym_AMP] = ACTIONS(3893), - }, - [1537] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(4341), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [1538] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(4329), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [1539] = { - [sym__concat] = ACTIONS(3915), - [anon_sym_in] = ACTIONS(3915), - [anon_sym_SEMI] = ACTIONS(3917), - [anon_sym_SEMI_SEMI] = ACTIONS(3915), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(3915), - [anon_sym_AMP] = ACTIONS(3915), - }, - [1540] = { - [sym__concat] = ACTIONS(3939), - [anon_sym_in] = ACTIONS(3939), - [anon_sym_SEMI] = ACTIONS(3941), - [anon_sym_SEMI_SEMI] = ACTIONS(3939), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(3939), - [anon_sym_AMP] = ACTIONS(3939), - }, - [1541] = { - [ts_builtin_sym_end] = ACTIONS(4343), - [anon_sym_SEMI] = ACTIONS(4345), - [anon_sym_esac] = ACTIONS(4343), - [anon_sym_PIPE] = ACTIONS(4345), - [anon_sym_RPAREN] = ACTIONS(4343), - [anon_sym_SEMI_SEMI] = ACTIONS(4343), - [anon_sym_PIPE_AMP] = ACTIONS(4343), - [anon_sym_AMP_AMP] = ACTIONS(4343), - [anon_sym_PIPE_PIPE] = ACTIONS(4343), - [anon_sym_BQUOTE] = ACTIONS(4343), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(4343), - [anon_sym_AMP] = ACTIONS(4345), - }, - [1542] = { - [aux_sym_concatenation_repeat1] = STATE(1545), - [sym__concat] = ACTIONS(693), - [ts_builtin_sym_end] = ACTIONS(1053), - [anon_sym_SEMI] = ACTIONS(1055), - [anon_sym_PIPE] = ACTIONS(1055), - [anon_sym_SEMI_SEMI] = ACTIONS(1053), - [anon_sym_PIPE_AMP] = ACTIONS(1053), - [anon_sym_AMP_AMP] = ACTIONS(1053), - [anon_sym_PIPE_PIPE] = ACTIONS(1053), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1053), - [anon_sym_AMP] = ACTIONS(1055), - }, - [1543] = { - [aux_sym_concatenation_repeat1] = STATE(1545), - [sym__concat] = ACTIONS(693), - [ts_builtin_sym_end] = ACTIONS(1057), - [anon_sym_SEMI] = ACTIONS(1059), - [anon_sym_PIPE] = ACTIONS(1059), - [anon_sym_SEMI_SEMI] = ACTIONS(1057), - [anon_sym_PIPE_AMP] = ACTIONS(1057), - [anon_sym_AMP_AMP] = ACTIONS(1057), - [anon_sym_PIPE_PIPE] = ACTIONS(1057), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), - }, - [1544] = { - [ts_builtin_sym_end] = ACTIONS(1057), - [anon_sym_SEMI] = ACTIONS(1059), - [anon_sym_esac] = ACTIONS(1057), - [anon_sym_PIPE] = ACTIONS(1059), - [anon_sym_RPAREN] = ACTIONS(1057), - [anon_sym_SEMI_SEMI] = ACTIONS(1057), - [anon_sym_PIPE_AMP] = ACTIONS(1057), - [anon_sym_AMP_AMP] = ACTIONS(1057), - [anon_sym_PIPE_PIPE] = ACTIONS(1057), - [anon_sym_BQUOTE] = ACTIONS(1057), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), - }, - [1545] = { - [aux_sym_concatenation_repeat1] = STATE(1894), - [sym__concat] = ACTIONS(693), - [ts_builtin_sym_end] = ACTIONS(765), - [anon_sym_SEMI] = ACTIONS(767), - [anon_sym_PIPE] = ACTIONS(767), - [anon_sym_SEMI_SEMI] = ACTIONS(765), - [anon_sym_PIPE_AMP] = ACTIONS(765), - [anon_sym_AMP_AMP] = ACTIONS(765), - [anon_sym_PIPE_PIPE] = ACTIONS(765), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(765), - [anon_sym_AMP] = ACTIONS(767), - }, - [1546] = { - [aux_sym_concatenation_repeat1] = STATE(1546), - [sym_file_descriptor] = ACTIONS(1724), - [sym__concat] = ACTIONS(3208), - [sym_variable_name] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(1726), - [anon_sym_RPAREN] = ACTIONS(1724), - [anon_sym_SEMI_SEMI] = ACTIONS(1724), - [anon_sym_PIPE_AMP] = ACTIONS(1724), - [anon_sym_AMP_AMP] = ACTIONS(1724), - [anon_sym_PIPE_PIPE] = ACTIONS(1724), - [anon_sym_LT] = ACTIONS(1726), - [anon_sym_GT] = ACTIONS(1726), - [anon_sym_GT_GT] = ACTIONS(1724), - [anon_sym_AMP_GT] = ACTIONS(1726), - [anon_sym_AMP_GT_GT] = ACTIONS(1724), - [anon_sym_LT_AMP] = ACTIONS(1724), - [anon_sym_GT_AMP] = ACTIONS(1724), - [sym__special_characters] = ACTIONS(1724), - [anon_sym_DQUOTE] = ACTIONS(1724), - [anon_sym_DOLLAR] = ACTIONS(1726), - [sym_raw_string] = ACTIONS(1724), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1724), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1724), - [anon_sym_BQUOTE] = ACTIONS(1724), - [anon_sym_LT_LPAREN] = ACTIONS(1724), - [anon_sym_GT_LPAREN] = ACTIONS(1724), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1726), - [anon_sym_LF] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1726), - }, - [1547] = { - [sym_file_redirect] = STATE(1541), - [sym_file_descriptor] = ACTIONS(2466), - [anon_sym_SEMI] = ACTIONS(3522), - [anon_sym_PIPE] = ACTIONS(3522), - [anon_sym_RPAREN] = ACTIONS(3520), - [anon_sym_SEMI_SEMI] = ACTIONS(3520), - [anon_sym_PIPE_AMP] = ACTIONS(3520), - [anon_sym_AMP_AMP] = ACTIONS(3520), - [anon_sym_PIPE_PIPE] = ACTIONS(3520), - [anon_sym_LT] = ACTIONS(2468), - [anon_sym_GT] = ACTIONS(2468), - [anon_sym_GT_GT] = ACTIONS(2470), - [anon_sym_AMP_GT] = ACTIONS(2468), - [anon_sym_AMP_GT_GT] = ACTIONS(2470), - [anon_sym_LT_AMP] = ACTIONS(2470), - [anon_sym_GT_AMP] = ACTIONS(2470), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(3520), - [anon_sym_AMP] = ACTIONS(3522), - }, - [1548] = { - [sym_concatenation] = STATE(1544), - [sym_string] = STATE(1896), - [sym_simple_expansion] = STATE(1896), - [sym_string_expansion] = STATE(1896), - [sym_expansion] = STATE(1896), - [sym_command_substitution] = STATE(1896), - [sym_process_substitution] = STATE(1896), - [sym__special_characters] = ACTIONS(4347), - [anon_sym_DQUOTE] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(215), - [sym_raw_string] = ACTIONS(4349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(219), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(221), - [anon_sym_BQUOTE] = ACTIONS(223), - [anon_sym_LT_LPAREN] = ACTIONS(225), - [anon_sym_GT_LPAREN] = ACTIONS(225), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4349), - }, - [1549] = { - [aux_sym_concatenation_repeat1] = STATE(1897), - [sym__concat] = ACTIONS(693), - [anon_sym_SEMI] = ACTIONS(735), - [anon_sym_PIPE] = ACTIONS(735), - [anon_sym_RPAREN] = ACTIONS(731), - [anon_sym_SEMI_SEMI] = ACTIONS(731), - [anon_sym_PIPE_AMP] = ACTIONS(731), - [anon_sym_AMP_AMP] = ACTIONS(731), - [anon_sym_PIPE_PIPE] = ACTIONS(731), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(731), - [anon_sym_AMP] = ACTIONS(735), - }, - [1550] = { - [aux_sym_concatenation_repeat1] = STATE(1897), - [sym__concat] = ACTIONS(693), - [anon_sym_SEMI] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(751), - [anon_sym_RPAREN] = ACTIONS(749), - [anon_sym_SEMI_SEMI] = ACTIONS(749), - [anon_sym_PIPE_AMP] = ACTIONS(749), - [anon_sym_AMP_AMP] = ACTIONS(749), - [anon_sym_PIPE_PIPE] = ACTIONS(749), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(749), - [anon_sym_AMP] = ACTIONS(751), - }, - [1551] = { - [sym_concatenation] = STATE(1574), - [sym_string] = STATE(1899), - [sym_simple_expansion] = STATE(1899), - [sym_string_expansion] = STATE(1899), - [sym_expansion] = STATE(1899), - [sym_command_substitution] = STATE(1899), - [sym_process_substitution] = STATE(1899), - [sym__special_characters] = ACTIONS(4351), - [anon_sym_DQUOTE] = ACTIONS(2612), - [anon_sym_DOLLAR] = ACTIONS(2614), - [sym_raw_string] = ACTIONS(4353), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2618), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2620), - [anon_sym_BQUOTE] = ACTIONS(2622), - [anon_sym_LT_LPAREN] = ACTIONS(2624), - [anon_sym_GT_LPAREN] = ACTIONS(2624), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4353), - }, - [1552] = { - [aux_sym_concatenation_repeat1] = STATE(1900), - [sym_file_descriptor] = ACTIONS(731), - [sym__concat] = ACTIONS(3592), - [anon_sym_SEMI] = ACTIONS(735), - [anon_sym_PIPE] = ACTIONS(735), - [anon_sym_RPAREN] = ACTIONS(731), - [anon_sym_SEMI_SEMI] = ACTIONS(731), - [anon_sym_PIPE_AMP] = ACTIONS(731), - [anon_sym_AMP_AMP] = ACTIONS(731), - [anon_sym_PIPE_PIPE] = ACTIONS(731), - [anon_sym_LT] = ACTIONS(735), - [anon_sym_GT] = ACTIONS(735), - [anon_sym_GT_GT] = ACTIONS(731), - [anon_sym_AMP_GT] = ACTIONS(735), - [anon_sym_AMP_GT_GT] = ACTIONS(731), - [anon_sym_LT_AMP] = ACTIONS(731), - [anon_sym_GT_AMP] = ACTIONS(731), - [anon_sym_LT_LT] = ACTIONS(735), - [anon_sym_LT_LT_DASH] = ACTIONS(731), - [anon_sym_LT_LT_LT] = ACTIONS(731), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(731), - [anon_sym_AMP] = ACTIONS(735), - }, - [1553] = { - [aux_sym_concatenation_repeat1] = STATE(1900), - [sym_file_descriptor] = ACTIONS(749), - [sym__concat] = ACTIONS(3592), - [anon_sym_SEMI] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(751), - [anon_sym_RPAREN] = ACTIONS(749), - [anon_sym_SEMI_SEMI] = ACTIONS(749), - [anon_sym_PIPE_AMP] = ACTIONS(749), - [anon_sym_AMP_AMP] = ACTIONS(749), - [anon_sym_PIPE_PIPE] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(751), - [anon_sym_GT] = ACTIONS(751), - [anon_sym_GT_GT] = ACTIONS(749), - [anon_sym_AMP_GT] = ACTIONS(751), - [anon_sym_AMP_GT_GT] = ACTIONS(749), - [anon_sym_LT_AMP] = ACTIONS(749), - [anon_sym_GT_AMP] = ACTIONS(749), - [anon_sym_LT_LT] = ACTIONS(751), - [anon_sym_LT_LT_DASH] = ACTIONS(749), - [anon_sym_LT_LT_LT] = ACTIONS(749), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(749), - [anon_sym_AMP] = ACTIONS(751), - }, - [1554] = { - [aux_sym_concatenation_repeat1] = STATE(1900), - [sym_file_descriptor] = ACTIONS(1972), - [sym__concat] = ACTIONS(3592), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_PIPE] = ACTIONS(1974), - [anon_sym_RPAREN] = ACTIONS(1972), - [anon_sym_SEMI_SEMI] = ACTIONS(1972), - [anon_sym_PIPE_AMP] = ACTIONS(1972), - [anon_sym_AMP_AMP] = ACTIONS(1972), - [anon_sym_PIPE_PIPE] = ACTIONS(1972), - [anon_sym_LT] = ACTIONS(1974), - [anon_sym_GT] = ACTIONS(1974), - [anon_sym_GT_GT] = ACTIONS(1972), - [anon_sym_AMP_GT] = ACTIONS(1974), - [anon_sym_AMP_GT_GT] = ACTIONS(1972), - [anon_sym_LT_AMP] = ACTIONS(1972), - [anon_sym_GT_AMP] = ACTIONS(1972), - [anon_sym_LT_LT] = ACTIONS(1974), - [anon_sym_LT_LT_DASH] = ACTIONS(1972), - [anon_sym_LT_LT_LT] = ACTIONS(1972), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1972), - [anon_sym_AMP] = ACTIONS(1974), - }, - [1555] = { - [aux_sym_concatenation_repeat1] = STATE(1900), - [sym_file_descriptor] = ACTIONS(1976), - [sym__concat] = ACTIONS(3592), - [anon_sym_SEMI] = ACTIONS(1978), - [anon_sym_PIPE] = ACTIONS(1978), - [anon_sym_RPAREN] = ACTIONS(1976), - [anon_sym_SEMI_SEMI] = ACTIONS(1976), - [anon_sym_PIPE_AMP] = ACTIONS(1976), - [anon_sym_AMP_AMP] = ACTIONS(1976), - [anon_sym_PIPE_PIPE] = ACTIONS(1976), - [anon_sym_LT] = ACTIONS(1978), - [anon_sym_GT] = ACTIONS(1978), - [anon_sym_GT_GT] = ACTIONS(1976), - [anon_sym_AMP_GT] = ACTIONS(1978), - [anon_sym_AMP_GT_GT] = ACTIONS(1976), - [anon_sym_LT_AMP] = ACTIONS(1976), - [anon_sym_GT_AMP] = ACTIONS(1976), - [anon_sym_LT_LT] = ACTIONS(1978), - [anon_sym_LT_LT_DASH] = ACTIONS(1976), - [anon_sym_LT_LT_LT] = ACTIONS(1976), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1978), - }, - [1556] = { - [sym_file_redirect] = STATE(1556), - [sym_heredoc_redirect] = STATE(1556), - [sym_herestring_redirect] = STATE(1556), - [aux_sym_while_statement_repeat1] = STATE(1556), - [sym_file_descriptor] = ACTIONS(4355), - [anon_sym_SEMI] = ACTIONS(1989), - [anon_sym_PIPE] = ACTIONS(1989), - [anon_sym_RPAREN] = ACTIONS(1984), - [anon_sym_SEMI_SEMI] = ACTIONS(1984), - [anon_sym_PIPE_AMP] = ACTIONS(1984), - [anon_sym_AMP_AMP] = ACTIONS(1984), - [anon_sym_PIPE_PIPE] = ACTIONS(1984), - [anon_sym_LT] = ACTIONS(4358), - [anon_sym_GT] = ACTIONS(4358), - [anon_sym_GT_GT] = ACTIONS(4361), - [anon_sym_AMP_GT] = ACTIONS(4358), - [anon_sym_AMP_GT_GT] = ACTIONS(4361), - [anon_sym_LT_AMP] = ACTIONS(4361), - [anon_sym_GT_AMP] = ACTIONS(4361), - [anon_sym_LT_LT] = ACTIONS(3625), - [anon_sym_LT_LT_DASH] = ACTIONS(3628), - [anon_sym_LT_LT_LT] = ACTIONS(4364), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1984), - [anon_sym_AMP] = ACTIONS(1989), - }, - [1557] = { - [aux_sym_concatenation_repeat1] = STATE(1557), - [sym__simple_heredoc_body] = ACTIONS(1724), - [sym__heredoc_body_beginning] = ACTIONS(1724), - [sym_file_descriptor] = ACTIONS(1724), - [sym__concat] = ACTIONS(1728), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(1726), - [anon_sym_RPAREN] = ACTIONS(1724), - [anon_sym_SEMI_SEMI] = ACTIONS(1724), - [anon_sym_PIPE_AMP] = ACTIONS(1724), - [anon_sym_AMP_AMP] = ACTIONS(1724), - [anon_sym_PIPE_PIPE] = ACTIONS(1724), - [anon_sym_LT] = ACTIONS(1726), - [anon_sym_GT] = ACTIONS(1726), - [anon_sym_GT_GT] = ACTIONS(1724), - [anon_sym_AMP_GT] = ACTIONS(1726), - [anon_sym_AMP_GT_GT] = ACTIONS(1724), - [anon_sym_LT_AMP] = ACTIONS(1724), - [anon_sym_GT_AMP] = ACTIONS(1724), - [anon_sym_LT_LT] = ACTIONS(1726), - [anon_sym_LT_LT_DASH] = ACTIONS(1724), - [anon_sym_LT_LT_LT] = ACTIONS(1724), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1726), - }, - [1558] = { - [sym_file_descriptor] = ACTIONS(3178), - [sym_variable_name] = ACTIONS(3178), - [anon_sym_LT] = ACTIONS(3180), - [anon_sym_GT] = ACTIONS(3180), - [anon_sym_GT_GT] = ACTIONS(3178), - [anon_sym_AMP_GT] = ACTIONS(3180), - [anon_sym_AMP_GT_GT] = ACTIONS(3178), - [anon_sym_LT_AMP] = ACTIONS(3178), - [anon_sym_GT_AMP] = ACTIONS(3178), - [sym__special_characters] = ACTIONS(3178), - [anon_sym_DQUOTE] = ACTIONS(3178), - [anon_sym_DOLLAR] = ACTIONS(3180), - [sym_raw_string] = ACTIONS(3178), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3178), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3178), - [anon_sym_BQUOTE] = ACTIONS(3178), - [anon_sym_LT_LPAREN] = ACTIONS(3178), - [anon_sym_GT_LPAREN] = ACTIONS(3178), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3178), - }, - [1559] = { - [sym__concat] = ACTIONS(3788), - [anon_sym_AMP_AMP] = ACTIONS(3788), - [anon_sym_PIPE_PIPE] = ACTIONS(3788), - [anon_sym_RBRACK] = ACTIONS(3788), - [anon_sym_EQ_TILDE] = ACTIONS(3788), - [anon_sym_EQ_EQ] = ACTIONS(3788), - [anon_sym_EQ] = ACTIONS(3790), - [anon_sym_LT] = ACTIONS(3788), - [anon_sym_GT] = ACTIONS(3788), - [anon_sym_BANG_EQ] = ACTIONS(3788), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(3788), - }, - [1560] = { - [sym__concat] = ACTIONS(3796), - [anon_sym_AMP_AMP] = ACTIONS(3796), - [anon_sym_PIPE_PIPE] = ACTIONS(3796), - [anon_sym_RBRACK] = ACTIONS(3796), - [anon_sym_EQ_TILDE] = ACTIONS(3796), - [anon_sym_EQ_EQ] = ACTIONS(3796), - [anon_sym_EQ] = ACTIONS(3798), - [anon_sym_LT] = ACTIONS(3796), - [anon_sym_GT] = ACTIONS(3796), - [anon_sym_BANG_EQ] = ACTIONS(3796), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(3796), - }, - [1561] = { - [aux_sym_concatenation_repeat1] = STATE(1293), - [sym__concat] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(4367), - [sym_comment] = ACTIONS(53), - }, - [1562] = { - [aux_sym_concatenation_repeat1] = STATE(1293), - [sym__concat] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(4369), - [sym_comment] = ACTIONS(53), - }, - [1563] = { - [anon_sym_RBRACE] = ACTIONS(4369), - [sym_comment] = ACTIONS(53), - }, - [1564] = { - [sym_concatenation] = STATE(1904), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(1904), - [anon_sym_RBRACE] = ACTIONS(4371), - [anon_sym_EQ] = ACTIONS(4373), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(4375), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(4373), - [anon_sym_COLON_QMARK] = ACTIONS(4373), - [anon_sym_COLON_DASH] = ACTIONS(4373), - [anon_sym_PERCENT] = ACTIONS(4373), - [anon_sym_DASH] = ACTIONS(4373), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [1565] = { - [sym__concat] = ACTIONS(3852), - [anon_sym_AMP_AMP] = ACTIONS(3852), - [anon_sym_PIPE_PIPE] = ACTIONS(3852), - [anon_sym_RBRACK] = ACTIONS(3852), - [anon_sym_EQ_TILDE] = ACTIONS(3852), - [anon_sym_EQ_EQ] = ACTIONS(3852), - [anon_sym_EQ] = ACTIONS(3854), - [anon_sym_LT] = ACTIONS(3852), - [anon_sym_GT] = ACTIONS(3852), - [anon_sym_BANG_EQ] = ACTIONS(3852), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(3852), - }, - [1566] = { - [sym_concatenation] = STATE(1905), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(1905), - [anon_sym_RBRACE] = ACTIONS(4369), - [anon_sym_EQ] = ACTIONS(4377), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(4379), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(4377), - [anon_sym_COLON_QMARK] = ACTIONS(4377), - [anon_sym_COLON_DASH] = ACTIONS(4377), - [anon_sym_PERCENT] = ACTIONS(4377), - [anon_sym_DASH] = ACTIONS(4377), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [1567] = { - [sym__concat] = ACTIONS(3893), - [anon_sym_AMP_AMP] = ACTIONS(3893), - [anon_sym_PIPE_PIPE] = ACTIONS(3893), - [anon_sym_RBRACK] = ACTIONS(3893), - [anon_sym_EQ_TILDE] = ACTIONS(3893), - [anon_sym_EQ_EQ] = ACTIONS(3893), - [anon_sym_EQ] = ACTIONS(3895), - [anon_sym_LT] = ACTIONS(3893), - [anon_sym_GT] = ACTIONS(3893), - [anon_sym_BANG_EQ] = ACTIONS(3893), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(3893), - }, - [1568] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(4381), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [1569] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(4369), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [1570] = { - [sym__concat] = ACTIONS(3915), - [anon_sym_AMP_AMP] = ACTIONS(3915), - [anon_sym_PIPE_PIPE] = ACTIONS(3915), - [anon_sym_RBRACK] = ACTIONS(3915), - [anon_sym_EQ_TILDE] = ACTIONS(3915), - [anon_sym_EQ_EQ] = ACTIONS(3915), - [anon_sym_EQ] = ACTIONS(3917), - [anon_sym_LT] = ACTIONS(3915), - [anon_sym_GT] = ACTIONS(3915), - [anon_sym_BANG_EQ] = ACTIONS(3915), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(3915), - }, - [1571] = { - [sym__concat] = ACTIONS(3939), - [anon_sym_AMP_AMP] = ACTIONS(3939), - [anon_sym_PIPE_PIPE] = ACTIONS(3939), - [anon_sym_RBRACK] = ACTIONS(3939), - [anon_sym_EQ_TILDE] = ACTIONS(3939), - [anon_sym_EQ_EQ] = ACTIONS(3939), - [anon_sym_EQ] = ACTIONS(3941), - [anon_sym_LT] = ACTIONS(3939), - [anon_sym_GT] = ACTIONS(3939), - [anon_sym_BANG_EQ] = ACTIONS(3939), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(3939), - }, - [1572] = { - [aux_sym_concatenation_repeat1] = STATE(1576), - [sym_file_descriptor] = ACTIONS(1053), - [sym__concat] = ACTIONS(3592), - [ts_builtin_sym_end] = ACTIONS(1053), - [anon_sym_SEMI] = ACTIONS(1055), - [anon_sym_PIPE] = ACTIONS(1055), - [anon_sym_SEMI_SEMI] = ACTIONS(1053), - [anon_sym_PIPE_AMP] = ACTIONS(1053), - [anon_sym_AMP_AMP] = ACTIONS(1053), - [anon_sym_PIPE_PIPE] = ACTIONS(1053), - [anon_sym_LT] = ACTIONS(1055), - [anon_sym_GT] = ACTIONS(1055), - [anon_sym_GT_GT] = ACTIONS(1053), - [anon_sym_AMP_GT] = ACTIONS(1055), - [anon_sym_AMP_GT_GT] = ACTIONS(1053), - [anon_sym_LT_AMP] = ACTIONS(1053), - [anon_sym_GT_AMP] = ACTIONS(1053), - [anon_sym_LT_LT] = ACTIONS(1055), - [anon_sym_LT_LT_DASH] = ACTIONS(1053), - [anon_sym_LT_LT_LT] = ACTIONS(1053), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1053), - [anon_sym_AMP] = ACTIONS(1055), - }, - [1573] = { - [aux_sym_concatenation_repeat1] = STATE(1576), - [sym_file_descriptor] = ACTIONS(1057), - [sym__concat] = ACTIONS(3592), - [ts_builtin_sym_end] = ACTIONS(1057), - [anon_sym_SEMI] = ACTIONS(1059), - [anon_sym_PIPE] = ACTIONS(1059), - [anon_sym_SEMI_SEMI] = ACTIONS(1057), - [anon_sym_PIPE_AMP] = ACTIONS(1057), - [anon_sym_AMP_AMP] = ACTIONS(1057), - [anon_sym_PIPE_PIPE] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_GT_GT] = ACTIONS(1057), - [anon_sym_AMP_GT] = ACTIONS(1059), - [anon_sym_AMP_GT_GT] = ACTIONS(1057), - [anon_sym_LT_AMP] = ACTIONS(1057), - [anon_sym_GT_AMP] = ACTIONS(1057), - [anon_sym_LT_LT] = ACTIONS(1059), - [anon_sym_LT_LT_DASH] = ACTIONS(1057), - [anon_sym_LT_LT_LT] = ACTIONS(1057), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), - }, - [1574] = { - [sym_file_descriptor] = ACTIONS(1057), - [ts_builtin_sym_end] = ACTIONS(1057), - [anon_sym_SEMI] = ACTIONS(1059), - [anon_sym_esac] = ACTIONS(1057), - [anon_sym_PIPE] = ACTIONS(1059), - [anon_sym_RPAREN] = ACTIONS(1057), - [anon_sym_SEMI_SEMI] = ACTIONS(1057), - [anon_sym_PIPE_AMP] = ACTIONS(1057), - [anon_sym_AMP_AMP] = ACTIONS(1057), - [anon_sym_PIPE_PIPE] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_GT_GT] = ACTIONS(1057), - [anon_sym_AMP_GT] = ACTIONS(1059), - [anon_sym_AMP_GT_GT] = ACTIONS(1057), - [anon_sym_LT_AMP] = ACTIONS(1057), - [anon_sym_GT_AMP] = ACTIONS(1057), - [anon_sym_LT_LT] = ACTIONS(1059), - [anon_sym_LT_LT_DASH] = ACTIONS(1057), - [anon_sym_LT_LT_LT] = ACTIONS(1057), - [anon_sym_BQUOTE] = ACTIONS(1057), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), - }, - [1575] = { - [sym_string] = STATE(1907), - [sym_simple_expansion] = STATE(1907), - [sym_string_expansion] = STATE(1907), - [sym_expansion] = STATE(1907), - [sym_command_substitution] = STATE(1907), - [sym_process_substitution] = STATE(1907), - [sym__special_characters] = ACTIONS(4383), - [anon_sym_DQUOTE] = ACTIONS(2612), - [anon_sym_DOLLAR] = ACTIONS(2614), - [sym_raw_string] = ACTIONS(4383), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2618), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2620), - [anon_sym_BQUOTE] = ACTIONS(2622), - [anon_sym_LT_LPAREN] = ACTIONS(2624), - [anon_sym_GT_LPAREN] = ACTIONS(2624), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4383), - }, - [1576] = { - [aux_sym_concatenation_repeat1] = STATE(1908), - [sym_file_descriptor] = ACTIONS(765), - [sym__concat] = ACTIONS(3592), - [ts_builtin_sym_end] = ACTIONS(765), - [anon_sym_SEMI] = ACTIONS(767), - [anon_sym_PIPE] = ACTIONS(767), - [anon_sym_SEMI_SEMI] = ACTIONS(765), - [anon_sym_PIPE_AMP] = ACTIONS(765), - [anon_sym_AMP_AMP] = ACTIONS(765), - [anon_sym_PIPE_PIPE] = ACTIONS(765), - [anon_sym_LT] = ACTIONS(767), - [anon_sym_GT] = ACTIONS(767), - [anon_sym_GT_GT] = ACTIONS(765), - [anon_sym_AMP_GT] = ACTIONS(767), - [anon_sym_AMP_GT_GT] = ACTIONS(765), - [anon_sym_LT_AMP] = ACTIONS(765), - [anon_sym_GT_AMP] = ACTIONS(765), - [anon_sym_LT_LT] = ACTIONS(767), - [anon_sym_LT_LT_DASH] = ACTIONS(765), - [anon_sym_LT_LT_LT] = ACTIONS(765), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(765), - [anon_sym_AMP] = ACTIONS(767), - }, - [1577] = { - [sym_file_descriptor] = ACTIONS(769), - [sym__concat] = ACTIONS(769), - [ts_builtin_sym_end] = ACTIONS(769), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_esac] = ACTIONS(769), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_RPAREN] = ACTIONS(769), - [anon_sym_SEMI_SEMI] = ACTIONS(769), - [anon_sym_PIPE_AMP] = ACTIONS(769), - [anon_sym_AMP_AMP] = ACTIONS(769), - [anon_sym_PIPE_PIPE] = ACTIONS(769), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_GT] = ACTIONS(769), - [anon_sym_AMP_GT] = ACTIONS(771), - [anon_sym_AMP_GT_GT] = ACTIONS(769), - [anon_sym_LT_AMP] = ACTIONS(769), - [anon_sym_GT_AMP] = ACTIONS(769), - [anon_sym_LT_LT] = ACTIONS(771), - [anon_sym_LT_LT_DASH] = ACTIONS(769), - [anon_sym_LT_LT_LT] = ACTIONS(769), - [anon_sym_BQUOTE] = ACTIONS(769), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(769), - [anon_sym_AMP] = ACTIONS(771), - }, - [1578] = { - [anon_sym_DQUOTE] = ACTIONS(4385), - [anon_sym_DOLLAR] = ACTIONS(775), - [sym__string_content] = ACTIONS(777), - [anon_sym_POUND] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(781), - [anon_sym_STAR] = ACTIONS(783), - [anon_sym_AT] = ACTIONS(783), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_0] = ACTIONS(781), - [anon_sym__] = ACTIONS(781), - }, - [1579] = { - [sym_simple_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [sym_command_substitution] = STATE(141), - [aux_sym_string_repeat1] = STATE(450), - [anon_sym_DQUOTE] = ACTIONS(4385), - [anon_sym_DOLLAR] = ACTIONS(4387), - [sym__string_content] = ACTIONS(257), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(261), - [anon_sym_BQUOTE] = ACTIONS(263), - [sym_comment] = ACTIONS(265), - }, - [1580] = { - [sym_file_descriptor] = ACTIONS(803), - [sym__concat] = ACTIONS(803), - [ts_builtin_sym_end] = ACTIONS(803), - [anon_sym_SEMI] = ACTIONS(805), - [anon_sym_esac] = ACTIONS(803), - [anon_sym_PIPE] = ACTIONS(805), - [anon_sym_RPAREN] = ACTIONS(803), - [anon_sym_SEMI_SEMI] = ACTIONS(803), - [anon_sym_PIPE_AMP] = ACTIONS(803), - [anon_sym_AMP_AMP] = ACTIONS(803), - [anon_sym_PIPE_PIPE] = ACTIONS(803), - [anon_sym_LT] = ACTIONS(805), - [anon_sym_GT] = ACTIONS(805), - [anon_sym_GT_GT] = ACTIONS(803), - [anon_sym_AMP_GT] = ACTIONS(805), - [anon_sym_AMP_GT_GT] = ACTIONS(803), - [anon_sym_LT_AMP] = ACTIONS(803), - [anon_sym_GT_AMP] = ACTIONS(803), - [anon_sym_LT_LT] = ACTIONS(805), - [anon_sym_LT_LT_DASH] = ACTIONS(803), - [anon_sym_LT_LT_LT] = ACTIONS(803), - [anon_sym_BQUOTE] = ACTIONS(803), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(803), - [anon_sym_AMP] = ACTIONS(805), - }, - [1581] = { + [anon_sym_LT] = ACTIONS(809), + [anon_sym_GT] = ACTIONS(809), + [anon_sym_GT_GT] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(809), + [anon_sym_AMP_GT_GT] = ACTIONS(807), + [anon_sym_LT_AMP] = ACTIONS(807), + [anon_sym_GT_AMP] = ACTIONS(807), + [sym__special_characters] = ACTIONS(807), + [anon_sym_DQUOTE] = ACTIONS(807), + [anon_sym_DOLLAR] = ACTIONS(809), + [sym_raw_string] = ACTIONS(807), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(807), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(807), + [anon_sym_BQUOTE] = ACTIONS(807), + [anon_sym_LT_LPAREN] = ACTIONS(807), + [anon_sym_GT_LPAREN] = ACTIONS(807), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(809), + [anon_sym_LF] = ACTIONS(807), + [anon_sym_AMP] = ACTIONS(809), + }, + [1240] = { + [anon_sym_LT] = ACTIONS(3734), + [anon_sym_GT] = ACTIONS(3734), + [anon_sym_GT_GT] = ACTIONS(3736), + [anon_sym_AMP_GT] = ACTIONS(3734), + [anon_sym_AMP_GT_GT] = ACTIONS(3736), + [anon_sym_LT_AMP] = ACTIONS(3736), + [anon_sym_GT_AMP] = ACTIONS(3736), + [sym_comment] = ACTIONS(55), + }, + [1241] = { + [sym_concatenation] = STATE(1166), + [sym_string] = STATE(1659), + [sym_simple_expansion] = STATE(1659), + [sym_string_expansion] = STATE(1659), + [sym_expansion] = STATE(1659), + [sym_command_substitution] = STATE(1659), + [sym_process_substitution] = STATE(1659), + [sym__special_characters] = ACTIONS(3738), + [anon_sym_DQUOTE] = ACTIONS(2396), + [anon_sym_DOLLAR] = ACTIONS(2398), + [sym_raw_string] = ACTIONS(3740), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2402), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2404), + [anon_sym_BQUOTE] = ACTIONS(2406), + [anon_sym_LT_LPAREN] = ACTIONS(2408), + [anon_sym_GT_LPAREN] = ACTIONS(2408), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(3740), + }, + [1242] = { + [sym_concatenation] = STATE(1170), + [sym_string] = STATE(1661), + [sym_simple_expansion] = STATE(1661), + [sym_string_expansion] = STATE(1661), + [sym_expansion] = STATE(1661), + [sym_command_substitution] = STATE(1661), + [sym_process_substitution] = STATE(1661), + [sym__special_characters] = ACTIONS(3742), + [anon_sym_DQUOTE] = ACTIONS(2396), + [anon_sym_DOLLAR] = ACTIONS(2398), + [sym_raw_string] = ACTIONS(3744), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2402), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2404), + [anon_sym_BQUOTE] = ACTIONS(2406), + [anon_sym_LT_LPAREN] = ACTIONS(2408), + [anon_sym_GT_LPAREN] = ACTIONS(2408), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(3744), + }, + [1243] = { + [sym_file_redirect] = STATE(1662), + [sym_heredoc_redirect] = STATE(1662), + [sym_herestring_redirect] = STATE(1662), + [aux_sym_while_statement_repeat1] = STATE(1662), + [sym_file_descriptor] = ACTIONS(2616), + [anon_sym_SEMI] = ACTIONS(2418), + [anon_sym_PIPE] = ACTIONS(2418), + [anon_sym_RPAREN] = ACTIONS(2416), + [anon_sym_SEMI_SEMI] = ACTIONS(2416), + [anon_sym_PIPE_AMP] = ACTIONS(2416), + [anon_sym_AMP_AMP] = ACTIONS(2416), + [anon_sym_PIPE_PIPE] = ACTIONS(2416), + [anon_sym_LT] = ACTIONS(2618), + [anon_sym_GT] = ACTIONS(2618), + [anon_sym_GT_GT] = ACTIONS(2620), + [anon_sym_AMP_GT] = ACTIONS(2618), + [anon_sym_AMP_GT_GT] = ACTIONS(2620), + [anon_sym_LT_AMP] = ACTIONS(2620), + [anon_sym_GT_AMP] = ACTIONS(2620), + [anon_sym_LT_LT] = ACTIONS(1308), + [anon_sym_LT_LT_DASH] = ACTIONS(1310), + [anon_sym_LT_LT_LT] = ACTIONS(2622), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2416), + [anon_sym_AMP] = ACTIONS(2418), + }, + [1244] = { + [sym_file_redirect] = STATE(780), + [sym_heredoc_redirect] = STATE(780), + [sym_heredoc_body] = STATE(1188), + [sym_herestring_redirect] = STATE(780), + [aux_sym_while_statement_repeat1] = STATE(780), + [sym__simple_heredoc_body] = ACTIONS(339), + [sym__heredoc_body_beginning] = ACTIONS(341), + [sym_file_descriptor] = ACTIONS(633), + [anon_sym_SEMI] = ACTIONS(2479), + [anon_sym_PIPE] = ACTIONS(2479), + [anon_sym_RPAREN] = ACTIONS(2477), + [anon_sym_SEMI_SEMI] = ACTIONS(2477), + [anon_sym_PIPE_AMP] = ACTIONS(2477), + [anon_sym_AMP_AMP] = ACTIONS(2477), + [anon_sym_PIPE_PIPE] = ACTIONS(2477), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_GT] = ACTIONS(637), + [anon_sym_GT_GT] = ACTIONS(639), + [anon_sym_AMP_GT] = ACTIONS(637), + [anon_sym_AMP_GT_GT] = ACTIONS(639), + [anon_sym_LT_AMP] = ACTIONS(639), + [anon_sym_GT_AMP] = ACTIONS(639), + [anon_sym_LT_LT] = ACTIONS(355), + [anon_sym_LT_LT_DASH] = ACTIONS(357), + [anon_sym_LT_LT_LT] = ACTIONS(641), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2477), + [anon_sym_AMP] = ACTIONS(2479), + }, + [1245] = { + [sym_compound_statement] = STATE(1663), + [anon_sym_LBRACE] = ACTIONS(595), + [sym_comment] = ACTIONS(55), + }, + [1246] = { + [anon_sym_LT] = ACTIONS(3746), + [anon_sym_GT] = ACTIONS(3746), + [anon_sym_GT_GT] = ACTIONS(3748), + [anon_sym_AMP_GT] = ACTIONS(3746), + [anon_sym_AMP_GT_GT] = ACTIONS(3748), + [anon_sym_LT_AMP] = ACTIONS(3748), + [anon_sym_GT_AMP] = ACTIONS(3748), + [sym_comment] = ACTIONS(55), + }, + [1247] = { + [sym_concatenation] = STATE(1238), + [sym_string] = STATE(1666), + [sym_simple_expansion] = STATE(1666), + [sym_string_expansion] = STATE(1666), + [sym_expansion] = STATE(1666), + [sym_command_substitution] = STATE(1666), + [sym_process_substitution] = STATE(1666), + [sym__special_characters] = ACTIONS(3750), + [anon_sym_DQUOTE] = ACTIONS(229), + [anon_sym_DOLLAR] = ACTIONS(231), + [sym_raw_string] = ACTIONS(3752), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), + [anon_sym_BQUOTE] = ACTIONS(239), + [anon_sym_LT_LPAREN] = ACTIONS(241), + [anon_sym_GT_LPAREN] = ACTIONS(241), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(3752), + }, + [1248] = { + [aux_sym_concatenation_repeat1] = STATE(764), + [sym__concat] = ACTIONS(697), + [sym_variable_name] = ACTIONS(1128), + [anon_sym_SEMI] = ACTIONS(1132), + [anon_sym_PIPE] = ACTIONS(1132), + [anon_sym_RPAREN] = ACTIONS(1128), + [anon_sym_SEMI_SEMI] = ACTIONS(1128), + [anon_sym_PIPE_AMP] = ACTIONS(1128), + [anon_sym_AMP_AMP] = ACTIONS(1128), + [anon_sym_PIPE_PIPE] = ACTIONS(1128), + [sym__special_characters] = ACTIONS(1128), + [anon_sym_DQUOTE] = ACTIONS(1128), + [anon_sym_DOLLAR] = ACTIONS(1132), + [sym_raw_string] = ACTIONS(1128), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1128), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1128), + [anon_sym_BQUOTE] = ACTIONS(1128), + [anon_sym_LT_LPAREN] = ACTIONS(1128), + [anon_sym_GT_LPAREN] = ACTIONS(1128), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1132), + [sym_word] = ACTIONS(1132), + [anon_sym_LF] = ACTIONS(1128), + [anon_sym_AMP] = ACTIONS(1132), + }, + [1249] = { + [aux_sym_concatenation_repeat1] = STATE(764), + [sym__concat] = ACTIONS(697), + [sym_variable_name] = ACTIONS(1106), + [anon_sym_SEMI] = ACTIONS(1108), + [anon_sym_PIPE] = ACTIONS(1108), + [anon_sym_RPAREN] = ACTIONS(1106), + [anon_sym_SEMI_SEMI] = ACTIONS(1106), + [anon_sym_PIPE_AMP] = ACTIONS(1106), + [anon_sym_AMP_AMP] = ACTIONS(1106), + [anon_sym_PIPE_PIPE] = ACTIONS(1106), + [sym__special_characters] = ACTIONS(1106), + [anon_sym_DQUOTE] = ACTIONS(1106), + [anon_sym_DOLLAR] = ACTIONS(1108), + [sym_raw_string] = ACTIONS(1106), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1106), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1106), + [anon_sym_BQUOTE] = ACTIONS(1106), + [anon_sym_LT_LPAREN] = ACTIONS(1106), + [anon_sym_GT_LPAREN] = ACTIONS(1106), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1108), + [sym_word] = ACTIONS(1108), + [anon_sym_LF] = ACTIONS(1106), + [anon_sym_AMP] = ACTIONS(1108), + }, + [1250] = { + [aux_sym_concatenation_repeat1] = STATE(1250), + [sym__concat] = ACTIONS(2754), + [sym_variable_name] = ACTIONS(1763), + [anon_sym_SEMI] = ACTIONS(1765), + [anon_sym_PIPE] = ACTIONS(1765), + [anon_sym_RPAREN] = ACTIONS(1763), + [anon_sym_SEMI_SEMI] = ACTIONS(1763), + [anon_sym_PIPE_AMP] = ACTIONS(1763), + [anon_sym_AMP_AMP] = ACTIONS(1763), + [anon_sym_PIPE_PIPE] = ACTIONS(1763), + [sym__special_characters] = ACTIONS(1763), + [anon_sym_DQUOTE] = ACTIONS(1763), + [anon_sym_DOLLAR] = ACTIONS(1765), + [sym_raw_string] = ACTIONS(1763), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1763), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1763), + [anon_sym_BQUOTE] = ACTIONS(1763), + [anon_sym_LT_LPAREN] = ACTIONS(1763), + [anon_sym_GT_LPAREN] = ACTIONS(1763), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1765), + [sym_word] = ACTIONS(1765), + [anon_sym_LF] = ACTIONS(1763), + [anon_sym_AMP] = ACTIONS(1765), + }, + [1251] = { + [aux_sym_concatenation_repeat1] = STATE(1251), + [sym__concat] = ACTIONS(2807), + [anon_sym_SEMI] = ACTIONS(1765), + [anon_sym_PIPE] = ACTIONS(1765), + [anon_sym_RPAREN] = ACTIONS(1763), + [anon_sym_SEMI_SEMI] = ACTIONS(1763), + [anon_sym_PIPE_AMP] = ACTIONS(1763), + [anon_sym_AMP_AMP] = ACTIONS(1763), + [anon_sym_PIPE_PIPE] = ACTIONS(1763), + [sym__special_characters] = ACTIONS(1763), + [anon_sym_DQUOTE] = ACTIONS(1763), + [anon_sym_DOLLAR] = ACTIONS(1765), + [sym_raw_string] = ACTIONS(1763), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1763), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1763), + [anon_sym_BQUOTE] = ACTIONS(1763), + [anon_sym_LT_LPAREN] = ACTIONS(1763), + [anon_sym_GT_LPAREN] = ACTIONS(1763), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1765), + [sym_word] = ACTIONS(1765), + [anon_sym_LF] = ACTIONS(1763), + [anon_sym_AMP] = ACTIONS(1765), + }, + [1252] = { + [sym_file_redirect] = STATE(1437), + [sym_file_descriptor] = ACTIONS(2626), + [anon_sym_SEMI] = ACTIONS(2614), + [anon_sym_PIPE] = ACTIONS(2614), + [anon_sym_RPAREN] = ACTIONS(2612), + [anon_sym_SEMI_SEMI] = ACTIONS(2612), + [anon_sym_PIPE_AMP] = ACTIONS(2612), + [anon_sym_AMP_AMP] = ACTIONS(2612), + [anon_sym_PIPE_PIPE] = ACTIONS(2612), + [anon_sym_LT] = ACTIONS(2628), + [anon_sym_GT] = ACTIONS(2628), + [anon_sym_GT_GT] = ACTIONS(2630), + [anon_sym_AMP_GT] = ACTIONS(2628), + [anon_sym_AMP_GT_GT] = ACTIONS(2630), + [anon_sym_LT_AMP] = ACTIONS(2630), + [anon_sym_GT_AMP] = ACTIONS(2630), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2612), + [anon_sym_AMP] = ACTIONS(2614), + }, + [1253] = { + [aux_sym_concatenation_repeat1] = STATE(1255), + [sym__simple_heredoc_body] = ACTIONS(1088), + [sym__heredoc_body_beginning] = ACTIONS(1088), + [sym_file_descriptor] = ACTIONS(1088), + [sym__concat] = ACTIONS(265), + [anon_sym_SEMI] = ACTIONS(1090), + [anon_sym_PIPE] = ACTIONS(1090), + [anon_sym_RPAREN] = ACTIONS(1088), + [anon_sym_SEMI_SEMI] = ACTIONS(1088), + [anon_sym_PIPE_AMP] = ACTIONS(1088), + [anon_sym_AMP_AMP] = ACTIONS(1088), + [anon_sym_PIPE_PIPE] = ACTIONS(1088), + [anon_sym_LT] = ACTIONS(1090), + [anon_sym_GT] = ACTIONS(1090), + [anon_sym_GT_GT] = ACTIONS(1088), + [anon_sym_AMP_GT] = ACTIONS(1090), + [anon_sym_AMP_GT_GT] = ACTIONS(1088), + [anon_sym_LT_AMP] = ACTIONS(1088), + [anon_sym_GT_AMP] = ACTIONS(1088), + [anon_sym_LT_LT] = ACTIONS(1090), + [anon_sym_LT_LT_DASH] = ACTIONS(1088), + [anon_sym_LT_LT_LT] = ACTIONS(1088), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1088), + [anon_sym_AMP] = ACTIONS(1090), + }, + [1254] = { + [aux_sym_concatenation_repeat1] = STATE(1255), + [sym__simple_heredoc_body] = ACTIONS(1092), + [sym__heredoc_body_beginning] = ACTIONS(1092), + [sym_file_descriptor] = ACTIONS(1092), + [sym__concat] = ACTIONS(265), + [anon_sym_SEMI] = ACTIONS(1094), + [anon_sym_PIPE] = ACTIONS(1094), + [anon_sym_RPAREN] = ACTIONS(1092), + [anon_sym_SEMI_SEMI] = ACTIONS(1092), + [anon_sym_PIPE_AMP] = ACTIONS(1092), + [anon_sym_AMP_AMP] = ACTIONS(1092), + [anon_sym_PIPE_PIPE] = ACTIONS(1092), + [anon_sym_LT] = ACTIONS(1094), + [anon_sym_GT] = ACTIONS(1094), + [anon_sym_GT_GT] = ACTIONS(1092), + [anon_sym_AMP_GT] = ACTIONS(1094), + [anon_sym_AMP_GT_GT] = ACTIONS(1092), + [anon_sym_LT_AMP] = ACTIONS(1092), + [anon_sym_GT_AMP] = ACTIONS(1092), + [anon_sym_LT_LT] = ACTIONS(1094), + [anon_sym_LT_LT_DASH] = ACTIONS(1092), + [anon_sym_LT_LT_LT] = ACTIONS(1092), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1092), + [anon_sym_AMP] = ACTIONS(1094), + }, + [1255] = { + [aux_sym_concatenation_repeat1] = STATE(1667), + [sym__simple_heredoc_body] = ACTIONS(807), + [sym__heredoc_body_beginning] = ACTIONS(807), [sym_file_descriptor] = ACTIONS(807), - [sym__concat] = ACTIONS(807), - [ts_builtin_sym_end] = ACTIONS(807), + [sym__concat] = ACTIONS(265), [anon_sym_SEMI] = ACTIONS(809), - [anon_sym_esac] = ACTIONS(807), [anon_sym_PIPE] = ACTIONS(809), [anon_sym_RPAREN] = ACTIONS(807), [anon_sym_SEMI_SEMI] = ACTIONS(807), @@ -47624,12 +42186,8018 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(809), [anon_sym_LT_LT_DASH] = ACTIONS(807), [anon_sym_LT_LT_LT] = ACTIONS(807), - [anon_sym_BQUOTE] = ACTIONS(807), - [sym_comment] = ACTIONS(53), + [sym_comment] = ACTIONS(55), [anon_sym_LF] = ACTIONS(807), [anon_sym_AMP] = ACTIONS(809), }, + [1256] = { + [ts_builtin_sym_end] = ACTIONS(3754), + [anon_sym_SEMI] = ACTIONS(3756), + [anon_sym_esac] = ACTIONS(3754), + [anon_sym_PIPE] = ACTIONS(3756), + [anon_sym_RPAREN] = ACTIONS(3754), + [anon_sym_SEMI_SEMI] = ACTIONS(3754), + [anon_sym_PIPE_AMP] = ACTIONS(3754), + [anon_sym_AMP_AMP] = ACTIONS(3754), + [anon_sym_PIPE_PIPE] = ACTIONS(3754), + [anon_sym_BQUOTE] = ACTIONS(3754), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(3754), + [anon_sym_AMP] = ACTIONS(3756), + }, + [1257] = { + [sym_file_redirect] = STATE(780), + [sym_heredoc_redirect] = STATE(780), + [sym_heredoc_body] = STATE(1449), + [sym_herestring_redirect] = STATE(780), + [aux_sym_while_statement_repeat1] = STATE(780), + [sym__simple_heredoc_body] = ACTIONS(339), + [sym__heredoc_body_beginning] = ACTIONS(341), + [sym_file_descriptor] = ACTIONS(633), + [anon_sym_SEMI] = ACTIONS(3207), + [anon_sym_PIPE] = ACTIONS(3207), + [anon_sym_RPAREN] = ACTIONS(3205), + [anon_sym_SEMI_SEMI] = ACTIONS(3205), + [anon_sym_PIPE_AMP] = ACTIONS(3205), + [anon_sym_AMP_AMP] = ACTIONS(3205), + [anon_sym_PIPE_PIPE] = ACTIONS(3205), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_GT] = ACTIONS(637), + [anon_sym_GT_GT] = ACTIONS(639), + [anon_sym_AMP_GT] = ACTIONS(637), + [anon_sym_AMP_GT_GT] = ACTIONS(639), + [anon_sym_LT_AMP] = ACTIONS(639), + [anon_sym_GT_AMP] = ACTIONS(639), + [anon_sym_LT_LT] = ACTIONS(355), + [anon_sym_LT_LT_DASH] = ACTIONS(357), + [anon_sym_LT_LT_LT] = ACTIONS(641), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(3205), + [anon_sym_AMP] = ACTIONS(3207), + }, + [1258] = { + [sym_file_descriptor] = ACTIONS(2099), + [sym_variable_name] = ACTIONS(2099), + [anon_sym_LT] = ACTIONS(2101), + [anon_sym_GT] = ACTIONS(2101), + [anon_sym_GT_GT] = ACTIONS(2099), + [anon_sym_AMP_GT] = ACTIONS(2101), + [anon_sym_AMP_GT_GT] = ACTIONS(2099), + [anon_sym_LT_AMP] = ACTIONS(2099), + [anon_sym_GT_AMP] = ACTIONS(2099), + [sym__special_characters] = ACTIONS(2099), + [anon_sym_DQUOTE] = ACTIONS(2099), + [anon_sym_DOLLAR] = ACTIONS(2101), + [sym_raw_string] = ACTIONS(2099), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2099), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2099), + [anon_sym_BQUOTE] = ACTIONS(2099), + [anon_sym_LT_LPAREN] = ACTIONS(2099), + [anon_sym_GT_LPAREN] = ACTIONS(2099), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(2099), + }, + [1259] = { + [sym_concatenation] = STATE(1026), + [sym_string] = STATE(558), + [sym_simple_expansion] = STATE(558), + [sym_string_expansion] = STATE(558), + [sym_expansion] = STATE(558), + [sym_command_substitution] = STATE(558), + [sym_process_substitution] = STATE(558), + [aux_sym_for_statement_repeat1] = STATE(1026), + [anon_sym_RPAREN] = ACTIONS(3758), + [sym__special_characters] = ACTIONS(1112), + [anon_sym_DQUOTE] = ACTIONS(1114), + [anon_sym_DOLLAR] = ACTIONS(1116), + [sym_raw_string] = ACTIONS(1118), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1120), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1122), + [anon_sym_BQUOTE] = ACTIONS(1124), + [anon_sym_LT_LPAREN] = ACTIONS(1126), + [anon_sym_GT_LPAREN] = ACTIONS(1126), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1118), + }, + [1260] = { + [sym__concat] = ACTIONS(2959), + [anon_sym_AMP_AMP] = ACTIONS(2959), + [anon_sym_PIPE_PIPE] = ACTIONS(2959), + [anon_sym_RBRACK] = ACTIONS(2959), + [anon_sym_EQ_TILDE] = ACTIONS(2959), + [anon_sym_EQ_EQ] = ACTIONS(2959), + [anon_sym_EQ] = ACTIONS(2961), + [anon_sym_PLUS_EQ] = ACTIONS(2959), + [anon_sym_LT] = ACTIONS(2961), + [anon_sym_GT] = ACTIONS(2961), + [anon_sym_BANG_EQ] = ACTIONS(2959), + [anon_sym_PLUS] = ACTIONS(2961), + [anon_sym_DASH] = ACTIONS(2961), + [anon_sym_DASH_EQ] = ACTIONS(2959), + [anon_sym_LT_EQ] = ACTIONS(2959), + [anon_sym_GT_EQ] = ACTIONS(2959), + [anon_sym_PLUS_PLUS] = ACTIONS(2959), + [anon_sym_DASH_DASH] = ACTIONS(2959), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(2959), + }, + [1261] = { + [sym__concat] = ACTIONS(2973), + [anon_sym_AMP_AMP] = ACTIONS(2973), + [anon_sym_PIPE_PIPE] = ACTIONS(2973), + [anon_sym_RBRACK] = ACTIONS(2973), + [anon_sym_EQ_TILDE] = ACTIONS(2973), + [anon_sym_EQ_EQ] = ACTIONS(2973), + [anon_sym_EQ] = ACTIONS(2975), + [anon_sym_PLUS_EQ] = ACTIONS(2973), + [anon_sym_LT] = ACTIONS(2975), + [anon_sym_GT] = ACTIONS(2975), + [anon_sym_BANG_EQ] = ACTIONS(2973), + [anon_sym_PLUS] = ACTIONS(2975), + [anon_sym_DASH] = ACTIONS(2975), + [anon_sym_DASH_EQ] = ACTIONS(2973), + [anon_sym_LT_EQ] = ACTIONS(2973), + [anon_sym_GT_EQ] = ACTIONS(2973), + [anon_sym_PLUS_PLUS] = ACTIONS(2973), + [anon_sym_DASH_DASH] = ACTIONS(2973), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(2973), + }, + [1262] = { + [aux_sym_concatenation_repeat1] = STATE(1366), + [sym__concat] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(3760), + [sym_comment] = ACTIONS(55), + }, + [1263] = { + [aux_sym_concatenation_repeat1] = STATE(1366), + [sym__concat] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(3762), + [sym_comment] = ACTIONS(55), + }, + [1264] = { + [anon_sym_RBRACE] = ACTIONS(3762), + [sym_comment] = ACTIONS(55), + }, + [1265] = { + [sym_concatenation] = STATE(1673), + [sym_string] = STATE(1672), + [sym_simple_expansion] = STATE(1672), + [sym_string_expansion] = STATE(1672), + [sym_expansion] = STATE(1672), + [sym_command_substitution] = STATE(1672), + [sym_process_substitution] = STATE(1672), + [anon_sym_RBRACE] = ACTIONS(3762), + [sym__special_characters] = ACTIONS(3764), + [anon_sym_DQUOTE] = ACTIONS(1841), + [anon_sym_DOLLAR] = ACTIONS(1843), + [sym_raw_string] = ACTIONS(3766), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1849), + [anon_sym_BQUOTE] = ACTIONS(1851), + [anon_sym_LT_LPAREN] = ACTIONS(1853), + [anon_sym_GT_LPAREN] = ACTIONS(1853), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(3766), + }, + [1266] = { + [sym__concat] = ACTIONS(3009), + [anon_sym_AMP_AMP] = ACTIONS(3009), + [anon_sym_PIPE_PIPE] = ACTIONS(3009), + [anon_sym_RBRACK] = ACTIONS(3009), + [anon_sym_EQ_TILDE] = ACTIONS(3009), + [anon_sym_EQ_EQ] = ACTIONS(3009), + [anon_sym_EQ] = ACTIONS(3011), + [anon_sym_PLUS_EQ] = ACTIONS(3009), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_GT] = ACTIONS(3011), + [anon_sym_BANG_EQ] = ACTIONS(3009), + [anon_sym_PLUS] = ACTIONS(3011), + [anon_sym_DASH] = ACTIONS(3011), + [anon_sym_DASH_EQ] = ACTIONS(3009), + [anon_sym_LT_EQ] = ACTIONS(3009), + [anon_sym_GT_EQ] = ACTIONS(3009), + [anon_sym_PLUS_PLUS] = ACTIONS(3009), + [anon_sym_DASH_DASH] = ACTIONS(3009), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(3009), + }, + [1267] = { + [sym_concatenation] = STATE(1676), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1676), + [sym_regex] = ACTIONS(3768), + [anon_sym_RBRACE] = ACTIONS(3770), + [anon_sym_EQ] = ACTIONS(3772), + [anon_sym_DASH] = ACTIONS(3772), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(3774), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(3772), + [anon_sym_COLON_QMARK] = ACTIONS(3772), + [anon_sym_COLON_DASH] = ACTIONS(3772), + [anon_sym_PERCENT] = ACTIONS(3772), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1268] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(3770), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1269] = { + [sym_concatenation] = STATE(1678), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1678), + [sym_regex] = ACTIONS(3776), + [anon_sym_RBRACE] = ACTIONS(3762), + [anon_sym_EQ] = ACTIONS(3778), + [anon_sym_DASH] = ACTIONS(3778), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(3780), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(3778), + [anon_sym_COLON_QMARK] = ACTIONS(3778), + [anon_sym_COLON_DASH] = ACTIONS(3778), + [anon_sym_PERCENT] = ACTIONS(3778), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1270] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(3762), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1271] = { + [sym_concatenation] = STATE(1680), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1680), + [anon_sym_RBRACE] = ACTIONS(3782), + [anon_sym_EQ] = ACTIONS(3784), + [anon_sym_DASH] = ACTIONS(3784), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(3786), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(3784), + [anon_sym_COLON_QMARK] = ACTIONS(3784), + [anon_sym_COLON_DASH] = ACTIONS(3784), + [anon_sym_PERCENT] = ACTIONS(3784), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1272] = { + [sym__concat] = ACTIONS(3065), + [anon_sym_AMP_AMP] = ACTIONS(3065), + [anon_sym_PIPE_PIPE] = ACTIONS(3065), + [anon_sym_RBRACK] = ACTIONS(3065), + [anon_sym_EQ_TILDE] = ACTIONS(3065), + [anon_sym_EQ_EQ] = ACTIONS(3065), + [anon_sym_EQ] = ACTIONS(3067), + [anon_sym_PLUS_EQ] = ACTIONS(3065), + [anon_sym_LT] = ACTIONS(3067), + [anon_sym_GT] = ACTIONS(3067), + [anon_sym_BANG_EQ] = ACTIONS(3065), + [anon_sym_PLUS] = ACTIONS(3067), + [anon_sym_DASH] = ACTIONS(3067), + [anon_sym_DASH_EQ] = ACTIONS(3065), + [anon_sym_LT_EQ] = ACTIONS(3065), + [anon_sym_GT_EQ] = ACTIONS(3065), + [anon_sym_PLUS_PLUS] = ACTIONS(3065), + [anon_sym_DASH_DASH] = ACTIONS(3065), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(3065), + }, + [1273] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(3782), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1274] = { + [sym_concatenation] = STATE(1678), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1678), + [anon_sym_RBRACE] = ACTIONS(3762), + [anon_sym_EQ] = ACTIONS(3778), + [anon_sym_DASH] = ACTIONS(3778), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(3780), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(3778), + [anon_sym_COLON_QMARK] = ACTIONS(3778), + [anon_sym_COLON_DASH] = ACTIONS(3778), + [anon_sym_PERCENT] = ACTIONS(3778), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1275] = { + [sym__concat] = ACTIONS(3120), + [anon_sym_AMP_AMP] = ACTIONS(3120), + [anon_sym_PIPE_PIPE] = ACTIONS(3120), + [anon_sym_RBRACK] = ACTIONS(3120), + [anon_sym_EQ_TILDE] = ACTIONS(3120), + [anon_sym_EQ_EQ] = ACTIONS(3120), + [anon_sym_EQ] = ACTIONS(3122), + [anon_sym_PLUS_EQ] = ACTIONS(3120), + [anon_sym_LT] = ACTIONS(3122), + [anon_sym_GT] = ACTIONS(3122), + [anon_sym_BANG_EQ] = ACTIONS(3120), + [anon_sym_PLUS] = ACTIONS(3122), + [anon_sym_DASH] = ACTIONS(3122), + [anon_sym_DASH_EQ] = ACTIONS(3120), + [anon_sym_LT_EQ] = ACTIONS(3120), + [anon_sym_GT_EQ] = ACTIONS(3120), + [anon_sym_PLUS_PLUS] = ACTIONS(3120), + [anon_sym_DASH_DASH] = ACTIONS(3120), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(3120), + }, + [1276] = { + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(3788), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), + }, + [1277] = { + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(3788), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), + }, + [1278] = { + [sym__concat] = ACTIONS(3158), + [anon_sym_AMP_AMP] = ACTIONS(3158), + [anon_sym_PIPE_PIPE] = ACTIONS(3158), + [anon_sym_RBRACK] = ACTIONS(3158), + [anon_sym_EQ_TILDE] = ACTIONS(3158), + [anon_sym_EQ_EQ] = ACTIONS(3158), + [anon_sym_EQ] = ACTIONS(3160), + [anon_sym_PLUS_EQ] = ACTIONS(3158), + [anon_sym_LT] = ACTIONS(3160), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_BANG_EQ] = ACTIONS(3158), + [anon_sym_PLUS] = ACTIONS(3160), + [anon_sym_DASH] = ACTIONS(3160), + [anon_sym_DASH_EQ] = ACTIONS(3158), + [anon_sym_LT_EQ] = ACTIONS(3158), + [anon_sym_GT_EQ] = ACTIONS(3158), + [anon_sym_PLUS_PLUS] = ACTIONS(3158), + [anon_sym_DASH_DASH] = ACTIONS(3158), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(3158), + }, + [1279] = { + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(3790), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), + }, + [1280] = { + [sym_variable_name] = ACTIONS(2099), + [ts_builtin_sym_end] = ACTIONS(2099), + [anon_sym_SEMI] = ACTIONS(2101), + [anon_sym_PIPE] = ACTIONS(2101), + [anon_sym_RPAREN] = ACTIONS(2099), + [anon_sym_SEMI_SEMI] = ACTIONS(2099), + [anon_sym_PIPE_AMP] = ACTIONS(2099), + [anon_sym_AMP_AMP] = ACTIONS(2099), + [anon_sym_PIPE_PIPE] = ACTIONS(2099), + [sym__special_characters] = ACTIONS(2099), + [anon_sym_DQUOTE] = ACTIONS(2099), + [anon_sym_DOLLAR] = ACTIONS(2101), + [sym_raw_string] = ACTIONS(2099), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2099), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2099), + [anon_sym_BQUOTE] = ACTIONS(2099), + [anon_sym_LT_LPAREN] = ACTIONS(2099), + [anon_sym_GT_LPAREN] = ACTIONS(2099), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2101), + [sym_word] = ACTIONS(2101), + [anon_sym_LF] = ACTIONS(2099), + [anon_sym_AMP] = ACTIONS(2101), + }, + [1281] = { + [sym_concatenation] = STATE(1026), + [sym_string] = STATE(558), + [sym_simple_expansion] = STATE(558), + [sym_string_expansion] = STATE(558), + [sym_expansion] = STATE(558), + [sym_command_substitution] = STATE(558), + [sym_process_substitution] = STATE(558), + [aux_sym_for_statement_repeat1] = STATE(1026), + [anon_sym_RPAREN] = ACTIONS(3792), + [sym__special_characters] = ACTIONS(1112), + [anon_sym_DQUOTE] = ACTIONS(1114), + [anon_sym_DOLLAR] = ACTIONS(1116), + [sym_raw_string] = ACTIONS(1118), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1120), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1122), + [anon_sym_BQUOTE] = ACTIONS(1124), + [anon_sym_LT_LPAREN] = ACTIONS(1126), + [anon_sym_GT_LPAREN] = ACTIONS(1126), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1118), + }, + [1282] = { + [sym__concat] = ACTIONS(2959), + [sym_variable_name] = ACTIONS(2959), + [ts_builtin_sym_end] = ACTIONS(2959), + [anon_sym_SEMI] = ACTIONS(2961), + [anon_sym_PIPE] = ACTIONS(2961), + [anon_sym_RPAREN] = ACTIONS(2959), + [anon_sym_SEMI_SEMI] = ACTIONS(2959), + [anon_sym_PIPE_AMP] = ACTIONS(2959), + [anon_sym_AMP_AMP] = ACTIONS(2959), + [anon_sym_PIPE_PIPE] = ACTIONS(2959), + [sym__special_characters] = ACTIONS(2959), + [anon_sym_DQUOTE] = ACTIONS(2959), + [anon_sym_DOLLAR] = ACTIONS(2961), + [sym_raw_string] = ACTIONS(2959), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2959), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2959), + [anon_sym_BQUOTE] = ACTIONS(2959), + [anon_sym_LT_LPAREN] = ACTIONS(2959), + [anon_sym_GT_LPAREN] = ACTIONS(2959), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2961), + [sym_word] = ACTIONS(2961), + [anon_sym_LF] = ACTIONS(2959), + [anon_sym_AMP] = ACTIONS(2961), + }, + [1283] = { + [sym__concat] = ACTIONS(2973), + [sym_variable_name] = ACTIONS(2973), + [ts_builtin_sym_end] = ACTIONS(2973), + [anon_sym_SEMI] = ACTIONS(2975), + [anon_sym_PIPE] = ACTIONS(2975), + [anon_sym_RPAREN] = ACTIONS(2973), + [anon_sym_SEMI_SEMI] = ACTIONS(2973), + [anon_sym_PIPE_AMP] = ACTIONS(2973), + [anon_sym_AMP_AMP] = ACTIONS(2973), + [anon_sym_PIPE_PIPE] = ACTIONS(2973), + [sym__special_characters] = ACTIONS(2973), + [anon_sym_DQUOTE] = ACTIONS(2973), + [anon_sym_DOLLAR] = ACTIONS(2975), + [sym_raw_string] = ACTIONS(2973), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2973), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2973), + [anon_sym_BQUOTE] = ACTIONS(2973), + [anon_sym_LT_LPAREN] = ACTIONS(2973), + [anon_sym_GT_LPAREN] = ACTIONS(2973), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2975), + [sym_word] = ACTIONS(2975), + [anon_sym_LF] = ACTIONS(2973), + [anon_sym_AMP] = ACTIONS(2975), + }, + [1284] = { + [aux_sym_concatenation_repeat1] = STATE(1366), + [sym__concat] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(3794), + [sym_comment] = ACTIONS(55), + }, + [1285] = { + [aux_sym_concatenation_repeat1] = STATE(1366), + [sym__concat] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(3796), + [sym_comment] = ACTIONS(55), + }, + [1286] = { + [anon_sym_RBRACE] = ACTIONS(3796), + [sym_comment] = ACTIONS(55), + }, + [1287] = { + [sym_concatenation] = STATE(1688), + [sym_string] = STATE(1687), + [sym_simple_expansion] = STATE(1687), + [sym_string_expansion] = STATE(1687), + [sym_expansion] = STATE(1687), + [sym_command_substitution] = STATE(1687), + [sym_process_substitution] = STATE(1687), + [anon_sym_RBRACE] = ACTIONS(3796), + [sym__special_characters] = ACTIONS(3798), + [anon_sym_DQUOTE] = ACTIONS(1841), + [anon_sym_DOLLAR] = ACTIONS(1843), + [sym_raw_string] = ACTIONS(3800), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1849), + [anon_sym_BQUOTE] = ACTIONS(1851), + [anon_sym_LT_LPAREN] = ACTIONS(1853), + [anon_sym_GT_LPAREN] = ACTIONS(1853), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(3800), + }, + [1288] = { + [sym__concat] = ACTIONS(3009), + [sym_variable_name] = ACTIONS(3009), + [ts_builtin_sym_end] = ACTIONS(3009), + [anon_sym_SEMI] = ACTIONS(3011), + [anon_sym_PIPE] = ACTIONS(3011), + [anon_sym_RPAREN] = ACTIONS(3009), + [anon_sym_SEMI_SEMI] = ACTIONS(3009), + [anon_sym_PIPE_AMP] = ACTIONS(3009), + [anon_sym_AMP_AMP] = ACTIONS(3009), + [anon_sym_PIPE_PIPE] = ACTIONS(3009), + [sym__special_characters] = ACTIONS(3009), + [anon_sym_DQUOTE] = ACTIONS(3009), + [anon_sym_DOLLAR] = ACTIONS(3011), + [sym_raw_string] = ACTIONS(3009), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3009), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3009), + [anon_sym_BQUOTE] = ACTIONS(3009), + [anon_sym_LT_LPAREN] = ACTIONS(3009), + [anon_sym_GT_LPAREN] = ACTIONS(3009), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3011), + [sym_word] = ACTIONS(3011), + [anon_sym_LF] = ACTIONS(3009), + [anon_sym_AMP] = ACTIONS(3011), + }, + [1289] = { + [sym_concatenation] = STATE(1691), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1691), + [sym_regex] = ACTIONS(3802), + [anon_sym_RBRACE] = ACTIONS(3804), + [anon_sym_EQ] = ACTIONS(3806), + [anon_sym_DASH] = ACTIONS(3806), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(3808), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(3806), + [anon_sym_COLON_QMARK] = ACTIONS(3806), + [anon_sym_COLON_DASH] = ACTIONS(3806), + [anon_sym_PERCENT] = ACTIONS(3806), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1290] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(3804), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1291] = { + [sym_concatenation] = STATE(1693), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1693), + [sym_regex] = ACTIONS(3810), + [anon_sym_RBRACE] = ACTIONS(3796), + [anon_sym_EQ] = ACTIONS(3812), + [anon_sym_DASH] = ACTIONS(3812), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(3814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(3812), + [anon_sym_COLON_QMARK] = ACTIONS(3812), + [anon_sym_COLON_DASH] = ACTIONS(3812), + [anon_sym_PERCENT] = ACTIONS(3812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1292] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(3796), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1293] = { + [sym_concatenation] = STATE(1695), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1695), + [anon_sym_RBRACE] = ACTIONS(3816), + [anon_sym_EQ] = ACTIONS(3818), + [anon_sym_DASH] = ACTIONS(3818), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(3820), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(3818), + [anon_sym_COLON_QMARK] = ACTIONS(3818), + [anon_sym_COLON_DASH] = ACTIONS(3818), + [anon_sym_PERCENT] = ACTIONS(3818), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1294] = { + [sym__concat] = ACTIONS(3065), + [sym_variable_name] = ACTIONS(3065), + [ts_builtin_sym_end] = ACTIONS(3065), + [anon_sym_SEMI] = ACTIONS(3067), + [anon_sym_PIPE] = ACTIONS(3067), + [anon_sym_RPAREN] = ACTIONS(3065), + [anon_sym_SEMI_SEMI] = ACTIONS(3065), + [anon_sym_PIPE_AMP] = ACTIONS(3065), + [anon_sym_AMP_AMP] = ACTIONS(3065), + [anon_sym_PIPE_PIPE] = ACTIONS(3065), + [sym__special_characters] = ACTIONS(3065), + [anon_sym_DQUOTE] = ACTIONS(3065), + [anon_sym_DOLLAR] = ACTIONS(3067), + [sym_raw_string] = ACTIONS(3065), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3065), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3065), + [anon_sym_BQUOTE] = ACTIONS(3065), + [anon_sym_LT_LPAREN] = ACTIONS(3065), + [anon_sym_GT_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3067), + [sym_word] = ACTIONS(3067), + [anon_sym_LF] = ACTIONS(3065), + [anon_sym_AMP] = ACTIONS(3067), + }, + [1295] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(3816), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1296] = { + [sym_concatenation] = STATE(1693), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1693), + [anon_sym_RBRACE] = ACTIONS(3796), + [anon_sym_EQ] = ACTIONS(3812), + [anon_sym_DASH] = ACTIONS(3812), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(3814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(3812), + [anon_sym_COLON_QMARK] = ACTIONS(3812), + [anon_sym_COLON_DASH] = ACTIONS(3812), + [anon_sym_PERCENT] = ACTIONS(3812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1297] = { + [sym__concat] = ACTIONS(3120), + [sym_variable_name] = ACTIONS(3120), + [ts_builtin_sym_end] = ACTIONS(3120), + [anon_sym_SEMI] = ACTIONS(3122), + [anon_sym_PIPE] = ACTIONS(3122), + [anon_sym_RPAREN] = ACTIONS(3120), + [anon_sym_SEMI_SEMI] = ACTIONS(3120), + [anon_sym_PIPE_AMP] = ACTIONS(3120), + [anon_sym_AMP_AMP] = ACTIONS(3120), + [anon_sym_PIPE_PIPE] = ACTIONS(3120), + [sym__special_characters] = ACTIONS(3120), + [anon_sym_DQUOTE] = ACTIONS(3120), + [anon_sym_DOLLAR] = ACTIONS(3122), + [sym_raw_string] = ACTIONS(3120), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3120), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3120), + [anon_sym_BQUOTE] = ACTIONS(3120), + [anon_sym_LT_LPAREN] = ACTIONS(3120), + [anon_sym_GT_LPAREN] = ACTIONS(3120), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3122), + [sym_word] = ACTIONS(3122), + [anon_sym_LF] = ACTIONS(3120), + [anon_sym_AMP] = ACTIONS(3122), + }, + [1298] = { + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(3822), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), + }, + [1299] = { + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(3822), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), + }, + [1300] = { + [sym__concat] = ACTIONS(3158), + [sym_variable_name] = ACTIONS(3158), + [ts_builtin_sym_end] = ACTIONS(3158), + [anon_sym_SEMI] = ACTIONS(3160), + [anon_sym_PIPE] = ACTIONS(3160), + [anon_sym_RPAREN] = ACTIONS(3158), + [anon_sym_SEMI_SEMI] = ACTIONS(3158), + [anon_sym_PIPE_AMP] = ACTIONS(3158), + [anon_sym_AMP_AMP] = ACTIONS(3158), + [anon_sym_PIPE_PIPE] = ACTIONS(3158), + [sym__special_characters] = ACTIONS(3158), + [anon_sym_DQUOTE] = ACTIONS(3158), + [anon_sym_DOLLAR] = ACTIONS(3160), + [sym_raw_string] = ACTIONS(3158), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3158), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3158), + [anon_sym_BQUOTE] = ACTIONS(3158), + [anon_sym_LT_LPAREN] = ACTIONS(3158), + [anon_sym_GT_LPAREN] = ACTIONS(3158), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3160), + [sym_word] = ACTIONS(3160), + [anon_sym_LF] = ACTIONS(3158), + [anon_sym_AMP] = ACTIONS(3160), + }, + [1301] = { + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(3824), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), + }, + [1302] = { + [sym__concat] = ACTIONS(2959), + [ts_builtin_sym_end] = ACTIONS(2959), + [anon_sym_SEMI] = ACTIONS(2961), + [anon_sym_PIPE] = ACTIONS(2961), + [anon_sym_RPAREN] = ACTIONS(2959), + [anon_sym_SEMI_SEMI] = ACTIONS(2959), + [anon_sym_PIPE_AMP] = ACTIONS(2959), + [anon_sym_AMP_AMP] = ACTIONS(2959), + [anon_sym_PIPE_PIPE] = ACTIONS(2959), + [sym__special_characters] = ACTIONS(2959), + [anon_sym_DQUOTE] = ACTIONS(2959), + [anon_sym_DOLLAR] = ACTIONS(2961), + [sym_raw_string] = ACTIONS(2959), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2959), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2959), + [anon_sym_BQUOTE] = ACTIONS(2959), + [anon_sym_LT_LPAREN] = ACTIONS(2959), + [anon_sym_GT_LPAREN] = ACTIONS(2959), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2961), + [sym_word] = ACTIONS(2961), + [anon_sym_LF] = ACTIONS(2959), + [anon_sym_AMP] = ACTIONS(2961), + }, + [1303] = { + [sym__concat] = ACTIONS(2973), + [ts_builtin_sym_end] = ACTIONS(2973), + [anon_sym_SEMI] = ACTIONS(2975), + [anon_sym_PIPE] = ACTIONS(2975), + [anon_sym_RPAREN] = ACTIONS(2973), + [anon_sym_SEMI_SEMI] = ACTIONS(2973), + [anon_sym_PIPE_AMP] = ACTIONS(2973), + [anon_sym_AMP_AMP] = ACTIONS(2973), + [anon_sym_PIPE_PIPE] = ACTIONS(2973), + [sym__special_characters] = ACTIONS(2973), + [anon_sym_DQUOTE] = ACTIONS(2973), + [anon_sym_DOLLAR] = ACTIONS(2975), + [sym_raw_string] = ACTIONS(2973), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2973), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2973), + [anon_sym_BQUOTE] = ACTIONS(2973), + [anon_sym_LT_LPAREN] = ACTIONS(2973), + [anon_sym_GT_LPAREN] = ACTIONS(2973), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2975), + [sym_word] = ACTIONS(2975), + [anon_sym_LF] = ACTIONS(2973), + [anon_sym_AMP] = ACTIONS(2975), + }, + [1304] = { + [aux_sym_concatenation_repeat1] = STATE(1366), + [sym__concat] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(3826), + [sym_comment] = ACTIONS(55), + }, + [1305] = { + [aux_sym_concatenation_repeat1] = STATE(1366), + [sym__concat] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(3828), + [sym_comment] = ACTIONS(55), + }, + [1306] = { + [anon_sym_RBRACE] = ACTIONS(3828), + [sym_comment] = ACTIONS(55), + }, + [1307] = { + [sym_concatenation] = STATE(1702), + [sym_string] = STATE(1701), + [sym_simple_expansion] = STATE(1701), + [sym_string_expansion] = STATE(1701), + [sym_expansion] = STATE(1701), + [sym_command_substitution] = STATE(1701), + [sym_process_substitution] = STATE(1701), + [anon_sym_RBRACE] = ACTIONS(3828), + [sym__special_characters] = ACTIONS(3830), + [anon_sym_DQUOTE] = ACTIONS(1841), + [anon_sym_DOLLAR] = ACTIONS(1843), + [sym_raw_string] = ACTIONS(3832), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1849), + [anon_sym_BQUOTE] = ACTIONS(1851), + [anon_sym_LT_LPAREN] = ACTIONS(1853), + [anon_sym_GT_LPAREN] = ACTIONS(1853), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(3832), + }, + [1308] = { + [sym__concat] = ACTIONS(3009), + [ts_builtin_sym_end] = ACTIONS(3009), + [anon_sym_SEMI] = ACTIONS(3011), + [anon_sym_PIPE] = ACTIONS(3011), + [anon_sym_RPAREN] = ACTIONS(3009), + [anon_sym_SEMI_SEMI] = ACTIONS(3009), + [anon_sym_PIPE_AMP] = ACTIONS(3009), + [anon_sym_AMP_AMP] = ACTIONS(3009), + [anon_sym_PIPE_PIPE] = ACTIONS(3009), + [sym__special_characters] = ACTIONS(3009), + [anon_sym_DQUOTE] = ACTIONS(3009), + [anon_sym_DOLLAR] = ACTIONS(3011), + [sym_raw_string] = ACTIONS(3009), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3009), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3009), + [anon_sym_BQUOTE] = ACTIONS(3009), + [anon_sym_LT_LPAREN] = ACTIONS(3009), + [anon_sym_GT_LPAREN] = ACTIONS(3009), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3011), + [sym_word] = ACTIONS(3011), + [anon_sym_LF] = ACTIONS(3009), + [anon_sym_AMP] = ACTIONS(3011), + }, + [1309] = { + [sym_concatenation] = STATE(1705), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1705), + [sym_regex] = ACTIONS(3834), + [anon_sym_RBRACE] = ACTIONS(3836), + [anon_sym_EQ] = ACTIONS(3838), + [anon_sym_DASH] = ACTIONS(3838), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(3840), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(3838), + [anon_sym_COLON_QMARK] = ACTIONS(3838), + [anon_sym_COLON_DASH] = ACTIONS(3838), + [anon_sym_PERCENT] = ACTIONS(3838), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1310] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(3836), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1311] = { + [sym_concatenation] = STATE(1707), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1707), + [sym_regex] = ACTIONS(3842), + [anon_sym_RBRACE] = ACTIONS(3828), + [anon_sym_EQ] = ACTIONS(3844), + [anon_sym_DASH] = ACTIONS(3844), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(3846), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(3844), + [anon_sym_COLON_QMARK] = ACTIONS(3844), + [anon_sym_COLON_DASH] = ACTIONS(3844), + [anon_sym_PERCENT] = ACTIONS(3844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1312] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(3828), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1313] = { + [sym_concatenation] = STATE(1709), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1709), + [anon_sym_RBRACE] = ACTIONS(3848), + [anon_sym_EQ] = ACTIONS(3850), + [anon_sym_DASH] = ACTIONS(3850), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(3852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(3850), + [anon_sym_COLON_QMARK] = ACTIONS(3850), + [anon_sym_COLON_DASH] = ACTIONS(3850), + [anon_sym_PERCENT] = ACTIONS(3850), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1314] = { + [sym__concat] = ACTIONS(3065), + [ts_builtin_sym_end] = ACTIONS(3065), + [anon_sym_SEMI] = ACTIONS(3067), + [anon_sym_PIPE] = ACTIONS(3067), + [anon_sym_RPAREN] = ACTIONS(3065), + [anon_sym_SEMI_SEMI] = ACTIONS(3065), + [anon_sym_PIPE_AMP] = ACTIONS(3065), + [anon_sym_AMP_AMP] = ACTIONS(3065), + [anon_sym_PIPE_PIPE] = ACTIONS(3065), + [sym__special_characters] = ACTIONS(3065), + [anon_sym_DQUOTE] = ACTIONS(3065), + [anon_sym_DOLLAR] = ACTIONS(3067), + [sym_raw_string] = ACTIONS(3065), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3065), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3065), + [anon_sym_BQUOTE] = ACTIONS(3065), + [anon_sym_LT_LPAREN] = ACTIONS(3065), + [anon_sym_GT_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3067), + [sym_word] = ACTIONS(3067), + [anon_sym_LF] = ACTIONS(3065), + [anon_sym_AMP] = ACTIONS(3067), + }, + [1315] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(3848), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1316] = { + [sym_concatenation] = STATE(1707), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1707), + [anon_sym_RBRACE] = ACTIONS(3828), + [anon_sym_EQ] = ACTIONS(3844), + [anon_sym_DASH] = ACTIONS(3844), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(3846), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(3844), + [anon_sym_COLON_QMARK] = ACTIONS(3844), + [anon_sym_COLON_DASH] = ACTIONS(3844), + [anon_sym_PERCENT] = ACTIONS(3844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1317] = { + [sym__concat] = ACTIONS(3120), + [ts_builtin_sym_end] = ACTIONS(3120), + [anon_sym_SEMI] = ACTIONS(3122), + [anon_sym_PIPE] = ACTIONS(3122), + [anon_sym_RPAREN] = ACTIONS(3120), + [anon_sym_SEMI_SEMI] = ACTIONS(3120), + [anon_sym_PIPE_AMP] = ACTIONS(3120), + [anon_sym_AMP_AMP] = ACTIONS(3120), + [anon_sym_PIPE_PIPE] = ACTIONS(3120), + [sym__special_characters] = ACTIONS(3120), + [anon_sym_DQUOTE] = ACTIONS(3120), + [anon_sym_DOLLAR] = ACTIONS(3122), + [sym_raw_string] = ACTIONS(3120), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3120), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3120), + [anon_sym_BQUOTE] = ACTIONS(3120), + [anon_sym_LT_LPAREN] = ACTIONS(3120), + [anon_sym_GT_LPAREN] = ACTIONS(3120), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3122), + [sym_word] = ACTIONS(3122), + [anon_sym_LF] = ACTIONS(3120), + [anon_sym_AMP] = ACTIONS(3122), + }, + [1318] = { + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(3854), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), + }, + [1319] = { + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(3854), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), + }, + [1320] = { + [sym__concat] = ACTIONS(3158), + [ts_builtin_sym_end] = ACTIONS(3158), + [anon_sym_SEMI] = ACTIONS(3160), + [anon_sym_PIPE] = ACTIONS(3160), + [anon_sym_RPAREN] = ACTIONS(3158), + [anon_sym_SEMI_SEMI] = ACTIONS(3158), + [anon_sym_PIPE_AMP] = ACTIONS(3158), + [anon_sym_AMP_AMP] = ACTIONS(3158), + [anon_sym_PIPE_PIPE] = ACTIONS(3158), + [sym__special_characters] = ACTIONS(3158), + [anon_sym_DQUOTE] = ACTIONS(3158), + [anon_sym_DOLLAR] = ACTIONS(3160), + [sym_raw_string] = ACTIONS(3158), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3158), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3158), + [anon_sym_BQUOTE] = ACTIONS(3158), + [anon_sym_LT_LPAREN] = ACTIONS(3158), + [anon_sym_GT_LPAREN] = ACTIONS(3158), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3160), + [sym_word] = ACTIONS(3160), + [anon_sym_LF] = ACTIONS(3158), + [anon_sym_AMP] = ACTIONS(3160), + }, + [1321] = { + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(3856), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), + }, + [1322] = { + [sym_file_descriptor] = ACTIONS(2959), + [sym__concat] = ACTIONS(2959), + [sym_variable_name] = ACTIONS(2959), + [anon_sym_LT] = ACTIONS(2961), + [anon_sym_GT] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(2959), + [anon_sym_AMP_GT] = ACTIONS(2961), + [anon_sym_AMP_GT_GT] = ACTIONS(2959), + [anon_sym_LT_AMP] = ACTIONS(2959), + [anon_sym_GT_AMP] = ACTIONS(2959), + [sym__special_characters] = ACTIONS(2959), + [anon_sym_DQUOTE] = ACTIONS(2959), + [anon_sym_DOLLAR] = ACTIONS(2961), + [sym_raw_string] = ACTIONS(2959), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2959), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2959), + [anon_sym_BQUOTE] = ACTIONS(2959), + [anon_sym_LT_LPAREN] = ACTIONS(2959), + [anon_sym_GT_LPAREN] = ACTIONS(2959), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(2959), + }, + [1323] = { + [sym_file_descriptor] = ACTIONS(2973), + [sym__concat] = ACTIONS(2973), + [sym_variable_name] = ACTIONS(2973), + [anon_sym_LT] = ACTIONS(2975), + [anon_sym_GT] = ACTIONS(2975), + [anon_sym_GT_GT] = ACTIONS(2973), + [anon_sym_AMP_GT] = ACTIONS(2975), + [anon_sym_AMP_GT_GT] = ACTIONS(2973), + [anon_sym_LT_AMP] = ACTIONS(2973), + [anon_sym_GT_AMP] = ACTIONS(2973), + [sym__special_characters] = ACTIONS(2973), + [anon_sym_DQUOTE] = ACTIONS(2973), + [anon_sym_DOLLAR] = ACTIONS(2975), + [sym_raw_string] = ACTIONS(2973), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2973), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2973), + [anon_sym_BQUOTE] = ACTIONS(2973), + [anon_sym_LT_LPAREN] = ACTIONS(2973), + [anon_sym_GT_LPAREN] = ACTIONS(2973), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(2973), + }, + [1324] = { + [aux_sym_concatenation_repeat1] = STATE(1366), + [sym__concat] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(3858), + [sym_comment] = ACTIONS(55), + }, + [1325] = { + [aux_sym_concatenation_repeat1] = STATE(1366), + [sym__concat] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(3860), + [sym_comment] = ACTIONS(55), + }, + [1326] = { + [anon_sym_RBRACE] = ACTIONS(3860), + [sym_comment] = ACTIONS(55), + }, + [1327] = { + [sym_concatenation] = STATE(1716), + [sym_string] = STATE(1715), + [sym_simple_expansion] = STATE(1715), + [sym_string_expansion] = STATE(1715), + [sym_expansion] = STATE(1715), + [sym_command_substitution] = STATE(1715), + [sym_process_substitution] = STATE(1715), + [anon_sym_RBRACE] = ACTIONS(3860), + [sym__special_characters] = ACTIONS(3862), + [anon_sym_DQUOTE] = ACTIONS(1841), + [anon_sym_DOLLAR] = ACTIONS(1843), + [sym_raw_string] = ACTIONS(3864), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1849), + [anon_sym_BQUOTE] = ACTIONS(1851), + [anon_sym_LT_LPAREN] = ACTIONS(1853), + [anon_sym_GT_LPAREN] = ACTIONS(1853), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(3864), + }, + [1328] = { + [sym_file_descriptor] = ACTIONS(3009), + [sym__concat] = ACTIONS(3009), + [sym_variable_name] = ACTIONS(3009), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_GT] = ACTIONS(3011), + [anon_sym_GT_GT] = ACTIONS(3009), + [anon_sym_AMP_GT] = ACTIONS(3011), + [anon_sym_AMP_GT_GT] = ACTIONS(3009), + [anon_sym_LT_AMP] = ACTIONS(3009), + [anon_sym_GT_AMP] = ACTIONS(3009), + [sym__special_characters] = ACTIONS(3009), + [anon_sym_DQUOTE] = ACTIONS(3009), + [anon_sym_DOLLAR] = ACTIONS(3011), + [sym_raw_string] = ACTIONS(3009), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3009), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3009), + [anon_sym_BQUOTE] = ACTIONS(3009), + [anon_sym_LT_LPAREN] = ACTIONS(3009), + [anon_sym_GT_LPAREN] = ACTIONS(3009), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(3009), + }, + [1329] = { + [sym_concatenation] = STATE(1719), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1719), + [sym_regex] = ACTIONS(3866), + [anon_sym_RBRACE] = ACTIONS(3868), + [anon_sym_EQ] = ACTIONS(3870), + [anon_sym_DASH] = ACTIONS(3870), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(3872), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(3870), + [anon_sym_COLON_QMARK] = ACTIONS(3870), + [anon_sym_COLON_DASH] = ACTIONS(3870), + [anon_sym_PERCENT] = ACTIONS(3870), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1330] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(3868), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1331] = { + [sym_concatenation] = STATE(1721), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1721), + [sym_regex] = ACTIONS(3874), + [anon_sym_RBRACE] = ACTIONS(3860), + [anon_sym_EQ] = ACTIONS(3876), + [anon_sym_DASH] = ACTIONS(3876), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(3878), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(3876), + [anon_sym_COLON_QMARK] = ACTIONS(3876), + [anon_sym_COLON_DASH] = ACTIONS(3876), + [anon_sym_PERCENT] = ACTIONS(3876), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1332] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(3860), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1333] = { + [sym_concatenation] = STATE(1723), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1723), + [anon_sym_RBRACE] = ACTIONS(3880), + [anon_sym_EQ] = ACTIONS(3882), + [anon_sym_DASH] = ACTIONS(3882), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(3884), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(3882), + [anon_sym_COLON_QMARK] = ACTIONS(3882), + [anon_sym_COLON_DASH] = ACTIONS(3882), + [anon_sym_PERCENT] = ACTIONS(3882), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1334] = { + [sym_file_descriptor] = ACTIONS(3065), + [sym__concat] = ACTIONS(3065), + [sym_variable_name] = ACTIONS(3065), + [anon_sym_LT] = ACTIONS(3067), + [anon_sym_GT] = ACTIONS(3067), + [anon_sym_GT_GT] = ACTIONS(3065), + [anon_sym_AMP_GT] = ACTIONS(3067), + [anon_sym_AMP_GT_GT] = ACTIONS(3065), + [anon_sym_LT_AMP] = ACTIONS(3065), + [anon_sym_GT_AMP] = ACTIONS(3065), + [sym__special_characters] = ACTIONS(3065), + [anon_sym_DQUOTE] = ACTIONS(3065), + [anon_sym_DOLLAR] = ACTIONS(3067), + [sym_raw_string] = ACTIONS(3065), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3065), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3065), + [anon_sym_BQUOTE] = ACTIONS(3065), + [anon_sym_LT_LPAREN] = ACTIONS(3065), + [anon_sym_GT_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(3065), + }, + [1335] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(3880), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1336] = { + [sym_concatenation] = STATE(1721), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1721), + [anon_sym_RBRACE] = ACTIONS(3860), + [anon_sym_EQ] = ACTIONS(3876), + [anon_sym_DASH] = ACTIONS(3876), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(3878), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(3876), + [anon_sym_COLON_QMARK] = ACTIONS(3876), + [anon_sym_COLON_DASH] = ACTIONS(3876), + [anon_sym_PERCENT] = ACTIONS(3876), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1337] = { + [sym_file_descriptor] = ACTIONS(3120), + [sym__concat] = ACTIONS(3120), + [sym_variable_name] = ACTIONS(3120), + [anon_sym_LT] = ACTIONS(3122), + [anon_sym_GT] = ACTIONS(3122), + [anon_sym_GT_GT] = ACTIONS(3120), + [anon_sym_AMP_GT] = ACTIONS(3122), + [anon_sym_AMP_GT_GT] = ACTIONS(3120), + [anon_sym_LT_AMP] = ACTIONS(3120), + [anon_sym_GT_AMP] = ACTIONS(3120), + [sym__special_characters] = ACTIONS(3120), + [anon_sym_DQUOTE] = ACTIONS(3120), + [anon_sym_DOLLAR] = ACTIONS(3122), + [sym_raw_string] = ACTIONS(3120), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3120), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3120), + [anon_sym_BQUOTE] = ACTIONS(3120), + [anon_sym_LT_LPAREN] = ACTIONS(3120), + [anon_sym_GT_LPAREN] = ACTIONS(3120), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(3120), + }, + [1338] = { + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(3886), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), + }, + [1339] = { + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(3886), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), + }, + [1340] = { + [sym_file_descriptor] = ACTIONS(3158), + [sym__concat] = ACTIONS(3158), + [sym_variable_name] = ACTIONS(3158), + [anon_sym_LT] = ACTIONS(3160), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_GT_GT] = ACTIONS(3158), + [anon_sym_AMP_GT] = ACTIONS(3160), + [anon_sym_AMP_GT_GT] = ACTIONS(3158), + [anon_sym_LT_AMP] = ACTIONS(3158), + [anon_sym_GT_AMP] = ACTIONS(3158), + [sym__special_characters] = ACTIONS(3158), + [anon_sym_DQUOTE] = ACTIONS(3158), + [anon_sym_DOLLAR] = ACTIONS(3160), + [sym_raw_string] = ACTIONS(3158), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3158), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3158), + [anon_sym_BQUOTE] = ACTIONS(3158), + [anon_sym_LT_LPAREN] = ACTIONS(3158), + [anon_sym_GT_LPAREN] = ACTIONS(3158), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(3158), + }, + [1341] = { + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(3888), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), + }, + [1342] = { + [sym__concat] = ACTIONS(2973), + [anon_sym_DQUOTE] = ACTIONS(2975), + [anon_sym_DOLLAR] = ACTIONS(2975), + [sym__string_content] = ACTIONS(2973), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2975), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2975), + [anon_sym_BQUOTE] = ACTIONS(2975), + [sym_comment] = ACTIONS(281), + }, + [1343] = { + [aux_sym_concatenation_repeat1] = STATE(1366), + [sym__concat] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(3890), + [sym_comment] = ACTIONS(55), + }, + [1344] = { + [aux_sym_concatenation_repeat1] = STATE(1366), + [sym__concat] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(3892), + [sym_comment] = ACTIONS(55), + }, + [1345] = { + [anon_sym_RBRACE] = ACTIONS(3892), + [sym_comment] = ACTIONS(55), + }, + [1346] = { + [sym_concatenation] = STATE(1730), + [sym_string] = STATE(1729), + [sym_simple_expansion] = STATE(1729), + [sym_string_expansion] = STATE(1729), + [sym_expansion] = STATE(1729), + [sym_command_substitution] = STATE(1729), + [sym_process_substitution] = STATE(1729), + [anon_sym_RBRACE] = ACTIONS(3892), + [sym__special_characters] = ACTIONS(3894), + [anon_sym_DQUOTE] = ACTIONS(1841), + [anon_sym_DOLLAR] = ACTIONS(1843), + [sym_raw_string] = ACTIONS(3896), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1849), + [anon_sym_BQUOTE] = ACTIONS(1851), + [anon_sym_LT_LPAREN] = ACTIONS(1853), + [anon_sym_GT_LPAREN] = ACTIONS(1853), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(3896), + }, + [1347] = { + [sym__concat] = ACTIONS(3009), + [anon_sym_DQUOTE] = ACTIONS(3011), + [anon_sym_DOLLAR] = ACTIONS(3011), + [sym__string_content] = ACTIONS(3009), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3011), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3011), + [anon_sym_BQUOTE] = ACTIONS(3011), + [sym_comment] = ACTIONS(281), + }, + [1348] = { + [sym_concatenation] = STATE(1733), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1733), + [sym_regex] = ACTIONS(3898), + [anon_sym_RBRACE] = ACTIONS(3900), + [anon_sym_EQ] = ACTIONS(3902), + [anon_sym_DASH] = ACTIONS(3902), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(3904), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(3902), + [anon_sym_COLON_QMARK] = ACTIONS(3902), + [anon_sym_COLON_DASH] = ACTIONS(3902), + [anon_sym_PERCENT] = ACTIONS(3902), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1349] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(3900), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1350] = { + [sym_concatenation] = STATE(1735), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1735), + [sym_regex] = ACTIONS(3906), + [anon_sym_RBRACE] = ACTIONS(3892), + [anon_sym_EQ] = ACTIONS(3908), + [anon_sym_DASH] = ACTIONS(3908), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(3910), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(3908), + [anon_sym_COLON_QMARK] = ACTIONS(3908), + [anon_sym_COLON_DASH] = ACTIONS(3908), + [anon_sym_PERCENT] = ACTIONS(3908), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1351] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(3892), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1352] = { + [sym_concatenation] = STATE(1737), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1737), + [anon_sym_RBRACE] = ACTIONS(3912), + [anon_sym_EQ] = ACTIONS(3914), + [anon_sym_DASH] = ACTIONS(3914), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(3916), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(3914), + [anon_sym_COLON_QMARK] = ACTIONS(3914), + [anon_sym_COLON_DASH] = ACTIONS(3914), + [anon_sym_PERCENT] = ACTIONS(3914), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1353] = { + [sym__concat] = ACTIONS(3065), + [anon_sym_DQUOTE] = ACTIONS(3067), + [anon_sym_DOLLAR] = ACTIONS(3067), + [sym__string_content] = ACTIONS(3065), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3067), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3067), + [anon_sym_BQUOTE] = ACTIONS(3067), + [sym_comment] = ACTIONS(281), + }, + [1354] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(3912), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1355] = { + [sym_concatenation] = STATE(1735), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1735), + [anon_sym_RBRACE] = ACTIONS(3892), + [anon_sym_EQ] = ACTIONS(3908), + [anon_sym_DASH] = ACTIONS(3908), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(3910), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(3908), + [anon_sym_COLON_QMARK] = ACTIONS(3908), + [anon_sym_COLON_DASH] = ACTIONS(3908), + [anon_sym_PERCENT] = ACTIONS(3908), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1356] = { + [sym__concat] = ACTIONS(3120), + [anon_sym_DQUOTE] = ACTIONS(3122), + [anon_sym_DOLLAR] = ACTIONS(3122), + [sym__string_content] = ACTIONS(3120), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3122), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3122), + [anon_sym_BQUOTE] = ACTIONS(3122), + [sym_comment] = ACTIONS(281), + }, + [1357] = { + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(3918), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), + }, + [1358] = { + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(3918), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), + }, + [1359] = { + [sym_string] = STATE(790), + [sym_simple_expansion] = STATE(790), + [sym_string_expansion] = STATE(790), + [sym_expansion] = STATE(790), + [sym_command_substitution] = STATE(790), + [sym_process_substitution] = STATE(790), + [anon_sym_RBRACK] = ACTIONS(3920), + [sym__special_characters] = ACTIONS(2087), + [anon_sym_DQUOTE] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(171), + [sym_raw_string] = ACTIONS(1490), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(175), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(177), + [anon_sym_BQUOTE] = ACTIONS(179), + [anon_sym_LT_LPAREN] = ACTIONS(181), + [anon_sym_GT_LPAREN] = ACTIONS(181), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1490), + }, + [1360] = { + [sym__concat] = ACTIONS(3922), + [anon_sym_RBRACE] = ACTIONS(2091), + [anon_sym_EQ] = ACTIONS(3924), + [anon_sym_DASH] = ACTIONS(3924), + [sym__special_characters] = ACTIONS(3924), + [anon_sym_DQUOTE] = ACTIONS(2091), + [anon_sym_DOLLAR] = ACTIONS(3924), + [sym_raw_string] = ACTIONS(2091), + [anon_sym_POUND] = ACTIONS(2091), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2091), + [anon_sym_SLASH] = ACTIONS(2091), + [anon_sym_COLON] = ACTIONS(3924), + [anon_sym_COLON_QMARK] = ACTIONS(3924), + [anon_sym_COLON_DASH] = ACTIONS(3924), + [anon_sym_PERCENT] = ACTIONS(3924), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2091), + [anon_sym_BQUOTE] = ACTIONS(2091), + [anon_sym_LT_LPAREN] = ACTIONS(2091), + [anon_sym_GT_LPAREN] = ACTIONS(2091), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(3924), + }, + [1361] = { + [sym_string] = STATE(790), + [sym_simple_expansion] = STATE(790), + [sym_string_expansion] = STATE(790), + [sym_expansion] = STATE(790), + [sym_command_substitution] = STATE(790), + [sym_process_substitution] = STATE(790), + [anon_sym_RBRACK] = ACTIONS(3926), + [sym__special_characters] = ACTIONS(2087), + [anon_sym_DQUOTE] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(171), + [sym_raw_string] = ACTIONS(1490), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(175), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(177), + [anon_sym_BQUOTE] = ACTIONS(179), + [anon_sym_LT_LPAREN] = ACTIONS(181), + [anon_sym_GT_LPAREN] = ACTIONS(181), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1490), + }, + [1362] = { + [sym__concat] = ACTIONS(3928), + [anon_sym_RBRACE] = ACTIONS(2097), + [anon_sym_EQ] = ACTIONS(3930), + [anon_sym_DASH] = ACTIONS(3930), + [sym__special_characters] = ACTIONS(3930), + [anon_sym_DQUOTE] = ACTIONS(2097), + [anon_sym_DOLLAR] = ACTIONS(3930), + [sym_raw_string] = ACTIONS(2097), + [anon_sym_POUND] = ACTIONS(2097), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2097), + [anon_sym_SLASH] = ACTIONS(2097), + [anon_sym_COLON] = ACTIONS(3930), + [anon_sym_COLON_QMARK] = ACTIONS(3930), + [anon_sym_COLON_DASH] = ACTIONS(3930), + [anon_sym_PERCENT] = ACTIONS(3930), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2097), + [anon_sym_BQUOTE] = ACTIONS(2097), + [anon_sym_LT_LPAREN] = ACTIONS(2097), + [anon_sym_GT_LPAREN] = ACTIONS(2097), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(3930), + }, + [1363] = { + [anon_sym_RBRACK] = ACTIONS(3926), + [sym_comment] = ACTIONS(55), + }, + [1364] = { + [sym_string] = STATE(1743), + [sym_simple_expansion] = STATE(1743), + [sym_string_expansion] = STATE(1743), + [sym_expansion] = STATE(1743), + [sym_command_substitution] = STATE(1743), + [sym_process_substitution] = STATE(1743), + [sym__special_characters] = ACTIONS(3932), + [anon_sym_DQUOTE] = ACTIONS(1841), + [anon_sym_DOLLAR] = ACTIONS(1843), + [sym_raw_string] = ACTIONS(3932), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1849), + [anon_sym_BQUOTE] = ACTIONS(1851), + [anon_sym_LT_LPAREN] = ACTIONS(1853), + [anon_sym_GT_LPAREN] = ACTIONS(1853), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(3932), + }, + [1365] = { + [sym__simple_heredoc_body] = ACTIONS(3934), + [sym__heredoc_body_beginning] = ACTIONS(3934), + [sym_file_descriptor] = ACTIONS(3934), + [sym__concat] = ACTIONS(3934), + [ts_builtin_sym_end] = ACTIONS(3934), + [anon_sym_SEMI] = ACTIONS(3936), + [anon_sym_PIPE] = ACTIONS(3936), + [anon_sym_RPAREN] = ACTIONS(3934), + [anon_sym_SEMI_SEMI] = ACTIONS(3934), + [anon_sym_PIPE_AMP] = ACTIONS(3934), + [anon_sym_AMP_AMP] = ACTIONS(3934), + [anon_sym_PIPE_PIPE] = ACTIONS(3934), + [anon_sym_EQ_TILDE] = ACTIONS(3936), + [anon_sym_EQ_EQ] = ACTIONS(3936), + [anon_sym_LT] = ACTIONS(3936), + [anon_sym_GT] = ACTIONS(3936), + [anon_sym_GT_GT] = ACTIONS(3934), + [anon_sym_AMP_GT] = ACTIONS(3936), + [anon_sym_AMP_GT_GT] = ACTIONS(3934), + [anon_sym_LT_AMP] = ACTIONS(3934), + [anon_sym_GT_AMP] = ACTIONS(3934), + [anon_sym_LT_LT] = ACTIONS(3936), + [anon_sym_LT_LT_DASH] = ACTIONS(3934), + [anon_sym_LT_LT_LT] = ACTIONS(3934), + [sym__special_characters] = ACTIONS(3934), + [anon_sym_DQUOTE] = ACTIONS(3934), + [anon_sym_DOLLAR] = ACTIONS(3936), + [sym_raw_string] = ACTIONS(3934), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3934), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3934), + [anon_sym_BQUOTE] = ACTIONS(3934), + [anon_sym_LT_LPAREN] = ACTIONS(3934), + [anon_sym_GT_LPAREN] = ACTIONS(3934), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(3936), + [anon_sym_LF] = ACTIONS(3934), + [anon_sym_AMP] = ACTIONS(3936), + }, + [1366] = { + [aux_sym_concatenation_repeat1] = STATE(1744), + [sym__concat] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(807), + [sym_comment] = ACTIONS(55), + }, + [1367] = { + [sym__concat] = ACTIONS(811), + [anon_sym_RBRACE] = ACTIONS(811), + [sym_comment] = ACTIONS(55), + }, + [1368] = { + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_DQUOTE] = ACTIONS(3938), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym__string_content] = ACTIONS(821), + [anon_sym_POUND] = ACTIONS(815), + [sym_comment] = ACTIONS(281), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(823), + [anon_sym_STAR] = ACTIONS(825), + [anon_sym_AT] = ACTIONS(825), + [anon_sym_QMARK] = ACTIONS(825), + [anon_sym_0] = ACTIONS(823), + [anon_sym__] = ACTIONS(823), + }, + [1369] = { + [sym_simple_expansion] = STATE(148), + [sym_expansion] = STATE(148), + [sym_command_substitution] = STATE(148), + [aux_sym_string_repeat1] = STATE(473), + [anon_sym_DQUOTE] = ACTIONS(3938), + [anon_sym_DOLLAR] = ACTIONS(3940), + [sym__string_content] = ACTIONS(273), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(277), + [anon_sym_BQUOTE] = ACTIONS(279), + [sym_comment] = ACTIONS(281), + }, + [1370] = { + [sym__concat] = ACTIONS(845), + [anon_sym_RBRACE] = ACTIONS(845), + [sym_comment] = ACTIONS(55), + }, + [1371] = { + [sym__concat] = ACTIONS(849), + [anon_sym_RBRACE] = ACTIONS(849), + [sym_comment] = ACTIONS(55), + }, + [1372] = { + [sym__concat] = ACTIONS(853), + [anon_sym_RBRACE] = ACTIONS(853), + [sym_comment] = ACTIONS(55), + }, + [1373] = { + [sym__simple_heredoc_body] = ACTIONS(3942), + [sym__heredoc_body_beginning] = ACTIONS(3942), + [sym_file_descriptor] = ACTIONS(3942), + [sym__concat] = ACTIONS(3942), + [ts_builtin_sym_end] = ACTIONS(3942), + [anon_sym_SEMI] = ACTIONS(3944), + [anon_sym_PIPE] = ACTIONS(3944), + [anon_sym_RPAREN] = ACTIONS(3942), + [anon_sym_SEMI_SEMI] = ACTIONS(3942), + [anon_sym_PIPE_AMP] = ACTIONS(3942), + [anon_sym_AMP_AMP] = ACTIONS(3942), + [anon_sym_PIPE_PIPE] = ACTIONS(3942), + [anon_sym_EQ_TILDE] = ACTIONS(3944), + [anon_sym_EQ_EQ] = ACTIONS(3944), + [anon_sym_LT] = ACTIONS(3944), + [anon_sym_GT] = ACTIONS(3944), + [anon_sym_GT_GT] = ACTIONS(3942), + [anon_sym_AMP_GT] = ACTIONS(3944), + [anon_sym_AMP_GT_GT] = ACTIONS(3942), + [anon_sym_LT_AMP] = ACTIONS(3942), + [anon_sym_GT_AMP] = ACTIONS(3942), + [anon_sym_LT_LT] = ACTIONS(3944), + [anon_sym_LT_LT_DASH] = ACTIONS(3942), + [anon_sym_LT_LT_LT] = ACTIONS(3942), + [sym__special_characters] = ACTIONS(3942), + [anon_sym_DQUOTE] = ACTIONS(3942), + [anon_sym_DOLLAR] = ACTIONS(3944), + [sym_raw_string] = ACTIONS(3942), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3942), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3942), + [anon_sym_BQUOTE] = ACTIONS(3942), + [anon_sym_LT_LPAREN] = ACTIONS(3942), + [anon_sym_GT_LPAREN] = ACTIONS(3942), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(3944), + [anon_sym_LF] = ACTIONS(3942), + [anon_sym_AMP] = ACTIONS(3944), + }, + [1374] = { + [anon_sym_LBRACK] = ACTIONS(857), + [anon_sym_EQ] = ACTIONS(3946), + [sym_comment] = ACTIONS(55), + }, + [1375] = { + [sym_subscript] = STATE(1750), + [sym_variable_name] = ACTIONS(3948), + [anon_sym_DASH] = ACTIONS(3950), + [anon_sym_DOLLAR] = ACTIONS(3950), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3952), + [anon_sym_STAR] = ACTIONS(3954), + [anon_sym_AT] = ACTIONS(3954), + [anon_sym_QMARK] = ACTIONS(3954), + [anon_sym_0] = ACTIONS(3952), + [anon_sym__] = ACTIONS(3952), + }, + [1376] = { + [sym_concatenation] = STATE(1753), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1753), + [anon_sym_RBRACE] = ACTIONS(3956), + [anon_sym_EQ] = ACTIONS(3958), + [anon_sym_DASH] = ACTIONS(3958), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(3960), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(3962), + [anon_sym_COLON] = ACTIONS(3958), + [anon_sym_COLON_QMARK] = ACTIONS(3958), + [anon_sym_COLON_DASH] = ACTIONS(3958), + [anon_sym_PERCENT] = ACTIONS(3958), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1377] = { + [sym_concatenation] = STATE(1756), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1756), + [anon_sym_RBRACE] = ACTIONS(3964), + [anon_sym_EQ] = ACTIONS(3966), + [anon_sym_DASH] = ACTIONS(3966), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(3968), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(3970), + [anon_sym_COLON] = ACTIONS(3966), + [anon_sym_COLON_QMARK] = ACTIONS(3966), + [anon_sym_COLON_DASH] = ACTIONS(3966), + [anon_sym_PERCENT] = ACTIONS(3966), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1378] = { + [anon_sym_SEMI] = ACTIONS(3972), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(3974), + [anon_sym_SEMI_SEMI] = ACTIONS(3976), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(3976), + [anon_sym_AMP] = ACTIONS(3972), + }, + [1379] = { + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(3972), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(3974), + [anon_sym_SEMI_SEMI] = ACTIONS(3976), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(3976), + [anon_sym_AMP] = ACTIONS(3972), + }, + [1380] = { + [sym__terminated_statement] = STATE(198), + [sym_for_statement] = STATE(1759), + [sym_c_style_for_statement] = STATE(1759), + [sym_while_statement] = STATE(1759), + [sym_if_statement] = STATE(1759), + [sym_case_statement] = STATE(1759), + [sym_function_definition] = STATE(1759), + [sym_subshell] = STATE(1759), + [sym_pipeline] = STATE(1759), + [sym_list] = STATE(1759), + [sym_negated_command] = STATE(1759), + [sym_test_command] = STATE(1759), + [sym_declaration_command] = STATE(1759), + [sym_unset_command] = STATE(1759), + [sym_command] = STATE(1759), + [sym_command_name] = STATE(92), + [sym_variable_assignment] = STATE(1760), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(96), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), + [aux_sym__statements_repeat1] = STATE(198), + [aux_sym_command_repeat1] = STATE(96), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(137), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(149), + [anon_sym_declare] = ACTIONS(151), + [anon_sym_typeset] = ACTIONS(151), + [anon_sym_export] = ACTIONS(151), + [anon_sym_readonly] = ACTIONS(151), + [anon_sym_local] = ACTIONS(151), + [anon_sym_unset] = ACTIONS(153), + [anon_sym_unsetenv] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(159), + }, + [1381] = { + [anon_sym_SEMI] = ACTIONS(3978), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_SEMI_SEMI] = ACTIONS(3980), + [anon_sym_PIPE_AMP] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_BQUOTE] = ACTIONS(3974), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(3980), + [anon_sym_AMP] = ACTIONS(3978), + }, + [1382] = { + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(3978), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_SEMI_SEMI] = ACTIONS(3980), + [anon_sym_PIPE_AMP] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(3974), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(3980), + [anon_sym_AMP] = ACTIONS(3978), + }, + [1383] = { + [sym__terminated_statement] = STATE(198), + [sym_for_statement] = STATE(1762), + [sym_c_style_for_statement] = STATE(1762), + [sym_while_statement] = STATE(1762), + [sym_if_statement] = STATE(1762), + [sym_case_statement] = STATE(1762), + [sym_function_definition] = STATE(1762), + [sym_subshell] = STATE(1762), + [sym_pipeline] = STATE(1762), + [sym_list] = STATE(1762), + [sym_negated_command] = STATE(1762), + [sym_test_command] = STATE(1762), + [sym_declaration_command] = STATE(1762), + [sym_unset_command] = STATE(1762), + [sym_command] = STATE(1762), + [sym_command_name] = STATE(173), + [sym_variable_assignment] = STATE(1763), + [sym_subscript] = STATE(66), + [sym_file_redirect] = STATE(176), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(60), + [sym_simple_expansion] = STATE(60), + [sym_string_expansion] = STATE(60), + [sym_expansion] = STATE(60), + [sym_command_substitution] = STATE(60), + [sym_process_substitution] = STATE(60), + [aux_sym__statements_repeat1] = STATE(198), + [aux_sym_command_repeat1] = STATE(176), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(95), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(305), + [anon_sym_while] = ACTIONS(307), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(311), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(315), + [anon_sym_declare] = ACTIONS(317), + [anon_sym_typeset] = ACTIONS(317), + [anon_sym_export] = ACTIONS(317), + [anon_sym_readonly] = ACTIONS(317), + [anon_sym_local] = ACTIONS(317), + [anon_sym_unset] = ACTIONS(319), + [anon_sym_unsetenv] = ACTIONS(319), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(115), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(321), + }, + [1384] = { + [anon_sym_SEMI] = ACTIONS(3982), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(3984), + [anon_sym_SEMI_SEMI] = ACTIONS(3986), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(3986), + [anon_sym_AMP] = ACTIONS(3982), + }, + [1385] = { + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(3982), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(3984), + [anon_sym_SEMI_SEMI] = ACTIONS(3986), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(3986), + [anon_sym_AMP] = ACTIONS(3982), + }, + [1386] = { + [sym__terminated_statement] = STATE(198), + [sym_for_statement] = STATE(1766), + [sym_c_style_for_statement] = STATE(1766), + [sym_while_statement] = STATE(1766), + [sym_if_statement] = STATE(1766), + [sym_case_statement] = STATE(1766), + [sym_function_definition] = STATE(1766), + [sym_subshell] = STATE(1766), + [sym_pipeline] = STATE(1766), + [sym_list] = STATE(1766), + [sym_negated_command] = STATE(1766), + [sym_test_command] = STATE(1766), + [sym_declaration_command] = STATE(1766), + [sym_unset_command] = STATE(1766), + [sym_command] = STATE(1766), + [sym_command_name] = STATE(92), + [sym_variable_assignment] = STATE(1767), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(96), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), + [aux_sym__statements_repeat1] = STATE(198), + [aux_sym_command_repeat1] = STATE(96), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(137), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(149), + [anon_sym_declare] = ACTIONS(151), + [anon_sym_typeset] = ACTIONS(151), + [anon_sym_export] = ACTIONS(151), + [anon_sym_readonly] = ACTIONS(151), + [anon_sym_local] = ACTIONS(151), + [anon_sym_unset] = ACTIONS(153), + [anon_sym_unsetenv] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(159), + }, + [1387] = { + [aux_sym_concatenation_repeat1] = STATE(1366), + [sym__concat] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(3988), + [sym_comment] = ACTIONS(55), + }, + [1388] = { + [aux_sym_concatenation_repeat1] = STATE(1366), + [sym__concat] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(3990), + [sym_comment] = ACTIONS(55), + }, + [1389] = { + [anon_sym_RBRACE] = ACTIONS(3990), + [sym_comment] = ACTIONS(55), + }, + [1390] = { + [sym_concatenation] = STATE(1771), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1771), + [anon_sym_RBRACE] = ACTIONS(3992), + [anon_sym_EQ] = ACTIONS(3994), + [anon_sym_DASH] = ACTIONS(3994), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(3996), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(3994), + [anon_sym_COLON_QMARK] = ACTIONS(3994), + [anon_sym_COLON_DASH] = ACTIONS(3994), + [anon_sym_PERCENT] = ACTIONS(3994), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1391] = { + [sym__simple_heredoc_body] = ACTIONS(3998), + [sym__heredoc_body_beginning] = ACTIONS(3998), + [sym_file_descriptor] = ACTIONS(3998), + [sym__concat] = ACTIONS(3998), + [ts_builtin_sym_end] = ACTIONS(3998), + [anon_sym_SEMI] = ACTIONS(4000), + [anon_sym_PIPE] = ACTIONS(4000), + [anon_sym_RPAREN] = ACTIONS(3998), + [anon_sym_SEMI_SEMI] = ACTIONS(3998), + [anon_sym_PIPE_AMP] = ACTIONS(3998), + [anon_sym_AMP_AMP] = ACTIONS(3998), + [anon_sym_PIPE_PIPE] = ACTIONS(3998), + [anon_sym_EQ_TILDE] = ACTIONS(4000), + [anon_sym_EQ_EQ] = ACTIONS(4000), + [anon_sym_LT] = ACTIONS(4000), + [anon_sym_GT] = ACTIONS(4000), + [anon_sym_GT_GT] = ACTIONS(3998), + [anon_sym_AMP_GT] = ACTIONS(4000), + [anon_sym_AMP_GT_GT] = ACTIONS(3998), + [anon_sym_LT_AMP] = ACTIONS(3998), + [anon_sym_GT_AMP] = ACTIONS(3998), + [anon_sym_LT_LT] = ACTIONS(4000), + [anon_sym_LT_LT_DASH] = ACTIONS(3998), + [anon_sym_LT_LT_LT] = ACTIONS(3998), + [sym__special_characters] = ACTIONS(3998), + [anon_sym_DQUOTE] = ACTIONS(3998), + [anon_sym_DOLLAR] = ACTIONS(4000), + [sym_raw_string] = ACTIONS(3998), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3998), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3998), + [anon_sym_BQUOTE] = ACTIONS(3998), + [anon_sym_LT_LPAREN] = ACTIONS(3998), + [anon_sym_GT_LPAREN] = ACTIONS(3998), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(4000), + [anon_sym_LF] = ACTIONS(3998), + [anon_sym_AMP] = ACTIONS(4000), + }, + [1392] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(3992), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1393] = { + [sym_concatenation] = STATE(1772), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1772), + [anon_sym_RBRACE] = ACTIONS(3990), + [anon_sym_EQ] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4002), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(4004), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(4002), + [anon_sym_COLON_QMARK] = ACTIONS(4002), + [anon_sym_COLON_DASH] = ACTIONS(4002), + [anon_sym_PERCENT] = ACTIONS(4002), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1394] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(3990), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1395] = { + [sym__concat] = ACTIONS(1763), + [anon_sym_RBRACE] = ACTIONS(1763), + [anon_sym_EQ] = ACTIONS(1765), + [anon_sym_DASH] = ACTIONS(1765), + [sym__special_characters] = ACTIONS(1765), + [anon_sym_DQUOTE] = ACTIONS(1763), + [anon_sym_DOLLAR] = ACTIONS(1765), + [sym_raw_string] = ACTIONS(1763), + [anon_sym_POUND] = ACTIONS(1763), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1763), + [anon_sym_COLON] = ACTIONS(1765), + [anon_sym_COLON_QMARK] = ACTIONS(1765), + [anon_sym_COLON_DASH] = ACTIONS(1765), + [anon_sym_PERCENT] = ACTIONS(1765), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1763), + [anon_sym_BQUOTE] = ACTIONS(1763), + [anon_sym_LT_LPAREN] = ACTIONS(1763), + [anon_sym_GT_LPAREN] = ACTIONS(1763), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(1765), + }, + [1396] = { + [aux_sym_concatenation_repeat1] = STATE(1396), + [sym__concat] = ACTIONS(4006), + [anon_sym_RBRACE] = ACTIONS(1763), + [anon_sym_EQ] = ACTIONS(1765), + [anon_sym_DASH] = ACTIONS(1765), + [sym__special_characters] = ACTIONS(1765), + [anon_sym_DQUOTE] = ACTIONS(1763), + [anon_sym_DOLLAR] = ACTIONS(1765), + [sym_raw_string] = ACTIONS(1763), + [anon_sym_POUND] = ACTIONS(1763), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1763), + [anon_sym_COLON] = ACTIONS(1765), + [anon_sym_COLON_QMARK] = ACTIONS(1765), + [anon_sym_COLON_DASH] = ACTIONS(1765), + [anon_sym_PERCENT] = ACTIONS(1765), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1763), + [anon_sym_BQUOTE] = ACTIONS(1763), + [anon_sym_LT_LPAREN] = ACTIONS(1763), + [anon_sym_GT_LPAREN] = ACTIONS(1763), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(1765), + }, + [1397] = { + [sym__concat] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_EQ] = ACTIONS(1772), + [anon_sym_DASH] = ACTIONS(1772), + [sym__special_characters] = ACTIONS(1772), + [anon_sym_DQUOTE] = ACTIONS(1770), + [anon_sym_DOLLAR] = ACTIONS(1772), + [sym_raw_string] = ACTIONS(1770), + [anon_sym_POUND] = ACTIONS(1770), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1770), + [anon_sym_COLON] = ACTIONS(1772), + [anon_sym_COLON_QMARK] = ACTIONS(1772), + [anon_sym_COLON_DASH] = ACTIONS(1772), + [anon_sym_PERCENT] = ACTIONS(1772), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1770), + [anon_sym_BQUOTE] = ACTIONS(1770), + [anon_sym_LT_LPAREN] = ACTIONS(1770), + [anon_sym_GT_LPAREN] = ACTIONS(1770), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(1772), + }, + [1398] = { + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_DQUOTE] = ACTIONS(4009), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym__string_content] = ACTIONS(821), + [anon_sym_POUND] = ACTIONS(815), + [sym_comment] = ACTIONS(281), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(823), + [anon_sym_STAR] = ACTIONS(825), + [anon_sym_AT] = ACTIONS(825), + [anon_sym_QMARK] = ACTIONS(825), + [anon_sym_0] = ACTIONS(823), + [anon_sym__] = ACTIONS(823), + }, + [1399] = { + [sym_concatenation] = STATE(1777), + [sym_string] = STATE(1776), + [sym_simple_expansion] = STATE(1776), + [sym_string_expansion] = STATE(1776), + [sym_expansion] = STATE(1776), + [sym_command_substitution] = STATE(1776), + [sym_process_substitution] = STATE(1776), + [anon_sym_RBRACE] = ACTIONS(4011), + [sym__special_characters] = ACTIONS(4013), + [anon_sym_DQUOTE] = ACTIONS(1841), + [anon_sym_DOLLAR] = ACTIONS(1843), + [sym_raw_string] = ACTIONS(4015), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1849), + [anon_sym_BQUOTE] = ACTIONS(1851), + [anon_sym_LT_LPAREN] = ACTIONS(1853), + [anon_sym_GT_LPAREN] = ACTIONS(1853), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(4015), + }, + [1400] = { + [anon_sym_LBRACK] = ACTIONS(857), + [anon_sym_EQ] = ACTIONS(4017), + [sym_comment] = ACTIONS(55), + }, + [1401] = { + [sym_concatenation] = STATE(1781), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1781), + [anon_sym_RBRACE] = ACTIONS(4019), + [anon_sym_EQ] = ACTIONS(4021), + [anon_sym_DASH] = ACTIONS(4021), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(4023), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(4025), + [anon_sym_COLON] = ACTIONS(4021), + [anon_sym_COLON_QMARK] = ACTIONS(4021), + [anon_sym_COLON_DASH] = ACTIONS(4021), + [anon_sym_PERCENT] = ACTIONS(4021), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1402] = { + [sym_concatenation] = STATE(1783), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1783), + [anon_sym_RBRACE] = ACTIONS(4011), + [anon_sym_EQ] = ACTIONS(4027), + [anon_sym_DASH] = ACTIONS(4027), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(4029), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(4031), + [anon_sym_COLON] = ACTIONS(4027), + [anon_sym_COLON_QMARK] = ACTIONS(4027), + [anon_sym_COLON_DASH] = ACTIONS(4027), + [anon_sym_PERCENT] = ACTIONS(4027), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1403] = { + [sym__concat] = ACTIONS(1871), + [anon_sym_RBRACE] = ACTIONS(1871), + [anon_sym_EQ] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1873), + [sym__special_characters] = ACTIONS(1873), + [anon_sym_DQUOTE] = ACTIONS(1871), + [anon_sym_DOLLAR] = ACTIONS(1873), + [sym_raw_string] = ACTIONS(1871), + [anon_sym_POUND] = ACTIONS(1871), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1871), + [anon_sym_COLON] = ACTIONS(1873), + [anon_sym_COLON_QMARK] = ACTIONS(1873), + [anon_sym_COLON_DASH] = ACTIONS(1873), + [anon_sym_PERCENT] = ACTIONS(1873), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1871), + [anon_sym_BQUOTE] = ACTIONS(1871), + [anon_sym_LT_LPAREN] = ACTIONS(1871), + [anon_sym_GT_LPAREN] = ACTIONS(1871), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(1873), + }, + [1404] = { + [sym_concatenation] = STATE(1786), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1786), + [sym_regex] = ACTIONS(4033), + [anon_sym_RBRACE] = ACTIONS(4035), + [anon_sym_EQ] = ACTIONS(4037), + [anon_sym_DASH] = ACTIONS(4037), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(4039), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(4037), + [anon_sym_COLON_QMARK] = ACTIONS(4037), + [anon_sym_COLON_DASH] = ACTIONS(4037), + [anon_sym_PERCENT] = ACTIONS(4037), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1405] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(4035), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1406] = { + [sym__concat] = ACTIONS(1919), + [anon_sym_RBRACE] = ACTIONS(1919), + [anon_sym_EQ] = ACTIONS(1921), + [anon_sym_DASH] = ACTIONS(1921), + [sym__special_characters] = ACTIONS(1921), + [anon_sym_DQUOTE] = ACTIONS(1919), + [anon_sym_DOLLAR] = ACTIONS(1921), + [sym_raw_string] = ACTIONS(1919), + [anon_sym_POUND] = ACTIONS(1919), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1919), + [anon_sym_COLON] = ACTIONS(1921), + [anon_sym_COLON_QMARK] = ACTIONS(1921), + [anon_sym_COLON_DASH] = ACTIONS(1921), + [anon_sym_PERCENT] = ACTIONS(1921), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1919), + [anon_sym_BQUOTE] = ACTIONS(1919), + [anon_sym_LT_LPAREN] = ACTIONS(1919), + [anon_sym_GT_LPAREN] = ACTIONS(1919), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(1921), + }, + [1407] = { + [sym_concatenation] = STATE(1783), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1783), + [sym_regex] = ACTIONS(4041), + [anon_sym_RBRACE] = ACTIONS(4011), + [anon_sym_EQ] = ACTIONS(4027), + [anon_sym_DASH] = ACTIONS(4027), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(4029), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(4027), + [anon_sym_COLON_QMARK] = ACTIONS(4027), + [anon_sym_COLON_DASH] = ACTIONS(4027), + [anon_sym_PERCENT] = ACTIONS(4027), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1408] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(4011), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1409] = { + [sym__simple_heredoc_body] = ACTIONS(4043), + [sym__heredoc_body_beginning] = ACTIONS(4043), + [sym_file_descriptor] = ACTIONS(4043), + [sym__concat] = ACTIONS(4043), + [ts_builtin_sym_end] = ACTIONS(4043), + [anon_sym_SEMI] = ACTIONS(4045), + [anon_sym_PIPE] = ACTIONS(4045), + [anon_sym_RPAREN] = ACTIONS(4043), + [anon_sym_SEMI_SEMI] = ACTIONS(4043), + [anon_sym_PIPE_AMP] = ACTIONS(4043), + [anon_sym_AMP_AMP] = ACTIONS(4043), + [anon_sym_PIPE_PIPE] = ACTIONS(4043), + [anon_sym_EQ_TILDE] = ACTIONS(4045), + [anon_sym_EQ_EQ] = ACTIONS(4045), + [anon_sym_LT] = ACTIONS(4045), + [anon_sym_GT] = ACTIONS(4045), + [anon_sym_GT_GT] = ACTIONS(4043), + [anon_sym_AMP_GT] = ACTIONS(4045), + [anon_sym_AMP_GT_GT] = ACTIONS(4043), + [anon_sym_LT_AMP] = ACTIONS(4043), + [anon_sym_GT_AMP] = ACTIONS(4043), + [anon_sym_LT_LT] = ACTIONS(4045), + [anon_sym_LT_LT_DASH] = ACTIONS(4043), + [anon_sym_LT_LT_LT] = ACTIONS(4043), + [sym__special_characters] = ACTIONS(4043), + [anon_sym_DQUOTE] = ACTIONS(4043), + [anon_sym_DOLLAR] = ACTIONS(4045), + [sym_raw_string] = ACTIONS(4043), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4043), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4043), + [anon_sym_BQUOTE] = ACTIONS(4043), + [anon_sym_LT_LPAREN] = ACTIONS(4043), + [anon_sym_GT_LPAREN] = ACTIONS(4043), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(4045), + [anon_sym_LF] = ACTIONS(4043), + [anon_sym_AMP] = ACTIONS(4045), + }, + [1410] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(4047), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1411] = { + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(4049), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), + }, + [1412] = { + [sym__concat] = ACTIONS(1927), + [anon_sym_RBRACE] = ACTIONS(1927), + [anon_sym_EQ] = ACTIONS(1929), + [anon_sym_DASH] = ACTIONS(1929), + [sym__special_characters] = ACTIONS(1929), + [anon_sym_DQUOTE] = ACTIONS(1927), + [anon_sym_DOLLAR] = ACTIONS(1929), + [sym_raw_string] = ACTIONS(1927), + [anon_sym_POUND] = ACTIONS(1927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1927), + [anon_sym_COLON] = ACTIONS(1929), + [anon_sym_COLON_QMARK] = ACTIONS(1929), + [anon_sym_COLON_DASH] = ACTIONS(1929), + [anon_sym_PERCENT] = ACTIONS(1929), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1927), + [anon_sym_BQUOTE] = ACTIONS(1927), + [anon_sym_LT_LPAREN] = ACTIONS(1927), + [anon_sym_GT_LPAREN] = ACTIONS(1927), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(1929), + }, + [1413] = { + [anon_sym_SEMI] = ACTIONS(4051), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(4049), + [anon_sym_SEMI_SEMI] = ACTIONS(4053), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(4053), + [anon_sym_AMP] = ACTIONS(4051), + }, + [1414] = { + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(4051), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(4049), + [anon_sym_SEMI_SEMI] = ACTIONS(4053), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(4053), + [anon_sym_AMP] = ACTIONS(4051), + }, + [1415] = { + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(4049), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), + }, + [1416] = { + [anon_sym_SEMI] = ACTIONS(4055), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_SEMI_SEMI] = ACTIONS(4057), + [anon_sym_PIPE_AMP] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_BQUOTE] = ACTIONS(4049), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(4057), + [anon_sym_AMP] = ACTIONS(4055), + }, + [1417] = { + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(4055), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_SEMI_SEMI] = ACTIONS(4057), + [anon_sym_PIPE_AMP] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(4049), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(4057), + [anon_sym_AMP] = ACTIONS(4055), + }, + [1418] = { + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(4059), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), + }, + [1419] = { + [sym__concat] = ACTIONS(1959), + [anon_sym_RBRACE] = ACTIONS(1959), + [anon_sym_EQ] = ACTIONS(1961), + [anon_sym_DASH] = ACTIONS(1961), + [sym__special_characters] = ACTIONS(1961), + [anon_sym_DQUOTE] = ACTIONS(1959), + [anon_sym_DOLLAR] = ACTIONS(1961), + [sym_raw_string] = ACTIONS(1959), + [anon_sym_POUND] = ACTIONS(1959), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1959), + [anon_sym_COLON] = ACTIONS(1961), + [anon_sym_COLON_QMARK] = ACTIONS(1961), + [anon_sym_COLON_DASH] = ACTIONS(1961), + [anon_sym_PERCENT] = ACTIONS(1961), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1959), + [anon_sym_BQUOTE] = ACTIONS(1959), + [anon_sym_LT_LPAREN] = ACTIONS(1959), + [anon_sym_GT_LPAREN] = ACTIONS(1959), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(1961), + }, + [1420] = { + [anon_sym_SEMI] = ACTIONS(4061), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(4059), + [anon_sym_SEMI_SEMI] = ACTIONS(4063), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(4063), + [anon_sym_AMP] = ACTIONS(4061), + }, + [1421] = { + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(4061), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(4059), + [anon_sym_SEMI_SEMI] = ACTIONS(4063), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(4063), + [anon_sym_AMP] = ACTIONS(4061), + }, + [1422] = { + [sym__simple_heredoc_body] = ACTIONS(4065), + [sym__heredoc_body_beginning] = ACTIONS(4065), + [sym_file_descriptor] = ACTIONS(4065), + [sym__concat] = ACTIONS(4065), + [ts_builtin_sym_end] = ACTIONS(4065), + [anon_sym_SEMI] = ACTIONS(4067), + [anon_sym_PIPE] = ACTIONS(4067), + [anon_sym_RPAREN] = ACTIONS(4065), + [anon_sym_SEMI_SEMI] = ACTIONS(4065), + [anon_sym_PIPE_AMP] = ACTIONS(4065), + [anon_sym_AMP_AMP] = ACTIONS(4065), + [anon_sym_PIPE_PIPE] = ACTIONS(4065), + [anon_sym_EQ_TILDE] = ACTIONS(4067), + [anon_sym_EQ_EQ] = ACTIONS(4067), + [anon_sym_LT] = ACTIONS(4067), + [anon_sym_GT] = ACTIONS(4067), + [anon_sym_GT_GT] = ACTIONS(4065), + [anon_sym_AMP_GT] = ACTIONS(4067), + [anon_sym_AMP_GT_GT] = ACTIONS(4065), + [anon_sym_LT_AMP] = ACTIONS(4065), + [anon_sym_GT_AMP] = ACTIONS(4065), + [anon_sym_LT_LT] = ACTIONS(4067), + [anon_sym_LT_LT_DASH] = ACTIONS(4065), + [anon_sym_LT_LT_LT] = ACTIONS(4065), + [sym__special_characters] = ACTIONS(4065), + [anon_sym_DQUOTE] = ACTIONS(4065), + [anon_sym_DOLLAR] = ACTIONS(4067), + [sym_raw_string] = ACTIONS(4065), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4065), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4065), + [anon_sym_BQUOTE] = ACTIONS(4065), + [anon_sym_LT_LPAREN] = ACTIONS(4065), + [anon_sym_GT_LPAREN] = ACTIONS(4065), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(4067), + [anon_sym_LF] = ACTIONS(4065), + [anon_sym_AMP] = ACTIONS(4067), + }, + [1423] = { + [anon_sym_LT] = ACTIONS(4069), + [anon_sym_GT] = ACTIONS(4069), + [anon_sym_GT_GT] = ACTIONS(4071), + [anon_sym_AMP_GT] = ACTIONS(4069), + [anon_sym_AMP_GT_GT] = ACTIONS(4071), + [anon_sym_LT_AMP] = ACTIONS(4071), + [anon_sym_GT_AMP] = ACTIONS(4071), + [sym_comment] = ACTIONS(55), + }, + [1424] = { + [sym_concatenation] = STATE(1166), + [sym_string] = STATE(1796), + [sym_simple_expansion] = STATE(1796), + [sym_string_expansion] = STATE(1796), + [sym_expansion] = STATE(1796), + [sym_command_substitution] = STATE(1796), + [sym_process_substitution] = STATE(1796), + [sym__special_characters] = ACTIONS(4073), + [anon_sym_DQUOTE] = ACTIONS(2396), + [anon_sym_DOLLAR] = ACTIONS(2398), + [sym_raw_string] = ACTIONS(4075), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2402), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2404), + [anon_sym_BQUOTE] = ACTIONS(2406), + [anon_sym_LT_LPAREN] = ACTIONS(2408), + [anon_sym_GT_LPAREN] = ACTIONS(2408), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(4075), + }, + [1425] = { + [sym_concatenation] = STATE(1170), + [sym_string] = STATE(1798), + [sym_simple_expansion] = STATE(1798), + [sym_string_expansion] = STATE(1798), + [sym_expansion] = STATE(1798), + [sym_command_substitution] = STATE(1798), + [sym_process_substitution] = STATE(1798), + [sym__special_characters] = ACTIONS(4077), + [anon_sym_DQUOTE] = ACTIONS(2396), + [anon_sym_DOLLAR] = ACTIONS(2398), + [sym_raw_string] = ACTIONS(4079), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2402), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2404), + [anon_sym_BQUOTE] = ACTIONS(2406), + [anon_sym_LT_LPAREN] = ACTIONS(2408), + [anon_sym_GT_LPAREN] = ACTIONS(2408), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(4079), + }, + [1426] = { + [sym_file_redirect] = STATE(1799), + [sym_heredoc_redirect] = STATE(1799), + [sym_herestring_redirect] = STATE(1799), + [aux_sym_while_statement_repeat1] = STATE(1799), + [sym_file_descriptor] = ACTIONS(3126), + [anon_sym_SEMI] = ACTIONS(2418), + [anon_sym_PIPE] = ACTIONS(2418), + [anon_sym_SEMI_SEMI] = ACTIONS(2416), + [anon_sym_PIPE_AMP] = ACTIONS(2416), + [anon_sym_AMP_AMP] = ACTIONS(2416), + [anon_sym_PIPE_PIPE] = ACTIONS(2416), + [anon_sym_LT] = ACTIONS(3128), + [anon_sym_GT] = ACTIONS(3128), + [anon_sym_GT_GT] = ACTIONS(3130), + [anon_sym_AMP_GT] = ACTIONS(3128), + [anon_sym_AMP_GT_GT] = ACTIONS(3130), + [anon_sym_LT_AMP] = ACTIONS(3130), + [anon_sym_GT_AMP] = ACTIONS(3130), + [anon_sym_LT_LT] = ACTIONS(1308), + [anon_sym_LT_LT_DASH] = ACTIONS(1310), + [anon_sym_LT_LT_LT] = ACTIONS(3132), + [anon_sym_BQUOTE] = ACTIONS(2416), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2416), + [anon_sym_AMP] = ACTIONS(2418), + }, + [1427] = { + [sym_file_redirect] = STATE(977), + [sym_heredoc_redirect] = STATE(977), + [sym_heredoc_body] = STATE(1188), + [sym_herestring_redirect] = STATE(977), + [aux_sym_while_statement_repeat1] = STATE(977), + [sym__simple_heredoc_body] = ACTIONS(339), + [sym__heredoc_body_beginning] = ACTIONS(341), + [sym_file_descriptor] = ACTIONS(927), + [anon_sym_SEMI] = ACTIONS(2479), + [anon_sym_PIPE] = ACTIONS(2479), + [anon_sym_SEMI_SEMI] = ACTIONS(2477), + [anon_sym_PIPE_AMP] = ACTIONS(2477), + [anon_sym_AMP_AMP] = ACTIONS(2477), + [anon_sym_PIPE_PIPE] = ACTIONS(2477), + [anon_sym_LT] = ACTIONS(929), + [anon_sym_GT] = ACTIONS(929), + [anon_sym_GT_GT] = ACTIONS(931), + [anon_sym_AMP_GT] = ACTIONS(929), + [anon_sym_AMP_GT_GT] = ACTIONS(931), + [anon_sym_LT_AMP] = ACTIONS(931), + [anon_sym_GT_AMP] = ACTIONS(931), + [anon_sym_LT_LT] = ACTIONS(355), + [anon_sym_LT_LT_DASH] = ACTIONS(357), + [anon_sym_LT_LT_LT] = ACTIONS(933), + [anon_sym_BQUOTE] = ACTIONS(2477), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2477), + [anon_sym_AMP] = ACTIONS(2479), + }, + [1428] = { + [sym_compound_statement] = STATE(1800), + [anon_sym_LBRACE] = ACTIONS(595), + [sym_comment] = ACTIONS(55), + }, + [1429] = { + [anon_sym_LT] = ACTIONS(4081), + [anon_sym_GT] = ACTIONS(4081), + [anon_sym_GT_GT] = ACTIONS(4083), + [anon_sym_AMP_GT] = ACTIONS(4081), + [anon_sym_AMP_GT_GT] = ACTIONS(4083), + [anon_sym_LT_AMP] = ACTIONS(4083), + [anon_sym_GT_AMP] = ACTIONS(4083), + [sym_comment] = ACTIONS(55), + }, + [1430] = { + [sym_concatenation] = STATE(1238), + [sym_string] = STATE(1803), + [sym_simple_expansion] = STATE(1803), + [sym_string_expansion] = STATE(1803), + [sym_expansion] = STATE(1803), + [sym_command_substitution] = STATE(1803), + [sym_process_substitution] = STATE(1803), + [sym__special_characters] = ACTIONS(4085), + [anon_sym_DQUOTE] = ACTIONS(229), + [anon_sym_DOLLAR] = ACTIONS(231), + [sym_raw_string] = ACTIONS(4087), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), + [anon_sym_BQUOTE] = ACTIONS(239), + [anon_sym_LT_LPAREN] = ACTIONS(241), + [anon_sym_GT_LPAREN] = ACTIONS(241), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(4087), + }, + [1431] = { + [sym_file_redirect] = STATE(1437), + [sym_file_descriptor] = ACTIONS(3136), + [anon_sym_SEMI] = ACTIONS(2614), + [anon_sym_PIPE] = ACTIONS(2614), + [anon_sym_SEMI_SEMI] = ACTIONS(2612), + [anon_sym_PIPE_AMP] = ACTIONS(2612), + [anon_sym_AMP_AMP] = ACTIONS(2612), + [anon_sym_PIPE_PIPE] = ACTIONS(2612), + [anon_sym_LT] = ACTIONS(3138), + [anon_sym_GT] = ACTIONS(3138), + [anon_sym_GT_GT] = ACTIONS(3140), + [anon_sym_AMP_GT] = ACTIONS(3138), + [anon_sym_AMP_GT_GT] = ACTIONS(3140), + [anon_sym_LT_AMP] = ACTIONS(3140), + [anon_sym_GT_AMP] = ACTIONS(3140), + [anon_sym_BQUOTE] = ACTIONS(2612), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2612), + [anon_sym_AMP] = ACTIONS(2614), + }, + [1432] = { + [aux_sym_concatenation_repeat1] = STATE(1434), + [sym__simple_heredoc_body] = ACTIONS(1088), + [sym__heredoc_body_beginning] = ACTIONS(1088), + [sym_file_descriptor] = ACTIONS(1088), + [sym__concat] = ACTIONS(265), + [anon_sym_SEMI] = ACTIONS(1090), + [anon_sym_PIPE] = ACTIONS(1090), + [anon_sym_SEMI_SEMI] = ACTIONS(1088), + [anon_sym_PIPE_AMP] = ACTIONS(1088), + [anon_sym_AMP_AMP] = ACTIONS(1088), + [anon_sym_PIPE_PIPE] = ACTIONS(1088), + [anon_sym_LT] = ACTIONS(1090), + [anon_sym_GT] = ACTIONS(1090), + [anon_sym_GT_GT] = ACTIONS(1088), + [anon_sym_AMP_GT] = ACTIONS(1090), + [anon_sym_AMP_GT_GT] = ACTIONS(1088), + [anon_sym_LT_AMP] = ACTIONS(1088), + [anon_sym_GT_AMP] = ACTIONS(1088), + [anon_sym_LT_LT] = ACTIONS(1090), + [anon_sym_LT_LT_DASH] = ACTIONS(1088), + [anon_sym_LT_LT_LT] = ACTIONS(1088), + [anon_sym_BQUOTE] = ACTIONS(1088), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1088), + [anon_sym_AMP] = ACTIONS(1090), + }, + [1433] = { + [aux_sym_concatenation_repeat1] = STATE(1434), + [sym__simple_heredoc_body] = ACTIONS(1092), + [sym__heredoc_body_beginning] = ACTIONS(1092), + [sym_file_descriptor] = ACTIONS(1092), + [sym__concat] = ACTIONS(265), + [anon_sym_SEMI] = ACTIONS(1094), + [anon_sym_PIPE] = ACTIONS(1094), + [anon_sym_SEMI_SEMI] = ACTIONS(1092), + [anon_sym_PIPE_AMP] = ACTIONS(1092), + [anon_sym_AMP_AMP] = ACTIONS(1092), + [anon_sym_PIPE_PIPE] = ACTIONS(1092), + [anon_sym_LT] = ACTIONS(1094), + [anon_sym_GT] = ACTIONS(1094), + [anon_sym_GT_GT] = ACTIONS(1092), + [anon_sym_AMP_GT] = ACTIONS(1094), + [anon_sym_AMP_GT_GT] = ACTIONS(1092), + [anon_sym_LT_AMP] = ACTIONS(1092), + [anon_sym_GT_AMP] = ACTIONS(1092), + [anon_sym_LT_LT] = ACTIONS(1094), + [anon_sym_LT_LT_DASH] = ACTIONS(1092), + [anon_sym_LT_LT_LT] = ACTIONS(1092), + [anon_sym_BQUOTE] = ACTIONS(1092), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1092), + [anon_sym_AMP] = ACTIONS(1094), + }, + [1434] = { + [aux_sym_concatenation_repeat1] = STATE(1804), + [sym__simple_heredoc_body] = ACTIONS(807), + [sym__heredoc_body_beginning] = ACTIONS(807), + [sym_file_descriptor] = ACTIONS(807), + [sym__concat] = ACTIONS(265), + [anon_sym_SEMI] = ACTIONS(809), + [anon_sym_PIPE] = ACTIONS(809), + [anon_sym_SEMI_SEMI] = ACTIONS(807), + [anon_sym_PIPE_AMP] = ACTIONS(807), + [anon_sym_AMP_AMP] = ACTIONS(807), + [anon_sym_PIPE_PIPE] = ACTIONS(807), + [anon_sym_LT] = ACTIONS(809), + [anon_sym_GT] = ACTIONS(809), + [anon_sym_GT_GT] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(809), + [anon_sym_AMP_GT_GT] = ACTIONS(807), + [anon_sym_LT_AMP] = ACTIONS(807), + [anon_sym_GT_AMP] = ACTIONS(807), + [anon_sym_LT_LT] = ACTIONS(809), + [anon_sym_LT_LT_DASH] = ACTIONS(807), + [anon_sym_LT_LT_LT] = ACTIONS(807), + [anon_sym_BQUOTE] = ACTIONS(807), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(807), + [anon_sym_AMP] = ACTIONS(809), + }, + [1435] = { + [sym_file_redirect] = STATE(977), + [sym_heredoc_redirect] = STATE(977), + [sym_heredoc_body] = STATE(1449), + [sym_herestring_redirect] = STATE(977), + [aux_sym_while_statement_repeat1] = STATE(977), + [sym__simple_heredoc_body] = ACTIONS(339), + [sym__heredoc_body_beginning] = ACTIONS(341), + [sym_file_descriptor] = ACTIONS(927), + [anon_sym_SEMI] = ACTIONS(3207), + [anon_sym_PIPE] = ACTIONS(3207), + [anon_sym_SEMI_SEMI] = ACTIONS(3205), + [anon_sym_PIPE_AMP] = ACTIONS(3205), + [anon_sym_AMP_AMP] = ACTIONS(3205), + [anon_sym_PIPE_PIPE] = ACTIONS(3205), + [anon_sym_LT] = ACTIONS(929), + [anon_sym_GT] = ACTIONS(929), + [anon_sym_GT_GT] = ACTIONS(931), + [anon_sym_AMP_GT] = ACTIONS(929), + [anon_sym_AMP_GT_GT] = ACTIONS(931), + [anon_sym_LT_AMP] = ACTIONS(931), + [anon_sym_GT_AMP] = ACTIONS(931), + [anon_sym_LT_LT] = ACTIONS(355), + [anon_sym_LT_LT_DASH] = ACTIONS(357), + [anon_sym_LT_LT_LT] = ACTIONS(933), + [anon_sym_BQUOTE] = ACTIONS(3205), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(3205), + [anon_sym_AMP] = ACTIONS(3207), + }, + [1436] = { + [sym__simple_heredoc_body] = ACTIONS(4089), + [sym__heredoc_body_beginning] = ACTIONS(4089), + [sym_file_descriptor] = ACTIONS(4089), + [sym__concat] = ACTIONS(4089), + [ts_builtin_sym_end] = ACTIONS(4089), + [anon_sym_SEMI] = ACTIONS(4091), + [anon_sym_PIPE] = ACTIONS(4091), + [anon_sym_RPAREN] = ACTIONS(4089), + [anon_sym_SEMI_SEMI] = ACTIONS(4089), + [anon_sym_PIPE_AMP] = ACTIONS(4089), + [anon_sym_AMP_AMP] = ACTIONS(4089), + [anon_sym_PIPE_PIPE] = ACTIONS(4089), + [anon_sym_EQ_TILDE] = ACTIONS(4091), + [anon_sym_EQ_EQ] = ACTIONS(4091), + [anon_sym_LT] = ACTIONS(4091), + [anon_sym_GT] = ACTIONS(4091), + [anon_sym_GT_GT] = ACTIONS(4089), + [anon_sym_AMP_GT] = ACTIONS(4091), + [anon_sym_AMP_GT_GT] = ACTIONS(4089), + [anon_sym_LT_AMP] = ACTIONS(4089), + [anon_sym_GT_AMP] = ACTIONS(4089), + [anon_sym_LT_LT] = ACTIONS(4091), + [anon_sym_LT_LT_DASH] = ACTIONS(4089), + [anon_sym_LT_LT_LT] = ACTIONS(4089), + [sym__special_characters] = ACTIONS(4089), + [anon_sym_DQUOTE] = ACTIONS(4089), + [anon_sym_DOLLAR] = ACTIONS(4091), + [sym_raw_string] = ACTIONS(4089), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4089), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4089), + [anon_sym_BQUOTE] = ACTIONS(4089), + [anon_sym_LT_LPAREN] = ACTIONS(4089), + [anon_sym_GT_LPAREN] = ACTIONS(4089), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(4091), + [anon_sym_LF] = ACTIONS(4089), + [anon_sym_AMP] = ACTIONS(4091), + }, + [1437] = { + [ts_builtin_sym_end] = ACTIONS(3720), + [anon_sym_SEMI] = ACTIONS(3722), + [anon_sym_esac] = ACTIONS(3720), + [anon_sym_PIPE] = ACTIONS(3722), + [anon_sym_RPAREN] = ACTIONS(3720), + [anon_sym_SEMI_SEMI] = ACTIONS(3720), + [anon_sym_PIPE_AMP] = ACTIONS(3720), + [anon_sym_AMP_AMP] = ACTIONS(3720), + [anon_sym_PIPE_PIPE] = ACTIONS(3720), + [anon_sym_BQUOTE] = ACTIONS(3720), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(3720), + [anon_sym_AMP] = ACTIONS(3722), + }, + [1438] = { + [sym_concatenation] = STATE(1808), + [sym_string] = STATE(1807), + [sym_simple_expansion] = STATE(1807), + [sym_string_expansion] = STATE(1807), + [sym_expansion] = STATE(1807), + [sym_command_substitution] = STATE(1807), + [sym_process_substitution] = STATE(1807), + [anon_sym_RBRACE] = ACTIONS(4093), + [sym__special_characters] = ACTIONS(4095), + [anon_sym_DQUOTE] = ACTIONS(1841), + [anon_sym_DOLLAR] = ACTIONS(1843), + [sym_raw_string] = ACTIONS(4097), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1849), + [anon_sym_BQUOTE] = ACTIONS(1851), + [anon_sym_LT_LPAREN] = ACTIONS(1853), + [anon_sym_GT_LPAREN] = ACTIONS(1853), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(4097), + }, + [1439] = { + [anon_sym_LBRACK] = ACTIONS(857), + [anon_sym_EQ] = ACTIONS(4099), + [sym_comment] = ACTIONS(55), + }, + [1440] = { + [sym_concatenation] = STATE(1812), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1812), + [anon_sym_RBRACE] = ACTIONS(4101), + [anon_sym_EQ] = ACTIONS(4103), + [anon_sym_DASH] = ACTIONS(4103), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(4105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(4107), + [anon_sym_COLON] = ACTIONS(4103), + [anon_sym_COLON_QMARK] = ACTIONS(4103), + [anon_sym_COLON_DASH] = ACTIONS(4103), + [anon_sym_PERCENT] = ACTIONS(4103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1441] = { + [sym_concatenation] = STATE(1814), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1814), + [anon_sym_RBRACE] = ACTIONS(4093), + [anon_sym_EQ] = ACTIONS(4109), + [anon_sym_DASH] = ACTIONS(4109), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(4111), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(4113), + [anon_sym_COLON] = ACTIONS(4109), + [anon_sym_COLON_QMARK] = ACTIONS(4109), + [anon_sym_COLON_DASH] = ACTIONS(4109), + [anon_sym_PERCENT] = ACTIONS(4109), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1442] = { + [sym__heredoc_body_middle] = ACTIONS(1871), + [sym__heredoc_body_end] = ACTIONS(1871), + [anon_sym_DOLLAR] = ACTIONS(1873), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1871), + [sym_comment] = ACTIONS(55), + }, + [1443] = { + [sym_concatenation] = STATE(1817), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1817), + [sym_regex] = ACTIONS(4115), + [anon_sym_RBRACE] = ACTIONS(4117), + [anon_sym_EQ] = ACTIONS(4119), + [anon_sym_DASH] = ACTIONS(4119), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(4121), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(4119), + [anon_sym_COLON_QMARK] = ACTIONS(4119), + [anon_sym_COLON_DASH] = ACTIONS(4119), + [anon_sym_PERCENT] = ACTIONS(4119), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1444] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(4117), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1445] = { + [sym__heredoc_body_middle] = ACTIONS(1919), + [sym__heredoc_body_end] = ACTIONS(1919), + [anon_sym_DOLLAR] = ACTIONS(1921), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1919), + [sym_comment] = ACTIONS(55), + }, + [1446] = { + [sym_concatenation] = STATE(1814), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1814), + [sym_regex] = ACTIONS(4123), + [anon_sym_RBRACE] = ACTIONS(4093), + [anon_sym_EQ] = ACTIONS(4109), + [anon_sym_DASH] = ACTIONS(4109), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(4111), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(4109), + [anon_sym_COLON_QMARK] = ACTIONS(4109), + [anon_sym_COLON_DASH] = ACTIONS(4109), + [anon_sym_PERCENT] = ACTIONS(4109), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1447] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(4093), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1448] = { + [aux_sym_concatenation_repeat1] = STATE(1448), + [sym__simple_heredoc_body] = ACTIONS(1763), + [sym__heredoc_body_beginning] = ACTIONS(1763), + [sym_file_descriptor] = ACTIONS(1763), + [sym__concat] = ACTIONS(1767), + [ts_builtin_sym_end] = ACTIONS(1763), + [anon_sym_SEMI] = ACTIONS(1765), + [anon_sym_PIPE] = ACTIONS(1765), + [anon_sym_SEMI_SEMI] = ACTIONS(1763), + [anon_sym_PIPE_AMP] = ACTIONS(1763), + [anon_sym_AMP_AMP] = ACTIONS(1763), + [anon_sym_PIPE_PIPE] = ACTIONS(1763), + [anon_sym_LT] = ACTIONS(1765), + [anon_sym_GT] = ACTIONS(1765), + [anon_sym_GT_GT] = ACTIONS(1763), + [anon_sym_AMP_GT] = ACTIONS(1765), + [anon_sym_AMP_GT_GT] = ACTIONS(1763), + [anon_sym_LT_AMP] = ACTIONS(1763), + [anon_sym_GT_AMP] = ACTIONS(1763), + [anon_sym_LT_LT] = ACTIONS(1765), + [anon_sym_LT_LT_DASH] = ACTIONS(1763), + [anon_sym_LT_LT_LT] = ACTIONS(1763), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1763), + [anon_sym_AMP] = ACTIONS(1765), + }, + [1449] = { + [ts_builtin_sym_end] = ACTIONS(4125), + [anon_sym_SEMI] = ACTIONS(4127), + [anon_sym_esac] = ACTIONS(4125), + [anon_sym_PIPE] = ACTIONS(4127), + [anon_sym_RPAREN] = ACTIONS(4125), + [anon_sym_SEMI_SEMI] = ACTIONS(4125), + [anon_sym_PIPE_AMP] = ACTIONS(4125), + [anon_sym_AMP_AMP] = ACTIONS(4125), + [anon_sym_PIPE_PIPE] = ACTIONS(4125), + [anon_sym_BQUOTE] = ACTIONS(4125), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(4125), + [anon_sym_AMP] = ACTIONS(4127), + }, + [1450] = { + [anon_sym_EQ] = ACTIONS(4129), + [anon_sym_PLUS_EQ] = ACTIONS(4129), + [sym_comment] = ACTIONS(55), + }, + [1451] = { + [anon_sym_EQ] = ACTIONS(4131), + [anon_sym_PLUS_EQ] = ACTIONS(4131), + [sym_comment] = ACTIONS(55), + }, + [1452] = { + [sym__concat] = ACTIONS(1763), + [anon_sym_RPAREN] = ACTIONS(1763), + [sym__special_characters] = ACTIONS(1763), + [anon_sym_DQUOTE] = ACTIONS(1763), + [anon_sym_DOLLAR] = ACTIONS(1765), + [sym_raw_string] = ACTIONS(1763), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1763), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1763), + [anon_sym_BQUOTE] = ACTIONS(1763), + [anon_sym_LT_LPAREN] = ACTIONS(1763), + [anon_sym_GT_LPAREN] = ACTIONS(1763), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1763), + }, + [1453] = { + [aux_sym_concatenation_repeat1] = STATE(1453), + [sym__concat] = ACTIONS(4133), + [anon_sym_RPAREN] = ACTIONS(1763), + [sym__special_characters] = ACTIONS(1763), + [anon_sym_DQUOTE] = ACTIONS(1763), + [anon_sym_DOLLAR] = ACTIONS(1765), + [sym_raw_string] = ACTIONS(1763), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1763), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1763), + [anon_sym_BQUOTE] = ACTIONS(1763), + [anon_sym_LT_LPAREN] = ACTIONS(1763), + [anon_sym_GT_LPAREN] = ACTIONS(1763), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1763), + }, + [1454] = { + [sym__concat] = ACTIONS(1770), + [anon_sym_RPAREN] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(1770), + [anon_sym_DQUOTE] = ACTIONS(1770), + [anon_sym_DOLLAR] = ACTIONS(1772), + [sym_raw_string] = ACTIONS(1770), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1770), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1770), + [anon_sym_BQUOTE] = ACTIONS(1770), + [anon_sym_LT_LPAREN] = ACTIONS(1770), + [anon_sym_GT_LPAREN] = ACTIONS(1770), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1770), + }, + [1455] = { + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_DQUOTE] = ACTIONS(4136), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym__string_content] = ACTIONS(821), + [anon_sym_POUND] = ACTIONS(815), + [sym_comment] = ACTIONS(281), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(823), + [anon_sym_STAR] = ACTIONS(825), + [anon_sym_AT] = ACTIONS(825), + [anon_sym_QMARK] = ACTIONS(825), + [anon_sym_0] = ACTIONS(823), + [anon_sym__] = ACTIONS(823), + }, + [1456] = { + [sym_concatenation] = STATE(1823), + [sym_string] = STATE(1822), + [sym_simple_expansion] = STATE(1822), + [sym_string_expansion] = STATE(1822), + [sym_expansion] = STATE(1822), + [sym_command_substitution] = STATE(1822), + [sym_process_substitution] = STATE(1822), + [anon_sym_RBRACE] = ACTIONS(4138), + [sym__special_characters] = ACTIONS(4140), + [anon_sym_DQUOTE] = ACTIONS(1841), + [anon_sym_DOLLAR] = ACTIONS(1843), + [sym_raw_string] = ACTIONS(4142), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1849), + [anon_sym_BQUOTE] = ACTIONS(1851), + [anon_sym_LT_LPAREN] = ACTIONS(1853), + [anon_sym_GT_LPAREN] = ACTIONS(1853), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(4142), + }, + [1457] = { + [anon_sym_LBRACK] = ACTIONS(857), + [anon_sym_EQ] = ACTIONS(4144), + [sym_comment] = ACTIONS(55), + }, + [1458] = { + [sym_concatenation] = STATE(1827), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1827), + [anon_sym_RBRACE] = ACTIONS(4146), + [anon_sym_EQ] = ACTIONS(4148), + [anon_sym_DASH] = ACTIONS(4148), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(4150), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(4152), + [anon_sym_COLON] = ACTIONS(4148), + [anon_sym_COLON_QMARK] = ACTIONS(4148), + [anon_sym_COLON_DASH] = ACTIONS(4148), + [anon_sym_PERCENT] = ACTIONS(4148), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1459] = { + [sym_concatenation] = STATE(1829), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1829), + [anon_sym_RBRACE] = ACTIONS(4138), + [anon_sym_EQ] = ACTIONS(4154), + [anon_sym_DASH] = ACTIONS(4154), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(4156), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(4158), + [anon_sym_COLON] = ACTIONS(4154), + [anon_sym_COLON_QMARK] = ACTIONS(4154), + [anon_sym_COLON_DASH] = ACTIONS(4154), + [anon_sym_PERCENT] = ACTIONS(4154), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1460] = { + [sym__concat] = ACTIONS(1871), + [anon_sym_RPAREN] = ACTIONS(1871), + [sym__special_characters] = ACTIONS(1871), + [anon_sym_DQUOTE] = ACTIONS(1871), + [anon_sym_DOLLAR] = ACTIONS(1873), + [sym_raw_string] = ACTIONS(1871), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1871), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1871), + [anon_sym_BQUOTE] = ACTIONS(1871), + [anon_sym_LT_LPAREN] = ACTIONS(1871), + [anon_sym_GT_LPAREN] = ACTIONS(1871), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1871), + }, + [1461] = { + [sym_concatenation] = STATE(1832), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1832), + [sym_regex] = ACTIONS(4160), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_EQ] = ACTIONS(4164), + [anon_sym_DASH] = ACTIONS(4164), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(4166), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(4164), + [anon_sym_COLON_QMARK] = ACTIONS(4164), + [anon_sym_COLON_DASH] = ACTIONS(4164), + [anon_sym_PERCENT] = ACTIONS(4164), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1462] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1463] = { + [sym__concat] = ACTIONS(1919), + [anon_sym_RPAREN] = ACTIONS(1919), + [sym__special_characters] = ACTIONS(1919), + [anon_sym_DQUOTE] = ACTIONS(1919), + [anon_sym_DOLLAR] = ACTIONS(1921), + [sym_raw_string] = ACTIONS(1919), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1919), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1919), + [anon_sym_BQUOTE] = ACTIONS(1919), + [anon_sym_LT_LPAREN] = ACTIONS(1919), + [anon_sym_GT_LPAREN] = ACTIONS(1919), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1919), + }, + [1464] = { + [sym_concatenation] = STATE(1829), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1829), + [sym_regex] = ACTIONS(4168), + [anon_sym_RBRACE] = ACTIONS(4138), + [anon_sym_EQ] = ACTIONS(4154), + [anon_sym_DASH] = ACTIONS(4154), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(4156), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(4154), + [anon_sym_COLON_QMARK] = ACTIONS(4154), + [anon_sym_COLON_DASH] = ACTIONS(4154), + [anon_sym_PERCENT] = ACTIONS(4154), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1465] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(4138), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1466] = { + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(4170), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), + }, + [1467] = { + [sym__concat] = ACTIONS(1927), + [anon_sym_RPAREN] = ACTIONS(1927), + [sym__special_characters] = ACTIONS(1927), + [anon_sym_DQUOTE] = ACTIONS(1927), + [anon_sym_DOLLAR] = ACTIONS(1929), + [sym_raw_string] = ACTIONS(1927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1927), + [anon_sym_BQUOTE] = ACTIONS(1927), + [anon_sym_LT_LPAREN] = ACTIONS(1927), + [anon_sym_GT_LPAREN] = ACTIONS(1927), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1927), + }, + [1468] = { + [anon_sym_SEMI] = ACTIONS(4172), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(4170), + [anon_sym_SEMI_SEMI] = ACTIONS(4174), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(4174), + [anon_sym_AMP] = ACTIONS(4172), + }, + [1469] = { + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(4172), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(4170), + [anon_sym_SEMI_SEMI] = ACTIONS(4174), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(4174), + [anon_sym_AMP] = ACTIONS(4172), + }, + [1470] = { + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(4170), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), + }, + [1471] = { + [anon_sym_SEMI] = ACTIONS(4176), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_SEMI_SEMI] = ACTIONS(4178), + [anon_sym_PIPE_AMP] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_BQUOTE] = ACTIONS(4170), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(4178), + [anon_sym_AMP] = ACTIONS(4176), + }, + [1472] = { + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(4176), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_SEMI_SEMI] = ACTIONS(4178), + [anon_sym_PIPE_AMP] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(4170), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(4178), + [anon_sym_AMP] = ACTIONS(4176), + }, + [1473] = { + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(4180), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), + }, + [1474] = { + [sym__concat] = ACTIONS(1959), + [anon_sym_RPAREN] = ACTIONS(1959), + [sym__special_characters] = ACTIONS(1959), + [anon_sym_DQUOTE] = ACTIONS(1959), + [anon_sym_DOLLAR] = ACTIONS(1961), + [sym_raw_string] = ACTIONS(1959), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1959), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1959), + [anon_sym_BQUOTE] = ACTIONS(1959), + [anon_sym_LT_LPAREN] = ACTIONS(1959), + [anon_sym_GT_LPAREN] = ACTIONS(1959), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1959), + }, + [1475] = { + [anon_sym_SEMI] = ACTIONS(4182), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(4180), + [anon_sym_SEMI_SEMI] = ACTIONS(4184), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(4184), + [anon_sym_AMP] = ACTIONS(4182), + }, + [1476] = { + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(4182), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(4180), + [anon_sym_SEMI_SEMI] = ACTIONS(4184), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(4184), + [anon_sym_AMP] = ACTIONS(4182), + }, + [1477] = { + [sym_file_descriptor] = ACTIONS(2959), + [sym__concat] = ACTIONS(2959), + [sym_variable_name] = ACTIONS(2959), + [ts_builtin_sym_end] = ACTIONS(2959), + [anon_sym_SEMI] = ACTIONS(2961), + [anon_sym_PIPE] = ACTIONS(2961), + [anon_sym_RPAREN] = ACTIONS(2959), + [anon_sym_SEMI_SEMI] = ACTIONS(2959), + [anon_sym_PIPE_AMP] = ACTIONS(2959), + [anon_sym_AMP_AMP] = ACTIONS(2959), + [anon_sym_PIPE_PIPE] = ACTIONS(2959), + [anon_sym_LT] = ACTIONS(2961), + [anon_sym_GT] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(2959), + [anon_sym_AMP_GT] = ACTIONS(2961), + [anon_sym_AMP_GT_GT] = ACTIONS(2959), + [anon_sym_LT_AMP] = ACTIONS(2959), + [anon_sym_GT_AMP] = ACTIONS(2959), + [sym__special_characters] = ACTIONS(2959), + [anon_sym_DQUOTE] = ACTIONS(2959), + [anon_sym_DOLLAR] = ACTIONS(2961), + [sym_raw_string] = ACTIONS(2959), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2959), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2959), + [anon_sym_BQUOTE] = ACTIONS(2959), + [anon_sym_LT_LPAREN] = ACTIONS(2959), + [anon_sym_GT_LPAREN] = ACTIONS(2959), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(2961), + [anon_sym_LF] = ACTIONS(2959), + [anon_sym_AMP] = ACTIONS(2961), + }, + [1478] = { + [sym_file_descriptor] = ACTIONS(2973), + [sym__concat] = ACTIONS(2973), + [sym_variable_name] = ACTIONS(2973), + [ts_builtin_sym_end] = ACTIONS(2973), + [anon_sym_SEMI] = ACTIONS(2975), + [anon_sym_PIPE] = ACTIONS(2975), + [anon_sym_RPAREN] = ACTIONS(2973), + [anon_sym_SEMI_SEMI] = ACTIONS(2973), + [anon_sym_PIPE_AMP] = ACTIONS(2973), + [anon_sym_AMP_AMP] = ACTIONS(2973), + [anon_sym_PIPE_PIPE] = ACTIONS(2973), + [anon_sym_LT] = ACTIONS(2975), + [anon_sym_GT] = ACTIONS(2975), + [anon_sym_GT_GT] = ACTIONS(2973), + [anon_sym_AMP_GT] = ACTIONS(2975), + [anon_sym_AMP_GT_GT] = ACTIONS(2973), + [anon_sym_LT_AMP] = ACTIONS(2973), + [anon_sym_GT_AMP] = ACTIONS(2973), + [sym__special_characters] = ACTIONS(2973), + [anon_sym_DQUOTE] = ACTIONS(2973), + [anon_sym_DOLLAR] = ACTIONS(2975), + [sym_raw_string] = ACTIONS(2973), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2973), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2973), + [anon_sym_BQUOTE] = ACTIONS(2973), + [anon_sym_LT_LPAREN] = ACTIONS(2973), + [anon_sym_GT_LPAREN] = ACTIONS(2973), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(2975), + [anon_sym_LF] = ACTIONS(2973), + [anon_sym_AMP] = ACTIONS(2975), + }, + [1479] = { + [aux_sym_concatenation_repeat1] = STATE(1366), + [sym__concat] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(4186), + [sym_comment] = ACTIONS(55), + }, + [1480] = { + [aux_sym_concatenation_repeat1] = STATE(1366), + [sym__concat] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(4188), + [sym_comment] = ACTIONS(55), + }, + [1481] = { + [anon_sym_RBRACE] = ACTIONS(4188), + [sym_comment] = ACTIONS(55), + }, + [1482] = { + [sym_concatenation] = STATE(1843), + [sym_string] = STATE(1842), + [sym_simple_expansion] = STATE(1842), + [sym_string_expansion] = STATE(1842), + [sym_expansion] = STATE(1842), + [sym_command_substitution] = STATE(1842), + [sym_process_substitution] = STATE(1842), + [anon_sym_RBRACE] = ACTIONS(4188), + [sym__special_characters] = ACTIONS(4190), + [anon_sym_DQUOTE] = ACTIONS(1841), + [anon_sym_DOLLAR] = ACTIONS(1843), + [sym_raw_string] = ACTIONS(4192), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1849), + [anon_sym_BQUOTE] = ACTIONS(1851), + [anon_sym_LT_LPAREN] = ACTIONS(1853), + [anon_sym_GT_LPAREN] = ACTIONS(1853), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(4192), + }, + [1483] = { + [sym_file_descriptor] = ACTIONS(3009), + [sym__concat] = ACTIONS(3009), + [sym_variable_name] = ACTIONS(3009), + [ts_builtin_sym_end] = ACTIONS(3009), + [anon_sym_SEMI] = ACTIONS(3011), + [anon_sym_PIPE] = ACTIONS(3011), + [anon_sym_RPAREN] = ACTIONS(3009), + [anon_sym_SEMI_SEMI] = ACTIONS(3009), + [anon_sym_PIPE_AMP] = ACTIONS(3009), + [anon_sym_AMP_AMP] = ACTIONS(3009), + [anon_sym_PIPE_PIPE] = ACTIONS(3009), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_GT] = ACTIONS(3011), + [anon_sym_GT_GT] = ACTIONS(3009), + [anon_sym_AMP_GT] = ACTIONS(3011), + [anon_sym_AMP_GT_GT] = ACTIONS(3009), + [anon_sym_LT_AMP] = ACTIONS(3009), + [anon_sym_GT_AMP] = ACTIONS(3009), + [sym__special_characters] = ACTIONS(3009), + [anon_sym_DQUOTE] = ACTIONS(3009), + [anon_sym_DOLLAR] = ACTIONS(3011), + [sym_raw_string] = ACTIONS(3009), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3009), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3009), + [anon_sym_BQUOTE] = ACTIONS(3009), + [anon_sym_LT_LPAREN] = ACTIONS(3009), + [anon_sym_GT_LPAREN] = ACTIONS(3009), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(3011), + [anon_sym_LF] = ACTIONS(3009), + [anon_sym_AMP] = ACTIONS(3011), + }, + [1484] = { + [sym_concatenation] = STATE(1846), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1846), + [sym_regex] = ACTIONS(4194), + [anon_sym_RBRACE] = ACTIONS(4196), + [anon_sym_EQ] = ACTIONS(4198), + [anon_sym_DASH] = ACTIONS(4198), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(4200), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(4198), + [anon_sym_COLON_QMARK] = ACTIONS(4198), + [anon_sym_COLON_DASH] = ACTIONS(4198), + [anon_sym_PERCENT] = ACTIONS(4198), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1485] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(4196), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1486] = { + [sym_concatenation] = STATE(1848), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1848), + [sym_regex] = ACTIONS(4202), + [anon_sym_RBRACE] = ACTIONS(4188), + [anon_sym_EQ] = ACTIONS(4204), + [anon_sym_DASH] = ACTIONS(4204), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(4206), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(4204), + [anon_sym_COLON_QMARK] = ACTIONS(4204), + [anon_sym_COLON_DASH] = ACTIONS(4204), + [anon_sym_PERCENT] = ACTIONS(4204), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1487] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(4188), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1488] = { + [sym_concatenation] = STATE(1850), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1850), + [anon_sym_RBRACE] = ACTIONS(4208), + [anon_sym_EQ] = ACTIONS(4210), + [anon_sym_DASH] = ACTIONS(4210), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(4212), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(4210), + [anon_sym_COLON_QMARK] = ACTIONS(4210), + [anon_sym_COLON_DASH] = ACTIONS(4210), + [anon_sym_PERCENT] = ACTIONS(4210), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1489] = { + [sym_file_descriptor] = ACTIONS(3065), + [sym__concat] = ACTIONS(3065), + [sym_variable_name] = ACTIONS(3065), + [ts_builtin_sym_end] = ACTIONS(3065), + [anon_sym_SEMI] = ACTIONS(3067), + [anon_sym_PIPE] = ACTIONS(3067), + [anon_sym_RPAREN] = ACTIONS(3065), + [anon_sym_SEMI_SEMI] = ACTIONS(3065), + [anon_sym_PIPE_AMP] = ACTIONS(3065), + [anon_sym_AMP_AMP] = ACTIONS(3065), + [anon_sym_PIPE_PIPE] = ACTIONS(3065), + [anon_sym_LT] = ACTIONS(3067), + [anon_sym_GT] = ACTIONS(3067), + [anon_sym_GT_GT] = ACTIONS(3065), + [anon_sym_AMP_GT] = ACTIONS(3067), + [anon_sym_AMP_GT_GT] = ACTIONS(3065), + [anon_sym_LT_AMP] = ACTIONS(3065), + [anon_sym_GT_AMP] = ACTIONS(3065), + [sym__special_characters] = ACTIONS(3065), + [anon_sym_DQUOTE] = ACTIONS(3065), + [anon_sym_DOLLAR] = ACTIONS(3067), + [sym_raw_string] = ACTIONS(3065), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3065), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3065), + [anon_sym_BQUOTE] = ACTIONS(3065), + [anon_sym_LT_LPAREN] = ACTIONS(3065), + [anon_sym_GT_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(3067), + [anon_sym_LF] = ACTIONS(3065), + [anon_sym_AMP] = ACTIONS(3067), + }, + [1490] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(4208), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1491] = { + [sym_concatenation] = STATE(1848), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1848), + [anon_sym_RBRACE] = ACTIONS(4188), + [anon_sym_EQ] = ACTIONS(4204), + [anon_sym_DASH] = ACTIONS(4204), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(4206), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(4204), + [anon_sym_COLON_QMARK] = ACTIONS(4204), + [anon_sym_COLON_DASH] = ACTIONS(4204), + [anon_sym_PERCENT] = ACTIONS(4204), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1492] = { + [sym_file_descriptor] = ACTIONS(3120), + [sym__concat] = ACTIONS(3120), + [sym_variable_name] = ACTIONS(3120), + [ts_builtin_sym_end] = ACTIONS(3120), + [anon_sym_SEMI] = ACTIONS(3122), + [anon_sym_PIPE] = ACTIONS(3122), + [anon_sym_RPAREN] = ACTIONS(3120), + [anon_sym_SEMI_SEMI] = ACTIONS(3120), + [anon_sym_PIPE_AMP] = ACTIONS(3120), + [anon_sym_AMP_AMP] = ACTIONS(3120), + [anon_sym_PIPE_PIPE] = ACTIONS(3120), + [anon_sym_LT] = ACTIONS(3122), + [anon_sym_GT] = ACTIONS(3122), + [anon_sym_GT_GT] = ACTIONS(3120), + [anon_sym_AMP_GT] = ACTIONS(3122), + [anon_sym_AMP_GT_GT] = ACTIONS(3120), + [anon_sym_LT_AMP] = ACTIONS(3120), + [anon_sym_GT_AMP] = ACTIONS(3120), + [sym__special_characters] = ACTIONS(3120), + [anon_sym_DQUOTE] = ACTIONS(3120), + [anon_sym_DOLLAR] = ACTIONS(3122), + [sym_raw_string] = ACTIONS(3120), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3120), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3120), + [anon_sym_BQUOTE] = ACTIONS(3120), + [anon_sym_LT_LPAREN] = ACTIONS(3120), + [anon_sym_GT_LPAREN] = ACTIONS(3120), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(3122), + [anon_sym_LF] = ACTIONS(3120), + [anon_sym_AMP] = ACTIONS(3122), + }, + [1493] = { + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(4214), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), + }, + [1494] = { + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(4214), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), + }, + [1495] = { + [sym_file_descriptor] = ACTIONS(3158), + [sym__concat] = ACTIONS(3158), + [sym_variable_name] = ACTIONS(3158), + [ts_builtin_sym_end] = ACTIONS(3158), + [anon_sym_SEMI] = ACTIONS(3160), + [anon_sym_PIPE] = ACTIONS(3160), + [anon_sym_RPAREN] = ACTIONS(3158), + [anon_sym_SEMI_SEMI] = ACTIONS(3158), + [anon_sym_PIPE_AMP] = ACTIONS(3158), + [anon_sym_AMP_AMP] = ACTIONS(3158), + [anon_sym_PIPE_PIPE] = ACTIONS(3158), + [anon_sym_LT] = ACTIONS(3160), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_GT_GT] = ACTIONS(3158), + [anon_sym_AMP_GT] = ACTIONS(3160), + [anon_sym_AMP_GT_GT] = ACTIONS(3158), + [anon_sym_LT_AMP] = ACTIONS(3158), + [anon_sym_GT_AMP] = ACTIONS(3158), + [sym__special_characters] = ACTIONS(3158), + [anon_sym_DQUOTE] = ACTIONS(3158), + [anon_sym_DOLLAR] = ACTIONS(3160), + [sym_raw_string] = ACTIONS(3158), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3158), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3158), + [anon_sym_BQUOTE] = ACTIONS(3158), + [anon_sym_LT_LPAREN] = ACTIONS(3158), + [anon_sym_GT_LPAREN] = ACTIONS(3158), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(3160), + [anon_sym_LF] = ACTIONS(3158), + [anon_sym_AMP] = ACTIONS(3160), + }, + [1496] = { + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(4216), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), + }, + [1497] = { + [sym_do_group] = STATE(1853), + [sym_compound_statement] = STATE(1853), + [anon_sym_do] = ACTIONS(1212), + [anon_sym_LBRACE] = ACTIONS(3350), + [sym_comment] = ACTIONS(55), + }, + [1498] = { + [sym__terminated_statement] = STATE(1855), + [sym_for_statement] = STATE(751), + [sym_c_style_for_statement] = STATE(751), + [sym_while_statement] = STATE(751), + [sym_if_statement] = STATE(751), + [sym_case_statement] = STATE(751), + [sym_function_definition] = STATE(751), + [sym_subshell] = STATE(751), + [sym_pipeline] = STATE(751), + [sym_list] = STATE(751), + [sym_negated_command] = STATE(751), + [sym_test_command] = STATE(751), + [sym_declaration_command] = STATE(751), + [sym_unset_command] = STATE(751), + [sym_command] = STATE(751), + [sym_command_name] = STATE(64), + [sym_variable_assignment] = STATE(752), + [sym_subscript] = STATE(66), + [sym_file_redirect] = STATE(67), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(60), + [sym_simple_expansion] = STATE(60), + [sym_string_expansion] = STATE(60), + [sym_expansion] = STATE(60), + [sym_command_substitution] = STATE(60), + [sym_process_substitution] = STATE(60), + [aux_sym__statements_repeat1] = STATE(1855), + [aux_sym_command_repeat1] = STATE(67), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(95), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(97), + [anon_sym_while] = ACTIONS(99), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(101), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(4218), + [anon_sym_BANG] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_LBRACK] = ACTIONS(107), + [anon_sym_declare] = ACTIONS(109), + [anon_sym_typeset] = ACTIONS(109), + [anon_sym_export] = ACTIONS(109), + [anon_sym_readonly] = ACTIONS(109), + [anon_sym_local] = ACTIONS(109), + [anon_sym_unset] = ACTIONS(111), + [anon_sym_unsetenv] = ACTIONS(111), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(115), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(117), + }, + [1499] = { + [ts_builtin_sym_end] = ACTIONS(4220), + [anon_sym_SEMI] = ACTIONS(4222), + [anon_sym_esac] = ACTIONS(4220), + [anon_sym_PIPE] = ACTIONS(4222), + [anon_sym_RPAREN] = ACTIONS(4220), + [anon_sym_SEMI_SEMI] = ACTIONS(4220), + [anon_sym_PIPE_AMP] = ACTIONS(4220), + [anon_sym_AMP_AMP] = ACTIONS(4220), + [anon_sym_PIPE_PIPE] = ACTIONS(4220), + [anon_sym_BQUOTE] = ACTIONS(4220), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(4220), + [anon_sym_AMP] = ACTIONS(4222), + }, + [1500] = { + [sym_do_group] = STATE(1853), + [sym_compound_statement] = STATE(1853), + [anon_sym_SEMI] = ACTIONS(4224), + [anon_sym_do] = ACTIONS(1212), + [anon_sym_LBRACE] = ACTIONS(3350), + [sym_comment] = ACTIONS(55), + }, + [1501] = { + [anon_sym_RPAREN_RPAREN] = ACTIONS(4226), + [anon_sym_AMP_AMP] = ACTIONS(493), + [anon_sym_PIPE_PIPE] = ACTIONS(493), + [anon_sym_EQ_TILDE] = ACTIONS(495), + [anon_sym_EQ_EQ] = ACTIONS(495), + [anon_sym_EQ] = ACTIONS(497), + [anon_sym_PLUS_EQ] = ACTIONS(493), + [anon_sym_LT] = ACTIONS(497), + [anon_sym_GT] = ACTIONS(497), + [anon_sym_BANG_EQ] = ACTIONS(493), + [anon_sym_PLUS] = ACTIONS(497), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_DASH_EQ] = ACTIONS(493), + [anon_sym_LT_EQ] = ACTIONS(493), + [anon_sym_GT_EQ] = ACTIONS(493), + [anon_sym_PLUS_PLUS] = ACTIONS(499), + [anon_sym_DASH_DASH] = ACTIONS(499), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(493), + }, + [1502] = { + [sym__concat] = ACTIONS(2959), + [anon_sym_SEMI] = ACTIONS(2961), + [anon_sym_esac] = ACTIONS(2959), + [anon_sym_PIPE] = ACTIONS(2961), + [anon_sym_SEMI_SEMI] = ACTIONS(2959), + [anon_sym_PIPE_AMP] = ACTIONS(2959), + [anon_sym_AMP_AMP] = ACTIONS(2959), + [anon_sym_PIPE_PIPE] = ACTIONS(2959), + [anon_sym_EQ_TILDE] = ACTIONS(2959), + [anon_sym_EQ_EQ] = ACTIONS(2959), + [anon_sym_EQ] = ACTIONS(2961), + [anon_sym_PLUS_EQ] = ACTIONS(2959), + [anon_sym_LT] = ACTIONS(2961), + [anon_sym_GT] = ACTIONS(2961), + [anon_sym_BANG_EQ] = ACTIONS(2959), + [anon_sym_PLUS] = ACTIONS(2961), + [anon_sym_DASH] = ACTIONS(2961), + [anon_sym_DASH_EQ] = ACTIONS(2959), + [anon_sym_LT_EQ] = ACTIONS(2959), + [anon_sym_GT_EQ] = ACTIONS(2959), + [anon_sym_PLUS_PLUS] = ACTIONS(2959), + [anon_sym_DASH_DASH] = ACTIONS(2959), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(2959), + [anon_sym_LF] = ACTIONS(2959), + [anon_sym_AMP] = ACTIONS(2961), + }, + [1503] = { + [sym__concat] = ACTIONS(2973), + [anon_sym_SEMI] = ACTIONS(2975), + [anon_sym_esac] = ACTIONS(2973), + [anon_sym_PIPE] = ACTIONS(2975), + [anon_sym_SEMI_SEMI] = ACTIONS(2973), + [anon_sym_PIPE_AMP] = ACTIONS(2973), + [anon_sym_AMP_AMP] = ACTIONS(2973), + [anon_sym_PIPE_PIPE] = ACTIONS(2973), + [anon_sym_EQ_TILDE] = ACTIONS(2973), + [anon_sym_EQ_EQ] = ACTIONS(2973), + [anon_sym_EQ] = ACTIONS(2975), + [anon_sym_PLUS_EQ] = ACTIONS(2973), + [anon_sym_LT] = ACTIONS(2975), + [anon_sym_GT] = ACTIONS(2975), + [anon_sym_BANG_EQ] = ACTIONS(2973), + [anon_sym_PLUS] = ACTIONS(2975), + [anon_sym_DASH] = ACTIONS(2975), + [anon_sym_DASH_EQ] = ACTIONS(2973), + [anon_sym_LT_EQ] = ACTIONS(2973), + [anon_sym_GT_EQ] = ACTIONS(2973), + [anon_sym_PLUS_PLUS] = ACTIONS(2973), + [anon_sym_DASH_DASH] = ACTIONS(2973), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(2973), + [anon_sym_LF] = ACTIONS(2973), + [anon_sym_AMP] = ACTIONS(2975), + }, + [1504] = { + [aux_sym_concatenation_repeat1] = STATE(1366), + [sym__concat] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(4228), + [sym_comment] = ACTIONS(55), + }, + [1505] = { + [aux_sym_concatenation_repeat1] = STATE(1366), + [sym__concat] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(4230), + [sym_comment] = ACTIONS(55), + }, + [1506] = { + [anon_sym_RBRACE] = ACTIONS(4230), + [sym_comment] = ACTIONS(55), + }, + [1507] = { + [sym_concatenation] = STATE(1862), + [sym_string] = STATE(1861), + [sym_simple_expansion] = STATE(1861), + [sym_string_expansion] = STATE(1861), + [sym_expansion] = STATE(1861), + [sym_command_substitution] = STATE(1861), + [sym_process_substitution] = STATE(1861), + [anon_sym_RBRACE] = ACTIONS(4230), + [sym__special_characters] = ACTIONS(4232), + [anon_sym_DQUOTE] = ACTIONS(1841), + [anon_sym_DOLLAR] = ACTIONS(1843), + [sym_raw_string] = ACTIONS(4234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1849), + [anon_sym_BQUOTE] = ACTIONS(1851), + [anon_sym_LT_LPAREN] = ACTIONS(1853), + [anon_sym_GT_LPAREN] = ACTIONS(1853), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(4234), + }, + [1508] = { + [sym__concat] = ACTIONS(3009), + [anon_sym_SEMI] = ACTIONS(3011), + [anon_sym_esac] = ACTIONS(3009), + [anon_sym_PIPE] = ACTIONS(3011), + [anon_sym_SEMI_SEMI] = ACTIONS(3009), + [anon_sym_PIPE_AMP] = ACTIONS(3009), + [anon_sym_AMP_AMP] = ACTIONS(3009), + [anon_sym_PIPE_PIPE] = ACTIONS(3009), + [anon_sym_EQ_TILDE] = ACTIONS(3009), + [anon_sym_EQ_EQ] = ACTIONS(3009), + [anon_sym_EQ] = ACTIONS(3011), + [anon_sym_PLUS_EQ] = ACTIONS(3009), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_GT] = ACTIONS(3011), + [anon_sym_BANG_EQ] = ACTIONS(3009), + [anon_sym_PLUS] = ACTIONS(3011), + [anon_sym_DASH] = ACTIONS(3011), + [anon_sym_DASH_EQ] = ACTIONS(3009), + [anon_sym_LT_EQ] = ACTIONS(3009), + [anon_sym_GT_EQ] = ACTIONS(3009), + [anon_sym_PLUS_PLUS] = ACTIONS(3009), + [anon_sym_DASH_DASH] = ACTIONS(3009), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(3009), + [anon_sym_LF] = ACTIONS(3009), + [anon_sym_AMP] = ACTIONS(3011), + }, + [1509] = { + [sym_concatenation] = STATE(1865), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1865), + [sym_regex] = ACTIONS(4236), + [anon_sym_RBRACE] = ACTIONS(4238), + [anon_sym_EQ] = ACTIONS(4240), + [anon_sym_DASH] = ACTIONS(4240), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(4242), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(4240), + [anon_sym_COLON_QMARK] = ACTIONS(4240), + [anon_sym_COLON_DASH] = ACTIONS(4240), + [anon_sym_PERCENT] = ACTIONS(4240), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1510] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(4238), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1511] = { + [sym_concatenation] = STATE(1867), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1867), + [sym_regex] = ACTIONS(4244), + [anon_sym_RBRACE] = ACTIONS(4230), + [anon_sym_EQ] = ACTIONS(4246), + [anon_sym_DASH] = ACTIONS(4246), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(4248), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(4246), + [anon_sym_COLON_QMARK] = ACTIONS(4246), + [anon_sym_COLON_DASH] = ACTIONS(4246), + [anon_sym_PERCENT] = ACTIONS(4246), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1512] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(4230), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1513] = { + [sym_concatenation] = STATE(1869), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1869), + [anon_sym_RBRACE] = ACTIONS(4250), + [anon_sym_EQ] = ACTIONS(4252), + [anon_sym_DASH] = ACTIONS(4252), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(4254), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(4252), + [anon_sym_COLON_QMARK] = ACTIONS(4252), + [anon_sym_COLON_DASH] = ACTIONS(4252), + [anon_sym_PERCENT] = ACTIONS(4252), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1514] = { + [sym__concat] = ACTIONS(3065), + [anon_sym_SEMI] = ACTIONS(3067), + [anon_sym_esac] = ACTIONS(3065), + [anon_sym_PIPE] = ACTIONS(3067), + [anon_sym_SEMI_SEMI] = ACTIONS(3065), + [anon_sym_PIPE_AMP] = ACTIONS(3065), + [anon_sym_AMP_AMP] = ACTIONS(3065), + [anon_sym_PIPE_PIPE] = ACTIONS(3065), + [anon_sym_EQ_TILDE] = ACTIONS(3065), + [anon_sym_EQ_EQ] = ACTIONS(3065), + [anon_sym_EQ] = ACTIONS(3067), + [anon_sym_PLUS_EQ] = ACTIONS(3065), + [anon_sym_LT] = ACTIONS(3067), + [anon_sym_GT] = ACTIONS(3067), + [anon_sym_BANG_EQ] = ACTIONS(3065), + [anon_sym_PLUS] = ACTIONS(3067), + [anon_sym_DASH] = ACTIONS(3067), + [anon_sym_DASH_EQ] = ACTIONS(3065), + [anon_sym_LT_EQ] = ACTIONS(3065), + [anon_sym_GT_EQ] = ACTIONS(3065), + [anon_sym_PLUS_PLUS] = ACTIONS(3065), + [anon_sym_DASH_DASH] = ACTIONS(3065), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(3065), + [anon_sym_LF] = ACTIONS(3065), + [anon_sym_AMP] = ACTIONS(3067), + }, + [1515] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(4250), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1516] = { + [sym_concatenation] = STATE(1867), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1867), + [anon_sym_RBRACE] = ACTIONS(4230), + [anon_sym_EQ] = ACTIONS(4246), + [anon_sym_DASH] = ACTIONS(4246), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(4248), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(4246), + [anon_sym_COLON_QMARK] = ACTIONS(4246), + [anon_sym_COLON_DASH] = ACTIONS(4246), + [anon_sym_PERCENT] = ACTIONS(4246), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1517] = { + [sym__concat] = ACTIONS(3120), + [anon_sym_SEMI] = ACTIONS(3122), + [anon_sym_esac] = ACTIONS(3120), + [anon_sym_PIPE] = ACTIONS(3122), + [anon_sym_SEMI_SEMI] = ACTIONS(3120), + [anon_sym_PIPE_AMP] = ACTIONS(3120), + [anon_sym_AMP_AMP] = ACTIONS(3120), + [anon_sym_PIPE_PIPE] = ACTIONS(3120), + [anon_sym_EQ_TILDE] = ACTIONS(3120), + [anon_sym_EQ_EQ] = ACTIONS(3120), + [anon_sym_EQ] = ACTIONS(3122), + [anon_sym_PLUS_EQ] = ACTIONS(3120), + [anon_sym_LT] = ACTIONS(3122), + [anon_sym_GT] = ACTIONS(3122), + [anon_sym_BANG_EQ] = ACTIONS(3120), + [anon_sym_PLUS] = ACTIONS(3122), + [anon_sym_DASH] = ACTIONS(3122), + [anon_sym_DASH_EQ] = ACTIONS(3120), + [anon_sym_LT_EQ] = ACTIONS(3120), + [anon_sym_GT_EQ] = ACTIONS(3120), + [anon_sym_PLUS_PLUS] = ACTIONS(3120), + [anon_sym_DASH_DASH] = ACTIONS(3120), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(3120), + [anon_sym_LF] = ACTIONS(3120), + [anon_sym_AMP] = ACTIONS(3122), + }, + [1518] = { + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(4256), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), + }, + [1519] = { + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(4256), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), + }, + [1520] = { + [sym__concat] = ACTIONS(3158), + [anon_sym_SEMI] = ACTIONS(3160), + [anon_sym_esac] = ACTIONS(3158), + [anon_sym_PIPE] = ACTIONS(3160), + [anon_sym_SEMI_SEMI] = ACTIONS(3158), + [anon_sym_PIPE_AMP] = ACTIONS(3158), + [anon_sym_AMP_AMP] = ACTIONS(3158), + [anon_sym_PIPE_PIPE] = ACTIONS(3158), + [anon_sym_EQ_TILDE] = ACTIONS(3158), + [anon_sym_EQ_EQ] = ACTIONS(3158), + [anon_sym_EQ] = ACTIONS(3160), + [anon_sym_PLUS_EQ] = ACTIONS(3158), + [anon_sym_LT] = ACTIONS(3160), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_BANG_EQ] = ACTIONS(3158), + [anon_sym_PLUS] = ACTIONS(3160), + [anon_sym_DASH] = ACTIONS(3160), + [anon_sym_DASH_EQ] = ACTIONS(3158), + [anon_sym_LT_EQ] = ACTIONS(3158), + [anon_sym_GT_EQ] = ACTIONS(3158), + [anon_sym_PLUS_PLUS] = ACTIONS(3158), + [anon_sym_DASH_DASH] = ACTIONS(3158), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(3158), + [anon_sym_LF] = ACTIONS(3158), + [anon_sym_AMP] = ACTIONS(3160), + }, + [1521] = { + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(4258), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), + }, + [1522] = { + [sym__expression] = STATE(1872), + [sym_binary_expression] = STATE(1872), + [sym_unary_expression] = STATE(1872), + [sym_postfix_expression] = STATE(1872), + [sym_parenthesized_expression] = STATE(1872), + [sym_concatenation] = STATE(1872), + [sym_string] = STATE(44), + [sym_simple_expansion] = STATE(44), + [sym_string_expansion] = STATE(44), + [sym_expansion] = STATE(44), + [sym_command_substitution] = STATE(44), + [sym_process_substitution] = STATE(44), + [anon_sym_RPAREN_RPAREN] = ACTIONS(4226), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(73), + [sym__special_characters] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(79), + [sym_raw_string] = ACTIONS(81), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(83), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(85), + [anon_sym_BQUOTE] = ACTIONS(87), + [anon_sym_LT_LPAREN] = ACTIONS(89), + [anon_sym_GT_LPAREN] = ACTIONS(89), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(91), + [sym_test_operator] = ACTIONS(93), + }, + [1523] = { + [sym__concat] = ACTIONS(1763), + [anon_sym_SEMI] = ACTIONS(1765), + [anon_sym_SEMI_SEMI] = ACTIONS(1763), + [sym__special_characters] = ACTIONS(1763), + [anon_sym_DQUOTE] = ACTIONS(1763), + [anon_sym_DOLLAR] = ACTIONS(1765), + [sym_raw_string] = ACTIONS(1763), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1763), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1763), + [anon_sym_BQUOTE] = ACTIONS(1763), + [anon_sym_LT_LPAREN] = ACTIONS(1763), + [anon_sym_GT_LPAREN] = ACTIONS(1763), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1765), + [anon_sym_LF] = ACTIONS(1763), + [anon_sym_AMP] = ACTIONS(1763), + }, + [1524] = { + [aux_sym_concatenation_repeat1] = STATE(1524), + [sym__concat] = ACTIONS(4260), + [anon_sym_SEMI] = ACTIONS(1765), + [anon_sym_SEMI_SEMI] = ACTIONS(1763), + [sym__special_characters] = ACTIONS(1763), + [anon_sym_DQUOTE] = ACTIONS(1763), + [anon_sym_DOLLAR] = ACTIONS(1765), + [sym_raw_string] = ACTIONS(1763), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1763), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1763), + [anon_sym_BQUOTE] = ACTIONS(1763), + [anon_sym_LT_LPAREN] = ACTIONS(1763), + [anon_sym_GT_LPAREN] = ACTIONS(1763), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1765), + [anon_sym_LF] = ACTIONS(1763), + [anon_sym_AMP] = ACTIONS(1763), + }, + [1525] = { + [sym__concat] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(1772), + [anon_sym_SEMI_SEMI] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(1770), + [anon_sym_DQUOTE] = ACTIONS(1770), + [anon_sym_DOLLAR] = ACTIONS(1772), + [sym_raw_string] = ACTIONS(1770), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1770), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1770), + [anon_sym_BQUOTE] = ACTIONS(1770), + [anon_sym_LT_LPAREN] = ACTIONS(1770), + [anon_sym_GT_LPAREN] = ACTIONS(1770), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1772), + [anon_sym_LF] = ACTIONS(1770), + [anon_sym_AMP] = ACTIONS(1770), + }, + [1526] = { + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_DQUOTE] = ACTIONS(4263), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym__string_content] = ACTIONS(821), + [anon_sym_POUND] = ACTIONS(815), + [sym_comment] = ACTIONS(281), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(823), + [anon_sym_STAR] = ACTIONS(825), + [anon_sym_AT] = ACTIONS(825), + [anon_sym_QMARK] = ACTIONS(825), + [anon_sym_0] = ACTIONS(823), + [anon_sym__] = ACTIONS(823), + }, + [1527] = { + [sym_concatenation] = STATE(1877), + [sym_string] = STATE(1876), + [sym_simple_expansion] = STATE(1876), + [sym_string_expansion] = STATE(1876), + [sym_expansion] = STATE(1876), + [sym_command_substitution] = STATE(1876), + [sym_process_substitution] = STATE(1876), + [anon_sym_RBRACE] = ACTIONS(4265), + [sym__special_characters] = ACTIONS(4267), + [anon_sym_DQUOTE] = ACTIONS(1841), + [anon_sym_DOLLAR] = ACTIONS(1843), + [sym_raw_string] = ACTIONS(4269), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1849), + [anon_sym_BQUOTE] = ACTIONS(1851), + [anon_sym_LT_LPAREN] = ACTIONS(1853), + [anon_sym_GT_LPAREN] = ACTIONS(1853), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(4269), + }, + [1528] = { + [anon_sym_LBRACK] = ACTIONS(857), + [anon_sym_EQ] = ACTIONS(4271), + [sym_comment] = ACTIONS(55), + }, + [1529] = { + [sym_concatenation] = STATE(1881), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1881), + [anon_sym_RBRACE] = ACTIONS(4273), + [anon_sym_EQ] = ACTIONS(4275), + [anon_sym_DASH] = ACTIONS(4275), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(4277), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(4279), + [anon_sym_COLON] = ACTIONS(4275), + [anon_sym_COLON_QMARK] = ACTIONS(4275), + [anon_sym_COLON_DASH] = ACTIONS(4275), + [anon_sym_PERCENT] = ACTIONS(4275), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1530] = { + [sym_concatenation] = STATE(1883), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1883), + [anon_sym_RBRACE] = ACTIONS(4265), + [anon_sym_EQ] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(4283), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(4285), + [anon_sym_COLON] = ACTIONS(4281), + [anon_sym_COLON_QMARK] = ACTIONS(4281), + [anon_sym_COLON_DASH] = ACTIONS(4281), + [anon_sym_PERCENT] = ACTIONS(4281), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1531] = { + [sym__concat] = ACTIONS(1871), + [anon_sym_SEMI] = ACTIONS(1873), + [anon_sym_SEMI_SEMI] = ACTIONS(1871), + [sym__special_characters] = ACTIONS(1871), + [anon_sym_DQUOTE] = ACTIONS(1871), + [anon_sym_DOLLAR] = ACTIONS(1873), + [sym_raw_string] = ACTIONS(1871), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1871), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1871), + [anon_sym_BQUOTE] = ACTIONS(1871), + [anon_sym_LT_LPAREN] = ACTIONS(1871), + [anon_sym_GT_LPAREN] = ACTIONS(1871), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1873), + [anon_sym_LF] = ACTIONS(1871), + [anon_sym_AMP] = ACTIONS(1871), + }, + [1532] = { + [sym_concatenation] = STATE(1886), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1886), + [sym_regex] = ACTIONS(4287), + [anon_sym_RBRACE] = ACTIONS(4289), + [anon_sym_EQ] = ACTIONS(4291), + [anon_sym_DASH] = ACTIONS(4291), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(4293), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(4291), + [anon_sym_COLON_QMARK] = ACTIONS(4291), + [anon_sym_COLON_DASH] = ACTIONS(4291), + [anon_sym_PERCENT] = ACTIONS(4291), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1533] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(4289), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1534] = { + [sym__concat] = ACTIONS(1919), + [anon_sym_SEMI] = ACTIONS(1921), + [anon_sym_SEMI_SEMI] = ACTIONS(1919), + [sym__special_characters] = ACTIONS(1919), + [anon_sym_DQUOTE] = ACTIONS(1919), + [anon_sym_DOLLAR] = ACTIONS(1921), + [sym_raw_string] = ACTIONS(1919), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1919), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1919), + [anon_sym_BQUOTE] = ACTIONS(1919), + [anon_sym_LT_LPAREN] = ACTIONS(1919), + [anon_sym_GT_LPAREN] = ACTIONS(1919), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1921), + [anon_sym_LF] = ACTIONS(1919), + [anon_sym_AMP] = ACTIONS(1919), + }, + [1535] = { + [sym_concatenation] = STATE(1883), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1883), + [sym_regex] = ACTIONS(4295), + [anon_sym_RBRACE] = ACTIONS(4265), + [anon_sym_EQ] = ACTIONS(4281), + [anon_sym_DASH] = ACTIONS(4281), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(4283), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(4281), + [anon_sym_COLON_QMARK] = ACTIONS(4281), + [anon_sym_COLON_DASH] = ACTIONS(4281), + [anon_sym_PERCENT] = ACTIONS(4281), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1536] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(4265), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1537] = { + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(4297), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), + }, + [1538] = { + [sym__concat] = ACTIONS(1927), + [anon_sym_SEMI] = ACTIONS(1929), + [anon_sym_SEMI_SEMI] = ACTIONS(1927), + [sym__special_characters] = ACTIONS(1927), + [anon_sym_DQUOTE] = ACTIONS(1927), + [anon_sym_DOLLAR] = ACTIONS(1929), + [sym_raw_string] = ACTIONS(1927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1927), + [anon_sym_BQUOTE] = ACTIONS(1927), + [anon_sym_LT_LPAREN] = ACTIONS(1927), + [anon_sym_GT_LPAREN] = ACTIONS(1927), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1929), + [anon_sym_LF] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1927), + }, + [1539] = { + [anon_sym_SEMI] = ACTIONS(4299), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(4297), + [anon_sym_SEMI_SEMI] = ACTIONS(4301), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(4301), + [anon_sym_AMP] = ACTIONS(4299), + }, + [1540] = { + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(4299), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(4297), + [anon_sym_SEMI_SEMI] = ACTIONS(4301), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(4301), + [anon_sym_AMP] = ACTIONS(4299), + }, + [1541] = { + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(4297), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), + }, + [1542] = { + [anon_sym_SEMI] = ACTIONS(4303), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_SEMI_SEMI] = ACTIONS(4305), + [anon_sym_PIPE_AMP] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_BQUOTE] = ACTIONS(4297), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(4305), + [anon_sym_AMP] = ACTIONS(4303), + }, + [1543] = { + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(4303), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_SEMI_SEMI] = ACTIONS(4305), + [anon_sym_PIPE_AMP] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(4297), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(4305), + [anon_sym_AMP] = ACTIONS(4303), + }, + [1544] = { + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(4307), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), + }, + [1545] = { + [sym__concat] = ACTIONS(1959), + [anon_sym_SEMI] = ACTIONS(1961), + [anon_sym_SEMI_SEMI] = ACTIONS(1959), + [sym__special_characters] = ACTIONS(1959), + [anon_sym_DQUOTE] = ACTIONS(1959), + [anon_sym_DOLLAR] = ACTIONS(1961), + [sym_raw_string] = ACTIONS(1959), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1959), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1959), + [anon_sym_BQUOTE] = ACTIONS(1959), + [anon_sym_LT_LPAREN] = ACTIONS(1959), + [anon_sym_GT_LPAREN] = ACTIONS(1959), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1961), + [anon_sym_LF] = ACTIONS(1959), + [anon_sym_AMP] = ACTIONS(1959), + }, + [1546] = { + [anon_sym_SEMI] = ACTIONS(4309), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(4307), + [anon_sym_SEMI_SEMI] = ACTIONS(4311), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(4311), + [anon_sym_AMP] = ACTIONS(4309), + }, + [1547] = { + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(4309), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(4307), + [anon_sym_SEMI_SEMI] = ACTIONS(4311), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(4311), + [anon_sym_AMP] = ACTIONS(4309), + }, + [1548] = { + [ts_builtin_sym_end] = ACTIONS(4313), + [anon_sym_SEMI] = ACTIONS(4315), + [anon_sym_esac] = ACTIONS(4313), + [anon_sym_PIPE] = ACTIONS(4315), + [anon_sym_RPAREN] = ACTIONS(4313), + [anon_sym_SEMI_SEMI] = ACTIONS(4313), + [anon_sym_PIPE_AMP] = ACTIONS(4313), + [anon_sym_AMP_AMP] = ACTIONS(4313), + [anon_sym_PIPE_PIPE] = ACTIONS(4313), + [anon_sym_BQUOTE] = ACTIONS(4313), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(4313), + [anon_sym_AMP] = ACTIONS(4315), + }, + [1549] = { + [ts_builtin_sym_end] = ACTIONS(3641), + [anon_sym_SEMI] = ACTIONS(3643), + [anon_sym_esac] = ACTIONS(3641), + [anon_sym_PIPE] = ACTIONS(3643), + [anon_sym_RPAREN] = ACTIONS(3641), + [anon_sym_SEMI_SEMI] = ACTIONS(3641), + [anon_sym_PIPE_AMP] = ACTIONS(3641), + [anon_sym_AMP_AMP] = ACTIONS(3641), + [anon_sym_PIPE_PIPE] = ACTIONS(3641), + [anon_sym_BQUOTE] = ACTIONS(3641), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(3641), + [anon_sym_AMP] = ACTIONS(3643), + }, + [1550] = { + [sym__concat] = ACTIONS(2959), + [anon_sym_PIPE] = ACTIONS(2961), + [anon_sym_RPAREN] = ACTIONS(2959), + [anon_sym_AMP_AMP] = ACTIONS(2959), + [anon_sym_PIPE_PIPE] = ACTIONS(2959), + [anon_sym_EQ_TILDE] = ACTIONS(2959), + [anon_sym_EQ_EQ] = ACTIONS(2959), + [anon_sym_EQ] = ACTIONS(2961), + [anon_sym_PLUS_EQ] = ACTIONS(2959), + [anon_sym_LT] = ACTIONS(2961), + [anon_sym_GT] = ACTIONS(2961), + [anon_sym_BANG_EQ] = ACTIONS(2959), + [anon_sym_PLUS] = ACTIONS(2961), + [anon_sym_DASH] = ACTIONS(2961), + [anon_sym_DASH_EQ] = ACTIONS(2959), + [anon_sym_LT_EQ] = ACTIONS(2959), + [anon_sym_GT_EQ] = ACTIONS(2959), + [anon_sym_PLUS_PLUS] = ACTIONS(2959), + [anon_sym_DASH_DASH] = ACTIONS(2959), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(2959), + }, + [1551] = { + [sym__concat] = ACTIONS(2973), + [anon_sym_PIPE] = ACTIONS(2975), + [anon_sym_RPAREN] = ACTIONS(2973), + [anon_sym_AMP_AMP] = ACTIONS(2973), + [anon_sym_PIPE_PIPE] = ACTIONS(2973), + [anon_sym_EQ_TILDE] = ACTIONS(2973), + [anon_sym_EQ_EQ] = ACTIONS(2973), + [anon_sym_EQ] = ACTIONS(2975), + [anon_sym_PLUS_EQ] = ACTIONS(2973), + [anon_sym_LT] = ACTIONS(2975), + [anon_sym_GT] = ACTIONS(2975), + [anon_sym_BANG_EQ] = ACTIONS(2973), + [anon_sym_PLUS] = ACTIONS(2975), + [anon_sym_DASH] = ACTIONS(2975), + [anon_sym_DASH_EQ] = ACTIONS(2973), + [anon_sym_LT_EQ] = ACTIONS(2973), + [anon_sym_GT_EQ] = ACTIONS(2973), + [anon_sym_PLUS_PLUS] = ACTIONS(2973), + [anon_sym_DASH_DASH] = ACTIONS(2973), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(2973), + }, + [1552] = { + [aux_sym_concatenation_repeat1] = STATE(1366), + [sym__concat] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(4317), + [sym_comment] = ACTIONS(55), + }, + [1553] = { + [aux_sym_concatenation_repeat1] = STATE(1366), + [sym__concat] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(4319), + [sym_comment] = ACTIONS(55), + }, + [1554] = { + [anon_sym_RBRACE] = ACTIONS(4319), + [sym_comment] = ACTIONS(55), + }, + [1555] = { + [sym_concatenation] = STATE(1897), + [sym_string] = STATE(1896), + [sym_simple_expansion] = STATE(1896), + [sym_string_expansion] = STATE(1896), + [sym_expansion] = STATE(1896), + [sym_command_substitution] = STATE(1896), + [sym_process_substitution] = STATE(1896), + [anon_sym_RBRACE] = ACTIONS(4319), + [sym__special_characters] = ACTIONS(4321), + [anon_sym_DQUOTE] = ACTIONS(1841), + [anon_sym_DOLLAR] = ACTIONS(1843), + [sym_raw_string] = ACTIONS(4323), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1849), + [anon_sym_BQUOTE] = ACTIONS(1851), + [anon_sym_LT_LPAREN] = ACTIONS(1853), + [anon_sym_GT_LPAREN] = ACTIONS(1853), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(4323), + }, + [1556] = { + [sym__concat] = ACTIONS(3009), + [anon_sym_PIPE] = ACTIONS(3011), + [anon_sym_RPAREN] = ACTIONS(3009), + [anon_sym_AMP_AMP] = ACTIONS(3009), + [anon_sym_PIPE_PIPE] = ACTIONS(3009), + [anon_sym_EQ_TILDE] = ACTIONS(3009), + [anon_sym_EQ_EQ] = ACTIONS(3009), + [anon_sym_EQ] = ACTIONS(3011), + [anon_sym_PLUS_EQ] = ACTIONS(3009), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_GT] = ACTIONS(3011), + [anon_sym_BANG_EQ] = ACTIONS(3009), + [anon_sym_PLUS] = ACTIONS(3011), + [anon_sym_DASH] = ACTIONS(3011), + [anon_sym_DASH_EQ] = ACTIONS(3009), + [anon_sym_LT_EQ] = ACTIONS(3009), + [anon_sym_GT_EQ] = ACTIONS(3009), + [anon_sym_PLUS_PLUS] = ACTIONS(3009), + [anon_sym_DASH_DASH] = ACTIONS(3009), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(3009), + }, + [1557] = { + [sym_concatenation] = STATE(1900), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1900), + [sym_regex] = ACTIONS(4325), + [anon_sym_RBRACE] = ACTIONS(4327), + [anon_sym_EQ] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4329), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(4331), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(4329), + [anon_sym_COLON_QMARK] = ACTIONS(4329), + [anon_sym_COLON_DASH] = ACTIONS(4329), + [anon_sym_PERCENT] = ACTIONS(4329), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1558] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(4327), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1559] = { + [sym_concatenation] = STATE(1902), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1902), + [sym_regex] = ACTIONS(4333), + [anon_sym_RBRACE] = ACTIONS(4319), + [anon_sym_EQ] = ACTIONS(4335), + [anon_sym_DASH] = ACTIONS(4335), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(4337), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(4335), + [anon_sym_COLON_QMARK] = ACTIONS(4335), + [anon_sym_COLON_DASH] = ACTIONS(4335), + [anon_sym_PERCENT] = ACTIONS(4335), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1560] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(4319), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1561] = { + [sym_concatenation] = STATE(1904), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1904), + [anon_sym_RBRACE] = ACTIONS(4339), + [anon_sym_EQ] = ACTIONS(4341), + [anon_sym_DASH] = ACTIONS(4341), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(4343), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(4341), + [anon_sym_COLON_QMARK] = ACTIONS(4341), + [anon_sym_COLON_DASH] = ACTIONS(4341), + [anon_sym_PERCENT] = ACTIONS(4341), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1562] = { + [sym__concat] = ACTIONS(3065), + [anon_sym_PIPE] = ACTIONS(3067), + [anon_sym_RPAREN] = ACTIONS(3065), + [anon_sym_AMP_AMP] = ACTIONS(3065), + [anon_sym_PIPE_PIPE] = ACTIONS(3065), + [anon_sym_EQ_TILDE] = ACTIONS(3065), + [anon_sym_EQ_EQ] = ACTIONS(3065), + [anon_sym_EQ] = ACTIONS(3067), + [anon_sym_PLUS_EQ] = ACTIONS(3065), + [anon_sym_LT] = ACTIONS(3067), + [anon_sym_GT] = ACTIONS(3067), + [anon_sym_BANG_EQ] = ACTIONS(3065), + [anon_sym_PLUS] = ACTIONS(3067), + [anon_sym_DASH] = ACTIONS(3067), + [anon_sym_DASH_EQ] = ACTIONS(3065), + [anon_sym_LT_EQ] = ACTIONS(3065), + [anon_sym_GT_EQ] = ACTIONS(3065), + [anon_sym_PLUS_PLUS] = ACTIONS(3065), + [anon_sym_DASH_DASH] = ACTIONS(3065), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(3065), + }, + [1563] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(4339), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1564] = { + [sym_concatenation] = STATE(1902), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1902), + [anon_sym_RBRACE] = ACTIONS(4319), + [anon_sym_EQ] = ACTIONS(4335), + [anon_sym_DASH] = ACTIONS(4335), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(4337), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(4335), + [anon_sym_COLON_QMARK] = ACTIONS(4335), + [anon_sym_COLON_DASH] = ACTIONS(4335), + [anon_sym_PERCENT] = ACTIONS(4335), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1565] = { + [sym__concat] = ACTIONS(3120), + [anon_sym_PIPE] = ACTIONS(3122), + [anon_sym_RPAREN] = ACTIONS(3120), + [anon_sym_AMP_AMP] = ACTIONS(3120), + [anon_sym_PIPE_PIPE] = ACTIONS(3120), + [anon_sym_EQ_TILDE] = ACTIONS(3120), + [anon_sym_EQ_EQ] = ACTIONS(3120), + [anon_sym_EQ] = ACTIONS(3122), + [anon_sym_PLUS_EQ] = ACTIONS(3120), + [anon_sym_LT] = ACTIONS(3122), + [anon_sym_GT] = ACTIONS(3122), + [anon_sym_BANG_EQ] = ACTIONS(3120), + [anon_sym_PLUS] = ACTIONS(3122), + [anon_sym_DASH] = ACTIONS(3122), + [anon_sym_DASH_EQ] = ACTIONS(3120), + [anon_sym_LT_EQ] = ACTIONS(3120), + [anon_sym_GT_EQ] = ACTIONS(3120), + [anon_sym_PLUS_PLUS] = ACTIONS(3120), + [anon_sym_DASH_DASH] = ACTIONS(3120), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(3120), + }, + [1566] = { + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(4345), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), + }, + [1567] = { + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(4345), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), + }, + [1568] = { + [sym__concat] = ACTIONS(3158), + [anon_sym_PIPE] = ACTIONS(3160), + [anon_sym_RPAREN] = ACTIONS(3158), + [anon_sym_AMP_AMP] = ACTIONS(3158), + [anon_sym_PIPE_PIPE] = ACTIONS(3158), + [anon_sym_EQ_TILDE] = ACTIONS(3158), + [anon_sym_EQ_EQ] = ACTIONS(3158), + [anon_sym_EQ] = ACTIONS(3160), + [anon_sym_PLUS_EQ] = ACTIONS(3158), + [anon_sym_LT] = ACTIONS(3160), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_BANG_EQ] = ACTIONS(3158), + [anon_sym_PLUS] = ACTIONS(3160), + [anon_sym_DASH] = ACTIONS(3160), + [anon_sym_DASH_EQ] = ACTIONS(3158), + [anon_sym_LT_EQ] = ACTIONS(3158), + [anon_sym_GT_EQ] = ACTIONS(3158), + [anon_sym_PLUS_PLUS] = ACTIONS(3158), + [anon_sym_DASH_DASH] = ACTIONS(3158), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(3158), + }, + [1569] = { + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(4347), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), + }, + [1570] = { + [sym__concat] = ACTIONS(3934), + [anon_sym_RPAREN_RPAREN] = ACTIONS(3934), + [anon_sym_AMP_AMP] = ACTIONS(3934), + [anon_sym_PIPE_PIPE] = ACTIONS(3934), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3934), + [anon_sym_EQ_TILDE] = ACTIONS(3934), + [anon_sym_EQ_EQ] = ACTIONS(3934), + [anon_sym_EQ] = ACTIONS(3936), + [anon_sym_PLUS_EQ] = ACTIONS(3934), + [anon_sym_LT] = ACTIONS(3936), + [anon_sym_GT] = ACTIONS(3936), + [anon_sym_BANG_EQ] = ACTIONS(3934), + [anon_sym_PLUS] = ACTIONS(3936), + [anon_sym_DASH] = ACTIONS(3936), + [anon_sym_DASH_EQ] = ACTIONS(3934), + [anon_sym_LT_EQ] = ACTIONS(3934), + [anon_sym_GT_EQ] = ACTIONS(3934), + [anon_sym_PLUS_PLUS] = ACTIONS(3934), + [anon_sym_DASH_DASH] = ACTIONS(3934), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(3934), + }, + [1571] = { + [sym__concat] = ACTIONS(3942), + [anon_sym_RPAREN_RPAREN] = ACTIONS(3942), + [anon_sym_AMP_AMP] = ACTIONS(3942), + [anon_sym_PIPE_PIPE] = ACTIONS(3942), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3942), + [anon_sym_EQ_TILDE] = ACTIONS(3942), + [anon_sym_EQ_EQ] = ACTIONS(3942), + [anon_sym_EQ] = ACTIONS(3944), + [anon_sym_PLUS_EQ] = ACTIONS(3942), + [anon_sym_LT] = ACTIONS(3944), + [anon_sym_GT] = ACTIONS(3944), + [anon_sym_BANG_EQ] = ACTIONS(3942), + [anon_sym_PLUS] = ACTIONS(3944), + [anon_sym_DASH] = ACTIONS(3944), + [anon_sym_DASH_EQ] = ACTIONS(3942), + [anon_sym_LT_EQ] = ACTIONS(3942), + [anon_sym_GT_EQ] = ACTIONS(3942), + [anon_sym_PLUS_PLUS] = ACTIONS(3942), + [anon_sym_DASH_DASH] = ACTIONS(3942), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(3942), + }, + [1572] = { + [aux_sym_concatenation_repeat1] = STATE(1366), + [sym__concat] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(4349), + [sym_comment] = ACTIONS(55), + }, + [1573] = { + [aux_sym_concatenation_repeat1] = STATE(1366), + [sym__concat] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(4351), + [sym_comment] = ACTIONS(55), + }, + [1574] = { + [anon_sym_RBRACE] = ACTIONS(4351), + [sym_comment] = ACTIONS(55), + }, + [1575] = { + [sym_concatenation] = STATE(1910), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1910), + [anon_sym_RBRACE] = ACTIONS(4353), + [anon_sym_EQ] = ACTIONS(4355), + [anon_sym_DASH] = ACTIONS(4355), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(4357), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(4355), + [anon_sym_COLON_QMARK] = ACTIONS(4355), + [anon_sym_COLON_DASH] = ACTIONS(4355), + [anon_sym_PERCENT] = ACTIONS(4355), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1576] = { + [sym__concat] = ACTIONS(3998), + [anon_sym_RPAREN_RPAREN] = ACTIONS(3998), + [anon_sym_AMP_AMP] = ACTIONS(3998), + [anon_sym_PIPE_PIPE] = ACTIONS(3998), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3998), + [anon_sym_EQ_TILDE] = ACTIONS(3998), + [anon_sym_EQ_EQ] = ACTIONS(3998), + [anon_sym_EQ] = ACTIONS(4000), + [anon_sym_PLUS_EQ] = ACTIONS(3998), + [anon_sym_LT] = ACTIONS(4000), + [anon_sym_GT] = ACTIONS(4000), + [anon_sym_BANG_EQ] = ACTIONS(3998), + [anon_sym_PLUS] = ACTIONS(4000), + [anon_sym_DASH] = ACTIONS(4000), + [anon_sym_DASH_EQ] = ACTIONS(3998), + [anon_sym_LT_EQ] = ACTIONS(3998), + [anon_sym_GT_EQ] = ACTIONS(3998), + [anon_sym_PLUS_PLUS] = ACTIONS(3998), + [anon_sym_DASH_DASH] = ACTIONS(3998), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(3998), + }, + [1577] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(4353), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1578] = { + [sym_concatenation] = STATE(1911), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1911), + [anon_sym_RBRACE] = ACTIONS(4351), + [anon_sym_EQ] = ACTIONS(4359), + [anon_sym_DASH] = ACTIONS(4359), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(4361), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(4359), + [anon_sym_COLON_QMARK] = ACTIONS(4359), + [anon_sym_COLON_DASH] = ACTIONS(4359), + [anon_sym_PERCENT] = ACTIONS(4359), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1579] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(4351), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1580] = { + [sym__concat] = ACTIONS(4043), + [anon_sym_RPAREN_RPAREN] = ACTIONS(4043), + [anon_sym_AMP_AMP] = ACTIONS(4043), + [anon_sym_PIPE_PIPE] = ACTIONS(4043), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4043), + [anon_sym_EQ_TILDE] = ACTIONS(4043), + [anon_sym_EQ_EQ] = ACTIONS(4043), + [anon_sym_EQ] = ACTIONS(4045), + [anon_sym_PLUS_EQ] = ACTIONS(4043), + [anon_sym_LT] = ACTIONS(4045), + [anon_sym_GT] = ACTIONS(4045), + [anon_sym_BANG_EQ] = ACTIONS(4043), + [anon_sym_PLUS] = ACTIONS(4045), + [anon_sym_DASH] = ACTIONS(4045), + [anon_sym_DASH_EQ] = ACTIONS(4043), + [anon_sym_LT_EQ] = ACTIONS(4043), + [anon_sym_GT_EQ] = ACTIONS(4043), + [anon_sym_PLUS_PLUS] = ACTIONS(4043), + [anon_sym_DASH_DASH] = ACTIONS(4043), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(4043), + }, + [1581] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(4363), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, [1582] = { + [sym__concat] = ACTIONS(4065), + [anon_sym_RPAREN_RPAREN] = ACTIONS(4065), + [anon_sym_AMP_AMP] = ACTIONS(4065), + [anon_sym_PIPE_PIPE] = ACTIONS(4065), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4065), + [anon_sym_EQ_TILDE] = ACTIONS(4065), + [anon_sym_EQ_EQ] = ACTIONS(4065), + [anon_sym_EQ] = ACTIONS(4067), + [anon_sym_PLUS_EQ] = ACTIONS(4065), + [anon_sym_LT] = ACTIONS(4067), + [anon_sym_GT] = ACTIONS(4067), + [anon_sym_BANG_EQ] = ACTIONS(4065), + [anon_sym_PLUS] = ACTIONS(4067), + [anon_sym_DASH] = ACTIONS(4067), + [anon_sym_DASH_EQ] = ACTIONS(4065), + [anon_sym_LT_EQ] = ACTIONS(4065), + [anon_sym_GT_EQ] = ACTIONS(4065), + [anon_sym_PLUS_PLUS] = ACTIONS(4065), + [anon_sym_DASH_DASH] = ACTIONS(4065), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(4065), + }, + [1583] = { + [sym__concat] = ACTIONS(4089), + [anon_sym_RPAREN_RPAREN] = ACTIONS(4089), + [anon_sym_AMP_AMP] = ACTIONS(4089), + [anon_sym_PIPE_PIPE] = ACTIONS(4089), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4089), + [anon_sym_EQ_TILDE] = ACTIONS(4089), + [anon_sym_EQ_EQ] = ACTIONS(4089), + [anon_sym_EQ] = ACTIONS(4091), + [anon_sym_PLUS_EQ] = ACTIONS(4089), + [anon_sym_LT] = ACTIONS(4091), + [anon_sym_GT] = ACTIONS(4091), + [anon_sym_BANG_EQ] = ACTIONS(4089), + [anon_sym_PLUS] = ACTIONS(4091), + [anon_sym_DASH] = ACTIONS(4091), + [anon_sym_DASH_EQ] = ACTIONS(4089), + [anon_sym_LT_EQ] = ACTIONS(4089), + [anon_sym_GT_EQ] = ACTIONS(4089), + [anon_sym_PLUS_PLUS] = ACTIONS(4089), + [anon_sym_DASH_DASH] = ACTIONS(4089), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(4089), + }, + [1584] = { + [aux_sym_concatenation_repeat1] = STATE(1588), + [sym_file_descriptor] = ACTIONS(1088), + [sym__concat] = ACTIONS(3579), + [ts_builtin_sym_end] = ACTIONS(1088), + [anon_sym_SEMI] = ACTIONS(1090), + [anon_sym_PIPE] = ACTIONS(1090), + [anon_sym_SEMI_SEMI] = ACTIONS(1088), + [anon_sym_PIPE_AMP] = ACTIONS(1088), + [anon_sym_AMP_AMP] = ACTIONS(1088), + [anon_sym_PIPE_PIPE] = ACTIONS(1088), + [anon_sym_LT] = ACTIONS(1090), + [anon_sym_GT] = ACTIONS(1090), + [anon_sym_GT_GT] = ACTIONS(1088), + [anon_sym_AMP_GT] = ACTIONS(1090), + [anon_sym_AMP_GT_GT] = ACTIONS(1088), + [anon_sym_LT_AMP] = ACTIONS(1088), + [anon_sym_GT_AMP] = ACTIONS(1088), + [anon_sym_LT_LT] = ACTIONS(1090), + [anon_sym_LT_LT_DASH] = ACTIONS(1088), + [anon_sym_LT_LT_LT] = ACTIONS(1088), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1088), + [anon_sym_AMP] = ACTIONS(1090), + }, + [1585] = { + [aux_sym_concatenation_repeat1] = STATE(1588), + [sym_file_descriptor] = ACTIONS(1092), + [sym__concat] = ACTIONS(3579), + [ts_builtin_sym_end] = ACTIONS(1092), + [anon_sym_SEMI] = ACTIONS(1094), + [anon_sym_PIPE] = ACTIONS(1094), + [anon_sym_SEMI_SEMI] = ACTIONS(1092), + [anon_sym_PIPE_AMP] = ACTIONS(1092), + [anon_sym_AMP_AMP] = ACTIONS(1092), + [anon_sym_PIPE_PIPE] = ACTIONS(1092), + [anon_sym_LT] = ACTIONS(1094), + [anon_sym_GT] = ACTIONS(1094), + [anon_sym_GT_GT] = ACTIONS(1092), + [anon_sym_AMP_GT] = ACTIONS(1094), + [anon_sym_AMP_GT_GT] = ACTIONS(1092), + [anon_sym_LT_AMP] = ACTIONS(1092), + [anon_sym_GT_AMP] = ACTIONS(1092), + [anon_sym_LT_LT] = ACTIONS(1094), + [anon_sym_LT_LT_DASH] = ACTIONS(1092), + [anon_sym_LT_LT_LT] = ACTIONS(1092), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1092), + [anon_sym_AMP] = ACTIONS(1094), + }, + [1586] = { + [sym_file_descriptor] = ACTIONS(1092), + [ts_builtin_sym_end] = ACTIONS(1092), + [anon_sym_SEMI] = ACTIONS(1094), + [anon_sym_esac] = ACTIONS(1092), + [anon_sym_PIPE] = ACTIONS(1094), + [anon_sym_RPAREN] = ACTIONS(1092), + [anon_sym_SEMI_SEMI] = ACTIONS(1092), + [anon_sym_PIPE_AMP] = ACTIONS(1092), + [anon_sym_AMP_AMP] = ACTIONS(1092), + [anon_sym_PIPE_PIPE] = ACTIONS(1092), + [anon_sym_LT] = ACTIONS(1094), + [anon_sym_GT] = ACTIONS(1094), + [anon_sym_GT_GT] = ACTIONS(1092), + [anon_sym_AMP_GT] = ACTIONS(1094), + [anon_sym_AMP_GT_GT] = ACTIONS(1092), + [anon_sym_LT_AMP] = ACTIONS(1092), + [anon_sym_GT_AMP] = ACTIONS(1092), + [anon_sym_LT_LT] = ACTIONS(1094), + [anon_sym_LT_LT_DASH] = ACTIONS(1092), + [anon_sym_LT_LT_LT] = ACTIONS(1092), + [anon_sym_BQUOTE] = ACTIONS(1092), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1092), + [anon_sym_AMP] = ACTIONS(1094), + }, + [1587] = { + [sym_string] = STATE(1913), + [sym_simple_expansion] = STATE(1913), + [sym_string_expansion] = STATE(1913), + [sym_expansion] = STATE(1913), + [sym_command_substitution] = STATE(1913), + [sym_process_substitution] = STATE(1913), + [sym__special_characters] = ACTIONS(4365), + [anon_sym_DQUOTE] = ACTIONS(2396), + [anon_sym_DOLLAR] = ACTIONS(2398), + [sym_raw_string] = ACTIONS(4365), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2402), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2404), + [anon_sym_BQUOTE] = ACTIONS(2406), + [anon_sym_LT_LPAREN] = ACTIONS(2408), + [anon_sym_GT_LPAREN] = ACTIONS(2408), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(4365), + }, + [1588] = { + [aux_sym_concatenation_repeat1] = STATE(1914), + [sym_file_descriptor] = ACTIONS(807), + [sym__concat] = ACTIONS(3579), + [ts_builtin_sym_end] = ACTIONS(807), + [anon_sym_SEMI] = ACTIONS(809), + [anon_sym_PIPE] = ACTIONS(809), + [anon_sym_SEMI_SEMI] = ACTIONS(807), + [anon_sym_PIPE_AMP] = ACTIONS(807), + [anon_sym_AMP_AMP] = ACTIONS(807), + [anon_sym_PIPE_PIPE] = ACTIONS(807), + [anon_sym_LT] = ACTIONS(809), + [anon_sym_GT] = ACTIONS(809), + [anon_sym_GT_GT] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(809), + [anon_sym_AMP_GT_GT] = ACTIONS(807), + [anon_sym_LT_AMP] = ACTIONS(807), + [anon_sym_GT_AMP] = ACTIONS(807), + [anon_sym_LT_LT] = ACTIONS(809), + [anon_sym_LT_LT_DASH] = ACTIONS(807), + [anon_sym_LT_LT_LT] = ACTIONS(807), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(807), + [anon_sym_AMP] = ACTIONS(809), + }, + [1589] = { [sym_file_descriptor] = ACTIONS(811), [sym__concat] = ACTIONS(811), [ts_builtin_sym_end] = ACTIONS(811), @@ -47652,4138 +50220,3393 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_DASH] = ACTIONS(811), [anon_sym_LT_LT_LT] = ACTIONS(811), [anon_sym_BQUOTE] = ACTIONS(811), - [sym_comment] = ACTIONS(53), + [sym_comment] = ACTIONS(55), [anon_sym_LF] = ACTIONS(811), [anon_sym_AMP] = ACTIONS(813), }, - [1583] = { - [anon_sym_LBRACK] = ACTIONS(815), - [anon_sym_EQ] = ACTIONS(4389), - [sym_comment] = ACTIONS(53), - }, - [1584] = { - [sym_subscript] = STATE(1914), - [sym_variable_name] = ACTIONS(4391), - [anon_sym_DOLLAR] = ACTIONS(4393), - [anon_sym_DASH] = ACTIONS(4393), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4395), - [anon_sym_STAR] = ACTIONS(4397), - [anon_sym_AT] = ACTIONS(4397), - [anon_sym_QMARK] = ACTIONS(4397), - [anon_sym_0] = ACTIONS(4395), - [anon_sym__] = ACTIONS(4395), - }, - [1585] = { - [sym_concatenation] = STATE(1917), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(1917), - [anon_sym_RBRACE] = ACTIONS(4399), - [anon_sym_EQ] = ACTIONS(4401), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(4403), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(4405), - [anon_sym_COLON] = ACTIONS(4401), - [anon_sym_COLON_QMARK] = ACTIONS(4401), - [anon_sym_COLON_DASH] = ACTIONS(4401), - [anon_sym_PERCENT] = ACTIONS(4401), - [anon_sym_DASH] = ACTIONS(4401), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [1586] = { - [sym_concatenation] = STATE(1920), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(1920), - [anon_sym_RBRACE] = ACTIONS(4407), - [anon_sym_EQ] = ACTIONS(4409), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(4411), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(4413), - [anon_sym_COLON] = ACTIONS(4409), - [anon_sym_COLON_QMARK] = ACTIONS(4409), - [anon_sym_COLON_DASH] = ACTIONS(4409), - [anon_sym_PERCENT] = ACTIONS(4409), - [anon_sym_DASH] = ACTIONS(4409), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [1587] = { - [anon_sym_SEMI] = ACTIONS(4415), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(4417), - [anon_sym_SEMI_SEMI] = ACTIONS(4419), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(4419), - [anon_sym_AMP] = ACTIONS(4415), - }, - [1588] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(4415), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(4417), - [anon_sym_SEMI_SEMI] = ACTIONS(4419), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(4419), - [anon_sym_AMP] = ACTIONS(4415), - }, - [1589] = { - [sym__terminated_statement] = STATE(190), - [sym_for_statement] = STATE(1923), - [sym_c_style_for_statement] = STATE(1923), - [sym_while_statement] = STATE(1923), - [sym_if_statement] = STATE(1923), - [sym_case_statement] = STATE(1923), - [sym_function_definition] = STATE(1923), - [sym_subshell] = STATE(1923), - [sym_pipeline] = STATE(1923), - [sym_list] = STATE(1923), - [sym_negated_command] = STATE(1923), - [sym_test_command] = STATE(1923), - [sym_declaration_command] = STATE(1923), - [sym_unset_command] = STATE(1923), - [sym_command] = STATE(1923), - [sym_command_name] = STATE(78), - [sym_variable_assignment] = STATE(1924), - [sym_subscript] = STATE(80), - [sym_file_redirect] = STATE(82), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(75), - [sym_simple_expansion] = STATE(75), - [sym_string_expansion] = STATE(75), - [sym_expansion] = STATE(75), - [sym_command_substitution] = STATE(75), - [sym_process_substitution] = STATE(75), - [aux_sym__statements_repeat1] = STATE(190), - [aux_sym_command_repeat1] = STATE(82), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(111), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(119), - [anon_sym_declare] = ACTIONS(121), - [anon_sym_typeset] = ACTIONS(121), - [anon_sym_export] = ACTIONS(121), - [anon_sym_readonly] = ACTIONS(121), - [anon_sym_local] = ACTIONS(121), - [anon_sym_unset] = ACTIONS(123), - [anon_sym_unsetenv] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), - }, [1590] = { - [anon_sym_SEMI] = ACTIONS(4421), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_SEMI_SEMI] = ACTIONS(4423), - [anon_sym_PIPE_AMP] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(883), - [anon_sym_PIPE_PIPE] = ACTIONS(883), - [anon_sym_BQUOTE] = ACTIONS(4417), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(4423), - [anon_sym_AMP] = ACTIONS(4421), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_DQUOTE] = ACTIONS(4367), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym__string_content] = ACTIONS(821), + [anon_sym_POUND] = ACTIONS(815), + [sym_comment] = ACTIONS(281), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(823), + [anon_sym_STAR] = ACTIONS(825), + [anon_sym_AT] = ACTIONS(825), + [anon_sym_QMARK] = ACTIONS(825), + [anon_sym_0] = ACTIONS(823), + [anon_sym__] = ACTIONS(823), }, [1591] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(4421), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_SEMI_SEMI] = ACTIONS(4423), - [anon_sym_PIPE_AMP] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(883), - [anon_sym_PIPE_PIPE] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(4417), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(4423), - [anon_sym_AMP] = ACTIONS(4421), + [sym_simple_expansion] = STATE(148), + [sym_expansion] = STATE(148), + [sym_command_substitution] = STATE(148), + [aux_sym_string_repeat1] = STATE(473), + [anon_sym_DQUOTE] = ACTIONS(4367), + [anon_sym_DOLLAR] = ACTIONS(4369), + [sym__string_content] = ACTIONS(273), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(277), + [anon_sym_BQUOTE] = ACTIONS(279), + [sym_comment] = ACTIONS(281), }, [1592] = { - [sym__terminated_statement] = STATE(190), - [sym_for_statement] = STATE(1926), - [sym_c_style_for_statement] = STATE(1926), - [sym_while_statement] = STATE(1926), - [sym_if_statement] = STATE(1926), - [sym_case_statement] = STATE(1926), - [sym_function_definition] = STATE(1926), - [sym_subshell] = STATE(1926), - [sym_pipeline] = STATE(1926), - [sym_list] = STATE(1926), - [sym_negated_command] = STATE(1926), - [sym_test_command] = STATE(1926), - [sym_declaration_command] = STATE(1926), - [sym_unset_command] = STATE(1926), - [sym_command] = STATE(1926), - [sym_command_name] = STATE(165), - [sym_variable_assignment] = STATE(1927), - [sym_subscript] = STATE(53), - [sym_file_redirect] = STATE(168), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(47), - [sym_simple_expansion] = STATE(47), - [sym_string_expansion] = STATE(47), - [sym_expansion] = STATE(47), - [sym_command_substitution] = STATE(47), - [sym_process_substitution] = STATE(47), - [aux_sym__statements_repeat1] = STATE(190), - [aux_sym_command_repeat1] = STATE(168), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(69), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(289), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(291), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(293), - [anon_sym_LBRACK] = ACTIONS(295), - [anon_sym_LBRACK_LBRACK] = ACTIONS(297), - [anon_sym_declare] = ACTIONS(299), - [anon_sym_typeset] = ACTIONS(299), - [anon_sym_export] = ACTIONS(299), - [anon_sym_readonly] = ACTIONS(299), - [anon_sym_local] = ACTIONS(299), - [anon_sym_unset] = ACTIONS(301), - [anon_sym_unsetenv] = ACTIONS(301), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(87), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(303), + [sym_file_descriptor] = ACTIONS(845), + [sym__concat] = ACTIONS(845), + [ts_builtin_sym_end] = ACTIONS(845), + [anon_sym_SEMI] = ACTIONS(847), + [anon_sym_esac] = ACTIONS(845), + [anon_sym_PIPE] = ACTIONS(847), + [anon_sym_RPAREN] = ACTIONS(845), + [anon_sym_SEMI_SEMI] = ACTIONS(845), + [anon_sym_PIPE_AMP] = ACTIONS(845), + [anon_sym_AMP_AMP] = ACTIONS(845), + [anon_sym_PIPE_PIPE] = ACTIONS(845), + [anon_sym_LT] = ACTIONS(847), + [anon_sym_GT] = ACTIONS(847), + [anon_sym_GT_GT] = ACTIONS(845), + [anon_sym_AMP_GT] = ACTIONS(847), + [anon_sym_AMP_GT_GT] = ACTIONS(845), + [anon_sym_LT_AMP] = ACTIONS(845), + [anon_sym_GT_AMP] = ACTIONS(845), + [anon_sym_LT_LT] = ACTIONS(847), + [anon_sym_LT_LT_DASH] = ACTIONS(845), + [anon_sym_LT_LT_LT] = ACTIONS(845), + [anon_sym_BQUOTE] = ACTIONS(845), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(845), + [anon_sym_AMP] = ACTIONS(847), }, [1593] = { - [anon_sym_SEMI] = ACTIONS(4425), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(4427), - [anon_sym_SEMI_SEMI] = ACTIONS(4429), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(4429), - [anon_sym_AMP] = ACTIONS(4425), + [sym_file_descriptor] = ACTIONS(849), + [sym__concat] = ACTIONS(849), + [ts_builtin_sym_end] = ACTIONS(849), + [anon_sym_SEMI] = ACTIONS(851), + [anon_sym_esac] = ACTIONS(849), + [anon_sym_PIPE] = ACTIONS(851), + [anon_sym_RPAREN] = ACTIONS(849), + [anon_sym_SEMI_SEMI] = ACTIONS(849), + [anon_sym_PIPE_AMP] = ACTIONS(849), + [anon_sym_AMP_AMP] = ACTIONS(849), + [anon_sym_PIPE_PIPE] = ACTIONS(849), + [anon_sym_LT] = ACTIONS(851), + [anon_sym_GT] = ACTIONS(851), + [anon_sym_GT_GT] = ACTIONS(849), + [anon_sym_AMP_GT] = ACTIONS(851), + [anon_sym_AMP_GT_GT] = ACTIONS(849), + [anon_sym_LT_AMP] = ACTIONS(849), + [anon_sym_GT_AMP] = ACTIONS(849), + [anon_sym_LT_LT] = ACTIONS(851), + [anon_sym_LT_LT_DASH] = ACTIONS(849), + [anon_sym_LT_LT_LT] = ACTIONS(849), + [anon_sym_BQUOTE] = ACTIONS(849), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(849), + [anon_sym_AMP] = ACTIONS(851), }, [1594] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(4425), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(4427), - [anon_sym_SEMI_SEMI] = ACTIONS(4429), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(4429), - [anon_sym_AMP] = ACTIONS(4425), + [sym_file_descriptor] = ACTIONS(853), + [sym__concat] = ACTIONS(853), + [ts_builtin_sym_end] = ACTIONS(853), + [anon_sym_SEMI] = ACTIONS(855), + [anon_sym_esac] = ACTIONS(853), + [anon_sym_PIPE] = ACTIONS(855), + [anon_sym_RPAREN] = ACTIONS(853), + [anon_sym_SEMI_SEMI] = ACTIONS(853), + [anon_sym_PIPE_AMP] = ACTIONS(853), + [anon_sym_AMP_AMP] = ACTIONS(853), + [anon_sym_PIPE_PIPE] = ACTIONS(853), + [anon_sym_LT] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_GT_GT] = ACTIONS(853), + [anon_sym_AMP_GT] = ACTIONS(855), + [anon_sym_AMP_GT_GT] = ACTIONS(853), + [anon_sym_LT_AMP] = ACTIONS(853), + [anon_sym_GT_AMP] = ACTIONS(853), + [anon_sym_LT_LT] = ACTIONS(855), + [anon_sym_LT_LT_DASH] = ACTIONS(853), + [anon_sym_LT_LT_LT] = ACTIONS(853), + [anon_sym_BQUOTE] = ACTIONS(853), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(853), + [anon_sym_AMP] = ACTIONS(855), }, [1595] = { - [sym__terminated_statement] = STATE(190), - [sym_for_statement] = STATE(1930), - [sym_c_style_for_statement] = STATE(1930), - [sym_while_statement] = STATE(1930), - [sym_if_statement] = STATE(1930), - [sym_case_statement] = STATE(1930), - [sym_function_definition] = STATE(1930), - [sym_subshell] = STATE(1930), - [sym_pipeline] = STATE(1930), - [sym_list] = STATE(1930), - [sym_negated_command] = STATE(1930), - [sym_test_command] = STATE(1930), - [sym_declaration_command] = STATE(1930), - [sym_unset_command] = STATE(1930), - [sym_command] = STATE(1930), - [sym_command_name] = STATE(78), - [sym_variable_assignment] = STATE(1931), - [sym_subscript] = STATE(80), - [sym_file_redirect] = STATE(82), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(75), - [sym_simple_expansion] = STATE(75), - [sym_string_expansion] = STATE(75), - [sym_expansion] = STATE(75), - [sym_command_substitution] = STATE(75), - [sym_process_substitution] = STATE(75), - [aux_sym__statements_repeat1] = STATE(190), - [aux_sym_command_repeat1] = STATE(82), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(111), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(119), - [anon_sym_declare] = ACTIONS(121), - [anon_sym_typeset] = ACTIONS(121), - [anon_sym_export] = ACTIONS(121), - [anon_sym_readonly] = ACTIONS(121), - [anon_sym_local] = ACTIONS(121), - [anon_sym_unset] = ACTIONS(123), - [anon_sym_unsetenv] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), + [anon_sym_LBRACK] = ACTIONS(857), + [anon_sym_EQ] = ACTIONS(4371), + [sym_comment] = ACTIONS(55), }, [1596] = { - [sym__concat] = ACTIONS(3788), - [anon_sym_PIPE] = ACTIONS(3790), - [anon_sym_RPAREN] = ACTIONS(3788), - [anon_sym_AMP_AMP] = ACTIONS(3788), - [anon_sym_PIPE_PIPE] = ACTIONS(3788), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3788), - [anon_sym_EQ_TILDE] = ACTIONS(3788), - [anon_sym_EQ_EQ] = ACTIONS(3788), - [anon_sym_EQ] = ACTIONS(3790), - [anon_sym_LT] = ACTIONS(3788), - [anon_sym_GT] = ACTIONS(3788), - [anon_sym_BANG_EQ] = ACTIONS(3788), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(3788), + [sym_subscript] = STATE(1920), + [sym_variable_name] = ACTIONS(4373), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_DOLLAR] = ACTIONS(4375), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4377), + [anon_sym_STAR] = ACTIONS(4379), + [anon_sym_AT] = ACTIONS(4379), + [anon_sym_QMARK] = ACTIONS(4379), + [anon_sym_0] = ACTIONS(4377), + [anon_sym__] = ACTIONS(4377), }, [1597] = { - [sym__concat] = ACTIONS(3796), - [anon_sym_PIPE] = ACTIONS(3798), - [anon_sym_RPAREN] = ACTIONS(3796), - [anon_sym_AMP_AMP] = ACTIONS(3796), - [anon_sym_PIPE_PIPE] = ACTIONS(3796), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3796), - [anon_sym_EQ_TILDE] = ACTIONS(3796), - [anon_sym_EQ_EQ] = ACTIONS(3796), - [anon_sym_EQ] = ACTIONS(3798), - [anon_sym_LT] = ACTIONS(3796), - [anon_sym_GT] = ACTIONS(3796), - [anon_sym_BANG_EQ] = ACTIONS(3796), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(3796), + [sym_concatenation] = STATE(1923), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1923), + [anon_sym_RBRACE] = ACTIONS(4381), + [anon_sym_EQ] = ACTIONS(4383), + [anon_sym_DASH] = ACTIONS(4383), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(4385), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(4387), + [anon_sym_COLON] = ACTIONS(4383), + [anon_sym_COLON_QMARK] = ACTIONS(4383), + [anon_sym_COLON_DASH] = ACTIONS(4383), + [anon_sym_PERCENT] = ACTIONS(4383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1598] = { - [aux_sym_concatenation_repeat1] = STATE(1293), - [sym__concat] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(4431), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(1926), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1926), + [anon_sym_RBRACE] = ACTIONS(4389), + [anon_sym_EQ] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4391), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(4393), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(4395), + [anon_sym_COLON] = ACTIONS(4391), + [anon_sym_COLON_QMARK] = ACTIONS(4391), + [anon_sym_COLON_DASH] = ACTIONS(4391), + [anon_sym_PERCENT] = ACTIONS(4391), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1599] = { - [aux_sym_concatenation_repeat1] = STATE(1293), - [sym__concat] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(4433), - [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(4397), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(4399), + [anon_sym_SEMI_SEMI] = ACTIONS(4401), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(4401), + [anon_sym_AMP] = ACTIONS(4397), }, [1600] = { - [anon_sym_RBRACE] = ACTIONS(4433), - [sym_comment] = ACTIONS(53), + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(4397), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(4399), + [anon_sym_SEMI_SEMI] = ACTIONS(4401), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(4401), + [anon_sym_AMP] = ACTIONS(4397), }, [1601] = { - [sym_concatenation] = STATE(1935), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(1935), - [anon_sym_RBRACE] = ACTIONS(4435), - [anon_sym_EQ] = ACTIONS(4437), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(4439), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(4437), - [anon_sym_COLON_QMARK] = ACTIONS(4437), - [anon_sym_COLON_DASH] = ACTIONS(4437), - [anon_sym_PERCENT] = ACTIONS(4437), - [anon_sym_DASH] = ACTIONS(4437), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym__terminated_statement] = STATE(198), + [sym_for_statement] = STATE(1929), + [sym_c_style_for_statement] = STATE(1929), + [sym_while_statement] = STATE(1929), + [sym_if_statement] = STATE(1929), + [sym_case_statement] = STATE(1929), + [sym_function_definition] = STATE(1929), + [sym_subshell] = STATE(1929), + [sym_pipeline] = STATE(1929), + [sym_list] = STATE(1929), + [sym_negated_command] = STATE(1929), + [sym_test_command] = STATE(1929), + [sym_declaration_command] = STATE(1929), + [sym_unset_command] = STATE(1929), + [sym_command] = STATE(1929), + [sym_command_name] = STATE(92), + [sym_variable_assignment] = STATE(1930), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(96), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), + [aux_sym__statements_repeat1] = STATE(198), + [aux_sym_command_repeat1] = STATE(96), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(137), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(149), + [anon_sym_declare] = ACTIONS(151), + [anon_sym_typeset] = ACTIONS(151), + [anon_sym_export] = ACTIONS(151), + [anon_sym_readonly] = ACTIONS(151), + [anon_sym_local] = ACTIONS(151), + [anon_sym_unset] = ACTIONS(153), + [anon_sym_unsetenv] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(159), }, [1602] = { - [sym__concat] = ACTIONS(3852), - [anon_sym_PIPE] = ACTIONS(3854), - [anon_sym_RPAREN] = ACTIONS(3852), - [anon_sym_AMP_AMP] = ACTIONS(3852), - [anon_sym_PIPE_PIPE] = ACTIONS(3852), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3852), - [anon_sym_EQ_TILDE] = ACTIONS(3852), - [anon_sym_EQ_EQ] = ACTIONS(3852), - [anon_sym_EQ] = ACTIONS(3854), - [anon_sym_LT] = ACTIONS(3852), - [anon_sym_GT] = ACTIONS(3852), - [anon_sym_BANG_EQ] = ACTIONS(3852), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(3852), + [anon_sym_SEMI] = ACTIONS(4403), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_SEMI_SEMI] = ACTIONS(4405), + [anon_sym_PIPE_AMP] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_BQUOTE] = ACTIONS(4399), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(4405), + [anon_sym_AMP] = ACTIONS(4403), }, [1603] = { - [sym_concatenation] = STATE(1936), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(1936), - [anon_sym_RBRACE] = ACTIONS(4433), - [anon_sym_EQ] = ACTIONS(4441), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(4443), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(4441), - [anon_sym_COLON_QMARK] = ACTIONS(4441), - [anon_sym_COLON_DASH] = ACTIONS(4441), - [anon_sym_PERCENT] = ACTIONS(4441), - [anon_sym_DASH] = ACTIONS(4441), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(4403), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_SEMI_SEMI] = ACTIONS(4405), + [anon_sym_PIPE_AMP] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(4399), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(4405), + [anon_sym_AMP] = ACTIONS(4403), }, [1604] = { - [sym__concat] = ACTIONS(3893), - [anon_sym_PIPE] = ACTIONS(3895), - [anon_sym_RPAREN] = ACTIONS(3893), - [anon_sym_AMP_AMP] = ACTIONS(3893), - [anon_sym_PIPE_PIPE] = ACTIONS(3893), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3893), - [anon_sym_EQ_TILDE] = ACTIONS(3893), - [anon_sym_EQ_EQ] = ACTIONS(3893), - [anon_sym_EQ] = ACTIONS(3895), - [anon_sym_LT] = ACTIONS(3893), - [anon_sym_GT] = ACTIONS(3893), - [anon_sym_BANG_EQ] = ACTIONS(3893), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(3893), + [sym__terminated_statement] = STATE(198), + [sym_for_statement] = STATE(1932), + [sym_c_style_for_statement] = STATE(1932), + [sym_while_statement] = STATE(1932), + [sym_if_statement] = STATE(1932), + [sym_case_statement] = STATE(1932), + [sym_function_definition] = STATE(1932), + [sym_subshell] = STATE(1932), + [sym_pipeline] = STATE(1932), + [sym_list] = STATE(1932), + [sym_negated_command] = STATE(1932), + [sym_test_command] = STATE(1932), + [sym_declaration_command] = STATE(1932), + [sym_unset_command] = STATE(1932), + [sym_command] = STATE(1932), + [sym_command_name] = STATE(173), + [sym_variable_assignment] = STATE(1933), + [sym_subscript] = STATE(66), + [sym_file_redirect] = STATE(176), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(60), + [sym_simple_expansion] = STATE(60), + [sym_string_expansion] = STATE(60), + [sym_expansion] = STATE(60), + [sym_command_substitution] = STATE(60), + [sym_process_substitution] = STATE(60), + [aux_sym__statements_repeat1] = STATE(198), + [aux_sym_command_repeat1] = STATE(176), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(95), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(305), + [anon_sym_while] = ACTIONS(307), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(311), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(315), + [anon_sym_declare] = ACTIONS(317), + [anon_sym_typeset] = ACTIONS(317), + [anon_sym_export] = ACTIONS(317), + [anon_sym_readonly] = ACTIONS(317), + [anon_sym_local] = ACTIONS(317), + [anon_sym_unset] = ACTIONS(319), + [anon_sym_unsetenv] = ACTIONS(319), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(115), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(321), }, [1605] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(4445), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [anon_sym_SEMI] = ACTIONS(4407), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(4409), + [anon_sym_SEMI_SEMI] = ACTIONS(4411), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(4411), + [anon_sym_AMP] = ACTIONS(4407), }, [1606] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(4433), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(4407), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(4409), + [anon_sym_SEMI_SEMI] = ACTIONS(4411), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(4411), + [anon_sym_AMP] = ACTIONS(4407), }, [1607] = { - [sym__concat] = ACTIONS(3915), - [anon_sym_PIPE] = ACTIONS(3917), - [anon_sym_RPAREN] = ACTIONS(3915), - [anon_sym_AMP_AMP] = ACTIONS(3915), - [anon_sym_PIPE_PIPE] = ACTIONS(3915), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3915), - [anon_sym_EQ_TILDE] = ACTIONS(3915), - [anon_sym_EQ_EQ] = ACTIONS(3915), - [anon_sym_EQ] = ACTIONS(3917), - [anon_sym_LT] = ACTIONS(3915), - [anon_sym_GT] = ACTIONS(3915), - [anon_sym_BANG_EQ] = ACTIONS(3915), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(3915), + [sym__terminated_statement] = STATE(198), + [sym_for_statement] = STATE(1936), + [sym_c_style_for_statement] = STATE(1936), + [sym_while_statement] = STATE(1936), + [sym_if_statement] = STATE(1936), + [sym_case_statement] = STATE(1936), + [sym_function_definition] = STATE(1936), + [sym_subshell] = STATE(1936), + [sym_pipeline] = STATE(1936), + [sym_list] = STATE(1936), + [sym_negated_command] = STATE(1936), + [sym_test_command] = STATE(1936), + [sym_declaration_command] = STATE(1936), + [sym_unset_command] = STATE(1936), + [sym_command] = STATE(1936), + [sym_command_name] = STATE(92), + [sym_variable_assignment] = STATE(1937), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(96), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), + [aux_sym__statements_repeat1] = STATE(198), + [aux_sym_command_repeat1] = STATE(96), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(137), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(149), + [anon_sym_declare] = ACTIONS(151), + [anon_sym_typeset] = ACTIONS(151), + [anon_sym_export] = ACTIONS(151), + [anon_sym_readonly] = ACTIONS(151), + [anon_sym_local] = ACTIONS(151), + [anon_sym_unset] = ACTIONS(153), + [anon_sym_unsetenv] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(159), }, [1608] = { - [sym__concat] = ACTIONS(3939), - [anon_sym_PIPE] = ACTIONS(3941), - [anon_sym_RPAREN] = ACTIONS(3939), - [anon_sym_AMP_AMP] = ACTIONS(3939), - [anon_sym_PIPE_PIPE] = ACTIONS(3939), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3939), - [anon_sym_EQ_TILDE] = ACTIONS(3939), - [anon_sym_EQ_EQ] = ACTIONS(3939), - [anon_sym_EQ] = ACTIONS(3941), - [anon_sym_LT] = ACTIONS(3939), - [anon_sym_GT] = ACTIONS(3939), - [anon_sym_BANG_EQ] = ACTIONS(3939), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(3939), + [aux_sym_concatenation_repeat1] = STATE(1608), + [sym_file_descriptor] = ACTIONS(1763), + [sym__concat] = ACTIONS(3295), + [sym_variable_name] = ACTIONS(1763), + [anon_sym_SEMI] = ACTIONS(1765), + [anon_sym_PIPE] = ACTIONS(1765), + [anon_sym_SEMI_SEMI] = ACTIONS(1763), + [anon_sym_PIPE_AMP] = ACTIONS(1763), + [anon_sym_AMP_AMP] = ACTIONS(1763), + [anon_sym_PIPE_PIPE] = ACTIONS(1763), + [anon_sym_LT] = ACTIONS(1765), + [anon_sym_GT] = ACTIONS(1765), + [anon_sym_GT_GT] = ACTIONS(1763), + [anon_sym_AMP_GT] = ACTIONS(1765), + [anon_sym_AMP_GT_GT] = ACTIONS(1763), + [anon_sym_LT_AMP] = ACTIONS(1763), + [anon_sym_GT_AMP] = ACTIONS(1763), + [sym__special_characters] = ACTIONS(1763), + [anon_sym_DQUOTE] = ACTIONS(1763), + [anon_sym_DOLLAR] = ACTIONS(1765), + [sym_raw_string] = ACTIONS(1763), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1763), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1763), + [anon_sym_BQUOTE] = ACTIONS(1763), + [anon_sym_LT_LPAREN] = ACTIONS(1763), + [anon_sym_GT_LPAREN] = ACTIONS(1763), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1765), + [anon_sym_LF] = ACTIONS(1763), + [anon_sym_AMP] = ACTIONS(1765), }, [1609] = { - [sym_variable_name] = ACTIONS(3178), - [ts_builtin_sym_end] = ACTIONS(3178), - [anon_sym_SEMI] = ACTIONS(3180), - [anon_sym_PIPE] = ACTIONS(3180), - [anon_sym_RPAREN] = ACTIONS(3178), - [anon_sym_SEMI_SEMI] = ACTIONS(3178), - [anon_sym_PIPE_AMP] = ACTIONS(3178), - [anon_sym_AMP_AMP] = ACTIONS(3178), - [anon_sym_PIPE_PIPE] = ACTIONS(3178), - [sym__special_characters] = ACTIONS(3178), - [anon_sym_DQUOTE] = ACTIONS(3178), - [anon_sym_DOLLAR] = ACTIONS(3180), - [sym_raw_string] = ACTIONS(3178), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3178), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3178), - [anon_sym_BQUOTE] = ACTIONS(3178), - [anon_sym_LT_LPAREN] = ACTIONS(3178), - [anon_sym_GT_LPAREN] = ACTIONS(3178), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3180), - [sym_word] = ACTIONS(3180), - [anon_sym_LF] = ACTIONS(3178), - [anon_sym_AMP] = ACTIONS(3180), + [sym_concatenation] = STATE(1586), + [sym_string] = STATE(1939), + [sym_simple_expansion] = STATE(1939), + [sym_string_expansion] = STATE(1939), + [sym_expansion] = STATE(1939), + [sym_command_substitution] = STATE(1939), + [sym_process_substitution] = STATE(1939), + [sym__special_characters] = ACTIONS(4413), + [anon_sym_DQUOTE] = ACTIONS(2396), + [anon_sym_DOLLAR] = ACTIONS(2398), + [sym_raw_string] = ACTIONS(4415), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2402), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2404), + [anon_sym_BQUOTE] = ACTIONS(2406), + [anon_sym_LT_LPAREN] = ACTIONS(2408), + [anon_sym_GT_LPAREN] = ACTIONS(2408), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(4415), }, [1610] = { - [sym__concat] = ACTIONS(3788), - [sym_variable_name] = ACTIONS(3788), - [ts_builtin_sym_end] = ACTIONS(3788), - [anon_sym_SEMI] = ACTIONS(3790), - [anon_sym_PIPE] = ACTIONS(3790), - [anon_sym_RPAREN] = ACTIONS(3788), - [anon_sym_SEMI_SEMI] = ACTIONS(3788), - [anon_sym_PIPE_AMP] = ACTIONS(3788), - [anon_sym_AMP_AMP] = ACTIONS(3788), - [anon_sym_PIPE_PIPE] = ACTIONS(3788), - [sym__special_characters] = ACTIONS(3788), - [anon_sym_DQUOTE] = ACTIONS(3788), - [anon_sym_DOLLAR] = ACTIONS(3790), - [sym_raw_string] = ACTIONS(3788), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3788), - [anon_sym_BQUOTE] = ACTIONS(3788), - [anon_sym_LT_LPAREN] = ACTIONS(3788), - [anon_sym_GT_LPAREN] = ACTIONS(3788), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3790), - [sym_word] = ACTIONS(3790), - [anon_sym_LF] = ACTIONS(3788), - [anon_sym_AMP] = ACTIONS(3790), + [aux_sym_concatenation_repeat1] = STATE(1940), + [sym_file_descriptor] = ACTIONS(773), + [sym__concat] = ACTIONS(3579), + [anon_sym_SEMI] = ACTIONS(777), + [anon_sym_PIPE] = ACTIONS(777), + [anon_sym_SEMI_SEMI] = ACTIONS(773), + [anon_sym_PIPE_AMP] = ACTIONS(773), + [anon_sym_AMP_AMP] = ACTIONS(773), + [anon_sym_PIPE_PIPE] = ACTIONS(773), + [anon_sym_LT] = ACTIONS(777), + [anon_sym_GT] = ACTIONS(777), + [anon_sym_GT_GT] = ACTIONS(773), + [anon_sym_AMP_GT] = ACTIONS(777), + [anon_sym_AMP_GT_GT] = ACTIONS(773), + [anon_sym_LT_AMP] = ACTIONS(773), + [anon_sym_GT_AMP] = ACTIONS(773), + [anon_sym_LT_LT] = ACTIONS(777), + [anon_sym_LT_LT_DASH] = ACTIONS(773), + [anon_sym_LT_LT_LT] = ACTIONS(773), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(773), + [anon_sym_AMP] = ACTIONS(777), }, [1611] = { - [sym__concat] = ACTIONS(3796), - [sym_variable_name] = ACTIONS(3796), - [ts_builtin_sym_end] = ACTIONS(3796), - [anon_sym_SEMI] = ACTIONS(3798), - [anon_sym_PIPE] = ACTIONS(3798), - [anon_sym_RPAREN] = ACTIONS(3796), - [anon_sym_SEMI_SEMI] = ACTIONS(3796), - [anon_sym_PIPE_AMP] = ACTIONS(3796), - [anon_sym_AMP_AMP] = ACTIONS(3796), - [anon_sym_PIPE_PIPE] = ACTIONS(3796), - [sym__special_characters] = ACTIONS(3796), - [anon_sym_DQUOTE] = ACTIONS(3796), - [anon_sym_DOLLAR] = ACTIONS(3798), - [sym_raw_string] = ACTIONS(3796), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3796), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3796), - [anon_sym_BQUOTE] = ACTIONS(3796), - [anon_sym_LT_LPAREN] = ACTIONS(3796), - [anon_sym_GT_LPAREN] = ACTIONS(3796), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3798), - [sym_word] = ACTIONS(3798), - [anon_sym_LF] = ACTIONS(3796), - [anon_sym_AMP] = ACTIONS(3798), + [aux_sym_concatenation_repeat1] = STATE(1940), + [sym_file_descriptor] = ACTIONS(791), + [sym__concat] = ACTIONS(3579), + [anon_sym_SEMI] = ACTIONS(793), + [anon_sym_PIPE] = ACTIONS(793), + [anon_sym_SEMI_SEMI] = ACTIONS(791), + [anon_sym_PIPE_AMP] = ACTIONS(791), + [anon_sym_AMP_AMP] = ACTIONS(791), + [anon_sym_PIPE_PIPE] = ACTIONS(791), + [anon_sym_LT] = ACTIONS(793), + [anon_sym_GT] = ACTIONS(793), + [anon_sym_GT_GT] = ACTIONS(791), + [anon_sym_AMP_GT] = ACTIONS(793), + [anon_sym_AMP_GT_GT] = ACTIONS(791), + [anon_sym_LT_AMP] = ACTIONS(791), + [anon_sym_GT_AMP] = ACTIONS(791), + [anon_sym_LT_LT] = ACTIONS(793), + [anon_sym_LT_LT_DASH] = ACTIONS(791), + [anon_sym_LT_LT_LT] = ACTIONS(791), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(791), + [anon_sym_AMP] = ACTIONS(793), }, [1612] = { - [aux_sym_concatenation_repeat1] = STATE(1293), - [sym__concat] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(4447), - [sym_comment] = ACTIONS(53), + [aux_sym_concatenation_repeat1] = STATE(1940), + [sym_file_descriptor] = ACTIONS(2015), + [sym__concat] = ACTIONS(3579), + [anon_sym_SEMI] = ACTIONS(2017), + [anon_sym_PIPE] = ACTIONS(2017), + [anon_sym_SEMI_SEMI] = ACTIONS(2015), + [anon_sym_PIPE_AMP] = ACTIONS(2015), + [anon_sym_AMP_AMP] = ACTIONS(2015), + [anon_sym_PIPE_PIPE] = ACTIONS(2015), + [anon_sym_LT] = ACTIONS(2017), + [anon_sym_GT] = ACTIONS(2017), + [anon_sym_GT_GT] = ACTIONS(2015), + [anon_sym_AMP_GT] = ACTIONS(2017), + [anon_sym_AMP_GT_GT] = ACTIONS(2015), + [anon_sym_LT_AMP] = ACTIONS(2015), + [anon_sym_GT_AMP] = ACTIONS(2015), + [anon_sym_LT_LT] = ACTIONS(2017), + [anon_sym_LT_LT_DASH] = ACTIONS(2015), + [anon_sym_LT_LT_LT] = ACTIONS(2015), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2017), }, [1613] = { - [aux_sym_concatenation_repeat1] = STATE(1293), - [sym__concat] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(4449), - [sym_comment] = ACTIONS(53), + [aux_sym_concatenation_repeat1] = STATE(1940), + [sym_file_descriptor] = ACTIONS(2019), + [sym__concat] = ACTIONS(3579), + [anon_sym_SEMI] = ACTIONS(2021), + [anon_sym_PIPE] = ACTIONS(2021), + [anon_sym_SEMI_SEMI] = ACTIONS(2019), + [anon_sym_PIPE_AMP] = ACTIONS(2019), + [anon_sym_AMP_AMP] = ACTIONS(2019), + [anon_sym_PIPE_PIPE] = ACTIONS(2019), + [anon_sym_LT] = ACTIONS(2021), + [anon_sym_GT] = ACTIONS(2021), + [anon_sym_GT_GT] = ACTIONS(2019), + [anon_sym_AMP_GT] = ACTIONS(2021), + [anon_sym_AMP_GT_GT] = ACTIONS(2019), + [anon_sym_LT_AMP] = ACTIONS(2019), + [anon_sym_GT_AMP] = ACTIONS(2019), + [anon_sym_LT_LT] = ACTIONS(2021), + [anon_sym_LT_LT_DASH] = ACTIONS(2019), + [anon_sym_LT_LT_LT] = ACTIONS(2019), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2019), + [anon_sym_AMP] = ACTIONS(2021), }, [1614] = { - [anon_sym_RBRACE] = ACTIONS(4449), - [sym_comment] = ACTIONS(53), + [sym_file_redirect] = STATE(1614), + [sym_heredoc_redirect] = STATE(1614), + [sym_herestring_redirect] = STATE(1614), + [aux_sym_while_statement_repeat1] = STATE(1614), + [sym_file_descriptor] = ACTIONS(4417), + [anon_sym_SEMI] = ACTIONS(2032), + [anon_sym_PIPE] = ACTIONS(2032), + [anon_sym_SEMI_SEMI] = ACTIONS(2027), + [anon_sym_PIPE_AMP] = ACTIONS(2027), + [anon_sym_AMP_AMP] = ACTIONS(2027), + [anon_sym_PIPE_PIPE] = ACTIONS(2027), + [anon_sym_LT] = ACTIONS(4420), + [anon_sym_GT] = ACTIONS(4420), + [anon_sym_GT_GT] = ACTIONS(4423), + [anon_sym_AMP_GT] = ACTIONS(4420), + [anon_sym_AMP_GT_GT] = ACTIONS(4423), + [anon_sym_LT_AMP] = ACTIONS(4423), + [anon_sym_GT_AMP] = ACTIONS(4423), + [anon_sym_LT_LT] = ACTIONS(3612), + [anon_sym_LT_LT_DASH] = ACTIONS(3615), + [anon_sym_LT_LT_LT] = ACTIONS(4426), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2027), + [anon_sym_AMP] = ACTIONS(2032), }, [1615] = { - [sym_concatenation] = STATE(1941), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(1941), - [anon_sym_RBRACE] = ACTIONS(4451), - [anon_sym_EQ] = ACTIONS(4453), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(4455), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(4453), - [anon_sym_COLON_QMARK] = ACTIONS(4453), - [anon_sym_COLON_DASH] = ACTIONS(4453), - [anon_sym_PERCENT] = ACTIONS(4453), - [anon_sym_DASH] = ACTIONS(4453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_file_redirect] = STATE(1651), + [sym_file_descriptor] = ACTIONS(2434), + [anon_sym_SEMI] = ACTIONS(3722), + [anon_sym_PIPE] = ACTIONS(3722), + [anon_sym_SEMI_SEMI] = ACTIONS(3720), + [anon_sym_PIPE_AMP] = ACTIONS(3720), + [anon_sym_AMP_AMP] = ACTIONS(3720), + [anon_sym_PIPE_PIPE] = ACTIONS(3720), + [anon_sym_LT] = ACTIONS(2436), + [anon_sym_GT] = ACTIONS(2436), + [anon_sym_GT_GT] = ACTIONS(2438), + [anon_sym_AMP_GT] = ACTIONS(2436), + [anon_sym_AMP_GT_GT] = ACTIONS(2438), + [anon_sym_LT_AMP] = ACTIONS(2438), + [anon_sym_GT_AMP] = ACTIONS(2438), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(3720), + [anon_sym_AMP] = ACTIONS(3722), }, [1616] = { - [sym__concat] = ACTIONS(3852), - [sym_variable_name] = ACTIONS(3852), - [ts_builtin_sym_end] = ACTIONS(3852), - [anon_sym_SEMI] = ACTIONS(3854), - [anon_sym_PIPE] = ACTIONS(3854), - [anon_sym_RPAREN] = ACTIONS(3852), - [anon_sym_SEMI_SEMI] = ACTIONS(3852), - [anon_sym_PIPE_AMP] = ACTIONS(3852), - [anon_sym_AMP_AMP] = ACTIONS(3852), - [anon_sym_PIPE_PIPE] = ACTIONS(3852), - [sym__special_characters] = ACTIONS(3852), - [anon_sym_DQUOTE] = ACTIONS(3852), - [anon_sym_DOLLAR] = ACTIONS(3854), - [sym_raw_string] = ACTIONS(3852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3852), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3852), - [anon_sym_BQUOTE] = ACTIONS(3852), - [anon_sym_LT_LPAREN] = ACTIONS(3852), - [anon_sym_GT_LPAREN] = ACTIONS(3852), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3854), - [sym_word] = ACTIONS(3854), - [anon_sym_LF] = ACTIONS(3852), - [anon_sym_AMP] = ACTIONS(3854), + [sym_concatenation] = STATE(1654), + [sym_string] = STATE(1942), + [sym_simple_expansion] = STATE(1942), + [sym_string_expansion] = STATE(1942), + [sym_expansion] = STATE(1942), + [sym_command_substitution] = STATE(1942), + [sym_process_substitution] = STATE(1942), + [sym__special_characters] = ACTIONS(4429), + [anon_sym_DQUOTE] = ACTIONS(229), + [anon_sym_DOLLAR] = ACTIONS(231), + [sym_raw_string] = ACTIONS(4431), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), + [anon_sym_BQUOTE] = ACTIONS(239), + [anon_sym_LT_LPAREN] = ACTIONS(241), + [anon_sym_GT_LPAREN] = ACTIONS(241), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(4431), }, [1617] = { - [sym_concatenation] = STATE(1942), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(1942), - [anon_sym_RBRACE] = ACTIONS(4449), - [anon_sym_EQ] = ACTIONS(4457), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(4459), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(4457), - [anon_sym_COLON_QMARK] = ACTIONS(4457), - [anon_sym_COLON_DASH] = ACTIONS(4457), - [anon_sym_PERCENT] = ACTIONS(4457), - [anon_sym_DASH] = ACTIONS(4457), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [aux_sym_concatenation_repeat1] = STATE(1943), + [sym__concat] = ACTIONS(735), + [anon_sym_SEMI] = ACTIONS(777), + [anon_sym_PIPE] = ACTIONS(777), + [anon_sym_SEMI_SEMI] = ACTIONS(773), + [anon_sym_PIPE_AMP] = ACTIONS(773), + [anon_sym_AMP_AMP] = ACTIONS(773), + [anon_sym_PIPE_PIPE] = ACTIONS(773), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(773), + [anon_sym_AMP] = ACTIONS(777), }, [1618] = { - [sym__concat] = ACTIONS(3893), - [sym_variable_name] = ACTIONS(3893), - [ts_builtin_sym_end] = ACTIONS(3893), - [anon_sym_SEMI] = ACTIONS(3895), - [anon_sym_PIPE] = ACTIONS(3895), - [anon_sym_RPAREN] = ACTIONS(3893), - [anon_sym_SEMI_SEMI] = ACTIONS(3893), - [anon_sym_PIPE_AMP] = ACTIONS(3893), - [anon_sym_AMP_AMP] = ACTIONS(3893), - [anon_sym_PIPE_PIPE] = ACTIONS(3893), - [sym__special_characters] = ACTIONS(3893), - [anon_sym_DQUOTE] = ACTIONS(3893), - [anon_sym_DOLLAR] = ACTIONS(3895), - [sym_raw_string] = ACTIONS(3893), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3893), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3893), - [anon_sym_BQUOTE] = ACTIONS(3893), - [anon_sym_LT_LPAREN] = ACTIONS(3893), - [anon_sym_GT_LPAREN] = ACTIONS(3893), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3895), - [sym_word] = ACTIONS(3895), - [anon_sym_LF] = ACTIONS(3893), - [anon_sym_AMP] = ACTIONS(3895), + [aux_sym_concatenation_repeat1] = STATE(1943), + [sym__concat] = ACTIONS(735), + [anon_sym_SEMI] = ACTIONS(793), + [anon_sym_PIPE] = ACTIONS(793), + [anon_sym_SEMI_SEMI] = ACTIONS(791), + [anon_sym_PIPE_AMP] = ACTIONS(791), + [anon_sym_AMP_AMP] = ACTIONS(791), + [anon_sym_PIPE_PIPE] = ACTIONS(791), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(791), + [anon_sym_AMP] = ACTIONS(793), }, [1619] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(4461), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [aux_sym_concatenation_repeat1] = STATE(1619), + [sym__simple_heredoc_body] = ACTIONS(1763), + [sym__heredoc_body_beginning] = ACTIONS(1763), + [sym_file_descriptor] = ACTIONS(1763), + [sym__concat] = ACTIONS(1767), + [anon_sym_SEMI] = ACTIONS(1765), + [anon_sym_PIPE] = ACTIONS(1765), + [anon_sym_SEMI_SEMI] = ACTIONS(1763), + [anon_sym_PIPE_AMP] = ACTIONS(1763), + [anon_sym_AMP_AMP] = ACTIONS(1763), + [anon_sym_PIPE_PIPE] = ACTIONS(1763), + [anon_sym_LT] = ACTIONS(1765), + [anon_sym_GT] = ACTIONS(1765), + [anon_sym_GT_GT] = ACTIONS(1763), + [anon_sym_AMP_GT] = ACTIONS(1765), + [anon_sym_AMP_GT_GT] = ACTIONS(1763), + [anon_sym_LT_AMP] = ACTIONS(1763), + [anon_sym_GT_AMP] = ACTIONS(1763), + [anon_sym_LT_LT] = ACTIONS(1765), + [anon_sym_LT_LT_DASH] = ACTIONS(1763), + [anon_sym_LT_LT_LT] = ACTIONS(1763), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1763), + [anon_sym_AMP] = ACTIONS(1765), }, [1620] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(4449), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym__terminated_statement] = STATE(1944), + [sym_for_statement] = STATE(545), + [sym_c_style_for_statement] = STATE(545), + [sym_while_statement] = STATE(545), + [sym_if_statement] = STATE(545), + [sym_case_statement] = STATE(545), + [sym_function_definition] = STATE(545), + [sym_subshell] = STATE(545), + [sym_pipeline] = STATE(545), + [sym_list] = STATE(545), + [sym_negated_command] = STATE(545), + [sym_test_command] = STATE(545), + [sym_declaration_command] = STATE(545), + [sym_unset_command] = STATE(545), + [sym_command] = STATE(545), + [sym_command_name] = STATE(64), + [sym_variable_assignment] = STATE(546), + [sym_subscript] = STATE(66), + [sym_file_redirect] = STATE(67), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(60), + [sym_simple_expansion] = STATE(60), + [sym_string_expansion] = STATE(60), + [sym_expansion] = STATE(60), + [sym_command_substitution] = STATE(60), + [sym_process_substitution] = STATE(60), + [aux_sym__statements_repeat1] = STATE(1944), + [aux_sym_command_repeat1] = STATE(67), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(95), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(97), + [anon_sym_while] = ACTIONS(99), + [anon_sym_if] = ACTIONS(17), + [anon_sym_fi] = ACTIONS(4433), + [anon_sym_elif] = ACTIONS(4433), + [anon_sym_else] = ACTIONS(4433), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(101), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_LBRACK] = ACTIONS(107), + [anon_sym_declare] = ACTIONS(109), + [anon_sym_typeset] = ACTIONS(109), + [anon_sym_export] = ACTIONS(109), + [anon_sym_readonly] = ACTIONS(109), + [anon_sym_local] = ACTIONS(109), + [anon_sym_unset] = ACTIONS(111), + [anon_sym_unsetenv] = ACTIONS(111), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(115), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(117), }, [1621] = { - [sym__concat] = ACTIONS(3915), - [sym_variable_name] = ACTIONS(3915), - [ts_builtin_sym_end] = ACTIONS(3915), - [anon_sym_SEMI] = ACTIONS(3917), - [anon_sym_PIPE] = ACTIONS(3917), - [anon_sym_RPAREN] = ACTIONS(3915), - [anon_sym_SEMI_SEMI] = ACTIONS(3915), - [anon_sym_PIPE_AMP] = ACTIONS(3915), - [anon_sym_AMP_AMP] = ACTIONS(3915), - [anon_sym_PIPE_PIPE] = ACTIONS(3915), - [sym__special_characters] = ACTIONS(3915), - [anon_sym_DQUOTE] = ACTIONS(3915), - [anon_sym_DOLLAR] = ACTIONS(3917), - [sym_raw_string] = ACTIONS(3915), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3915), - [anon_sym_BQUOTE] = ACTIONS(3915), - [anon_sym_LT_LPAREN] = ACTIONS(3915), - [anon_sym_GT_LPAREN] = ACTIONS(3915), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3917), - [sym_word] = ACTIONS(3917), - [anon_sym_LF] = ACTIONS(3915), - [anon_sym_AMP] = ACTIONS(3917), + [sym__terminated_statement] = STATE(1621), + [sym_for_statement] = STATE(545), + [sym_c_style_for_statement] = STATE(545), + [sym_while_statement] = STATE(545), + [sym_if_statement] = STATE(545), + [sym_case_statement] = STATE(545), + [sym_function_definition] = STATE(545), + [sym_subshell] = STATE(545), + [sym_pipeline] = STATE(545), + [sym_list] = STATE(545), + [sym_negated_command] = STATE(545), + [sym_test_command] = STATE(545), + [sym_declaration_command] = STATE(545), + [sym_unset_command] = STATE(545), + [sym_command] = STATE(545), + [sym_command_name] = STATE(64), + [sym_variable_assignment] = STATE(546), + [sym_subscript] = STATE(66), + [sym_file_redirect] = STATE(67), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(60), + [sym_simple_expansion] = STATE(60), + [sym_string_expansion] = STATE(60), + [sym_expansion] = STATE(60), + [sym_command_substitution] = STATE(60), + [sym_process_substitution] = STATE(60), + [aux_sym__statements_repeat1] = STATE(1621), + [aux_sym_command_repeat1] = STATE(67), + [sym_file_descriptor] = ACTIONS(997), + [sym_variable_name] = ACTIONS(1000), + [anon_sym_for] = ACTIONS(1003), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1006), + [anon_sym_while] = ACTIONS(1009), + [anon_sym_if] = ACTIONS(1012), + [anon_sym_fi] = ACTIONS(3645), + [anon_sym_case] = ACTIONS(1015), + [anon_sym_function] = ACTIONS(1018), + [anon_sym_LPAREN] = ACTIONS(1021), + [anon_sym_BANG] = ACTIONS(1024), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1030), + [anon_sym_declare] = ACTIONS(1033), + [anon_sym_typeset] = ACTIONS(1033), + [anon_sym_export] = ACTIONS(1033), + [anon_sym_readonly] = ACTIONS(1033), + [anon_sym_local] = ACTIONS(1033), + [anon_sym_unset] = ACTIONS(1036), + [anon_sym_unsetenv] = ACTIONS(1036), + [anon_sym_LT] = ACTIONS(1039), + [anon_sym_GT] = ACTIONS(1039), + [anon_sym_GT_GT] = ACTIONS(1042), + [anon_sym_AMP_GT] = ACTIONS(1039), + [anon_sym_AMP_GT_GT] = ACTIONS(1042), + [anon_sym_LT_AMP] = ACTIONS(1042), + [anon_sym_GT_AMP] = ACTIONS(1042), + [sym__special_characters] = ACTIONS(1045), + [anon_sym_DQUOTE] = ACTIONS(1048), + [anon_sym_DOLLAR] = ACTIONS(1051), + [sym_raw_string] = ACTIONS(1054), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1057), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1060), + [anon_sym_BQUOTE] = ACTIONS(1063), + [anon_sym_LT_LPAREN] = ACTIONS(1066), + [anon_sym_GT_LPAREN] = ACTIONS(1066), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1069), }, [1622] = { - [sym__concat] = ACTIONS(3939), - [sym_variable_name] = ACTIONS(3939), - [ts_builtin_sym_end] = ACTIONS(3939), - [anon_sym_SEMI] = ACTIONS(3941), - [anon_sym_PIPE] = ACTIONS(3941), - [anon_sym_RPAREN] = ACTIONS(3939), - [anon_sym_SEMI_SEMI] = ACTIONS(3939), - [anon_sym_PIPE_AMP] = ACTIONS(3939), - [anon_sym_AMP_AMP] = ACTIONS(3939), - [anon_sym_PIPE_PIPE] = ACTIONS(3939), - [sym__special_characters] = ACTIONS(3939), - [anon_sym_DQUOTE] = ACTIONS(3939), - [anon_sym_DOLLAR] = ACTIONS(3941), - [sym_raw_string] = ACTIONS(3939), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3939), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3939), - [anon_sym_BQUOTE] = ACTIONS(3939), - [anon_sym_LT_LPAREN] = ACTIONS(3939), - [anon_sym_GT_LPAREN] = ACTIONS(3939), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3941), - [sym_word] = ACTIONS(3941), - [anon_sym_LF] = ACTIONS(3939), - [anon_sym_AMP] = ACTIONS(3941), + [ts_builtin_sym_end] = ACTIONS(4435), + [anon_sym_SEMI] = ACTIONS(4437), + [anon_sym_esac] = ACTIONS(4435), + [anon_sym_PIPE] = ACTIONS(4437), + [anon_sym_RPAREN] = ACTIONS(4435), + [anon_sym_SEMI_SEMI] = ACTIONS(4435), + [anon_sym_PIPE_AMP] = ACTIONS(4435), + [anon_sym_AMP_AMP] = ACTIONS(4435), + [anon_sym_PIPE_PIPE] = ACTIONS(4435), + [anon_sym_BQUOTE] = ACTIONS(4435), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(4435), + [anon_sym_AMP] = ACTIONS(4437), }, [1623] = { - [sym__concat] = ACTIONS(3788), - [ts_builtin_sym_end] = ACTIONS(3788), - [anon_sym_SEMI] = ACTIONS(3790), - [anon_sym_PIPE] = ACTIONS(3790), - [anon_sym_RPAREN] = ACTIONS(3788), - [anon_sym_SEMI_SEMI] = ACTIONS(3788), - [anon_sym_PIPE_AMP] = ACTIONS(3788), - [anon_sym_AMP_AMP] = ACTIONS(3788), - [anon_sym_PIPE_PIPE] = ACTIONS(3788), - [sym__special_characters] = ACTIONS(3788), - [anon_sym_DQUOTE] = ACTIONS(3788), - [anon_sym_DOLLAR] = ACTIONS(3790), - [sym_raw_string] = ACTIONS(3788), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3788), - [anon_sym_BQUOTE] = ACTIONS(3788), - [anon_sym_LT_LPAREN] = ACTIONS(3788), - [anon_sym_GT_LPAREN] = ACTIONS(3788), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3790), - [sym_word] = ACTIONS(3790), - [anon_sym_LF] = ACTIONS(3788), - [anon_sym_AMP] = ACTIONS(3790), + [anon_sym_fi] = ACTIONS(4439), + [sym_comment] = ACTIONS(55), }, [1624] = { - [sym__concat] = ACTIONS(3796), - [ts_builtin_sym_end] = ACTIONS(3796), - [anon_sym_SEMI] = ACTIONS(3798), - [anon_sym_PIPE] = ACTIONS(3798), - [anon_sym_RPAREN] = ACTIONS(3796), - [anon_sym_SEMI_SEMI] = ACTIONS(3796), - [anon_sym_PIPE_AMP] = ACTIONS(3796), - [anon_sym_AMP_AMP] = ACTIONS(3796), - [anon_sym_PIPE_PIPE] = ACTIONS(3796), - [sym__special_characters] = ACTIONS(3796), - [anon_sym_DQUOTE] = ACTIONS(3796), - [anon_sym_DOLLAR] = ACTIONS(3798), - [sym_raw_string] = ACTIONS(3796), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3796), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3796), - [anon_sym_BQUOTE] = ACTIONS(3796), - [anon_sym_LT_LPAREN] = ACTIONS(3796), - [anon_sym_GT_LPAREN] = ACTIONS(3796), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3798), - [sym_word] = ACTIONS(3798), - [anon_sym_LF] = ACTIONS(3796), - [anon_sym_AMP] = ACTIONS(3798), + [sym_concatenation] = STATE(1948), + [sym_string] = STATE(1947), + [sym_simple_expansion] = STATE(1947), + [sym_string_expansion] = STATE(1947), + [sym_expansion] = STATE(1947), + [sym_command_substitution] = STATE(1947), + [sym_process_substitution] = STATE(1947), + [sym__special_characters] = ACTIONS(4441), + [anon_sym_DQUOTE] = ACTIONS(441), + [anon_sym_DOLLAR] = ACTIONS(443), + [sym_raw_string] = ACTIONS(4443), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(447), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(449), + [anon_sym_BQUOTE] = ACTIONS(451), + [anon_sym_LT_LPAREN] = ACTIONS(453), + [anon_sym_GT_LPAREN] = ACTIONS(453), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(4443), }, [1625] = { - [aux_sym_concatenation_repeat1] = STATE(1293), - [sym__concat] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(4463), - [sym_comment] = ACTIONS(53), + [sym__terminated_statement] = STATE(1973), + [sym_for_statement] = STATE(1968), + [sym_c_style_for_statement] = STATE(1968), + [sym_while_statement] = STATE(1968), + [sym_if_statement] = STATE(1968), + [sym_case_statement] = STATE(1968), + [sym_function_definition] = STATE(1968), + [sym_subshell] = STATE(1968), + [sym_pipeline] = STATE(1968), + [sym_list] = STATE(1968), + [sym_negated_command] = STATE(1968), + [sym_test_command] = STATE(1968), + [sym_declaration_command] = STATE(1968), + [sym_unset_command] = STATE(1968), + [sym_command] = STATE(1968), + [sym_command_name] = STATE(1969), + [sym_variable_assignment] = STATE(1970), + [sym_subscript] = STATE(1971), + [sym_file_redirect] = STATE(1974), + [sym_concatenation] = STATE(1972), + [sym_string] = STATE(1962), + [sym_simple_expansion] = STATE(1962), + [sym_string_expansion] = STATE(1962), + [sym_expansion] = STATE(1962), + [sym_command_substitution] = STATE(1962), + [sym_process_substitution] = STATE(1962), + [aux_sym__statements_repeat1] = STATE(1973), + [aux_sym_command_repeat1] = STATE(1974), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(4445), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(4447), + [anon_sym_while] = ACTIONS(4449), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_esac] = ACTIONS(4451), + [anon_sym_SEMI_SEMI] = ACTIONS(4453), + [anon_sym_function] = ACTIONS(4455), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(4457), + [anon_sym_LBRACK] = ACTIONS(4459), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4461), + [anon_sym_declare] = ACTIONS(4463), + [anon_sym_typeset] = ACTIONS(4463), + [anon_sym_export] = ACTIONS(4463), + [anon_sym_readonly] = ACTIONS(4463), + [anon_sym_local] = ACTIONS(4463), + [anon_sym_unset] = ACTIONS(4465), + [anon_sym_unsetenv] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(4467), + [anon_sym_DQUOTE] = ACTIONS(4469), + [anon_sym_DOLLAR] = ACTIONS(4471), + [sym_raw_string] = ACTIONS(4473), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4475), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4477), + [anon_sym_BQUOTE] = ACTIONS(4479), + [anon_sym_LT_LPAREN] = ACTIONS(4481), + [anon_sym_GT_LPAREN] = ACTIONS(4481), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(4483), }, [1626] = { - [aux_sym_concatenation_repeat1] = STATE(1293), - [sym__concat] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(4465), - [sym_comment] = ACTIONS(53), + [aux_sym_case_item_repeat1] = STATE(1976), + [anon_sym_PIPE] = ACTIONS(3670), + [anon_sym_RPAREN] = ACTIONS(4485), + [sym_comment] = ACTIONS(55), }, [1627] = { - [anon_sym_RBRACE] = ACTIONS(4465), - [sym_comment] = ACTIONS(53), + [aux_sym_concatenation_repeat1] = STATE(1977), + [sym__concat] = ACTIONS(1214), + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_RPAREN] = ACTIONS(807), + [sym_comment] = ACTIONS(55), }, [1628] = { - [sym_concatenation] = STATE(1947), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(1947), - [anon_sym_RBRACE] = ACTIONS(4467), - [anon_sym_EQ] = ACTIONS(4469), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(4471), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(4469), - [anon_sym_COLON_QMARK] = ACTIONS(4469), - [anon_sym_COLON_DASH] = ACTIONS(4469), - [anon_sym_PERCENT] = ACTIONS(4469), - [anon_sym_DASH] = ACTIONS(4469), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym__terminated_statement] = STATE(1981), + [sym_for_statement] = STATE(1979), + [sym_c_style_for_statement] = STATE(1979), + [sym_while_statement] = STATE(1979), + [sym_if_statement] = STATE(1979), + [sym_case_statement] = STATE(1979), + [sym_function_definition] = STATE(1979), + [sym_subshell] = STATE(1979), + [sym_pipeline] = STATE(1979), + [sym_list] = STATE(1979), + [sym_negated_command] = STATE(1979), + [sym_test_command] = STATE(1979), + [sym_declaration_command] = STATE(1979), + [sym_unset_command] = STATE(1979), + [sym_command] = STATE(1979), + [sym_command_name] = STATE(1969), + [sym_variable_assignment] = STATE(1980), + [sym_subscript] = STATE(1971), + [sym_file_redirect] = STATE(1974), + [sym_concatenation] = STATE(1972), + [sym_string] = STATE(1962), + [sym_simple_expansion] = STATE(1962), + [sym_string_expansion] = STATE(1962), + [sym_expansion] = STATE(1962), + [sym_command_substitution] = STATE(1962), + [sym_process_substitution] = STATE(1962), + [aux_sym__statements_repeat1] = STATE(1981), + [aux_sym_command_repeat1] = STATE(1974), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(4445), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(4447), + [anon_sym_while] = ACTIONS(4449), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_esac] = ACTIONS(4487), + [anon_sym_SEMI_SEMI] = ACTIONS(4489), + [anon_sym_function] = ACTIONS(4455), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(4457), + [anon_sym_LBRACK] = ACTIONS(4459), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4461), + [anon_sym_declare] = ACTIONS(4463), + [anon_sym_typeset] = ACTIONS(4463), + [anon_sym_export] = ACTIONS(4463), + [anon_sym_readonly] = ACTIONS(4463), + [anon_sym_local] = ACTIONS(4463), + [anon_sym_unset] = ACTIONS(4465), + [anon_sym_unsetenv] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(4467), + [anon_sym_DQUOTE] = ACTIONS(4469), + [anon_sym_DOLLAR] = ACTIONS(4471), + [sym_raw_string] = ACTIONS(4473), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4475), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4477), + [anon_sym_BQUOTE] = ACTIONS(4479), + [anon_sym_LT_LPAREN] = ACTIONS(4481), + [anon_sym_GT_LPAREN] = ACTIONS(4481), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(4483), }, [1629] = { - [sym__concat] = ACTIONS(3852), - [ts_builtin_sym_end] = ACTIONS(3852), - [anon_sym_SEMI] = ACTIONS(3854), - [anon_sym_PIPE] = ACTIONS(3854), - [anon_sym_RPAREN] = ACTIONS(3852), - [anon_sym_SEMI_SEMI] = ACTIONS(3852), - [anon_sym_PIPE_AMP] = ACTIONS(3852), - [anon_sym_AMP_AMP] = ACTIONS(3852), - [anon_sym_PIPE_PIPE] = ACTIONS(3852), - [sym__special_characters] = ACTIONS(3852), - [anon_sym_DQUOTE] = ACTIONS(3852), - [anon_sym_DOLLAR] = ACTIONS(3854), - [sym_raw_string] = ACTIONS(3852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3852), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3852), - [anon_sym_BQUOTE] = ACTIONS(3852), - [anon_sym_LT_LPAREN] = ACTIONS(3852), - [anon_sym_GT_LPAREN] = ACTIONS(3852), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3854), - [sym_word] = ACTIONS(3854), - [anon_sym_LF] = ACTIONS(3852), - [anon_sym_AMP] = ACTIONS(3854), + [aux_sym_case_item_repeat1] = STATE(1976), + [anon_sym_PIPE] = ACTIONS(3670), + [anon_sym_RPAREN] = ACTIONS(4491), + [sym_comment] = ACTIONS(55), }, [1630] = { - [sym_concatenation] = STATE(1948), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(1948), - [anon_sym_RBRACE] = ACTIONS(4465), - [anon_sym_EQ] = ACTIONS(4473), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(4475), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(4473), - [anon_sym_COLON_QMARK] = ACTIONS(4473), - [anon_sym_COLON_DASH] = ACTIONS(4473), - [anon_sym_PERCENT] = ACTIONS(4473), - [anon_sym_DASH] = ACTIONS(4473), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [ts_builtin_sym_end] = ACTIONS(4493), + [anon_sym_SEMI] = ACTIONS(4495), + [anon_sym_esac] = ACTIONS(4493), + [anon_sym_PIPE] = ACTIONS(4495), + [anon_sym_RPAREN] = ACTIONS(4493), + [anon_sym_SEMI_SEMI] = ACTIONS(4493), + [anon_sym_PIPE_AMP] = ACTIONS(4493), + [anon_sym_AMP_AMP] = ACTIONS(4493), + [anon_sym_PIPE_PIPE] = ACTIONS(4493), + [anon_sym_BQUOTE] = ACTIONS(4493), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(4493), + [anon_sym_AMP] = ACTIONS(4495), }, [1631] = { - [sym__concat] = ACTIONS(3893), - [ts_builtin_sym_end] = ACTIONS(3893), - [anon_sym_SEMI] = ACTIONS(3895), - [anon_sym_PIPE] = ACTIONS(3895), - [anon_sym_RPAREN] = ACTIONS(3893), - [anon_sym_SEMI_SEMI] = ACTIONS(3893), - [anon_sym_PIPE_AMP] = ACTIONS(3893), - [anon_sym_AMP_AMP] = ACTIONS(3893), - [anon_sym_PIPE_PIPE] = ACTIONS(3893), - [sym__special_characters] = ACTIONS(3893), - [anon_sym_DQUOTE] = ACTIONS(3893), - [anon_sym_DOLLAR] = ACTIONS(3895), - [sym_raw_string] = ACTIONS(3893), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3893), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3893), - [anon_sym_BQUOTE] = ACTIONS(3893), - [anon_sym_LT_LPAREN] = ACTIONS(3893), - [anon_sym_GT_LPAREN] = ACTIONS(3893), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3895), - [sym_word] = ACTIONS(3895), - [anon_sym_LF] = ACTIONS(3893), - [anon_sym_AMP] = ACTIONS(3895), + [anon_sym_esac] = ACTIONS(4497), + [sym_comment] = ACTIONS(55), }, [1632] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(4477), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_case_item] = STATE(1632), + [sym_concatenation] = STATE(1986), + [sym_string] = STATE(1985), + [sym_simple_expansion] = STATE(1985), + [sym_string_expansion] = STATE(1985), + [sym_expansion] = STATE(1985), + [sym_command_substitution] = STATE(1985), + [sym_process_substitution] = STATE(1985), + [aux_sym_case_statement_repeat1] = STATE(1632), + [sym__special_characters] = ACTIONS(4499), + [anon_sym_DQUOTE] = ACTIONS(4502), + [anon_sym_DOLLAR] = ACTIONS(4505), + [sym_raw_string] = ACTIONS(4508), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4511), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4514), + [anon_sym_BQUOTE] = ACTIONS(4517), + [anon_sym_LT_LPAREN] = ACTIONS(4520), + [anon_sym_GT_LPAREN] = ACTIONS(4520), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(4508), }, [1633] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(4465), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_case_item] = STATE(1632), + [sym_last_case_item] = STATE(1987), + [sym_concatenation] = STATE(1204), + [sym_string] = STATE(1202), + [sym_simple_expansion] = STATE(1202), + [sym_string_expansion] = STATE(1202), + [sym_expansion] = STATE(1202), + [sym_command_substitution] = STATE(1202), + [sym_process_substitution] = STATE(1202), + [aux_sym_case_statement_repeat1] = STATE(1632), + [sym__special_characters] = ACTIONS(2525), + [anon_sym_DQUOTE] = ACTIONS(441), + [anon_sym_DOLLAR] = ACTIONS(443), + [sym_raw_string] = ACTIONS(2527), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(447), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(449), + [anon_sym_BQUOTE] = ACTIONS(451), + [anon_sym_LT_LPAREN] = ACTIONS(453), + [anon_sym_GT_LPAREN] = ACTIONS(453), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(2527), }, [1634] = { - [sym__concat] = ACTIONS(3915), - [ts_builtin_sym_end] = ACTIONS(3915), - [anon_sym_SEMI] = ACTIONS(3917), - [anon_sym_PIPE] = ACTIONS(3917), - [anon_sym_RPAREN] = ACTIONS(3915), - [anon_sym_SEMI_SEMI] = ACTIONS(3915), - [anon_sym_PIPE_AMP] = ACTIONS(3915), - [anon_sym_AMP_AMP] = ACTIONS(3915), - [anon_sym_PIPE_PIPE] = ACTIONS(3915), - [sym__special_characters] = ACTIONS(3915), - [anon_sym_DQUOTE] = ACTIONS(3915), - [anon_sym_DOLLAR] = ACTIONS(3917), - [sym_raw_string] = ACTIONS(3915), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3915), - [anon_sym_BQUOTE] = ACTIONS(3915), - [anon_sym_LT_LPAREN] = ACTIONS(3915), - [anon_sym_GT_LPAREN] = ACTIONS(3915), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3917), - [sym_word] = ACTIONS(3917), - [anon_sym_LF] = ACTIONS(3915), - [anon_sym_AMP] = ACTIONS(3917), + [ts_builtin_sym_end] = ACTIONS(4523), + [anon_sym_SEMI] = ACTIONS(4525), + [anon_sym_esac] = ACTIONS(4523), + [anon_sym_PIPE] = ACTIONS(4525), + [anon_sym_RPAREN] = ACTIONS(4523), + [anon_sym_SEMI_SEMI] = ACTIONS(4523), + [anon_sym_PIPE_AMP] = ACTIONS(4523), + [anon_sym_AMP_AMP] = ACTIONS(4523), + [anon_sym_PIPE_PIPE] = ACTIONS(4523), + [anon_sym_BQUOTE] = ACTIONS(4523), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(4523), + [anon_sym_AMP] = ACTIONS(4525), }, [1635] = { - [sym__concat] = ACTIONS(3939), - [ts_builtin_sym_end] = ACTIONS(3939), - [anon_sym_SEMI] = ACTIONS(3941), - [anon_sym_PIPE] = ACTIONS(3941), - [anon_sym_RPAREN] = ACTIONS(3939), - [anon_sym_SEMI_SEMI] = ACTIONS(3939), - [anon_sym_PIPE_AMP] = ACTIONS(3939), - [anon_sym_AMP_AMP] = ACTIONS(3939), - [anon_sym_PIPE_PIPE] = ACTIONS(3939), - [sym__special_characters] = ACTIONS(3939), - [anon_sym_DQUOTE] = ACTIONS(3939), - [anon_sym_DOLLAR] = ACTIONS(3941), - [sym_raw_string] = ACTIONS(3939), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3939), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3939), - [anon_sym_BQUOTE] = ACTIONS(3939), - [anon_sym_LT_LPAREN] = ACTIONS(3939), - [anon_sym_GT_LPAREN] = ACTIONS(3939), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3941), - [sym_word] = ACTIONS(3941), - [anon_sym_LF] = ACTIONS(3939), - [anon_sym_AMP] = ACTIONS(3941), + [anon_sym_esac] = ACTIONS(4527), + [sym_comment] = ACTIONS(55), }, [1636] = { - [sym_file_descriptor] = ACTIONS(3788), - [sym__concat] = ACTIONS(3788), - [sym_variable_name] = ACTIONS(3788), - [anon_sym_LT] = ACTIONS(3790), - [anon_sym_GT] = ACTIONS(3790), - [anon_sym_GT_GT] = ACTIONS(3788), - [anon_sym_AMP_GT] = ACTIONS(3790), - [anon_sym_AMP_GT_GT] = ACTIONS(3788), - [anon_sym_LT_AMP] = ACTIONS(3788), - [anon_sym_GT_AMP] = ACTIONS(3788), - [sym__special_characters] = ACTIONS(3788), - [anon_sym_DQUOTE] = ACTIONS(3788), - [anon_sym_DOLLAR] = ACTIONS(3790), - [sym_raw_string] = ACTIONS(3788), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3788), - [anon_sym_BQUOTE] = ACTIONS(3788), - [anon_sym_LT_LPAREN] = ACTIONS(3788), - [anon_sym_GT_LPAREN] = ACTIONS(3788), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3788), + [sym_case_item] = STATE(1632), + [sym_last_case_item] = STATE(1989), + [sym_concatenation] = STATE(1204), + [sym_string] = STATE(1202), + [sym_simple_expansion] = STATE(1202), + [sym_string_expansion] = STATE(1202), + [sym_expansion] = STATE(1202), + [sym_command_substitution] = STATE(1202), + [sym_process_substitution] = STATE(1202), + [aux_sym_case_statement_repeat1] = STATE(1632), + [sym__special_characters] = ACTIONS(2525), + [anon_sym_DQUOTE] = ACTIONS(441), + [anon_sym_DOLLAR] = ACTIONS(443), + [sym_raw_string] = ACTIONS(2527), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(447), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(449), + [anon_sym_BQUOTE] = ACTIONS(451), + [anon_sym_LT_LPAREN] = ACTIONS(453), + [anon_sym_GT_LPAREN] = ACTIONS(453), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(2527), }, [1637] = { - [sym_file_descriptor] = ACTIONS(3796), - [sym__concat] = ACTIONS(3796), - [sym_variable_name] = ACTIONS(3796), - [anon_sym_LT] = ACTIONS(3798), - [anon_sym_GT] = ACTIONS(3798), - [anon_sym_GT_GT] = ACTIONS(3796), - [anon_sym_AMP_GT] = ACTIONS(3798), - [anon_sym_AMP_GT_GT] = ACTIONS(3796), - [anon_sym_LT_AMP] = ACTIONS(3796), - [anon_sym_GT_AMP] = ACTIONS(3796), - [sym__special_characters] = ACTIONS(3796), - [anon_sym_DQUOTE] = ACTIONS(3796), - [anon_sym_DOLLAR] = ACTIONS(3798), - [sym_raw_string] = ACTIONS(3796), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3796), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3796), - [anon_sym_BQUOTE] = ACTIONS(3796), - [anon_sym_LT_LPAREN] = ACTIONS(3796), - [anon_sym_GT_LPAREN] = ACTIONS(3796), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3796), + [sym__concat] = ACTIONS(3934), + [anon_sym_in] = ACTIONS(3934), + [anon_sym_SEMI] = ACTIONS(3936), + [anon_sym_SEMI_SEMI] = ACTIONS(3934), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(3934), + [anon_sym_AMP] = ACTIONS(3934), }, [1638] = { - [aux_sym_concatenation_repeat1] = STATE(1293), - [sym__concat] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(4479), - [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(3942), + [anon_sym_in] = ACTIONS(3942), + [anon_sym_SEMI] = ACTIONS(3944), + [anon_sym_SEMI_SEMI] = ACTIONS(3942), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(3942), + [anon_sym_AMP] = ACTIONS(3942), }, [1639] = { - [aux_sym_concatenation_repeat1] = STATE(1293), - [sym__concat] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(4481), - [sym_comment] = ACTIONS(53), + [aux_sym_concatenation_repeat1] = STATE(1366), + [sym__concat] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(4529), + [sym_comment] = ACTIONS(55), }, [1640] = { - [anon_sym_RBRACE] = ACTIONS(4481), - [sym_comment] = ACTIONS(53), + [aux_sym_concatenation_repeat1] = STATE(1366), + [sym__concat] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(4531), + [sym_comment] = ACTIONS(55), }, [1641] = { - [sym_concatenation] = STATE(1953), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(1953), - [anon_sym_RBRACE] = ACTIONS(4483), - [anon_sym_EQ] = ACTIONS(4485), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(4487), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(4485), - [anon_sym_COLON_QMARK] = ACTIONS(4485), - [anon_sym_COLON_DASH] = ACTIONS(4485), - [anon_sym_PERCENT] = ACTIONS(4485), - [anon_sym_DASH] = ACTIONS(4485), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [anon_sym_RBRACE] = ACTIONS(4531), + [sym_comment] = ACTIONS(55), }, [1642] = { - [sym_file_descriptor] = ACTIONS(3852), - [sym__concat] = ACTIONS(3852), - [sym_variable_name] = ACTIONS(3852), - [anon_sym_LT] = ACTIONS(3854), - [anon_sym_GT] = ACTIONS(3854), - [anon_sym_GT_GT] = ACTIONS(3852), - [anon_sym_AMP_GT] = ACTIONS(3854), - [anon_sym_AMP_GT_GT] = ACTIONS(3852), - [anon_sym_LT_AMP] = ACTIONS(3852), - [anon_sym_GT_AMP] = ACTIONS(3852), - [sym__special_characters] = ACTIONS(3852), - [anon_sym_DQUOTE] = ACTIONS(3852), - [anon_sym_DOLLAR] = ACTIONS(3854), - [sym_raw_string] = ACTIONS(3852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3852), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3852), - [anon_sym_BQUOTE] = ACTIONS(3852), - [anon_sym_LT_LPAREN] = ACTIONS(3852), - [anon_sym_GT_LPAREN] = ACTIONS(3852), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3852), + [sym_concatenation] = STATE(1993), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1993), + [anon_sym_RBRACE] = ACTIONS(4533), + [anon_sym_EQ] = ACTIONS(4535), + [anon_sym_DASH] = ACTIONS(4535), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(4537), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(4535), + [anon_sym_COLON_QMARK] = ACTIONS(4535), + [anon_sym_COLON_DASH] = ACTIONS(4535), + [anon_sym_PERCENT] = ACTIONS(4535), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1643] = { - [sym_concatenation] = STATE(1954), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(1954), - [anon_sym_RBRACE] = ACTIONS(4481), - [anon_sym_EQ] = ACTIONS(4489), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(4491), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(4489), - [anon_sym_COLON_QMARK] = ACTIONS(4489), - [anon_sym_COLON_DASH] = ACTIONS(4489), - [anon_sym_PERCENT] = ACTIONS(4489), - [anon_sym_DASH] = ACTIONS(4489), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym__concat] = ACTIONS(3998), + [anon_sym_in] = ACTIONS(3998), + [anon_sym_SEMI] = ACTIONS(4000), + [anon_sym_SEMI_SEMI] = ACTIONS(3998), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(3998), + [anon_sym_AMP] = ACTIONS(3998), }, [1644] = { - [sym_file_descriptor] = ACTIONS(3893), - [sym__concat] = ACTIONS(3893), - [sym_variable_name] = ACTIONS(3893), - [anon_sym_LT] = ACTIONS(3895), - [anon_sym_GT] = ACTIONS(3895), - [anon_sym_GT_GT] = ACTIONS(3893), - [anon_sym_AMP_GT] = ACTIONS(3895), - [anon_sym_AMP_GT_GT] = ACTIONS(3893), - [anon_sym_LT_AMP] = ACTIONS(3893), - [anon_sym_GT_AMP] = ACTIONS(3893), - [sym__special_characters] = ACTIONS(3893), - [anon_sym_DQUOTE] = ACTIONS(3893), - [anon_sym_DOLLAR] = ACTIONS(3895), - [sym_raw_string] = ACTIONS(3893), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3893), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3893), - [anon_sym_BQUOTE] = ACTIONS(3893), - [anon_sym_LT_LPAREN] = ACTIONS(3893), - [anon_sym_GT_LPAREN] = ACTIONS(3893), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3893), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(4533), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1645] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(4493), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_concatenation] = STATE(1994), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(1994), + [anon_sym_RBRACE] = ACTIONS(4531), + [anon_sym_EQ] = ACTIONS(4539), + [anon_sym_DASH] = ACTIONS(4539), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(4541), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(4539), + [anon_sym_COLON_QMARK] = ACTIONS(4539), + [anon_sym_COLON_DASH] = ACTIONS(4539), + [anon_sym_PERCENT] = ACTIONS(4539), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1646] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(4481), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(4531), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1647] = { - [sym_file_descriptor] = ACTIONS(3915), - [sym__concat] = ACTIONS(3915), - [sym_variable_name] = ACTIONS(3915), - [anon_sym_LT] = ACTIONS(3917), - [anon_sym_GT] = ACTIONS(3917), - [anon_sym_GT_GT] = ACTIONS(3915), - [anon_sym_AMP_GT] = ACTIONS(3917), - [anon_sym_AMP_GT_GT] = ACTIONS(3915), - [anon_sym_LT_AMP] = ACTIONS(3915), - [anon_sym_GT_AMP] = ACTIONS(3915), - [sym__special_characters] = ACTIONS(3915), - [anon_sym_DQUOTE] = ACTIONS(3915), - [anon_sym_DOLLAR] = ACTIONS(3917), - [sym_raw_string] = ACTIONS(3915), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3915), - [anon_sym_BQUOTE] = ACTIONS(3915), - [anon_sym_LT_LPAREN] = ACTIONS(3915), - [anon_sym_GT_LPAREN] = ACTIONS(3915), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3915), + [sym__concat] = ACTIONS(4043), + [anon_sym_in] = ACTIONS(4043), + [anon_sym_SEMI] = ACTIONS(4045), + [anon_sym_SEMI_SEMI] = ACTIONS(4043), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(4043), + [anon_sym_AMP] = ACTIONS(4043), }, [1648] = { - [sym_file_descriptor] = ACTIONS(3939), - [sym__concat] = ACTIONS(3939), - [sym_variable_name] = ACTIONS(3939), - [anon_sym_LT] = ACTIONS(3941), - [anon_sym_GT] = ACTIONS(3941), - [anon_sym_GT_GT] = ACTIONS(3939), - [anon_sym_AMP_GT] = ACTIONS(3941), - [anon_sym_AMP_GT_GT] = ACTIONS(3939), - [anon_sym_LT_AMP] = ACTIONS(3939), - [anon_sym_GT_AMP] = ACTIONS(3939), - [sym__special_characters] = ACTIONS(3939), - [anon_sym_DQUOTE] = ACTIONS(3939), - [anon_sym_DOLLAR] = ACTIONS(3941), - [sym_raw_string] = ACTIONS(3939), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3939), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3939), - [anon_sym_BQUOTE] = ACTIONS(3939), - [anon_sym_LT_LPAREN] = ACTIONS(3939), - [anon_sym_GT_LPAREN] = ACTIONS(3939), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3939), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(4543), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1649] = { - [sym__concat] = ACTIONS(3788), - [anon_sym_DQUOTE] = ACTIONS(3790), - [anon_sym_DOLLAR] = ACTIONS(3790), - [sym__string_content] = ACTIONS(3788), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3790), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3790), - [anon_sym_BQUOTE] = ACTIONS(3790), - [sym_comment] = ACTIONS(265), + [sym__concat] = ACTIONS(4065), + [anon_sym_in] = ACTIONS(4065), + [anon_sym_SEMI] = ACTIONS(4067), + [anon_sym_SEMI_SEMI] = ACTIONS(4065), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(4065), + [anon_sym_AMP] = ACTIONS(4065), }, [1650] = { - [sym__concat] = ACTIONS(3796), - [anon_sym_DQUOTE] = ACTIONS(3798), - [anon_sym_DOLLAR] = ACTIONS(3798), - [sym__string_content] = ACTIONS(3796), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3798), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3798), - [anon_sym_BQUOTE] = ACTIONS(3798), - [sym_comment] = ACTIONS(265), + [sym__concat] = ACTIONS(4089), + [anon_sym_in] = ACTIONS(4089), + [anon_sym_SEMI] = ACTIONS(4091), + [anon_sym_SEMI_SEMI] = ACTIONS(4089), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(4089), + [anon_sym_AMP] = ACTIONS(4089), }, [1651] = { - [aux_sym_concatenation_repeat1] = STATE(1293), - [sym__concat] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(4495), - [sym_comment] = ACTIONS(53), + [ts_builtin_sym_end] = ACTIONS(4545), + [anon_sym_SEMI] = ACTIONS(4547), + [anon_sym_esac] = ACTIONS(4545), + [anon_sym_PIPE] = ACTIONS(4547), + [anon_sym_RPAREN] = ACTIONS(4545), + [anon_sym_SEMI_SEMI] = ACTIONS(4545), + [anon_sym_PIPE_AMP] = ACTIONS(4545), + [anon_sym_AMP_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4545), + [anon_sym_BQUOTE] = ACTIONS(4545), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(4545), + [anon_sym_AMP] = ACTIONS(4547), }, [1652] = { - [aux_sym_concatenation_repeat1] = STATE(1293), - [sym__concat] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(4497), - [sym_comment] = ACTIONS(53), + [aux_sym_concatenation_repeat1] = STATE(1655), + [sym__concat] = ACTIONS(735), + [ts_builtin_sym_end] = ACTIONS(1088), + [anon_sym_SEMI] = ACTIONS(1090), + [anon_sym_PIPE] = ACTIONS(1090), + [anon_sym_SEMI_SEMI] = ACTIONS(1088), + [anon_sym_PIPE_AMP] = ACTIONS(1088), + [anon_sym_AMP_AMP] = ACTIONS(1088), + [anon_sym_PIPE_PIPE] = ACTIONS(1088), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1088), + [anon_sym_AMP] = ACTIONS(1090), }, [1653] = { - [anon_sym_RBRACE] = ACTIONS(4497), - [sym_comment] = ACTIONS(53), + [aux_sym_concatenation_repeat1] = STATE(1655), + [sym__concat] = ACTIONS(735), + [ts_builtin_sym_end] = ACTIONS(1092), + [anon_sym_SEMI] = ACTIONS(1094), + [anon_sym_PIPE] = ACTIONS(1094), + [anon_sym_SEMI_SEMI] = ACTIONS(1092), + [anon_sym_PIPE_AMP] = ACTIONS(1092), + [anon_sym_AMP_AMP] = ACTIONS(1092), + [anon_sym_PIPE_PIPE] = ACTIONS(1092), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1092), + [anon_sym_AMP] = ACTIONS(1094), }, [1654] = { - [sym_concatenation] = STATE(1959), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(1959), - [anon_sym_RBRACE] = ACTIONS(4499), - [anon_sym_EQ] = ACTIONS(4501), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(4503), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(4501), - [anon_sym_COLON_QMARK] = ACTIONS(4501), - [anon_sym_COLON_DASH] = ACTIONS(4501), - [anon_sym_PERCENT] = ACTIONS(4501), - [anon_sym_DASH] = ACTIONS(4501), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [ts_builtin_sym_end] = ACTIONS(1092), + [anon_sym_SEMI] = ACTIONS(1094), + [anon_sym_esac] = ACTIONS(1092), + [anon_sym_PIPE] = ACTIONS(1094), + [anon_sym_RPAREN] = ACTIONS(1092), + [anon_sym_SEMI_SEMI] = ACTIONS(1092), + [anon_sym_PIPE_AMP] = ACTIONS(1092), + [anon_sym_AMP_AMP] = ACTIONS(1092), + [anon_sym_PIPE_PIPE] = ACTIONS(1092), + [anon_sym_BQUOTE] = ACTIONS(1092), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1092), + [anon_sym_AMP] = ACTIONS(1094), }, [1655] = { - [sym__concat] = ACTIONS(3852), - [anon_sym_DQUOTE] = ACTIONS(3854), - [anon_sym_DOLLAR] = ACTIONS(3854), - [sym__string_content] = ACTIONS(3852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3854), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3854), - [anon_sym_BQUOTE] = ACTIONS(3854), - [sym_comment] = ACTIONS(265), + [aux_sym_concatenation_repeat1] = STATE(1996), + [sym__concat] = ACTIONS(735), + [ts_builtin_sym_end] = ACTIONS(807), + [anon_sym_SEMI] = ACTIONS(809), + [anon_sym_PIPE] = ACTIONS(809), + [anon_sym_SEMI_SEMI] = ACTIONS(807), + [anon_sym_PIPE_AMP] = ACTIONS(807), + [anon_sym_AMP_AMP] = ACTIONS(807), + [anon_sym_PIPE_PIPE] = ACTIONS(807), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(807), + [anon_sym_AMP] = ACTIONS(809), }, [1656] = { - [sym_concatenation] = STATE(1960), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(1960), - [anon_sym_RBRACE] = ACTIONS(4497), - [anon_sym_EQ] = ACTIONS(4505), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(4507), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(4505), - [anon_sym_COLON_QMARK] = ACTIONS(4505), - [anon_sym_COLON_DASH] = ACTIONS(4505), - [anon_sym_PERCENT] = ACTIONS(4505), - [anon_sym_DASH] = ACTIONS(4505), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [aux_sym_concatenation_repeat1] = STATE(1656), + [sym_file_descriptor] = ACTIONS(1763), + [sym__concat] = ACTIONS(3295), + [sym_variable_name] = ACTIONS(1763), + [anon_sym_SEMI] = ACTIONS(1765), + [anon_sym_PIPE] = ACTIONS(1765), + [anon_sym_RPAREN] = ACTIONS(1763), + [anon_sym_SEMI_SEMI] = ACTIONS(1763), + [anon_sym_PIPE_AMP] = ACTIONS(1763), + [anon_sym_AMP_AMP] = ACTIONS(1763), + [anon_sym_PIPE_PIPE] = ACTIONS(1763), + [anon_sym_LT] = ACTIONS(1765), + [anon_sym_GT] = ACTIONS(1765), + [anon_sym_GT_GT] = ACTIONS(1763), + [anon_sym_AMP_GT] = ACTIONS(1765), + [anon_sym_AMP_GT_GT] = ACTIONS(1763), + [anon_sym_LT_AMP] = ACTIONS(1763), + [anon_sym_GT_AMP] = ACTIONS(1763), + [sym__special_characters] = ACTIONS(1763), + [anon_sym_DQUOTE] = ACTIONS(1763), + [anon_sym_DOLLAR] = ACTIONS(1765), + [sym_raw_string] = ACTIONS(1763), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1763), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1763), + [anon_sym_BQUOTE] = ACTIONS(1763), + [anon_sym_LT_LPAREN] = ACTIONS(1763), + [anon_sym_GT_LPAREN] = ACTIONS(1763), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1765), + [anon_sym_LF] = ACTIONS(1763), + [anon_sym_AMP] = ACTIONS(1765), }, [1657] = { - [sym__concat] = ACTIONS(3893), - [anon_sym_DQUOTE] = ACTIONS(3895), - [anon_sym_DOLLAR] = ACTIONS(3895), - [sym__string_content] = ACTIONS(3893), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3895), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3895), - [anon_sym_BQUOTE] = ACTIONS(3895), - [sym_comment] = ACTIONS(265), + [sym_concatenation] = STATE(1586), + [sym_string] = STATE(1998), + [sym_simple_expansion] = STATE(1998), + [sym_string_expansion] = STATE(1998), + [sym_expansion] = STATE(1998), + [sym_command_substitution] = STATE(1998), + [sym_process_substitution] = STATE(1998), + [sym__special_characters] = ACTIONS(4549), + [anon_sym_DQUOTE] = ACTIONS(2396), + [anon_sym_DOLLAR] = ACTIONS(2398), + [sym_raw_string] = ACTIONS(4551), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2402), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2404), + [anon_sym_BQUOTE] = ACTIONS(2406), + [anon_sym_LT_LPAREN] = ACTIONS(2408), + [anon_sym_GT_LPAREN] = ACTIONS(2408), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(4551), }, [1658] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(4509), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [aux_sym_concatenation_repeat1] = STATE(1999), + [sym_file_descriptor] = ACTIONS(773), + [sym__concat] = ACTIONS(3579), + [anon_sym_SEMI] = ACTIONS(777), + [anon_sym_PIPE] = ACTIONS(777), + [anon_sym_RPAREN] = ACTIONS(773), + [anon_sym_SEMI_SEMI] = ACTIONS(773), + [anon_sym_PIPE_AMP] = ACTIONS(773), + [anon_sym_AMP_AMP] = ACTIONS(773), + [anon_sym_PIPE_PIPE] = ACTIONS(773), + [anon_sym_LT] = ACTIONS(777), + [anon_sym_GT] = ACTIONS(777), + [anon_sym_GT_GT] = ACTIONS(773), + [anon_sym_AMP_GT] = ACTIONS(777), + [anon_sym_AMP_GT_GT] = ACTIONS(773), + [anon_sym_LT_AMP] = ACTIONS(773), + [anon_sym_GT_AMP] = ACTIONS(773), + [anon_sym_LT_LT] = ACTIONS(777), + [anon_sym_LT_LT_DASH] = ACTIONS(773), + [anon_sym_LT_LT_LT] = ACTIONS(773), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(773), + [anon_sym_AMP] = ACTIONS(777), }, [1659] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(4497), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [aux_sym_concatenation_repeat1] = STATE(1999), + [sym_file_descriptor] = ACTIONS(791), + [sym__concat] = ACTIONS(3579), + [anon_sym_SEMI] = ACTIONS(793), + [anon_sym_PIPE] = ACTIONS(793), + [anon_sym_RPAREN] = ACTIONS(791), + [anon_sym_SEMI_SEMI] = ACTIONS(791), + [anon_sym_PIPE_AMP] = ACTIONS(791), + [anon_sym_AMP_AMP] = ACTIONS(791), + [anon_sym_PIPE_PIPE] = ACTIONS(791), + [anon_sym_LT] = ACTIONS(793), + [anon_sym_GT] = ACTIONS(793), + [anon_sym_GT_GT] = ACTIONS(791), + [anon_sym_AMP_GT] = ACTIONS(793), + [anon_sym_AMP_GT_GT] = ACTIONS(791), + [anon_sym_LT_AMP] = ACTIONS(791), + [anon_sym_GT_AMP] = ACTIONS(791), + [anon_sym_LT_LT] = ACTIONS(793), + [anon_sym_LT_LT_DASH] = ACTIONS(791), + [anon_sym_LT_LT_LT] = ACTIONS(791), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(791), + [anon_sym_AMP] = ACTIONS(793), }, [1660] = { - [sym__concat] = ACTIONS(3915), - [anon_sym_DQUOTE] = ACTIONS(3917), - [anon_sym_DOLLAR] = ACTIONS(3917), - [sym__string_content] = ACTIONS(3915), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3917), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3917), - [anon_sym_BQUOTE] = ACTIONS(3917), - [sym_comment] = ACTIONS(265), + [aux_sym_concatenation_repeat1] = STATE(1999), + [sym_file_descriptor] = ACTIONS(2015), + [sym__concat] = ACTIONS(3579), + [anon_sym_SEMI] = ACTIONS(2017), + [anon_sym_PIPE] = ACTIONS(2017), + [anon_sym_RPAREN] = ACTIONS(2015), + [anon_sym_SEMI_SEMI] = ACTIONS(2015), + [anon_sym_PIPE_AMP] = ACTIONS(2015), + [anon_sym_AMP_AMP] = ACTIONS(2015), + [anon_sym_PIPE_PIPE] = ACTIONS(2015), + [anon_sym_LT] = ACTIONS(2017), + [anon_sym_GT] = ACTIONS(2017), + [anon_sym_GT_GT] = ACTIONS(2015), + [anon_sym_AMP_GT] = ACTIONS(2017), + [anon_sym_AMP_GT_GT] = ACTIONS(2015), + [anon_sym_LT_AMP] = ACTIONS(2015), + [anon_sym_GT_AMP] = ACTIONS(2015), + [anon_sym_LT_LT] = ACTIONS(2017), + [anon_sym_LT_LT_DASH] = ACTIONS(2015), + [anon_sym_LT_LT_LT] = ACTIONS(2015), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2017), }, [1661] = { - [sym__concat] = ACTIONS(4511), - [anon_sym_RBRACE] = ACTIONS(3124), - [anon_sym_EQ] = ACTIONS(4513), - [sym__special_characters] = ACTIONS(4513), - [anon_sym_DQUOTE] = ACTIONS(3124), - [anon_sym_DOLLAR] = ACTIONS(4513), - [sym_raw_string] = ACTIONS(3124), - [anon_sym_POUND] = ACTIONS(3124), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3124), - [anon_sym_SLASH] = ACTIONS(3124), - [anon_sym_COLON] = ACTIONS(4513), - [anon_sym_COLON_QMARK] = ACTIONS(4513), - [anon_sym_COLON_DASH] = ACTIONS(4513), - [anon_sym_PERCENT] = ACTIONS(4513), - [anon_sym_DASH] = ACTIONS(4513), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3124), - [anon_sym_BQUOTE] = ACTIONS(3124), - [anon_sym_LT_LPAREN] = ACTIONS(3124), - [anon_sym_GT_LPAREN] = ACTIONS(3124), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(4513), + [aux_sym_concatenation_repeat1] = STATE(1999), + [sym_file_descriptor] = ACTIONS(2019), + [sym__concat] = ACTIONS(3579), + [anon_sym_SEMI] = ACTIONS(2021), + [anon_sym_PIPE] = ACTIONS(2021), + [anon_sym_RPAREN] = ACTIONS(2019), + [anon_sym_SEMI_SEMI] = ACTIONS(2019), + [anon_sym_PIPE_AMP] = ACTIONS(2019), + [anon_sym_AMP_AMP] = ACTIONS(2019), + [anon_sym_PIPE_PIPE] = ACTIONS(2019), + [anon_sym_LT] = ACTIONS(2021), + [anon_sym_GT] = ACTIONS(2021), + [anon_sym_GT_GT] = ACTIONS(2019), + [anon_sym_AMP_GT] = ACTIONS(2021), + [anon_sym_AMP_GT_GT] = ACTIONS(2019), + [anon_sym_LT_AMP] = ACTIONS(2019), + [anon_sym_GT_AMP] = ACTIONS(2019), + [anon_sym_LT_LT] = ACTIONS(2021), + [anon_sym_LT_LT_DASH] = ACTIONS(2019), + [anon_sym_LT_LT_LT] = ACTIONS(2019), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2019), + [anon_sym_AMP] = ACTIONS(2021), }, [1662] = { - [anon_sym_RBRACE] = ACTIONS(3124), - [anon_sym_EQ] = ACTIONS(4513), - [sym__special_characters] = ACTIONS(4513), - [anon_sym_DQUOTE] = ACTIONS(3124), - [anon_sym_DOLLAR] = ACTIONS(4513), - [sym_raw_string] = ACTIONS(3124), - [anon_sym_POUND] = ACTIONS(3124), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3124), - [anon_sym_SLASH] = ACTIONS(3124), - [anon_sym_COLON] = ACTIONS(4513), - [anon_sym_COLON_QMARK] = ACTIONS(4513), - [anon_sym_COLON_DASH] = ACTIONS(4513), - [anon_sym_PERCENT] = ACTIONS(4513), - [anon_sym_DASH] = ACTIONS(4513), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3124), - [anon_sym_BQUOTE] = ACTIONS(3124), - [anon_sym_LT_LPAREN] = ACTIONS(3124), - [anon_sym_GT_LPAREN] = ACTIONS(3124), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(4513), + [sym_file_redirect] = STATE(1662), + [sym_heredoc_redirect] = STATE(1662), + [sym_herestring_redirect] = STATE(1662), + [aux_sym_while_statement_repeat1] = STATE(1662), + [sym_file_descriptor] = ACTIONS(4553), + [anon_sym_SEMI] = ACTIONS(2032), + [anon_sym_PIPE] = ACTIONS(2032), + [anon_sym_RPAREN] = ACTIONS(2027), + [anon_sym_SEMI_SEMI] = ACTIONS(2027), + [anon_sym_PIPE_AMP] = ACTIONS(2027), + [anon_sym_AMP_AMP] = ACTIONS(2027), + [anon_sym_PIPE_PIPE] = ACTIONS(2027), + [anon_sym_LT] = ACTIONS(4556), + [anon_sym_GT] = ACTIONS(4556), + [anon_sym_GT_GT] = ACTIONS(4559), + [anon_sym_AMP_GT] = ACTIONS(4556), + [anon_sym_AMP_GT_GT] = ACTIONS(4559), + [anon_sym_LT_AMP] = ACTIONS(4559), + [anon_sym_GT_AMP] = ACTIONS(4559), + [anon_sym_LT_LT] = ACTIONS(3612), + [anon_sym_LT_LT_DASH] = ACTIONS(3615), + [anon_sym_LT_LT_LT] = ACTIONS(4562), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2027), + [anon_sym_AMP] = ACTIONS(2032), }, [1663] = { - [sym__concat] = ACTIONS(4515), - [anon_sym_RBRACE] = ACTIONS(3128), - [anon_sym_EQ] = ACTIONS(4517), - [sym__special_characters] = ACTIONS(4517), - [anon_sym_DQUOTE] = ACTIONS(3128), - [anon_sym_DOLLAR] = ACTIONS(4517), - [sym_raw_string] = ACTIONS(3128), - [anon_sym_POUND] = ACTIONS(3128), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3128), - [anon_sym_SLASH] = ACTIONS(3128), - [anon_sym_COLON] = ACTIONS(4517), - [anon_sym_COLON_QMARK] = ACTIONS(4517), - [anon_sym_COLON_DASH] = ACTIONS(4517), - [anon_sym_PERCENT] = ACTIONS(4517), - [anon_sym_DASH] = ACTIONS(4517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3128), - [anon_sym_BQUOTE] = ACTIONS(3128), - [anon_sym_LT_LPAREN] = ACTIONS(3128), - [anon_sym_GT_LPAREN] = ACTIONS(3128), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(4517), + [sym_file_redirect] = STATE(1651), + [sym_file_descriptor] = ACTIONS(2626), + [anon_sym_SEMI] = ACTIONS(3722), + [anon_sym_PIPE] = ACTIONS(3722), + [anon_sym_RPAREN] = ACTIONS(3720), + [anon_sym_SEMI_SEMI] = ACTIONS(3720), + [anon_sym_PIPE_AMP] = ACTIONS(3720), + [anon_sym_AMP_AMP] = ACTIONS(3720), + [anon_sym_PIPE_PIPE] = ACTIONS(3720), + [anon_sym_LT] = ACTIONS(2628), + [anon_sym_GT] = ACTIONS(2628), + [anon_sym_GT_GT] = ACTIONS(2630), + [anon_sym_AMP_GT] = ACTIONS(2628), + [anon_sym_AMP_GT_GT] = ACTIONS(2630), + [anon_sym_LT_AMP] = ACTIONS(2630), + [anon_sym_GT_AMP] = ACTIONS(2630), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(3720), + [anon_sym_AMP] = ACTIONS(3722), }, [1664] = { - [anon_sym_RBRACE] = ACTIONS(3128), - [anon_sym_EQ] = ACTIONS(4517), - [sym__special_characters] = ACTIONS(4517), - [anon_sym_DQUOTE] = ACTIONS(3128), - [anon_sym_DOLLAR] = ACTIONS(4517), - [sym_raw_string] = ACTIONS(3128), - [anon_sym_POUND] = ACTIONS(3128), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3128), - [anon_sym_SLASH] = ACTIONS(3128), - [anon_sym_COLON] = ACTIONS(4517), - [anon_sym_COLON_QMARK] = ACTIONS(4517), - [anon_sym_COLON_DASH] = ACTIONS(4517), - [anon_sym_PERCENT] = ACTIONS(4517), - [anon_sym_DASH] = ACTIONS(4517), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3128), - [anon_sym_BQUOTE] = ACTIONS(3128), - [anon_sym_LT_LPAREN] = ACTIONS(3128), - [anon_sym_GT_LPAREN] = ACTIONS(3128), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(4517), + [sym_concatenation] = STATE(1654), + [sym_string] = STATE(2001), + [sym_simple_expansion] = STATE(2001), + [sym_string_expansion] = STATE(2001), + [sym_expansion] = STATE(2001), + [sym_command_substitution] = STATE(2001), + [sym_process_substitution] = STATE(2001), + [sym__special_characters] = ACTIONS(4565), + [anon_sym_DQUOTE] = ACTIONS(229), + [anon_sym_DOLLAR] = ACTIONS(231), + [sym_raw_string] = ACTIONS(4567), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), + [anon_sym_BQUOTE] = ACTIONS(239), + [anon_sym_LT_LPAREN] = ACTIONS(241), + [anon_sym_GT_LPAREN] = ACTIONS(241), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(4567), }, [1665] = { - [sym__concat] = ACTIONS(1724), - [anon_sym_RBRACE] = ACTIONS(1724), - [sym_comment] = ACTIONS(53), + [aux_sym_concatenation_repeat1] = STATE(2002), + [sym__concat] = ACTIONS(735), + [anon_sym_SEMI] = ACTIONS(777), + [anon_sym_PIPE] = ACTIONS(777), + [anon_sym_RPAREN] = ACTIONS(773), + [anon_sym_SEMI_SEMI] = ACTIONS(773), + [anon_sym_PIPE_AMP] = ACTIONS(773), + [anon_sym_AMP_AMP] = ACTIONS(773), + [anon_sym_PIPE_PIPE] = ACTIONS(773), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(773), + [anon_sym_AMP] = ACTIONS(777), }, [1666] = { - [aux_sym_concatenation_repeat1] = STATE(1666), - [sym__concat] = ACTIONS(4519), - [anon_sym_RBRACE] = ACTIONS(1724), - [sym_comment] = ACTIONS(53), + [aux_sym_concatenation_repeat1] = STATE(2002), + [sym__concat] = ACTIONS(735), + [anon_sym_SEMI] = ACTIONS(793), + [anon_sym_PIPE] = ACTIONS(793), + [anon_sym_RPAREN] = ACTIONS(791), + [anon_sym_SEMI_SEMI] = ACTIONS(791), + [anon_sym_PIPE_AMP] = ACTIONS(791), + [anon_sym_AMP_AMP] = ACTIONS(791), + [anon_sym_PIPE_PIPE] = ACTIONS(791), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(791), + [anon_sym_AMP] = ACTIONS(793), }, [1667] = { - [sym__concat] = ACTIONS(1731), - [anon_sym_RBRACE] = ACTIONS(1731), - [sym_comment] = ACTIONS(53), + [aux_sym_concatenation_repeat1] = STATE(1667), + [sym__simple_heredoc_body] = ACTIONS(1763), + [sym__heredoc_body_beginning] = ACTIONS(1763), + [sym_file_descriptor] = ACTIONS(1763), + [sym__concat] = ACTIONS(1767), + [anon_sym_SEMI] = ACTIONS(1765), + [anon_sym_PIPE] = ACTIONS(1765), + [anon_sym_RPAREN] = ACTIONS(1763), + [anon_sym_SEMI_SEMI] = ACTIONS(1763), + [anon_sym_PIPE_AMP] = ACTIONS(1763), + [anon_sym_AMP_AMP] = ACTIONS(1763), + [anon_sym_PIPE_PIPE] = ACTIONS(1763), + [anon_sym_LT] = ACTIONS(1765), + [anon_sym_GT] = ACTIONS(1765), + [anon_sym_GT_GT] = ACTIONS(1763), + [anon_sym_AMP_GT] = ACTIONS(1765), + [anon_sym_AMP_GT_GT] = ACTIONS(1763), + [anon_sym_LT_AMP] = ACTIONS(1763), + [anon_sym_GT_AMP] = ACTIONS(1763), + [anon_sym_LT_LT] = ACTIONS(1765), + [anon_sym_LT_LT_DASH] = ACTIONS(1763), + [anon_sym_LT_LT_LT] = ACTIONS(1763), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1763), + [anon_sym_AMP] = ACTIONS(1765), }, [1668] = { - [anon_sym_DQUOTE] = ACTIONS(4522), - [anon_sym_DOLLAR] = ACTIONS(775), - [sym__string_content] = ACTIONS(777), - [anon_sym_POUND] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(781), - [anon_sym_STAR] = ACTIONS(783), - [anon_sym_AT] = ACTIONS(783), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_0] = ACTIONS(781), - [anon_sym__] = ACTIONS(781), + [sym_file_descriptor] = ACTIONS(3265), + [sym_variable_name] = ACTIONS(3265), + [anon_sym_LT] = ACTIONS(3267), + [anon_sym_GT] = ACTIONS(3267), + [anon_sym_GT_GT] = ACTIONS(3265), + [anon_sym_AMP_GT] = ACTIONS(3267), + [anon_sym_AMP_GT_GT] = ACTIONS(3265), + [anon_sym_LT_AMP] = ACTIONS(3265), + [anon_sym_GT_AMP] = ACTIONS(3265), + [sym__special_characters] = ACTIONS(3265), + [anon_sym_DQUOTE] = ACTIONS(3265), + [anon_sym_DOLLAR] = ACTIONS(3267), + [sym_raw_string] = ACTIONS(3265), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3265), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3265), + [anon_sym_BQUOTE] = ACTIONS(3265), + [anon_sym_LT_LPAREN] = ACTIONS(3265), + [anon_sym_GT_LPAREN] = ACTIONS(3265), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(3265), }, [1669] = { - [sym_concatenation] = STATE(1968), - [sym_string] = STATE(1967), - [sym_simple_expansion] = STATE(1967), - [sym_string_expansion] = STATE(1967), - [sym_expansion] = STATE(1967), - [sym_command_substitution] = STATE(1967), - [sym_process_substitution] = STATE(1967), - [anon_sym_RBRACE] = ACTIONS(4524), - [sym__special_characters] = ACTIONS(4526), - [anon_sym_DQUOTE] = ACTIONS(1802), - [anon_sym_DOLLAR] = ACTIONS(1804), - [sym_raw_string] = ACTIONS(4528), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1808), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1810), - [anon_sym_BQUOTE] = ACTIONS(1812), - [anon_sym_LT_LPAREN] = ACTIONS(1814), - [anon_sym_GT_LPAREN] = ACTIONS(1814), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4528), + [sym__concat] = ACTIONS(3934), + [anon_sym_AMP_AMP] = ACTIONS(3934), + [anon_sym_PIPE_PIPE] = ACTIONS(3934), + [anon_sym_RBRACK] = ACTIONS(3934), + [anon_sym_EQ_TILDE] = ACTIONS(3934), + [anon_sym_EQ_EQ] = ACTIONS(3934), + [anon_sym_EQ] = ACTIONS(3936), + [anon_sym_PLUS_EQ] = ACTIONS(3934), + [anon_sym_LT] = ACTIONS(3936), + [anon_sym_GT] = ACTIONS(3936), + [anon_sym_BANG_EQ] = ACTIONS(3934), + [anon_sym_PLUS] = ACTIONS(3936), + [anon_sym_DASH] = ACTIONS(3936), + [anon_sym_DASH_EQ] = ACTIONS(3934), + [anon_sym_LT_EQ] = ACTIONS(3934), + [anon_sym_GT_EQ] = ACTIONS(3934), + [anon_sym_PLUS_PLUS] = ACTIONS(3934), + [anon_sym_DASH_DASH] = ACTIONS(3934), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(3934), }, [1670] = { - [anon_sym_LBRACK] = ACTIONS(815), - [anon_sym_EQ] = ACTIONS(4530), - [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(3942), + [anon_sym_AMP_AMP] = ACTIONS(3942), + [anon_sym_PIPE_PIPE] = ACTIONS(3942), + [anon_sym_RBRACK] = ACTIONS(3942), + [anon_sym_EQ_TILDE] = ACTIONS(3942), + [anon_sym_EQ_EQ] = ACTIONS(3942), + [anon_sym_EQ] = ACTIONS(3944), + [anon_sym_PLUS_EQ] = ACTIONS(3942), + [anon_sym_LT] = ACTIONS(3944), + [anon_sym_GT] = ACTIONS(3944), + [anon_sym_BANG_EQ] = ACTIONS(3942), + [anon_sym_PLUS] = ACTIONS(3944), + [anon_sym_DASH] = ACTIONS(3944), + [anon_sym_DASH_EQ] = ACTIONS(3942), + [anon_sym_LT_EQ] = ACTIONS(3942), + [anon_sym_GT_EQ] = ACTIONS(3942), + [anon_sym_PLUS_PLUS] = ACTIONS(3942), + [anon_sym_DASH_DASH] = ACTIONS(3942), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(3942), }, [1671] = { - [sym_concatenation] = STATE(1972), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(1972), - [anon_sym_RBRACE] = ACTIONS(4532), - [anon_sym_EQ] = ACTIONS(4534), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(4536), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(4538), - [anon_sym_COLON] = ACTIONS(4534), - [anon_sym_COLON_QMARK] = ACTIONS(4534), - [anon_sym_COLON_DASH] = ACTIONS(4534), - [anon_sym_PERCENT] = ACTIONS(4534), - [anon_sym_DASH] = ACTIONS(4534), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [aux_sym_concatenation_repeat1] = STATE(1366), + [sym__concat] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(4569), + [sym_comment] = ACTIONS(55), }, [1672] = { - [sym_concatenation] = STATE(1974), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(1974), - [anon_sym_RBRACE] = ACTIONS(4524), - [anon_sym_EQ] = ACTIONS(4540), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(4542), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(4544), - [anon_sym_COLON] = ACTIONS(4540), - [anon_sym_COLON_QMARK] = ACTIONS(4540), - [anon_sym_COLON_DASH] = ACTIONS(4540), - [anon_sym_PERCENT] = ACTIONS(4540), - [anon_sym_DASH] = ACTIONS(4540), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [aux_sym_concatenation_repeat1] = STATE(1366), + [sym__concat] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(4571), + [sym_comment] = ACTIONS(55), }, [1673] = { - [sym__concat] = ACTIONS(1832), - [anon_sym_RBRACE] = ACTIONS(1832), - [sym_comment] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(4571), + [sym_comment] = ACTIONS(55), }, [1674] = { - [sym_comment] = ACTIONS(265), - [sym_regex_without_right_brace] = ACTIONS(4546), + [sym_concatenation] = STATE(2006), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2006), + [anon_sym_RBRACE] = ACTIONS(4573), + [anon_sym_EQ] = ACTIONS(4575), + [anon_sym_DASH] = ACTIONS(4575), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(4577), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(4575), + [anon_sym_COLON_QMARK] = ACTIONS(4575), + [anon_sym_COLON_DASH] = ACTIONS(4575), + [anon_sym_PERCENT] = ACTIONS(4575), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1675] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(4548), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym__concat] = ACTIONS(3998), + [anon_sym_AMP_AMP] = ACTIONS(3998), + [anon_sym_PIPE_PIPE] = ACTIONS(3998), + [anon_sym_RBRACK] = ACTIONS(3998), + [anon_sym_EQ_TILDE] = ACTIONS(3998), + [anon_sym_EQ_EQ] = ACTIONS(3998), + [anon_sym_EQ] = ACTIONS(4000), + [anon_sym_PLUS_EQ] = ACTIONS(3998), + [anon_sym_LT] = ACTIONS(4000), + [anon_sym_GT] = ACTIONS(4000), + [anon_sym_BANG_EQ] = ACTIONS(3998), + [anon_sym_PLUS] = ACTIONS(4000), + [anon_sym_DASH] = ACTIONS(4000), + [anon_sym_DASH_EQ] = ACTIONS(3998), + [anon_sym_LT_EQ] = ACTIONS(3998), + [anon_sym_GT_EQ] = ACTIONS(3998), + [anon_sym_PLUS_PLUS] = ACTIONS(3998), + [anon_sym_DASH_DASH] = ACTIONS(3998), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(3998), }, [1676] = { - [sym__concat] = ACTIONS(1876), - [anon_sym_RBRACE] = ACTIONS(1876), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(4573), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1677] = { - [sym_comment] = ACTIONS(265), - [sym_regex_without_right_brace] = ACTIONS(4550), + [sym_concatenation] = STATE(2007), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2007), + [anon_sym_RBRACE] = ACTIONS(4571), + [anon_sym_EQ] = ACTIONS(4579), + [anon_sym_DASH] = ACTIONS(4579), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(4581), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(4579), + [anon_sym_COLON_QMARK] = ACTIONS(4579), + [anon_sym_COLON_DASH] = ACTIONS(4579), + [anon_sym_PERCENT] = ACTIONS(4579), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1678] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(4524), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(4571), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1679] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(4552), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(901), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), + [sym__concat] = ACTIONS(4043), + [anon_sym_AMP_AMP] = ACTIONS(4043), + [anon_sym_PIPE_PIPE] = ACTIONS(4043), + [anon_sym_RBRACK] = ACTIONS(4043), + [anon_sym_EQ_TILDE] = ACTIONS(4043), + [anon_sym_EQ_EQ] = ACTIONS(4043), + [anon_sym_EQ] = ACTIONS(4045), + [anon_sym_PLUS_EQ] = ACTIONS(4043), + [anon_sym_LT] = ACTIONS(4045), + [anon_sym_GT] = ACTIONS(4045), + [anon_sym_BANG_EQ] = ACTIONS(4043), + [anon_sym_PLUS] = ACTIONS(4045), + [anon_sym_DASH] = ACTIONS(4045), + [anon_sym_DASH_EQ] = ACTIONS(4043), + [anon_sym_LT_EQ] = ACTIONS(4043), + [anon_sym_GT_EQ] = ACTIONS(4043), + [anon_sym_PLUS_PLUS] = ACTIONS(4043), + [anon_sym_DASH_DASH] = ACTIONS(4043), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(4043), }, [1680] = { - [sym__concat] = ACTIONS(1884), - [anon_sym_RBRACE] = ACTIONS(1884), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(4583), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1681] = { - [anon_sym_SEMI] = ACTIONS(4554), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(4552), - [anon_sym_SEMI_SEMI] = ACTIONS(4556), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(4556), - [anon_sym_AMP] = ACTIONS(4554), + [sym__concat] = ACTIONS(4065), + [anon_sym_AMP_AMP] = ACTIONS(4065), + [anon_sym_PIPE_PIPE] = ACTIONS(4065), + [anon_sym_RBRACK] = ACTIONS(4065), + [anon_sym_EQ_TILDE] = ACTIONS(4065), + [anon_sym_EQ_EQ] = ACTIONS(4065), + [anon_sym_EQ] = ACTIONS(4067), + [anon_sym_PLUS_EQ] = ACTIONS(4065), + [anon_sym_LT] = ACTIONS(4067), + [anon_sym_GT] = ACTIONS(4067), + [anon_sym_BANG_EQ] = ACTIONS(4065), + [anon_sym_PLUS] = ACTIONS(4067), + [anon_sym_DASH] = ACTIONS(4067), + [anon_sym_DASH_EQ] = ACTIONS(4065), + [anon_sym_LT_EQ] = ACTIONS(4065), + [anon_sym_GT_EQ] = ACTIONS(4065), + [anon_sym_PLUS_PLUS] = ACTIONS(4065), + [anon_sym_DASH_DASH] = ACTIONS(4065), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(4065), }, [1682] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(4554), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(4552), - [anon_sym_SEMI_SEMI] = ACTIONS(4556), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(4556), - [anon_sym_AMP] = ACTIONS(4554), + [sym__concat] = ACTIONS(4089), + [anon_sym_AMP_AMP] = ACTIONS(4089), + [anon_sym_PIPE_PIPE] = ACTIONS(4089), + [anon_sym_RBRACK] = ACTIONS(4089), + [anon_sym_EQ_TILDE] = ACTIONS(4089), + [anon_sym_EQ_EQ] = ACTIONS(4089), + [anon_sym_EQ] = ACTIONS(4091), + [anon_sym_PLUS_EQ] = ACTIONS(4089), + [anon_sym_LT] = ACTIONS(4091), + [anon_sym_GT] = ACTIONS(4091), + [anon_sym_BANG_EQ] = ACTIONS(4089), + [anon_sym_PLUS] = ACTIONS(4091), + [anon_sym_DASH] = ACTIONS(4091), + [anon_sym_DASH_EQ] = ACTIONS(4089), + [anon_sym_LT_EQ] = ACTIONS(4089), + [anon_sym_GT_EQ] = ACTIONS(4089), + [anon_sym_PLUS_PLUS] = ACTIONS(4089), + [anon_sym_DASH_DASH] = ACTIONS(4089), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(4089), }, [1683] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(4552), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), + [sym_variable_name] = ACTIONS(3265), + [ts_builtin_sym_end] = ACTIONS(3265), + [anon_sym_SEMI] = ACTIONS(3267), + [anon_sym_PIPE] = ACTIONS(3267), + [anon_sym_RPAREN] = ACTIONS(3265), + [anon_sym_SEMI_SEMI] = ACTIONS(3265), + [anon_sym_PIPE_AMP] = ACTIONS(3265), + [anon_sym_AMP_AMP] = ACTIONS(3265), + [anon_sym_PIPE_PIPE] = ACTIONS(3265), + [sym__special_characters] = ACTIONS(3265), + [anon_sym_DQUOTE] = ACTIONS(3265), + [anon_sym_DOLLAR] = ACTIONS(3267), + [sym_raw_string] = ACTIONS(3265), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3265), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3265), + [anon_sym_BQUOTE] = ACTIONS(3265), + [anon_sym_LT_LPAREN] = ACTIONS(3265), + [anon_sym_GT_LPAREN] = ACTIONS(3265), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3267), + [sym_word] = ACTIONS(3267), + [anon_sym_LF] = ACTIONS(3265), + [anon_sym_AMP] = ACTIONS(3267), }, [1684] = { - [anon_sym_SEMI] = ACTIONS(4558), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_SEMI_SEMI] = ACTIONS(4560), - [anon_sym_PIPE_AMP] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(883), - [anon_sym_PIPE_PIPE] = ACTIONS(883), - [anon_sym_BQUOTE] = ACTIONS(4552), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(4560), - [anon_sym_AMP] = ACTIONS(4558), + [sym__concat] = ACTIONS(3934), + [sym_variable_name] = ACTIONS(3934), + [ts_builtin_sym_end] = ACTIONS(3934), + [anon_sym_SEMI] = ACTIONS(3936), + [anon_sym_PIPE] = ACTIONS(3936), + [anon_sym_RPAREN] = ACTIONS(3934), + [anon_sym_SEMI_SEMI] = ACTIONS(3934), + [anon_sym_PIPE_AMP] = ACTIONS(3934), + [anon_sym_AMP_AMP] = ACTIONS(3934), + [anon_sym_PIPE_PIPE] = ACTIONS(3934), + [sym__special_characters] = ACTIONS(3934), + [anon_sym_DQUOTE] = ACTIONS(3934), + [anon_sym_DOLLAR] = ACTIONS(3936), + [sym_raw_string] = ACTIONS(3934), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3934), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3934), + [anon_sym_BQUOTE] = ACTIONS(3934), + [anon_sym_LT_LPAREN] = ACTIONS(3934), + [anon_sym_GT_LPAREN] = ACTIONS(3934), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3936), + [sym_word] = ACTIONS(3936), + [anon_sym_LF] = ACTIONS(3934), + [anon_sym_AMP] = ACTIONS(3936), }, [1685] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(4558), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_SEMI_SEMI] = ACTIONS(4560), - [anon_sym_PIPE_AMP] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(883), - [anon_sym_PIPE_PIPE] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(4552), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(4560), - [anon_sym_AMP] = ACTIONS(4558), + [sym__concat] = ACTIONS(3942), + [sym_variable_name] = ACTIONS(3942), + [ts_builtin_sym_end] = ACTIONS(3942), + [anon_sym_SEMI] = ACTIONS(3944), + [anon_sym_PIPE] = ACTIONS(3944), + [anon_sym_RPAREN] = ACTIONS(3942), + [anon_sym_SEMI_SEMI] = ACTIONS(3942), + [anon_sym_PIPE_AMP] = ACTIONS(3942), + [anon_sym_AMP_AMP] = ACTIONS(3942), + [anon_sym_PIPE_PIPE] = ACTIONS(3942), + [sym__special_characters] = ACTIONS(3942), + [anon_sym_DQUOTE] = ACTIONS(3942), + [anon_sym_DOLLAR] = ACTIONS(3944), + [sym_raw_string] = ACTIONS(3942), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3942), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3942), + [anon_sym_BQUOTE] = ACTIONS(3942), + [anon_sym_LT_LPAREN] = ACTIONS(3942), + [anon_sym_GT_LPAREN] = ACTIONS(3942), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3944), + [sym_word] = ACTIONS(3944), + [anon_sym_LF] = ACTIONS(3942), + [anon_sym_AMP] = ACTIONS(3944), }, [1686] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(4562), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(901), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), + [aux_sym_concatenation_repeat1] = STATE(1366), + [sym__concat] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(4585), + [sym_comment] = ACTIONS(55), }, [1687] = { - [sym__concat] = ACTIONS(1916), - [anon_sym_RBRACE] = ACTIONS(1916), - [sym_comment] = ACTIONS(53), + [aux_sym_concatenation_repeat1] = STATE(1366), + [sym__concat] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(4587), + [sym_comment] = ACTIONS(55), }, [1688] = { - [anon_sym_SEMI] = ACTIONS(4564), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(4562), - [anon_sym_SEMI_SEMI] = ACTIONS(4566), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(4566), - [anon_sym_AMP] = ACTIONS(4564), + [anon_sym_RBRACE] = ACTIONS(4587), + [sym_comment] = ACTIONS(55), }, [1689] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(4564), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(4562), - [anon_sym_SEMI_SEMI] = ACTIONS(4566), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(4566), - [anon_sym_AMP] = ACTIONS(4564), + [sym_concatenation] = STATE(2012), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2012), + [anon_sym_RBRACE] = ACTIONS(4589), + [anon_sym_EQ] = ACTIONS(4591), + [anon_sym_DASH] = ACTIONS(4591), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(4593), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(4591), + [anon_sym_COLON_QMARK] = ACTIONS(4591), + [anon_sym_COLON_DASH] = ACTIONS(4591), + [anon_sym_PERCENT] = ACTIONS(4591), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1690] = { - [sym__simple_heredoc_body] = ACTIONS(4568), - [sym__heredoc_body_beginning] = ACTIONS(4568), - [sym_file_descriptor] = ACTIONS(4568), - [sym__concat] = ACTIONS(4568), - [ts_builtin_sym_end] = ACTIONS(4568), - [anon_sym_SEMI] = ACTIONS(4570), - [anon_sym_PIPE] = ACTIONS(4570), - [anon_sym_RPAREN] = ACTIONS(4568), - [anon_sym_SEMI_SEMI] = ACTIONS(4568), - [anon_sym_PIPE_AMP] = ACTIONS(4568), - [anon_sym_AMP_AMP] = ACTIONS(4568), - [anon_sym_PIPE_PIPE] = ACTIONS(4568), - [anon_sym_EQ_TILDE] = ACTIONS(4570), - [anon_sym_EQ_EQ] = ACTIONS(4570), - [anon_sym_LT] = ACTIONS(4570), - [anon_sym_GT] = ACTIONS(4570), - [anon_sym_GT_GT] = ACTIONS(4568), - [anon_sym_AMP_GT] = ACTIONS(4570), - [anon_sym_AMP_GT_GT] = ACTIONS(4568), - [anon_sym_LT_AMP] = ACTIONS(4568), - [anon_sym_GT_AMP] = ACTIONS(4568), - [anon_sym_LT_LT] = ACTIONS(4570), - [anon_sym_LT_LT_DASH] = ACTIONS(4568), - [anon_sym_LT_LT_LT] = ACTIONS(4568), - [sym__special_characters] = ACTIONS(4568), - [anon_sym_DQUOTE] = ACTIONS(4568), - [anon_sym_DOLLAR] = ACTIONS(4570), - [sym_raw_string] = ACTIONS(4568), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4568), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4568), - [anon_sym_BQUOTE] = ACTIONS(4568), - [anon_sym_LT_LPAREN] = ACTIONS(4568), - [anon_sym_GT_LPAREN] = ACTIONS(4568), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4570), - [anon_sym_LF] = ACTIONS(4568), - [anon_sym_AMP] = ACTIONS(4570), + [sym__concat] = ACTIONS(3998), + [sym_variable_name] = ACTIONS(3998), + [ts_builtin_sym_end] = ACTIONS(3998), + [anon_sym_SEMI] = ACTIONS(4000), + [anon_sym_PIPE] = ACTIONS(4000), + [anon_sym_RPAREN] = ACTIONS(3998), + [anon_sym_SEMI_SEMI] = ACTIONS(3998), + [anon_sym_PIPE_AMP] = ACTIONS(3998), + [anon_sym_AMP_AMP] = ACTIONS(3998), + [anon_sym_PIPE_PIPE] = ACTIONS(3998), + [sym__special_characters] = ACTIONS(3998), + [anon_sym_DQUOTE] = ACTIONS(3998), + [anon_sym_DOLLAR] = ACTIONS(4000), + [sym_raw_string] = ACTIONS(3998), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3998), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3998), + [anon_sym_BQUOTE] = ACTIONS(3998), + [anon_sym_LT_LPAREN] = ACTIONS(3998), + [anon_sym_GT_LPAREN] = ACTIONS(3998), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4000), + [sym_word] = ACTIONS(4000), + [anon_sym_LF] = ACTIONS(3998), + [anon_sym_AMP] = ACTIONS(4000), }, [1691] = { - [sym__simple_heredoc_body] = ACTIONS(4572), - [sym__heredoc_body_beginning] = ACTIONS(4572), - [sym_file_descriptor] = ACTIONS(4572), - [sym__concat] = ACTIONS(4572), - [ts_builtin_sym_end] = ACTIONS(4572), - [anon_sym_SEMI] = ACTIONS(4574), - [anon_sym_PIPE] = ACTIONS(4574), - [anon_sym_RPAREN] = ACTIONS(4572), - [anon_sym_SEMI_SEMI] = ACTIONS(4572), - [anon_sym_PIPE_AMP] = ACTIONS(4572), - [anon_sym_AMP_AMP] = ACTIONS(4572), - [anon_sym_PIPE_PIPE] = ACTIONS(4572), - [anon_sym_EQ_TILDE] = ACTIONS(4574), - [anon_sym_EQ_EQ] = ACTIONS(4574), - [anon_sym_LT] = ACTIONS(4574), - [anon_sym_GT] = ACTIONS(4574), - [anon_sym_GT_GT] = ACTIONS(4572), - [anon_sym_AMP_GT] = ACTIONS(4574), - [anon_sym_AMP_GT_GT] = ACTIONS(4572), - [anon_sym_LT_AMP] = ACTIONS(4572), - [anon_sym_GT_AMP] = ACTIONS(4572), - [anon_sym_LT_LT] = ACTIONS(4574), - [anon_sym_LT_LT_DASH] = ACTIONS(4572), - [anon_sym_LT_LT_LT] = ACTIONS(4572), - [sym__special_characters] = ACTIONS(4572), - [anon_sym_DQUOTE] = ACTIONS(4572), - [anon_sym_DOLLAR] = ACTIONS(4574), - [sym_raw_string] = ACTIONS(4572), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4572), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4572), - [anon_sym_BQUOTE] = ACTIONS(4572), - [anon_sym_LT_LPAREN] = ACTIONS(4572), - [anon_sym_GT_LPAREN] = ACTIONS(4572), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4574), - [anon_sym_LF] = ACTIONS(4572), - [anon_sym_AMP] = ACTIONS(4574), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(4589), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1692] = { - [sym__simple_heredoc_body] = ACTIONS(4576), - [sym__heredoc_body_beginning] = ACTIONS(4576), - [sym_file_descriptor] = ACTIONS(4576), - [sym__concat] = ACTIONS(4576), - [ts_builtin_sym_end] = ACTIONS(4576), - [anon_sym_SEMI] = ACTIONS(4578), - [anon_sym_PIPE] = ACTIONS(4578), - [anon_sym_RPAREN] = ACTIONS(4576), - [anon_sym_SEMI_SEMI] = ACTIONS(4576), - [anon_sym_PIPE_AMP] = ACTIONS(4576), - [anon_sym_AMP_AMP] = ACTIONS(4576), - [anon_sym_PIPE_PIPE] = ACTIONS(4576), - [anon_sym_EQ_TILDE] = ACTIONS(4578), - [anon_sym_EQ_EQ] = ACTIONS(4578), - [anon_sym_LT] = ACTIONS(4578), - [anon_sym_GT] = ACTIONS(4578), - [anon_sym_GT_GT] = ACTIONS(4576), - [anon_sym_AMP_GT] = ACTIONS(4578), - [anon_sym_AMP_GT_GT] = ACTIONS(4576), - [anon_sym_LT_AMP] = ACTIONS(4576), - [anon_sym_GT_AMP] = ACTIONS(4576), - [anon_sym_LT_LT] = ACTIONS(4578), - [anon_sym_LT_LT_DASH] = ACTIONS(4576), - [anon_sym_LT_LT_LT] = ACTIONS(4576), - [sym__special_characters] = ACTIONS(4576), - [anon_sym_DQUOTE] = ACTIONS(4576), - [anon_sym_DOLLAR] = ACTIONS(4578), - [sym_raw_string] = ACTIONS(4576), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4576), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4576), - [anon_sym_BQUOTE] = ACTIONS(4576), - [anon_sym_LT_LPAREN] = ACTIONS(4576), - [anon_sym_GT_LPAREN] = ACTIONS(4576), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4578), - [anon_sym_LF] = ACTIONS(4576), - [anon_sym_AMP] = ACTIONS(4578), + [sym_concatenation] = STATE(2013), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2013), + [anon_sym_RBRACE] = ACTIONS(4587), + [anon_sym_EQ] = ACTIONS(4595), + [anon_sym_DASH] = ACTIONS(4595), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(4597), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(4595), + [anon_sym_COLON_QMARK] = ACTIONS(4595), + [anon_sym_COLON_DASH] = ACTIONS(4595), + [anon_sym_PERCENT] = ACTIONS(4595), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1693] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(4580), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(4587), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1694] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(4582), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym__concat] = ACTIONS(4043), + [sym_variable_name] = ACTIONS(4043), + [ts_builtin_sym_end] = ACTIONS(4043), + [anon_sym_SEMI] = ACTIONS(4045), + [anon_sym_PIPE] = ACTIONS(4045), + [anon_sym_RPAREN] = ACTIONS(4043), + [anon_sym_SEMI_SEMI] = ACTIONS(4043), + [anon_sym_PIPE_AMP] = ACTIONS(4043), + [anon_sym_AMP_AMP] = ACTIONS(4043), + [anon_sym_PIPE_PIPE] = ACTIONS(4043), + [sym__special_characters] = ACTIONS(4043), + [anon_sym_DQUOTE] = ACTIONS(4043), + [anon_sym_DOLLAR] = ACTIONS(4045), + [sym_raw_string] = ACTIONS(4043), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4043), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4043), + [anon_sym_BQUOTE] = ACTIONS(4043), + [anon_sym_LT_LPAREN] = ACTIONS(4043), + [anon_sym_GT_LPAREN] = ACTIONS(4043), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4045), + [sym_word] = ACTIONS(4045), + [anon_sym_LF] = ACTIONS(4043), + [anon_sym_AMP] = ACTIONS(4045), }, [1695] = { - [sym__concat] = ACTIONS(2876), - [anon_sym_RBRACE] = ACTIONS(2876), - [anon_sym_EQ] = ACTIONS(2878), - [sym__special_characters] = ACTIONS(2878), - [anon_sym_DQUOTE] = ACTIONS(2876), - [anon_sym_DOLLAR] = ACTIONS(2878), - [sym_raw_string] = ACTIONS(2876), - [anon_sym_POUND] = ACTIONS(2876), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2876), - [anon_sym_COLON] = ACTIONS(2878), - [anon_sym_COLON_QMARK] = ACTIONS(2878), - [anon_sym_COLON_DASH] = ACTIONS(2878), - [anon_sym_PERCENT] = ACTIONS(2878), - [anon_sym_DASH] = ACTIONS(2878), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2876), - [anon_sym_BQUOTE] = ACTIONS(2876), - [anon_sym_LT_LPAREN] = ACTIONS(2876), - [anon_sym_GT_LPAREN] = ACTIONS(2876), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(2878), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(4599), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1696] = { - [sym__concat] = ACTIONS(2890), - [anon_sym_RBRACE] = ACTIONS(2890), - [anon_sym_EQ] = ACTIONS(2892), - [sym__special_characters] = ACTIONS(2892), - [anon_sym_DQUOTE] = ACTIONS(2890), - [anon_sym_DOLLAR] = ACTIONS(2892), - [sym_raw_string] = ACTIONS(2890), - [anon_sym_POUND] = ACTIONS(2890), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2890), - [anon_sym_COLON] = ACTIONS(2892), - [anon_sym_COLON_QMARK] = ACTIONS(2892), - [anon_sym_COLON_DASH] = ACTIONS(2892), - [anon_sym_PERCENT] = ACTIONS(2892), - [anon_sym_DASH] = ACTIONS(2892), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2890), - [anon_sym_BQUOTE] = ACTIONS(2890), - [anon_sym_LT_LPAREN] = ACTIONS(2890), - [anon_sym_GT_LPAREN] = ACTIONS(2890), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(2892), + [sym__concat] = ACTIONS(4065), + [sym_variable_name] = ACTIONS(4065), + [ts_builtin_sym_end] = ACTIONS(4065), + [anon_sym_SEMI] = ACTIONS(4067), + [anon_sym_PIPE] = ACTIONS(4067), + [anon_sym_RPAREN] = ACTIONS(4065), + [anon_sym_SEMI_SEMI] = ACTIONS(4065), + [anon_sym_PIPE_AMP] = ACTIONS(4065), + [anon_sym_AMP_AMP] = ACTIONS(4065), + [anon_sym_PIPE_PIPE] = ACTIONS(4065), + [sym__special_characters] = ACTIONS(4065), + [anon_sym_DQUOTE] = ACTIONS(4065), + [anon_sym_DOLLAR] = ACTIONS(4067), + [sym_raw_string] = ACTIONS(4065), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4065), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4065), + [anon_sym_BQUOTE] = ACTIONS(4065), + [anon_sym_LT_LPAREN] = ACTIONS(4065), + [anon_sym_GT_LPAREN] = ACTIONS(4065), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4067), + [sym_word] = ACTIONS(4067), + [anon_sym_LF] = ACTIONS(4065), + [anon_sym_AMP] = ACTIONS(4067), }, [1697] = { - [aux_sym_concatenation_repeat1] = STATE(1293), - [sym__concat] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(4584), - [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(4089), + [sym_variable_name] = ACTIONS(4089), + [ts_builtin_sym_end] = ACTIONS(4089), + [anon_sym_SEMI] = ACTIONS(4091), + [anon_sym_PIPE] = ACTIONS(4091), + [anon_sym_RPAREN] = ACTIONS(4089), + [anon_sym_SEMI_SEMI] = ACTIONS(4089), + [anon_sym_PIPE_AMP] = ACTIONS(4089), + [anon_sym_AMP_AMP] = ACTIONS(4089), + [anon_sym_PIPE_PIPE] = ACTIONS(4089), + [sym__special_characters] = ACTIONS(4089), + [anon_sym_DQUOTE] = ACTIONS(4089), + [anon_sym_DOLLAR] = ACTIONS(4091), + [sym_raw_string] = ACTIONS(4089), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4089), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4089), + [anon_sym_BQUOTE] = ACTIONS(4089), + [anon_sym_LT_LPAREN] = ACTIONS(4089), + [anon_sym_GT_LPAREN] = ACTIONS(4089), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4091), + [sym_word] = ACTIONS(4091), + [anon_sym_LF] = ACTIONS(4089), + [anon_sym_AMP] = ACTIONS(4091), }, [1698] = { - [aux_sym_concatenation_repeat1] = STATE(1293), - [sym__concat] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(4586), - [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(3934), + [ts_builtin_sym_end] = ACTIONS(3934), + [anon_sym_SEMI] = ACTIONS(3936), + [anon_sym_PIPE] = ACTIONS(3936), + [anon_sym_RPAREN] = ACTIONS(3934), + [anon_sym_SEMI_SEMI] = ACTIONS(3934), + [anon_sym_PIPE_AMP] = ACTIONS(3934), + [anon_sym_AMP_AMP] = ACTIONS(3934), + [anon_sym_PIPE_PIPE] = ACTIONS(3934), + [sym__special_characters] = ACTIONS(3934), + [anon_sym_DQUOTE] = ACTIONS(3934), + [anon_sym_DOLLAR] = ACTIONS(3936), + [sym_raw_string] = ACTIONS(3934), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3934), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3934), + [anon_sym_BQUOTE] = ACTIONS(3934), + [anon_sym_LT_LPAREN] = ACTIONS(3934), + [anon_sym_GT_LPAREN] = ACTIONS(3934), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3936), + [sym_word] = ACTIONS(3936), + [anon_sym_LF] = ACTIONS(3934), + [anon_sym_AMP] = ACTIONS(3936), }, [1699] = { - [anon_sym_RBRACE] = ACTIONS(4586), - [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(3942), + [ts_builtin_sym_end] = ACTIONS(3942), + [anon_sym_SEMI] = ACTIONS(3944), + [anon_sym_PIPE] = ACTIONS(3944), + [anon_sym_RPAREN] = ACTIONS(3942), + [anon_sym_SEMI_SEMI] = ACTIONS(3942), + [anon_sym_PIPE_AMP] = ACTIONS(3942), + [anon_sym_AMP_AMP] = ACTIONS(3942), + [anon_sym_PIPE_PIPE] = ACTIONS(3942), + [sym__special_characters] = ACTIONS(3942), + [anon_sym_DQUOTE] = ACTIONS(3942), + [anon_sym_DOLLAR] = ACTIONS(3944), + [sym_raw_string] = ACTIONS(3942), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3942), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3942), + [anon_sym_BQUOTE] = ACTIONS(3942), + [anon_sym_LT_LPAREN] = ACTIONS(3942), + [anon_sym_GT_LPAREN] = ACTIONS(3942), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3944), + [sym_word] = ACTIONS(3944), + [anon_sym_LF] = ACTIONS(3942), + [anon_sym_AMP] = ACTIONS(3944), }, [1700] = { - [sym_concatenation] = STATE(1989), - [sym_string] = STATE(1988), - [sym_simple_expansion] = STATE(1988), - [sym_string_expansion] = STATE(1988), - [sym_expansion] = STATE(1988), - [sym_command_substitution] = STATE(1988), - [sym_process_substitution] = STATE(1988), - [anon_sym_RBRACE] = ACTIONS(4586), - [sym__special_characters] = ACTIONS(4588), - [anon_sym_DQUOTE] = ACTIONS(1802), - [anon_sym_DOLLAR] = ACTIONS(1804), - [sym_raw_string] = ACTIONS(4590), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1808), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1810), - [anon_sym_BQUOTE] = ACTIONS(1812), - [anon_sym_LT_LPAREN] = ACTIONS(1814), - [anon_sym_GT_LPAREN] = ACTIONS(1814), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4590), + [aux_sym_concatenation_repeat1] = STATE(1366), + [sym__concat] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(4601), + [sym_comment] = ACTIONS(55), }, [1701] = { - [sym__concat] = ACTIONS(2926), - [anon_sym_RBRACE] = ACTIONS(2926), - [anon_sym_EQ] = ACTIONS(2928), - [sym__special_characters] = ACTIONS(2928), - [anon_sym_DQUOTE] = ACTIONS(2926), - [anon_sym_DOLLAR] = ACTIONS(2928), - [sym_raw_string] = ACTIONS(2926), - [anon_sym_POUND] = ACTIONS(2926), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2926), - [anon_sym_COLON] = ACTIONS(2928), - [anon_sym_COLON_QMARK] = ACTIONS(2928), - [anon_sym_COLON_DASH] = ACTIONS(2928), - [anon_sym_PERCENT] = ACTIONS(2928), - [anon_sym_DASH] = ACTIONS(2928), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2926), - [anon_sym_BQUOTE] = ACTIONS(2926), - [anon_sym_LT_LPAREN] = ACTIONS(2926), - [anon_sym_GT_LPAREN] = ACTIONS(2926), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(2928), + [aux_sym_concatenation_repeat1] = STATE(1366), + [sym__concat] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(4603), + [sym_comment] = ACTIONS(55), }, [1702] = { - [sym_comment] = ACTIONS(265), - [sym_regex_without_right_brace] = ACTIONS(4592), + [anon_sym_RBRACE] = ACTIONS(4603), + [sym_comment] = ACTIONS(55), }, [1703] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(4594), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_concatenation] = STATE(2018), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2018), + [anon_sym_RBRACE] = ACTIONS(4605), + [anon_sym_EQ] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4607), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(4609), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(4607), + [anon_sym_COLON_QMARK] = ACTIONS(4607), + [anon_sym_COLON_DASH] = ACTIONS(4607), + [anon_sym_PERCENT] = ACTIONS(4607), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1704] = { - [sym_comment] = ACTIONS(265), - [sym_regex_without_right_brace] = ACTIONS(4596), + [sym__concat] = ACTIONS(3998), + [ts_builtin_sym_end] = ACTIONS(3998), + [anon_sym_SEMI] = ACTIONS(4000), + [anon_sym_PIPE] = ACTIONS(4000), + [anon_sym_RPAREN] = ACTIONS(3998), + [anon_sym_SEMI_SEMI] = ACTIONS(3998), + [anon_sym_PIPE_AMP] = ACTIONS(3998), + [anon_sym_AMP_AMP] = ACTIONS(3998), + [anon_sym_PIPE_PIPE] = ACTIONS(3998), + [sym__special_characters] = ACTIONS(3998), + [anon_sym_DQUOTE] = ACTIONS(3998), + [anon_sym_DOLLAR] = ACTIONS(4000), + [sym_raw_string] = ACTIONS(3998), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3998), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3998), + [anon_sym_BQUOTE] = ACTIONS(3998), + [anon_sym_LT_LPAREN] = ACTIONS(3998), + [anon_sym_GT_LPAREN] = ACTIONS(3998), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4000), + [sym_word] = ACTIONS(4000), + [anon_sym_LF] = ACTIONS(3998), + [anon_sym_AMP] = ACTIONS(4000), }, [1705] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(4586), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(4605), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1706] = { - [sym_concatenation] = STATE(1994), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(1994), - [anon_sym_RBRACE] = ACTIONS(4598), - [anon_sym_EQ] = ACTIONS(4600), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(4602), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(4600), - [anon_sym_COLON_QMARK] = ACTIONS(4600), - [anon_sym_COLON_DASH] = ACTIONS(4600), - [anon_sym_PERCENT] = ACTIONS(4600), - [anon_sym_DASH] = ACTIONS(4600), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_concatenation] = STATE(2019), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2019), + [anon_sym_RBRACE] = ACTIONS(4603), + [anon_sym_EQ] = ACTIONS(4611), + [anon_sym_DASH] = ACTIONS(4611), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(4613), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(4611), + [anon_sym_COLON_QMARK] = ACTIONS(4611), + [anon_sym_COLON_DASH] = ACTIONS(4611), + [anon_sym_PERCENT] = ACTIONS(4611), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1707] = { - [sym__concat] = ACTIONS(2990), - [anon_sym_RBRACE] = ACTIONS(2990), - [anon_sym_EQ] = ACTIONS(2992), - [sym__special_characters] = ACTIONS(2992), - [anon_sym_DQUOTE] = ACTIONS(2990), - [anon_sym_DOLLAR] = ACTIONS(2992), - [sym_raw_string] = ACTIONS(2990), - [anon_sym_POUND] = ACTIONS(2990), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2990), - [anon_sym_COLON] = ACTIONS(2992), - [anon_sym_COLON_QMARK] = ACTIONS(2992), - [anon_sym_COLON_DASH] = ACTIONS(2992), - [anon_sym_PERCENT] = ACTIONS(2992), - [anon_sym_DASH] = ACTIONS(2992), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2990), - [anon_sym_BQUOTE] = ACTIONS(2990), - [anon_sym_LT_LPAREN] = ACTIONS(2990), - [anon_sym_GT_LPAREN] = ACTIONS(2990), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(2992), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(4603), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1708] = { - [sym_concatenation] = STATE(1995), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(1995), - [anon_sym_RBRACE] = ACTIONS(4586), - [anon_sym_EQ] = ACTIONS(4604), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(4606), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(4604), - [anon_sym_COLON_QMARK] = ACTIONS(4604), - [anon_sym_COLON_DASH] = ACTIONS(4604), - [anon_sym_PERCENT] = ACTIONS(4604), - [anon_sym_DASH] = ACTIONS(4604), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym__concat] = ACTIONS(4043), + [ts_builtin_sym_end] = ACTIONS(4043), + [anon_sym_SEMI] = ACTIONS(4045), + [anon_sym_PIPE] = ACTIONS(4045), + [anon_sym_RPAREN] = ACTIONS(4043), + [anon_sym_SEMI_SEMI] = ACTIONS(4043), + [anon_sym_PIPE_AMP] = ACTIONS(4043), + [anon_sym_AMP_AMP] = ACTIONS(4043), + [anon_sym_PIPE_PIPE] = ACTIONS(4043), + [sym__special_characters] = ACTIONS(4043), + [anon_sym_DQUOTE] = ACTIONS(4043), + [anon_sym_DOLLAR] = ACTIONS(4045), + [sym_raw_string] = ACTIONS(4043), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4043), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4043), + [anon_sym_BQUOTE] = ACTIONS(4043), + [anon_sym_LT_LPAREN] = ACTIONS(4043), + [anon_sym_GT_LPAREN] = ACTIONS(4043), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4045), + [sym_word] = ACTIONS(4045), + [anon_sym_LF] = ACTIONS(4043), + [anon_sym_AMP] = ACTIONS(4045), }, [1709] = { - [sym__simple_heredoc_body] = ACTIONS(4608), - [sym__heredoc_body_beginning] = ACTIONS(4608), - [sym_file_descriptor] = ACTIONS(4608), - [sym__concat] = ACTIONS(4608), - [ts_builtin_sym_end] = ACTIONS(4608), - [anon_sym_SEMI] = ACTIONS(4610), - [anon_sym_PIPE] = ACTIONS(4610), - [anon_sym_RPAREN] = ACTIONS(4608), - [anon_sym_SEMI_SEMI] = ACTIONS(4608), - [anon_sym_PIPE_AMP] = ACTIONS(4608), - [anon_sym_AMP_AMP] = ACTIONS(4608), - [anon_sym_PIPE_PIPE] = ACTIONS(4608), - [anon_sym_EQ_TILDE] = ACTIONS(4610), - [anon_sym_EQ_EQ] = ACTIONS(4610), - [anon_sym_LT] = ACTIONS(4610), - [anon_sym_GT] = ACTIONS(4610), - [anon_sym_GT_GT] = ACTIONS(4608), - [anon_sym_AMP_GT] = ACTIONS(4610), - [anon_sym_AMP_GT_GT] = ACTIONS(4608), - [anon_sym_LT_AMP] = ACTIONS(4608), - [anon_sym_GT_AMP] = ACTIONS(4608), - [anon_sym_LT_LT] = ACTIONS(4610), - [anon_sym_LT_LT_DASH] = ACTIONS(4608), - [anon_sym_LT_LT_LT] = ACTIONS(4608), - [sym__special_characters] = ACTIONS(4608), - [anon_sym_DQUOTE] = ACTIONS(4608), - [anon_sym_DOLLAR] = ACTIONS(4610), - [sym_raw_string] = ACTIONS(4608), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4608), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4608), - [anon_sym_BQUOTE] = ACTIONS(4608), - [anon_sym_LT_LPAREN] = ACTIONS(4608), - [anon_sym_GT_LPAREN] = ACTIONS(4608), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4610), - [anon_sym_LF] = ACTIONS(4608), - [anon_sym_AMP] = ACTIONS(4610), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(4615), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1710] = { - [sym__concat] = ACTIONS(3033), - [anon_sym_RBRACE] = ACTIONS(3033), - [anon_sym_EQ] = ACTIONS(3035), - [sym__special_characters] = ACTIONS(3035), - [anon_sym_DQUOTE] = ACTIONS(3033), - [anon_sym_DOLLAR] = ACTIONS(3035), - [sym_raw_string] = ACTIONS(3033), - [anon_sym_POUND] = ACTIONS(3033), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3033), - [anon_sym_COLON] = ACTIONS(3035), - [anon_sym_COLON_QMARK] = ACTIONS(3035), - [anon_sym_COLON_DASH] = ACTIONS(3035), - [anon_sym_PERCENT] = ACTIONS(3035), - [anon_sym_DASH] = ACTIONS(3035), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3033), - [anon_sym_BQUOTE] = ACTIONS(3033), - [anon_sym_LT_LPAREN] = ACTIONS(3033), - [anon_sym_GT_LPAREN] = ACTIONS(3033), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(3035), + [sym__concat] = ACTIONS(4065), + [ts_builtin_sym_end] = ACTIONS(4065), + [anon_sym_SEMI] = ACTIONS(4067), + [anon_sym_PIPE] = ACTIONS(4067), + [anon_sym_RPAREN] = ACTIONS(4065), + [anon_sym_SEMI_SEMI] = ACTIONS(4065), + [anon_sym_PIPE_AMP] = ACTIONS(4065), + [anon_sym_AMP_AMP] = ACTIONS(4065), + [anon_sym_PIPE_PIPE] = ACTIONS(4065), + [sym__special_characters] = ACTIONS(4065), + [anon_sym_DQUOTE] = ACTIONS(4065), + [anon_sym_DOLLAR] = ACTIONS(4067), + [sym_raw_string] = ACTIONS(4065), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4065), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4065), + [anon_sym_BQUOTE] = ACTIONS(4065), + [anon_sym_LT_LPAREN] = ACTIONS(4065), + [anon_sym_GT_LPAREN] = ACTIONS(4065), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4067), + [sym_word] = ACTIONS(4067), + [anon_sym_LF] = ACTIONS(4065), + [anon_sym_AMP] = ACTIONS(4067), }, [1711] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(4612), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(901), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), + [sym__concat] = ACTIONS(4089), + [ts_builtin_sym_end] = ACTIONS(4089), + [anon_sym_SEMI] = ACTIONS(4091), + [anon_sym_PIPE] = ACTIONS(4091), + [anon_sym_RPAREN] = ACTIONS(4089), + [anon_sym_SEMI_SEMI] = ACTIONS(4089), + [anon_sym_PIPE_AMP] = ACTIONS(4089), + [anon_sym_AMP_AMP] = ACTIONS(4089), + [anon_sym_PIPE_PIPE] = ACTIONS(4089), + [sym__special_characters] = ACTIONS(4089), + [anon_sym_DQUOTE] = ACTIONS(4089), + [anon_sym_DOLLAR] = ACTIONS(4091), + [sym_raw_string] = ACTIONS(4089), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4089), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4089), + [anon_sym_BQUOTE] = ACTIONS(4089), + [anon_sym_LT_LPAREN] = ACTIONS(4089), + [anon_sym_GT_LPAREN] = ACTIONS(4089), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4091), + [sym_word] = ACTIONS(4091), + [anon_sym_LF] = ACTIONS(4089), + [anon_sym_AMP] = ACTIONS(4091), }, [1712] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(4612), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), + [sym_file_descriptor] = ACTIONS(3934), + [sym__concat] = ACTIONS(3934), + [sym_variable_name] = ACTIONS(3934), + [anon_sym_LT] = ACTIONS(3936), + [anon_sym_GT] = ACTIONS(3936), + [anon_sym_GT_GT] = ACTIONS(3934), + [anon_sym_AMP_GT] = ACTIONS(3936), + [anon_sym_AMP_GT_GT] = ACTIONS(3934), + [anon_sym_LT_AMP] = ACTIONS(3934), + [anon_sym_GT_AMP] = ACTIONS(3934), + [sym__special_characters] = ACTIONS(3934), + [anon_sym_DQUOTE] = ACTIONS(3934), + [anon_sym_DOLLAR] = ACTIONS(3936), + [sym_raw_string] = ACTIONS(3934), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3934), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3934), + [anon_sym_BQUOTE] = ACTIONS(3934), + [anon_sym_LT_LPAREN] = ACTIONS(3934), + [anon_sym_GT_LPAREN] = ACTIONS(3934), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(3934), }, [1713] = { - [sym__concat] = ACTIONS(3071), - [anon_sym_RBRACE] = ACTIONS(3071), - [anon_sym_EQ] = ACTIONS(3073), - [sym__special_characters] = ACTIONS(3073), - [anon_sym_DQUOTE] = ACTIONS(3071), - [anon_sym_DOLLAR] = ACTIONS(3073), - [sym_raw_string] = ACTIONS(3071), - [anon_sym_POUND] = ACTIONS(3071), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3071), - [anon_sym_COLON] = ACTIONS(3073), - [anon_sym_COLON_QMARK] = ACTIONS(3073), - [anon_sym_COLON_DASH] = ACTIONS(3073), - [anon_sym_PERCENT] = ACTIONS(3073), - [anon_sym_DASH] = ACTIONS(3073), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3071), - [anon_sym_BQUOTE] = ACTIONS(3071), - [anon_sym_LT_LPAREN] = ACTIONS(3071), - [anon_sym_GT_LPAREN] = ACTIONS(3071), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(3073), + [sym_file_descriptor] = ACTIONS(3942), + [sym__concat] = ACTIONS(3942), + [sym_variable_name] = ACTIONS(3942), + [anon_sym_LT] = ACTIONS(3944), + [anon_sym_GT] = ACTIONS(3944), + [anon_sym_GT_GT] = ACTIONS(3942), + [anon_sym_AMP_GT] = ACTIONS(3944), + [anon_sym_AMP_GT_GT] = ACTIONS(3942), + [anon_sym_LT_AMP] = ACTIONS(3942), + [anon_sym_GT_AMP] = ACTIONS(3942), + [sym__special_characters] = ACTIONS(3942), + [anon_sym_DQUOTE] = ACTIONS(3942), + [anon_sym_DOLLAR] = ACTIONS(3944), + [sym_raw_string] = ACTIONS(3942), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3942), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3942), + [anon_sym_BQUOTE] = ACTIONS(3942), + [anon_sym_LT_LPAREN] = ACTIONS(3942), + [anon_sym_GT_LPAREN] = ACTIONS(3942), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(3942), }, [1714] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(4614), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(901), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), + [aux_sym_concatenation_repeat1] = STATE(1366), + [sym__concat] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(4617), + [sym_comment] = ACTIONS(55), }, [1715] = { - [sym_file_redirect] = STATE(1541), - [sym_file_descriptor] = ACTIONS(3041), - [anon_sym_SEMI] = ACTIONS(3522), - [anon_sym_PIPE] = ACTIONS(3522), - [anon_sym_SEMI_SEMI] = ACTIONS(3520), - [anon_sym_PIPE_AMP] = ACTIONS(3520), - [anon_sym_AMP_AMP] = ACTIONS(3520), - [anon_sym_PIPE_PIPE] = ACTIONS(3520), - [anon_sym_LT] = ACTIONS(3043), - [anon_sym_GT] = ACTIONS(3043), - [anon_sym_GT_GT] = ACTIONS(3045), - [anon_sym_AMP_GT] = ACTIONS(3043), - [anon_sym_AMP_GT_GT] = ACTIONS(3045), - [anon_sym_LT_AMP] = ACTIONS(3045), - [anon_sym_GT_AMP] = ACTIONS(3045), - [anon_sym_BQUOTE] = ACTIONS(3520), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(3520), - [anon_sym_AMP] = ACTIONS(3522), + [aux_sym_concatenation_repeat1] = STATE(1366), + [sym__concat] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(4619), + [sym_comment] = ACTIONS(55), }, [1716] = { - [sym_concatenation] = STATE(1544), - [sym_string] = STATE(1999), - [sym_simple_expansion] = STATE(1999), - [sym_string_expansion] = STATE(1999), - [sym_expansion] = STATE(1999), - [sym_command_substitution] = STATE(1999), - [sym_process_substitution] = STATE(1999), - [sym__special_characters] = ACTIONS(4616), - [anon_sym_DQUOTE] = ACTIONS(213), - [anon_sym_DOLLAR] = ACTIONS(215), - [sym_raw_string] = ACTIONS(4618), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(219), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(221), - [anon_sym_BQUOTE] = ACTIONS(223), - [anon_sym_LT_LPAREN] = ACTIONS(225), - [anon_sym_GT_LPAREN] = ACTIONS(225), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4618), + [anon_sym_RBRACE] = ACTIONS(4619), + [sym_comment] = ACTIONS(55), }, [1717] = { - [aux_sym_concatenation_repeat1] = STATE(2000), - [sym__concat] = ACTIONS(693), - [anon_sym_SEMI] = ACTIONS(735), - [anon_sym_PIPE] = ACTIONS(735), - [anon_sym_SEMI_SEMI] = ACTIONS(731), - [anon_sym_PIPE_AMP] = ACTIONS(731), - [anon_sym_AMP_AMP] = ACTIONS(731), - [anon_sym_PIPE_PIPE] = ACTIONS(731), - [anon_sym_BQUOTE] = ACTIONS(731), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(731), - [anon_sym_AMP] = ACTIONS(735), + [sym_concatenation] = STATE(2024), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2024), + [anon_sym_RBRACE] = ACTIONS(4621), + [anon_sym_EQ] = ACTIONS(4623), + [anon_sym_DASH] = ACTIONS(4623), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(4625), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(4623), + [anon_sym_COLON_QMARK] = ACTIONS(4623), + [anon_sym_COLON_DASH] = ACTIONS(4623), + [anon_sym_PERCENT] = ACTIONS(4623), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1718] = { - [aux_sym_concatenation_repeat1] = STATE(2000), - [sym__concat] = ACTIONS(693), - [anon_sym_SEMI] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(751), - [anon_sym_SEMI_SEMI] = ACTIONS(749), - [anon_sym_PIPE_AMP] = ACTIONS(749), - [anon_sym_AMP_AMP] = ACTIONS(749), - [anon_sym_PIPE_PIPE] = ACTIONS(749), - [anon_sym_BQUOTE] = ACTIONS(749), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(749), - [anon_sym_AMP] = ACTIONS(751), + [sym_file_descriptor] = ACTIONS(3998), + [sym__concat] = ACTIONS(3998), + [sym_variable_name] = ACTIONS(3998), + [anon_sym_LT] = ACTIONS(4000), + [anon_sym_GT] = ACTIONS(4000), + [anon_sym_GT_GT] = ACTIONS(3998), + [anon_sym_AMP_GT] = ACTIONS(4000), + [anon_sym_AMP_GT_GT] = ACTIONS(3998), + [anon_sym_LT_AMP] = ACTIONS(3998), + [anon_sym_GT_AMP] = ACTIONS(3998), + [sym__special_characters] = ACTIONS(3998), + [anon_sym_DQUOTE] = ACTIONS(3998), + [anon_sym_DOLLAR] = ACTIONS(4000), + [sym_raw_string] = ACTIONS(3998), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3998), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3998), + [anon_sym_BQUOTE] = ACTIONS(3998), + [anon_sym_LT_LPAREN] = ACTIONS(3998), + [anon_sym_GT_LPAREN] = ACTIONS(3998), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(3998), }, [1719] = { - [sym_concatenation] = STATE(1574), - [sym_string] = STATE(2002), - [sym_simple_expansion] = STATE(2002), - [sym_string_expansion] = STATE(2002), - [sym_expansion] = STATE(2002), - [sym_command_substitution] = STATE(2002), - [sym_process_substitution] = STATE(2002), - [sym__special_characters] = ACTIONS(4620), - [anon_sym_DQUOTE] = ACTIONS(2612), - [anon_sym_DOLLAR] = ACTIONS(2614), - [sym_raw_string] = ACTIONS(4622), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2618), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2620), - [anon_sym_BQUOTE] = ACTIONS(2622), - [anon_sym_LT_LPAREN] = ACTIONS(2624), - [anon_sym_GT_LPAREN] = ACTIONS(2624), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4622), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(4621), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1720] = { - [aux_sym_concatenation_repeat1] = STATE(2003), - [sym_file_descriptor] = ACTIONS(731), - [sym__concat] = ACTIONS(3592), - [anon_sym_SEMI] = ACTIONS(735), - [anon_sym_PIPE] = ACTIONS(735), - [anon_sym_SEMI_SEMI] = ACTIONS(731), - [anon_sym_PIPE_AMP] = ACTIONS(731), - [anon_sym_AMP_AMP] = ACTIONS(731), - [anon_sym_PIPE_PIPE] = ACTIONS(731), - [anon_sym_LT] = ACTIONS(735), - [anon_sym_GT] = ACTIONS(735), - [anon_sym_GT_GT] = ACTIONS(731), - [anon_sym_AMP_GT] = ACTIONS(735), - [anon_sym_AMP_GT_GT] = ACTIONS(731), - [anon_sym_LT_AMP] = ACTIONS(731), - [anon_sym_GT_AMP] = ACTIONS(731), - [anon_sym_LT_LT] = ACTIONS(735), - [anon_sym_LT_LT_DASH] = ACTIONS(731), - [anon_sym_LT_LT_LT] = ACTIONS(731), - [anon_sym_BQUOTE] = ACTIONS(731), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(731), - [anon_sym_AMP] = ACTIONS(735), + [sym_concatenation] = STATE(2025), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2025), + [anon_sym_RBRACE] = ACTIONS(4619), + [anon_sym_EQ] = ACTIONS(4627), + [anon_sym_DASH] = ACTIONS(4627), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(4629), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(4627), + [anon_sym_COLON_QMARK] = ACTIONS(4627), + [anon_sym_COLON_DASH] = ACTIONS(4627), + [anon_sym_PERCENT] = ACTIONS(4627), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1721] = { - [aux_sym_concatenation_repeat1] = STATE(2003), - [sym_file_descriptor] = ACTIONS(749), - [sym__concat] = ACTIONS(3592), - [anon_sym_SEMI] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(751), - [anon_sym_SEMI_SEMI] = ACTIONS(749), - [anon_sym_PIPE_AMP] = ACTIONS(749), - [anon_sym_AMP_AMP] = ACTIONS(749), - [anon_sym_PIPE_PIPE] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(751), - [anon_sym_GT] = ACTIONS(751), - [anon_sym_GT_GT] = ACTIONS(749), - [anon_sym_AMP_GT] = ACTIONS(751), - [anon_sym_AMP_GT_GT] = ACTIONS(749), - [anon_sym_LT_AMP] = ACTIONS(749), - [anon_sym_GT_AMP] = ACTIONS(749), - [anon_sym_LT_LT] = ACTIONS(751), - [anon_sym_LT_LT_DASH] = ACTIONS(749), - [anon_sym_LT_LT_LT] = ACTIONS(749), - [anon_sym_BQUOTE] = ACTIONS(749), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(749), - [anon_sym_AMP] = ACTIONS(751), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(4619), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1722] = { - [aux_sym_concatenation_repeat1] = STATE(2003), - [sym_file_descriptor] = ACTIONS(1972), - [sym__concat] = ACTIONS(3592), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_PIPE] = ACTIONS(1974), - [anon_sym_SEMI_SEMI] = ACTIONS(1972), - [anon_sym_PIPE_AMP] = ACTIONS(1972), - [anon_sym_AMP_AMP] = ACTIONS(1972), - [anon_sym_PIPE_PIPE] = ACTIONS(1972), - [anon_sym_LT] = ACTIONS(1974), - [anon_sym_GT] = ACTIONS(1974), - [anon_sym_GT_GT] = ACTIONS(1972), - [anon_sym_AMP_GT] = ACTIONS(1974), - [anon_sym_AMP_GT_GT] = ACTIONS(1972), - [anon_sym_LT_AMP] = ACTIONS(1972), - [anon_sym_GT_AMP] = ACTIONS(1972), - [anon_sym_LT_LT] = ACTIONS(1974), - [anon_sym_LT_LT_DASH] = ACTIONS(1972), - [anon_sym_LT_LT_LT] = ACTIONS(1972), - [anon_sym_BQUOTE] = ACTIONS(1972), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1972), - [anon_sym_AMP] = ACTIONS(1974), + [sym_file_descriptor] = ACTIONS(4043), + [sym__concat] = ACTIONS(4043), + [sym_variable_name] = ACTIONS(4043), + [anon_sym_LT] = ACTIONS(4045), + [anon_sym_GT] = ACTIONS(4045), + [anon_sym_GT_GT] = ACTIONS(4043), + [anon_sym_AMP_GT] = ACTIONS(4045), + [anon_sym_AMP_GT_GT] = ACTIONS(4043), + [anon_sym_LT_AMP] = ACTIONS(4043), + [anon_sym_GT_AMP] = ACTIONS(4043), + [sym__special_characters] = ACTIONS(4043), + [anon_sym_DQUOTE] = ACTIONS(4043), + [anon_sym_DOLLAR] = ACTIONS(4045), + [sym_raw_string] = ACTIONS(4043), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4043), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4043), + [anon_sym_BQUOTE] = ACTIONS(4043), + [anon_sym_LT_LPAREN] = ACTIONS(4043), + [anon_sym_GT_LPAREN] = ACTIONS(4043), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(4043), }, [1723] = { - [aux_sym_concatenation_repeat1] = STATE(2003), - [sym_file_descriptor] = ACTIONS(1976), - [sym__concat] = ACTIONS(3592), - [anon_sym_SEMI] = ACTIONS(1978), - [anon_sym_PIPE] = ACTIONS(1978), - [anon_sym_SEMI_SEMI] = ACTIONS(1976), - [anon_sym_PIPE_AMP] = ACTIONS(1976), - [anon_sym_AMP_AMP] = ACTIONS(1976), - [anon_sym_PIPE_PIPE] = ACTIONS(1976), - [anon_sym_LT] = ACTIONS(1978), - [anon_sym_GT] = ACTIONS(1978), - [anon_sym_GT_GT] = ACTIONS(1976), - [anon_sym_AMP_GT] = ACTIONS(1978), - [anon_sym_AMP_GT_GT] = ACTIONS(1976), - [anon_sym_LT_AMP] = ACTIONS(1976), - [anon_sym_GT_AMP] = ACTIONS(1976), - [anon_sym_LT_LT] = ACTIONS(1978), - [anon_sym_LT_LT_DASH] = ACTIONS(1976), - [anon_sym_LT_LT_LT] = ACTIONS(1976), - [anon_sym_BQUOTE] = ACTIONS(1976), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1978), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(4631), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1724] = { - [sym_file_redirect] = STATE(1724), - [sym_heredoc_redirect] = STATE(1724), - [sym_herestring_redirect] = STATE(1724), - [aux_sym_while_statement_repeat1] = STATE(1724), - [sym_file_descriptor] = ACTIONS(4624), - [anon_sym_SEMI] = ACTIONS(1989), - [anon_sym_PIPE] = ACTIONS(1989), - [anon_sym_SEMI_SEMI] = ACTIONS(1984), - [anon_sym_PIPE_AMP] = ACTIONS(1984), - [anon_sym_AMP_AMP] = ACTIONS(1984), - [anon_sym_PIPE_PIPE] = ACTIONS(1984), - [anon_sym_LT] = ACTIONS(4627), - [anon_sym_GT] = ACTIONS(4627), - [anon_sym_GT_GT] = ACTIONS(4630), - [anon_sym_AMP_GT] = ACTIONS(4627), - [anon_sym_AMP_GT_GT] = ACTIONS(4630), - [anon_sym_LT_AMP] = ACTIONS(4630), - [anon_sym_GT_AMP] = ACTIONS(4630), - [anon_sym_LT_LT] = ACTIONS(3625), - [anon_sym_LT_LT_DASH] = ACTIONS(3628), - [anon_sym_LT_LT_LT] = ACTIONS(4633), - [anon_sym_BQUOTE] = ACTIONS(1984), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1984), - [anon_sym_AMP] = ACTIONS(1989), + [sym_file_descriptor] = ACTIONS(4065), + [sym__concat] = ACTIONS(4065), + [sym_variable_name] = ACTIONS(4065), + [anon_sym_LT] = ACTIONS(4067), + [anon_sym_GT] = ACTIONS(4067), + [anon_sym_GT_GT] = ACTIONS(4065), + [anon_sym_AMP_GT] = ACTIONS(4067), + [anon_sym_AMP_GT_GT] = ACTIONS(4065), + [anon_sym_LT_AMP] = ACTIONS(4065), + [anon_sym_GT_AMP] = ACTIONS(4065), + [sym__special_characters] = ACTIONS(4065), + [anon_sym_DQUOTE] = ACTIONS(4065), + [anon_sym_DOLLAR] = ACTIONS(4067), + [sym_raw_string] = ACTIONS(4065), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4065), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4065), + [anon_sym_BQUOTE] = ACTIONS(4065), + [anon_sym_LT_LPAREN] = ACTIONS(4065), + [anon_sym_GT_LPAREN] = ACTIONS(4065), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(4065), }, [1725] = { - [aux_sym_concatenation_repeat1] = STATE(1725), - [sym__simple_heredoc_body] = ACTIONS(1724), - [sym__heredoc_body_beginning] = ACTIONS(1724), - [sym_file_descriptor] = ACTIONS(1724), - [sym__concat] = ACTIONS(1728), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(1726), - [anon_sym_SEMI_SEMI] = ACTIONS(1724), - [anon_sym_PIPE_AMP] = ACTIONS(1724), - [anon_sym_AMP_AMP] = ACTIONS(1724), - [anon_sym_PIPE_PIPE] = ACTIONS(1724), - [anon_sym_LT] = ACTIONS(1726), - [anon_sym_GT] = ACTIONS(1726), - [anon_sym_GT_GT] = ACTIONS(1724), - [anon_sym_AMP_GT] = ACTIONS(1726), - [anon_sym_AMP_GT_GT] = ACTIONS(1724), - [anon_sym_LT_AMP] = ACTIONS(1724), - [anon_sym_GT_AMP] = ACTIONS(1724), - [anon_sym_LT_LT] = ACTIONS(1726), - [anon_sym_LT_LT_DASH] = ACTIONS(1724), - [anon_sym_LT_LT_LT] = ACTIONS(1724), - [anon_sym_BQUOTE] = ACTIONS(1724), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1726), + [sym_file_descriptor] = ACTIONS(4089), + [sym__concat] = ACTIONS(4089), + [sym_variable_name] = ACTIONS(4089), + [anon_sym_LT] = ACTIONS(4091), + [anon_sym_GT] = ACTIONS(4091), + [anon_sym_GT_GT] = ACTIONS(4089), + [anon_sym_AMP_GT] = ACTIONS(4091), + [anon_sym_AMP_GT_GT] = ACTIONS(4089), + [anon_sym_LT_AMP] = ACTIONS(4089), + [anon_sym_GT_AMP] = ACTIONS(4089), + [sym__special_characters] = ACTIONS(4089), + [anon_sym_DQUOTE] = ACTIONS(4089), + [anon_sym_DOLLAR] = ACTIONS(4091), + [sym_raw_string] = ACTIONS(4089), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4089), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4089), + [anon_sym_BQUOTE] = ACTIONS(4089), + [anon_sym_LT_LPAREN] = ACTIONS(4089), + [anon_sym_GT_LPAREN] = ACTIONS(4089), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(4089), }, [1726] = { - [sym__heredoc_body_middle] = ACTIONS(2890), - [sym__heredoc_body_end] = ACTIONS(2890), - [anon_sym_DOLLAR] = ACTIONS(2892), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2890), - [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(3934), + [anon_sym_DQUOTE] = ACTIONS(3936), + [anon_sym_DOLLAR] = ACTIONS(3936), + [sym__string_content] = ACTIONS(3934), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3936), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3936), + [anon_sym_BQUOTE] = ACTIONS(3936), + [sym_comment] = ACTIONS(281), }, [1727] = { - [aux_sym_concatenation_repeat1] = STATE(1293), - [sym__concat] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(4636), - [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(3942), + [anon_sym_DQUOTE] = ACTIONS(3944), + [anon_sym_DOLLAR] = ACTIONS(3944), + [sym__string_content] = ACTIONS(3942), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3944), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3944), + [anon_sym_BQUOTE] = ACTIONS(3944), + [sym_comment] = ACTIONS(281), }, [1728] = { - [aux_sym_concatenation_repeat1] = STATE(1293), - [sym__concat] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(4638), - [sym_comment] = ACTIONS(53), + [aux_sym_concatenation_repeat1] = STATE(1366), + [sym__concat] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(4633), + [sym_comment] = ACTIONS(55), }, [1729] = { - [anon_sym_RBRACE] = ACTIONS(4638), - [sym_comment] = ACTIONS(53), + [aux_sym_concatenation_repeat1] = STATE(1366), + [sym__concat] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(4635), + [sym_comment] = ACTIONS(55), }, [1730] = { - [sym_concatenation] = STATE(2008), - [sym_string] = STATE(2007), - [sym_simple_expansion] = STATE(2007), - [sym_string_expansion] = STATE(2007), - [sym_expansion] = STATE(2007), - [sym_command_substitution] = STATE(2007), - [sym_process_substitution] = STATE(2007), - [anon_sym_RBRACE] = ACTIONS(4638), - [sym__special_characters] = ACTIONS(4640), - [anon_sym_DQUOTE] = ACTIONS(1802), - [anon_sym_DOLLAR] = ACTIONS(1804), - [sym_raw_string] = ACTIONS(4642), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1808), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1810), - [anon_sym_BQUOTE] = ACTIONS(1812), - [anon_sym_LT_LPAREN] = ACTIONS(1814), - [anon_sym_GT_LPAREN] = ACTIONS(1814), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4642), + [anon_sym_RBRACE] = ACTIONS(4635), + [sym_comment] = ACTIONS(55), }, [1731] = { - [sym__heredoc_body_middle] = ACTIONS(2926), - [sym__heredoc_body_end] = ACTIONS(2926), - [anon_sym_DOLLAR] = ACTIONS(2928), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2926), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(2030), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2030), + [anon_sym_RBRACE] = ACTIONS(4637), + [anon_sym_EQ] = ACTIONS(4639), + [anon_sym_DASH] = ACTIONS(4639), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(4641), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(4639), + [anon_sym_COLON_QMARK] = ACTIONS(4639), + [anon_sym_COLON_DASH] = ACTIONS(4639), + [anon_sym_PERCENT] = ACTIONS(4639), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1732] = { - [sym_comment] = ACTIONS(265), - [sym_regex_without_right_brace] = ACTIONS(4644), + [sym__concat] = ACTIONS(3998), + [anon_sym_DQUOTE] = ACTIONS(4000), + [anon_sym_DOLLAR] = ACTIONS(4000), + [sym__string_content] = ACTIONS(3998), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4000), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4000), + [anon_sym_BQUOTE] = ACTIONS(4000), + [sym_comment] = ACTIONS(281), }, [1733] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(4646), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(4637), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1734] = { - [sym_comment] = ACTIONS(265), - [sym_regex_without_right_brace] = ACTIONS(4648), + [sym_concatenation] = STATE(2031), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2031), + [anon_sym_RBRACE] = ACTIONS(4635), + [anon_sym_EQ] = ACTIONS(4643), + [anon_sym_DASH] = ACTIONS(4643), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(4645), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(4643), + [anon_sym_COLON_QMARK] = ACTIONS(4643), + [anon_sym_COLON_DASH] = ACTIONS(4643), + [anon_sym_PERCENT] = ACTIONS(4643), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1735] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(4638), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(4635), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1736] = { - [sym_concatenation] = STATE(2013), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(2013), - [anon_sym_RBRACE] = ACTIONS(4650), - [anon_sym_EQ] = ACTIONS(4652), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(4654), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(4652), - [anon_sym_COLON_QMARK] = ACTIONS(4652), - [anon_sym_COLON_DASH] = ACTIONS(4652), - [anon_sym_PERCENT] = ACTIONS(4652), - [anon_sym_DASH] = ACTIONS(4652), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym__concat] = ACTIONS(4043), + [anon_sym_DQUOTE] = ACTIONS(4045), + [anon_sym_DOLLAR] = ACTIONS(4045), + [sym__string_content] = ACTIONS(4043), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4045), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4045), + [anon_sym_BQUOTE] = ACTIONS(4045), + [sym_comment] = ACTIONS(281), }, [1737] = { - [sym__heredoc_body_middle] = ACTIONS(2990), - [sym__heredoc_body_end] = ACTIONS(2990), - [anon_sym_DOLLAR] = ACTIONS(2992), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2990), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(4647), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1738] = { - [sym_concatenation] = STATE(2014), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(2014), - [anon_sym_RBRACE] = ACTIONS(4638), - [anon_sym_EQ] = ACTIONS(4656), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(4658), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(4656), - [anon_sym_COLON_QMARK] = ACTIONS(4656), - [anon_sym_COLON_DASH] = ACTIONS(4656), - [anon_sym_PERCENT] = ACTIONS(4656), - [anon_sym_DASH] = ACTIONS(4656), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym__concat] = ACTIONS(4065), + [anon_sym_DQUOTE] = ACTIONS(4067), + [anon_sym_DOLLAR] = ACTIONS(4067), + [sym__string_content] = ACTIONS(4065), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4067), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4067), + [anon_sym_BQUOTE] = ACTIONS(4067), + [sym_comment] = ACTIONS(281), }, [1739] = { - [sym__concat] = ACTIONS(2876), - [anon_sym_RPAREN] = ACTIONS(2876), - [sym__special_characters] = ACTIONS(2876), - [anon_sym_DQUOTE] = ACTIONS(2876), - [anon_sym_DOLLAR] = ACTIONS(2878), - [sym_raw_string] = ACTIONS(2876), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2876), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2876), - [anon_sym_BQUOTE] = ACTIONS(2876), - [anon_sym_LT_LPAREN] = ACTIONS(2876), - [anon_sym_GT_LPAREN] = ACTIONS(2876), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2876), + [sym__concat] = ACTIONS(4649), + [anon_sym_RBRACE] = ACTIONS(3211), + [anon_sym_EQ] = ACTIONS(4651), + [anon_sym_DASH] = ACTIONS(4651), + [sym__special_characters] = ACTIONS(4651), + [anon_sym_DQUOTE] = ACTIONS(3211), + [anon_sym_DOLLAR] = ACTIONS(4651), + [sym_raw_string] = ACTIONS(3211), + [anon_sym_POUND] = ACTIONS(3211), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3211), + [anon_sym_SLASH] = ACTIONS(3211), + [anon_sym_COLON] = ACTIONS(4651), + [anon_sym_COLON_QMARK] = ACTIONS(4651), + [anon_sym_COLON_DASH] = ACTIONS(4651), + [anon_sym_PERCENT] = ACTIONS(4651), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3211), + [anon_sym_BQUOTE] = ACTIONS(3211), + [anon_sym_LT_LPAREN] = ACTIONS(3211), + [anon_sym_GT_LPAREN] = ACTIONS(3211), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(4651), }, [1740] = { - [sym__concat] = ACTIONS(2890), - [anon_sym_RPAREN] = ACTIONS(2890), - [sym__special_characters] = ACTIONS(2890), - [anon_sym_DQUOTE] = ACTIONS(2890), - [anon_sym_DOLLAR] = ACTIONS(2892), - [sym_raw_string] = ACTIONS(2890), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2890), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2890), - [anon_sym_BQUOTE] = ACTIONS(2890), - [anon_sym_LT_LPAREN] = ACTIONS(2890), - [anon_sym_GT_LPAREN] = ACTIONS(2890), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2890), + [anon_sym_RBRACE] = ACTIONS(3211), + [anon_sym_EQ] = ACTIONS(4651), + [anon_sym_DASH] = ACTIONS(4651), + [sym__special_characters] = ACTIONS(4651), + [anon_sym_DQUOTE] = ACTIONS(3211), + [anon_sym_DOLLAR] = ACTIONS(4651), + [sym_raw_string] = ACTIONS(3211), + [anon_sym_POUND] = ACTIONS(3211), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3211), + [anon_sym_SLASH] = ACTIONS(3211), + [anon_sym_COLON] = ACTIONS(4651), + [anon_sym_COLON_QMARK] = ACTIONS(4651), + [anon_sym_COLON_DASH] = ACTIONS(4651), + [anon_sym_PERCENT] = ACTIONS(4651), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3211), + [anon_sym_BQUOTE] = ACTIONS(3211), + [anon_sym_LT_LPAREN] = ACTIONS(3211), + [anon_sym_GT_LPAREN] = ACTIONS(3211), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(4651), }, [1741] = { - [aux_sym_concatenation_repeat1] = STATE(1293), - [sym__concat] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(4660), - [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(4653), + [anon_sym_RBRACE] = ACTIONS(3215), + [anon_sym_EQ] = ACTIONS(4655), + [anon_sym_DASH] = ACTIONS(4655), + [sym__special_characters] = ACTIONS(4655), + [anon_sym_DQUOTE] = ACTIONS(3215), + [anon_sym_DOLLAR] = ACTIONS(4655), + [sym_raw_string] = ACTIONS(3215), + [anon_sym_POUND] = ACTIONS(3215), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3215), + [anon_sym_SLASH] = ACTIONS(3215), + [anon_sym_COLON] = ACTIONS(4655), + [anon_sym_COLON_QMARK] = ACTIONS(4655), + [anon_sym_COLON_DASH] = ACTIONS(4655), + [anon_sym_PERCENT] = ACTIONS(4655), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3215), + [anon_sym_BQUOTE] = ACTIONS(3215), + [anon_sym_LT_LPAREN] = ACTIONS(3215), + [anon_sym_GT_LPAREN] = ACTIONS(3215), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(4655), }, [1742] = { - [aux_sym_concatenation_repeat1] = STATE(1293), - [sym__concat] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(4662), - [sym_comment] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(3215), + [anon_sym_EQ] = ACTIONS(4655), + [anon_sym_DASH] = ACTIONS(4655), + [sym__special_characters] = ACTIONS(4655), + [anon_sym_DQUOTE] = ACTIONS(3215), + [anon_sym_DOLLAR] = ACTIONS(4655), + [sym_raw_string] = ACTIONS(3215), + [anon_sym_POUND] = ACTIONS(3215), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3215), + [anon_sym_SLASH] = ACTIONS(3215), + [anon_sym_COLON] = ACTIONS(4655), + [anon_sym_COLON_QMARK] = ACTIONS(4655), + [anon_sym_COLON_DASH] = ACTIONS(4655), + [anon_sym_PERCENT] = ACTIONS(4655), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3215), + [anon_sym_BQUOTE] = ACTIONS(3215), + [anon_sym_LT_LPAREN] = ACTIONS(3215), + [anon_sym_GT_LPAREN] = ACTIONS(3215), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(4655), }, [1743] = { - [anon_sym_RBRACE] = ACTIONS(4662), - [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(1763), + [anon_sym_RBRACE] = ACTIONS(1763), + [sym_comment] = ACTIONS(55), }, [1744] = { - [sym_concatenation] = STATE(2019), - [sym_string] = STATE(2018), - [sym_simple_expansion] = STATE(2018), - [sym_string_expansion] = STATE(2018), - [sym_expansion] = STATE(2018), - [sym_command_substitution] = STATE(2018), - [sym_process_substitution] = STATE(2018), - [anon_sym_RBRACE] = ACTIONS(4662), - [sym__special_characters] = ACTIONS(4664), - [anon_sym_DQUOTE] = ACTIONS(1802), - [anon_sym_DOLLAR] = ACTIONS(1804), - [sym_raw_string] = ACTIONS(4666), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1808), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1810), - [anon_sym_BQUOTE] = ACTIONS(1812), - [anon_sym_LT_LPAREN] = ACTIONS(1814), - [anon_sym_GT_LPAREN] = ACTIONS(1814), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4666), + [aux_sym_concatenation_repeat1] = STATE(1744), + [sym__concat] = ACTIONS(4657), + [anon_sym_RBRACE] = ACTIONS(1763), + [sym_comment] = ACTIONS(55), }, [1745] = { - [sym__concat] = ACTIONS(2926), - [anon_sym_RPAREN] = ACTIONS(2926), - [sym__special_characters] = ACTIONS(2926), - [anon_sym_DQUOTE] = ACTIONS(2926), - [anon_sym_DOLLAR] = ACTIONS(2928), - [sym_raw_string] = ACTIONS(2926), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2926), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2926), - [anon_sym_BQUOTE] = ACTIONS(2926), - [anon_sym_LT_LPAREN] = ACTIONS(2926), - [anon_sym_GT_LPAREN] = ACTIONS(2926), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2926), + [sym__concat] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [sym_comment] = ACTIONS(55), }, [1746] = { - [sym_comment] = ACTIONS(265), - [sym_regex_without_right_brace] = ACTIONS(4668), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_DQUOTE] = ACTIONS(4660), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym__string_content] = ACTIONS(821), + [anon_sym_POUND] = ACTIONS(815), + [sym_comment] = ACTIONS(281), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(823), + [anon_sym_STAR] = ACTIONS(825), + [anon_sym_AT] = ACTIONS(825), + [anon_sym_QMARK] = ACTIONS(825), + [anon_sym_0] = ACTIONS(823), + [anon_sym__] = ACTIONS(823), }, [1747] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(4670), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [1748] = { - [sym_comment] = ACTIONS(265), - [sym_regex_without_right_brace] = ACTIONS(4672), - }, - [1749] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(4662), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [1750] = { - [sym_concatenation] = STATE(2024), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(2024), - [anon_sym_RBRACE] = ACTIONS(4674), - [anon_sym_EQ] = ACTIONS(4676), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(4678), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(4676), - [anon_sym_COLON_QMARK] = ACTIONS(4676), - [anon_sym_COLON_DASH] = ACTIONS(4676), - [anon_sym_PERCENT] = ACTIONS(4676), - [anon_sym_DASH] = ACTIONS(4676), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [1751] = { - [sym__concat] = ACTIONS(2990), - [anon_sym_RPAREN] = ACTIONS(2990), - [sym__special_characters] = ACTIONS(2990), - [anon_sym_DQUOTE] = ACTIONS(2990), - [anon_sym_DOLLAR] = ACTIONS(2992), - [sym_raw_string] = ACTIONS(2990), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2990), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2990), - [anon_sym_BQUOTE] = ACTIONS(2990), - [anon_sym_LT_LPAREN] = ACTIONS(2990), - [anon_sym_GT_LPAREN] = ACTIONS(2990), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2990), - }, - [1752] = { - [sym_concatenation] = STATE(2025), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(2025), - [anon_sym_RBRACE] = ACTIONS(4662), - [anon_sym_EQ] = ACTIONS(4680), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(4682), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(4680), - [anon_sym_COLON_QMARK] = ACTIONS(4680), - [anon_sym_COLON_DASH] = ACTIONS(4680), - [anon_sym_PERCENT] = ACTIONS(4680), - [anon_sym_DASH] = ACTIONS(4680), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [1753] = { - [sym__concat] = ACTIONS(3033), - [anon_sym_RPAREN] = ACTIONS(3033), - [sym__special_characters] = ACTIONS(3033), - [anon_sym_DQUOTE] = ACTIONS(3033), - [anon_sym_DOLLAR] = ACTIONS(3035), - [sym_raw_string] = ACTIONS(3033), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3033), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3033), - [anon_sym_BQUOTE] = ACTIONS(3033), - [anon_sym_LT_LPAREN] = ACTIONS(3033), - [anon_sym_GT_LPAREN] = ACTIONS(3033), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3033), - }, - [1754] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(4684), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(901), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), - }, - [1755] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(4684), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), - }, - [1756] = { - [sym__concat] = ACTIONS(3071), - [anon_sym_RPAREN] = ACTIONS(3071), - [sym__special_characters] = ACTIONS(3071), - [anon_sym_DQUOTE] = ACTIONS(3071), - [anon_sym_DOLLAR] = ACTIONS(3073), - [sym_raw_string] = ACTIONS(3071), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3071), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3071), - [anon_sym_BQUOTE] = ACTIONS(3071), - [anon_sym_LT_LPAREN] = ACTIONS(3071), - [anon_sym_GT_LPAREN] = ACTIONS(3071), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3071), - }, - [1757] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(4686), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(901), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), - }, - [1758] = { - [sym_file_descriptor] = ACTIONS(3788), - [sym__concat] = ACTIONS(3788), - [sym_variable_name] = ACTIONS(3788), - [ts_builtin_sym_end] = ACTIONS(3788), - [anon_sym_SEMI] = ACTIONS(3790), - [anon_sym_PIPE] = ACTIONS(3790), - [anon_sym_RPAREN] = ACTIONS(3788), - [anon_sym_SEMI_SEMI] = ACTIONS(3788), - [anon_sym_PIPE_AMP] = ACTIONS(3788), - [anon_sym_AMP_AMP] = ACTIONS(3788), - [anon_sym_PIPE_PIPE] = ACTIONS(3788), - [anon_sym_LT] = ACTIONS(3790), - [anon_sym_GT] = ACTIONS(3790), - [anon_sym_GT_GT] = ACTIONS(3788), - [anon_sym_AMP_GT] = ACTIONS(3790), - [anon_sym_AMP_GT_GT] = ACTIONS(3788), - [anon_sym_LT_AMP] = ACTIONS(3788), - [anon_sym_GT_AMP] = ACTIONS(3788), - [sym__special_characters] = ACTIONS(3788), - [anon_sym_DQUOTE] = ACTIONS(3788), - [anon_sym_DOLLAR] = ACTIONS(3790), - [sym_raw_string] = ACTIONS(3788), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3788), - [anon_sym_BQUOTE] = ACTIONS(3788), - [anon_sym_LT_LPAREN] = ACTIONS(3788), - [anon_sym_GT_LPAREN] = ACTIONS(3788), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3790), - [anon_sym_LF] = ACTIONS(3788), - [anon_sym_AMP] = ACTIONS(3790), - }, - [1759] = { - [sym_file_descriptor] = ACTIONS(3796), - [sym__concat] = ACTIONS(3796), - [sym_variable_name] = ACTIONS(3796), - [ts_builtin_sym_end] = ACTIONS(3796), - [anon_sym_SEMI] = ACTIONS(3798), - [anon_sym_PIPE] = ACTIONS(3798), - [anon_sym_RPAREN] = ACTIONS(3796), - [anon_sym_SEMI_SEMI] = ACTIONS(3796), - [anon_sym_PIPE_AMP] = ACTIONS(3796), - [anon_sym_AMP_AMP] = ACTIONS(3796), - [anon_sym_PIPE_PIPE] = ACTIONS(3796), - [anon_sym_LT] = ACTIONS(3798), - [anon_sym_GT] = ACTIONS(3798), - [anon_sym_GT_GT] = ACTIONS(3796), - [anon_sym_AMP_GT] = ACTIONS(3798), - [anon_sym_AMP_GT_GT] = ACTIONS(3796), - [anon_sym_LT_AMP] = ACTIONS(3796), - [anon_sym_GT_AMP] = ACTIONS(3796), - [sym__special_characters] = ACTIONS(3796), - [anon_sym_DQUOTE] = ACTIONS(3796), - [anon_sym_DOLLAR] = ACTIONS(3798), - [sym_raw_string] = ACTIONS(3796), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3796), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3796), - [anon_sym_BQUOTE] = ACTIONS(3796), - [anon_sym_LT_LPAREN] = ACTIONS(3796), - [anon_sym_GT_LPAREN] = ACTIONS(3796), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3798), - [anon_sym_LF] = ACTIONS(3796), - [anon_sym_AMP] = ACTIONS(3798), - }, - [1760] = { - [aux_sym_concatenation_repeat1] = STATE(1293), - [sym__concat] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(4688), - [sym_comment] = ACTIONS(53), - }, - [1761] = { - [aux_sym_concatenation_repeat1] = STATE(1293), - [sym__concat] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(4690), - [sym_comment] = ACTIONS(53), - }, - [1762] = { - [anon_sym_RBRACE] = ACTIONS(4690), - [sym_comment] = ACTIONS(53), - }, - [1763] = { - [sym_concatenation] = STATE(2031), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(2031), - [anon_sym_RBRACE] = ACTIONS(4692), - [anon_sym_EQ] = ACTIONS(4694), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(4696), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(4694), - [anon_sym_COLON_QMARK] = ACTIONS(4694), - [anon_sym_COLON_DASH] = ACTIONS(4694), - [anon_sym_PERCENT] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [1764] = { - [sym_file_descriptor] = ACTIONS(3852), - [sym__concat] = ACTIONS(3852), - [sym_variable_name] = ACTIONS(3852), - [ts_builtin_sym_end] = ACTIONS(3852), - [anon_sym_SEMI] = ACTIONS(3854), - [anon_sym_PIPE] = ACTIONS(3854), - [anon_sym_RPAREN] = ACTIONS(3852), - [anon_sym_SEMI_SEMI] = ACTIONS(3852), - [anon_sym_PIPE_AMP] = ACTIONS(3852), - [anon_sym_AMP_AMP] = ACTIONS(3852), - [anon_sym_PIPE_PIPE] = ACTIONS(3852), - [anon_sym_LT] = ACTIONS(3854), - [anon_sym_GT] = ACTIONS(3854), - [anon_sym_GT_GT] = ACTIONS(3852), - [anon_sym_AMP_GT] = ACTIONS(3854), - [anon_sym_AMP_GT_GT] = ACTIONS(3852), - [anon_sym_LT_AMP] = ACTIONS(3852), - [anon_sym_GT_AMP] = ACTIONS(3852), - [sym__special_characters] = ACTIONS(3852), - [anon_sym_DQUOTE] = ACTIONS(3852), - [anon_sym_DOLLAR] = ACTIONS(3854), - [sym_raw_string] = ACTIONS(3852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3852), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3852), - [anon_sym_BQUOTE] = ACTIONS(3852), - [anon_sym_LT_LPAREN] = ACTIONS(3852), - [anon_sym_GT_LPAREN] = ACTIONS(3852), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3854), - [anon_sym_LF] = ACTIONS(3852), - [anon_sym_AMP] = ACTIONS(3854), - }, - [1765] = { - [sym_concatenation] = STATE(2032), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(2032), - [anon_sym_RBRACE] = ACTIONS(4690), - [anon_sym_EQ] = ACTIONS(4698), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(4700), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(4698), - [anon_sym_COLON_QMARK] = ACTIONS(4698), - [anon_sym_COLON_DASH] = ACTIONS(4698), - [anon_sym_PERCENT] = ACTIONS(4698), - [anon_sym_DASH] = ACTIONS(4698), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [1766] = { - [sym_file_descriptor] = ACTIONS(3893), - [sym__concat] = ACTIONS(3893), - [sym_variable_name] = ACTIONS(3893), - [ts_builtin_sym_end] = ACTIONS(3893), - [anon_sym_SEMI] = ACTIONS(3895), - [anon_sym_PIPE] = ACTIONS(3895), - [anon_sym_RPAREN] = ACTIONS(3893), - [anon_sym_SEMI_SEMI] = ACTIONS(3893), - [anon_sym_PIPE_AMP] = ACTIONS(3893), - [anon_sym_AMP_AMP] = ACTIONS(3893), - [anon_sym_PIPE_PIPE] = ACTIONS(3893), - [anon_sym_LT] = ACTIONS(3895), - [anon_sym_GT] = ACTIONS(3895), - [anon_sym_GT_GT] = ACTIONS(3893), - [anon_sym_AMP_GT] = ACTIONS(3895), - [anon_sym_AMP_GT_GT] = ACTIONS(3893), - [anon_sym_LT_AMP] = ACTIONS(3893), - [anon_sym_GT_AMP] = ACTIONS(3893), - [sym__special_characters] = ACTIONS(3893), - [anon_sym_DQUOTE] = ACTIONS(3893), - [anon_sym_DOLLAR] = ACTIONS(3895), - [sym_raw_string] = ACTIONS(3893), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3893), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3893), - [anon_sym_BQUOTE] = ACTIONS(3893), - [anon_sym_LT_LPAREN] = ACTIONS(3893), - [anon_sym_GT_LPAREN] = ACTIONS(3893), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3895), - [anon_sym_LF] = ACTIONS(3893), - [anon_sym_AMP] = ACTIONS(3895), - }, - [1767] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(4702), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [1768] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(4690), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [1769] = { - [sym_file_descriptor] = ACTIONS(3915), - [sym__concat] = ACTIONS(3915), - [sym_variable_name] = ACTIONS(3915), - [ts_builtin_sym_end] = ACTIONS(3915), - [anon_sym_SEMI] = ACTIONS(3917), - [anon_sym_PIPE] = ACTIONS(3917), - [anon_sym_RPAREN] = ACTIONS(3915), - [anon_sym_SEMI_SEMI] = ACTIONS(3915), - [anon_sym_PIPE_AMP] = ACTIONS(3915), - [anon_sym_AMP_AMP] = ACTIONS(3915), - [anon_sym_PIPE_PIPE] = ACTIONS(3915), - [anon_sym_LT] = ACTIONS(3917), - [anon_sym_GT] = ACTIONS(3917), - [anon_sym_GT_GT] = ACTIONS(3915), - [anon_sym_AMP_GT] = ACTIONS(3917), - [anon_sym_AMP_GT_GT] = ACTIONS(3915), - [anon_sym_LT_AMP] = ACTIONS(3915), - [anon_sym_GT_AMP] = ACTIONS(3915), - [sym__special_characters] = ACTIONS(3915), - [anon_sym_DQUOTE] = ACTIONS(3915), - [anon_sym_DOLLAR] = ACTIONS(3917), - [sym_raw_string] = ACTIONS(3915), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3915), - [anon_sym_BQUOTE] = ACTIONS(3915), - [anon_sym_LT_LPAREN] = ACTIONS(3915), - [anon_sym_GT_LPAREN] = ACTIONS(3915), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3917), - [anon_sym_LF] = ACTIONS(3915), - [anon_sym_AMP] = ACTIONS(3917), - }, - [1770] = { - [sym_file_descriptor] = ACTIONS(3939), - [sym__concat] = ACTIONS(3939), - [sym_variable_name] = ACTIONS(3939), - [ts_builtin_sym_end] = ACTIONS(3939), - [anon_sym_SEMI] = ACTIONS(3941), - [anon_sym_PIPE] = ACTIONS(3941), - [anon_sym_RPAREN] = ACTIONS(3939), - [anon_sym_SEMI_SEMI] = ACTIONS(3939), - [anon_sym_PIPE_AMP] = ACTIONS(3939), - [anon_sym_AMP_AMP] = ACTIONS(3939), - [anon_sym_PIPE_PIPE] = ACTIONS(3939), - [anon_sym_LT] = ACTIONS(3941), - [anon_sym_GT] = ACTIONS(3941), - [anon_sym_GT_GT] = ACTIONS(3939), - [anon_sym_AMP_GT] = ACTIONS(3941), - [anon_sym_AMP_GT_GT] = ACTIONS(3939), - [anon_sym_LT_AMP] = ACTIONS(3939), - [anon_sym_GT_AMP] = ACTIONS(3939), - [sym__special_characters] = ACTIONS(3939), - [anon_sym_DQUOTE] = ACTIONS(3939), - [anon_sym_DOLLAR] = ACTIONS(3941), - [sym_raw_string] = ACTIONS(3939), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3939), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3939), - [anon_sym_BQUOTE] = ACTIONS(3939), - [anon_sym_LT_LPAREN] = ACTIONS(3939), - [anon_sym_GT_LPAREN] = ACTIONS(3939), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3941), - [anon_sym_LF] = ACTIONS(3939), - [anon_sym_AMP] = ACTIONS(3941), - }, - [1771] = { - [ts_builtin_sym_end] = ACTIONS(4704), - [anon_sym_SEMI] = ACTIONS(4706), - [anon_sym_esac] = ACTIONS(4704), - [anon_sym_PIPE] = ACTIONS(4706), - [anon_sym_RPAREN] = ACTIONS(4704), - [anon_sym_SEMI_SEMI] = ACTIONS(4704), - [anon_sym_PIPE_AMP] = ACTIONS(4704), - [anon_sym_AMP_AMP] = ACTIONS(4704), - [anon_sym_PIPE_PIPE] = ACTIONS(4704), - [anon_sym_BQUOTE] = ACTIONS(4704), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(4704), - [anon_sym_AMP] = ACTIONS(4706), - }, - [1772] = { - [ts_builtin_sym_end] = ACTIONS(2442), - [anon_sym_SEMI] = ACTIONS(2444), - [anon_sym_esac] = ACTIONS(2442), - [anon_sym_PIPE] = ACTIONS(2444), - [anon_sym_RPAREN] = ACTIONS(2442), - [anon_sym_SEMI_SEMI] = ACTIONS(2442), - [anon_sym_PIPE_AMP] = ACTIONS(2442), - [anon_sym_AMP_AMP] = ACTIONS(2442), - [anon_sym_PIPE_PIPE] = ACTIONS(2442), - [anon_sym_BQUOTE] = ACTIONS(2442), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(2442), - [anon_sym_AMP] = ACTIONS(2444), - }, - [1773] = { - [sym__terminated_statement] = STATE(1131), - [sym_for_statement] = STATE(667), - [sym_c_style_for_statement] = STATE(667), - [sym_while_statement] = STATE(667), - [sym_if_statement] = STATE(667), - [sym_case_statement] = STATE(667), - [sym_function_definition] = STATE(667), - [sym_subshell] = STATE(667), - [sym_pipeline] = STATE(667), - [sym_list] = STATE(667), - [sym_negated_command] = STATE(667), - [sym_test_command] = STATE(667), - [sym_declaration_command] = STATE(667), - [sym_unset_command] = STATE(667), - [sym_command] = STATE(667), - [sym_command_name] = STATE(51), - [sym_variable_assignment] = STATE(668), - [sym_subscript] = STATE(53), - [sym_file_redirect] = STATE(54), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(47), - [sym_simple_expansion] = STATE(47), - [sym_string_expansion] = STATE(47), - [sym_expansion] = STATE(47), - [sym_command_substitution] = STATE(47), - [sym_process_substitution] = STATE(47), - [aux_sym__statements_repeat1] = STATE(1131), - [aux_sym_command_repeat1] = STATE(54), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(69), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(71), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(73), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_RBRACE] = ACTIONS(4708), - [anon_sym_BANG] = ACTIONS(75), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_LBRACK_LBRACK] = ACTIONS(79), - [anon_sym_declare] = ACTIONS(81), - [anon_sym_typeset] = ACTIONS(81), - [anon_sym_export] = ACTIONS(81), - [anon_sym_readonly] = ACTIONS(81), - [anon_sym_local] = ACTIONS(81), - [anon_sym_unset] = ACTIONS(83), - [anon_sym_unsetenv] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(87), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(89), - }, - [1774] = { - [anon_sym_RPAREN_RPAREN] = ACTIONS(2547), - [anon_sym_AMP_AMP] = ACTIONS(2547), - [anon_sym_PIPE_PIPE] = ACTIONS(2547), - [anon_sym_EQ_TILDE] = ACTIONS(2547), - [anon_sym_EQ_EQ] = ACTIONS(2547), - [anon_sym_EQ] = ACTIONS(2549), - [anon_sym_LT] = ACTIONS(2547), - [anon_sym_GT] = ACTIONS(2547), - [anon_sym_BANG_EQ] = ACTIONS(2547), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2547), - }, - [1775] = { - [sym__concat] = ACTIONS(1724), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1724), - [anon_sym_AMP_AMP] = ACTIONS(1724), - [anon_sym_PIPE_PIPE] = ACTIONS(1724), - [anon_sym_EQ_TILDE] = ACTIONS(1724), - [anon_sym_EQ_EQ] = ACTIONS(1724), - [anon_sym_EQ] = ACTIONS(1726), - [anon_sym_LT] = ACTIONS(1724), - [anon_sym_GT] = ACTIONS(1724), - [anon_sym_BANG_EQ] = ACTIONS(1724), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1724), - }, - [1776] = { - [aux_sym_concatenation_repeat1] = STATE(1776), - [sym__concat] = ACTIONS(4710), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1724), - [anon_sym_AMP_AMP] = ACTIONS(1724), - [anon_sym_PIPE_PIPE] = ACTIONS(1724), - [anon_sym_EQ_TILDE] = ACTIONS(1724), - [anon_sym_EQ_EQ] = ACTIONS(1724), - [anon_sym_EQ] = ACTIONS(1726), - [anon_sym_LT] = ACTIONS(1724), - [anon_sym_GT] = ACTIONS(1724), - [anon_sym_BANG_EQ] = ACTIONS(1724), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1724), - }, - [1777] = { - [sym__concat] = ACTIONS(1731), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1731), - [anon_sym_AMP_AMP] = ACTIONS(1731), - [anon_sym_PIPE_PIPE] = ACTIONS(1731), - [anon_sym_EQ_TILDE] = ACTIONS(1731), - [anon_sym_EQ_EQ] = ACTIONS(1731), - [anon_sym_EQ] = ACTIONS(1733), - [anon_sym_LT] = ACTIONS(1731), - [anon_sym_GT] = ACTIONS(1731), - [anon_sym_BANG_EQ] = ACTIONS(1731), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1731), - }, - [1778] = { - [anon_sym_DQUOTE] = ACTIONS(4713), - [anon_sym_DOLLAR] = ACTIONS(775), - [sym__string_content] = ACTIONS(777), - [anon_sym_POUND] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(781), - [anon_sym_STAR] = ACTIONS(783), - [anon_sym_AT] = ACTIONS(783), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_0] = ACTIONS(781), - [anon_sym__] = ACTIONS(781), - }, - [1779] = { [sym_concatenation] = STATE(2039), [sym_string] = STATE(2038), [sym_simple_expansion] = STATE(2038), @@ -51791,7248 +53614,10477 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(2038), [sym_command_substitution] = STATE(2038), [sym_process_substitution] = STATE(2038), - [anon_sym_RBRACE] = ACTIONS(4715), - [sym__special_characters] = ACTIONS(4717), - [anon_sym_DQUOTE] = ACTIONS(1802), - [anon_sym_DOLLAR] = ACTIONS(1804), - [sym_raw_string] = ACTIONS(4719), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1808), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1810), - [anon_sym_BQUOTE] = ACTIONS(1812), - [anon_sym_LT_LPAREN] = ACTIONS(1814), - [anon_sym_GT_LPAREN] = ACTIONS(1814), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4719), + [anon_sym_RBRACE] = ACTIONS(4662), + [sym__special_characters] = ACTIONS(4664), + [anon_sym_DQUOTE] = ACTIONS(1841), + [anon_sym_DOLLAR] = ACTIONS(1843), + [sym_raw_string] = ACTIONS(4666), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1849), + [anon_sym_BQUOTE] = ACTIONS(1851), + [anon_sym_LT_LPAREN] = ACTIONS(1853), + [anon_sym_GT_LPAREN] = ACTIONS(1853), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(4666), + }, + [1748] = { + [anon_sym_LBRACK] = ACTIONS(857), + [anon_sym_EQ] = ACTIONS(4668), + [sym_comment] = ACTIONS(55), + }, + [1749] = { + [sym_concatenation] = STATE(2043), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2043), + [anon_sym_RBRACE] = ACTIONS(4670), + [anon_sym_EQ] = ACTIONS(4672), + [anon_sym_DASH] = ACTIONS(4672), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(4674), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(4676), + [anon_sym_COLON] = ACTIONS(4672), + [anon_sym_COLON_QMARK] = ACTIONS(4672), + [anon_sym_COLON_DASH] = ACTIONS(4672), + [anon_sym_PERCENT] = ACTIONS(4672), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1750] = { + [sym_concatenation] = STATE(2045), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2045), + [anon_sym_RBRACE] = ACTIONS(4662), + [anon_sym_EQ] = ACTIONS(4678), + [anon_sym_DASH] = ACTIONS(4678), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(4680), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(4682), + [anon_sym_COLON] = ACTIONS(4678), + [anon_sym_COLON_QMARK] = ACTIONS(4678), + [anon_sym_COLON_DASH] = ACTIONS(4678), + [anon_sym_PERCENT] = ACTIONS(4678), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1751] = { + [sym__concat] = ACTIONS(1871), + [anon_sym_RBRACE] = ACTIONS(1871), + [sym_comment] = ACTIONS(55), + }, + [1752] = { + [sym_concatenation] = STATE(2048), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2048), + [sym_regex] = ACTIONS(4684), + [anon_sym_RBRACE] = ACTIONS(4686), + [anon_sym_EQ] = ACTIONS(4688), + [anon_sym_DASH] = ACTIONS(4688), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(4690), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(4688), + [anon_sym_COLON_QMARK] = ACTIONS(4688), + [anon_sym_COLON_DASH] = ACTIONS(4688), + [anon_sym_PERCENT] = ACTIONS(4688), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1753] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(4686), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1754] = { + [sym__concat] = ACTIONS(1919), + [anon_sym_RBRACE] = ACTIONS(1919), + [sym_comment] = ACTIONS(55), + }, + [1755] = { + [sym_concatenation] = STATE(2045), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2045), + [sym_regex] = ACTIONS(4692), + [anon_sym_RBRACE] = ACTIONS(4662), + [anon_sym_EQ] = ACTIONS(4678), + [anon_sym_DASH] = ACTIONS(4678), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(4680), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(4678), + [anon_sym_COLON_QMARK] = ACTIONS(4678), + [anon_sym_COLON_DASH] = ACTIONS(4678), + [anon_sym_PERCENT] = ACTIONS(4678), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1756] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(4662), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1757] = { + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(4694), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), + }, + [1758] = { + [sym__concat] = ACTIONS(1927), + [anon_sym_RBRACE] = ACTIONS(1927), + [sym_comment] = ACTIONS(55), + }, + [1759] = { + [anon_sym_SEMI] = ACTIONS(4696), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(4694), + [anon_sym_SEMI_SEMI] = ACTIONS(4698), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(4698), + [anon_sym_AMP] = ACTIONS(4696), + }, + [1760] = { + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(4696), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(4694), + [anon_sym_SEMI_SEMI] = ACTIONS(4698), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(4698), + [anon_sym_AMP] = ACTIONS(4696), + }, + [1761] = { + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(4694), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), + }, + [1762] = { + [anon_sym_SEMI] = ACTIONS(4700), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_SEMI_SEMI] = ACTIONS(4702), + [anon_sym_PIPE_AMP] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_BQUOTE] = ACTIONS(4694), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(4702), + [anon_sym_AMP] = ACTIONS(4700), + }, + [1763] = { + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(4700), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_SEMI_SEMI] = ACTIONS(4702), + [anon_sym_PIPE_AMP] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(4694), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(4702), + [anon_sym_AMP] = ACTIONS(4700), + }, + [1764] = { + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(4704), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), + }, + [1765] = { + [sym__concat] = ACTIONS(1959), + [anon_sym_RBRACE] = ACTIONS(1959), + [sym_comment] = ACTIONS(55), + }, + [1766] = { + [anon_sym_SEMI] = ACTIONS(4706), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(4704), + [anon_sym_SEMI_SEMI] = ACTIONS(4708), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(4708), + [anon_sym_AMP] = ACTIONS(4706), + }, + [1767] = { + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(4706), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(4704), + [anon_sym_SEMI_SEMI] = ACTIONS(4708), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(4708), + [anon_sym_AMP] = ACTIONS(4706), + }, + [1768] = { + [sym__simple_heredoc_body] = ACTIONS(4710), + [sym__heredoc_body_beginning] = ACTIONS(4710), + [sym_file_descriptor] = ACTIONS(4710), + [sym__concat] = ACTIONS(4710), + [ts_builtin_sym_end] = ACTIONS(4710), + [anon_sym_SEMI] = ACTIONS(4712), + [anon_sym_PIPE] = ACTIONS(4712), + [anon_sym_RPAREN] = ACTIONS(4710), + [anon_sym_SEMI_SEMI] = ACTIONS(4710), + [anon_sym_PIPE_AMP] = ACTIONS(4710), + [anon_sym_AMP_AMP] = ACTIONS(4710), + [anon_sym_PIPE_PIPE] = ACTIONS(4710), + [anon_sym_EQ_TILDE] = ACTIONS(4712), + [anon_sym_EQ_EQ] = ACTIONS(4712), + [anon_sym_LT] = ACTIONS(4712), + [anon_sym_GT] = ACTIONS(4712), + [anon_sym_GT_GT] = ACTIONS(4710), + [anon_sym_AMP_GT] = ACTIONS(4712), + [anon_sym_AMP_GT_GT] = ACTIONS(4710), + [anon_sym_LT_AMP] = ACTIONS(4710), + [anon_sym_GT_AMP] = ACTIONS(4710), + [anon_sym_LT_LT] = ACTIONS(4712), + [anon_sym_LT_LT_DASH] = ACTIONS(4710), + [anon_sym_LT_LT_LT] = ACTIONS(4710), + [sym__special_characters] = ACTIONS(4710), + [anon_sym_DQUOTE] = ACTIONS(4710), + [anon_sym_DOLLAR] = ACTIONS(4712), + [sym_raw_string] = ACTIONS(4710), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4710), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4710), + [anon_sym_BQUOTE] = ACTIONS(4710), + [anon_sym_LT_LPAREN] = ACTIONS(4710), + [anon_sym_GT_LPAREN] = ACTIONS(4710), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(4712), + [anon_sym_LF] = ACTIONS(4710), + [anon_sym_AMP] = ACTIONS(4712), + }, + [1769] = { + [sym__simple_heredoc_body] = ACTIONS(4714), + [sym__heredoc_body_beginning] = ACTIONS(4714), + [sym_file_descriptor] = ACTIONS(4714), + [sym__concat] = ACTIONS(4714), + [ts_builtin_sym_end] = ACTIONS(4714), + [anon_sym_SEMI] = ACTIONS(4716), + [anon_sym_PIPE] = ACTIONS(4716), + [anon_sym_RPAREN] = ACTIONS(4714), + [anon_sym_SEMI_SEMI] = ACTIONS(4714), + [anon_sym_PIPE_AMP] = ACTIONS(4714), + [anon_sym_AMP_AMP] = ACTIONS(4714), + [anon_sym_PIPE_PIPE] = ACTIONS(4714), + [anon_sym_EQ_TILDE] = ACTIONS(4716), + [anon_sym_EQ_EQ] = ACTIONS(4716), + [anon_sym_LT] = ACTIONS(4716), + [anon_sym_GT] = ACTIONS(4716), + [anon_sym_GT_GT] = ACTIONS(4714), + [anon_sym_AMP_GT] = ACTIONS(4716), + [anon_sym_AMP_GT_GT] = ACTIONS(4714), + [anon_sym_LT_AMP] = ACTIONS(4714), + [anon_sym_GT_AMP] = ACTIONS(4714), + [anon_sym_LT_LT] = ACTIONS(4716), + [anon_sym_LT_LT_DASH] = ACTIONS(4714), + [anon_sym_LT_LT_LT] = ACTIONS(4714), + [sym__special_characters] = ACTIONS(4714), + [anon_sym_DQUOTE] = ACTIONS(4714), + [anon_sym_DOLLAR] = ACTIONS(4716), + [sym_raw_string] = ACTIONS(4714), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4714), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4714), + [anon_sym_BQUOTE] = ACTIONS(4714), + [anon_sym_LT_LPAREN] = ACTIONS(4714), + [anon_sym_GT_LPAREN] = ACTIONS(4714), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(4716), + [anon_sym_LF] = ACTIONS(4714), + [anon_sym_AMP] = ACTIONS(4716), + }, + [1770] = { + [sym__simple_heredoc_body] = ACTIONS(4718), + [sym__heredoc_body_beginning] = ACTIONS(4718), + [sym_file_descriptor] = ACTIONS(4718), + [sym__concat] = ACTIONS(4718), + [ts_builtin_sym_end] = ACTIONS(4718), + [anon_sym_SEMI] = ACTIONS(4720), + [anon_sym_PIPE] = ACTIONS(4720), + [anon_sym_RPAREN] = ACTIONS(4718), + [anon_sym_SEMI_SEMI] = ACTIONS(4718), + [anon_sym_PIPE_AMP] = ACTIONS(4718), + [anon_sym_AMP_AMP] = ACTIONS(4718), + [anon_sym_PIPE_PIPE] = ACTIONS(4718), + [anon_sym_EQ_TILDE] = ACTIONS(4720), + [anon_sym_EQ_EQ] = ACTIONS(4720), + [anon_sym_LT] = ACTIONS(4720), + [anon_sym_GT] = ACTIONS(4720), + [anon_sym_GT_GT] = ACTIONS(4718), + [anon_sym_AMP_GT] = ACTIONS(4720), + [anon_sym_AMP_GT_GT] = ACTIONS(4718), + [anon_sym_LT_AMP] = ACTIONS(4718), + [anon_sym_GT_AMP] = ACTIONS(4718), + [anon_sym_LT_LT] = ACTIONS(4720), + [anon_sym_LT_LT_DASH] = ACTIONS(4718), + [anon_sym_LT_LT_LT] = ACTIONS(4718), + [sym__special_characters] = ACTIONS(4718), + [anon_sym_DQUOTE] = ACTIONS(4718), + [anon_sym_DOLLAR] = ACTIONS(4720), + [sym_raw_string] = ACTIONS(4718), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4718), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4718), + [anon_sym_BQUOTE] = ACTIONS(4718), + [anon_sym_LT_LPAREN] = ACTIONS(4718), + [anon_sym_GT_LPAREN] = ACTIONS(4718), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(4720), + [anon_sym_LF] = ACTIONS(4718), + [anon_sym_AMP] = ACTIONS(4720), + }, + [1771] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(4722), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1772] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(4724), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [1773] = { + [sym__concat] = ACTIONS(2959), + [anon_sym_RBRACE] = ACTIONS(2959), + [anon_sym_EQ] = ACTIONS(2961), + [anon_sym_DASH] = ACTIONS(2961), + [sym__special_characters] = ACTIONS(2961), + [anon_sym_DQUOTE] = ACTIONS(2959), + [anon_sym_DOLLAR] = ACTIONS(2961), + [sym_raw_string] = ACTIONS(2959), + [anon_sym_POUND] = ACTIONS(2959), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2959), + [anon_sym_COLON] = ACTIONS(2961), + [anon_sym_COLON_QMARK] = ACTIONS(2961), + [anon_sym_COLON_DASH] = ACTIONS(2961), + [anon_sym_PERCENT] = ACTIONS(2961), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2959), + [anon_sym_BQUOTE] = ACTIONS(2959), + [anon_sym_LT_LPAREN] = ACTIONS(2959), + [anon_sym_GT_LPAREN] = ACTIONS(2959), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(2961), + }, + [1774] = { + [sym__concat] = ACTIONS(2973), + [anon_sym_RBRACE] = ACTIONS(2973), + [anon_sym_EQ] = ACTIONS(2975), + [anon_sym_DASH] = ACTIONS(2975), + [sym__special_characters] = ACTIONS(2975), + [anon_sym_DQUOTE] = ACTIONS(2973), + [anon_sym_DOLLAR] = ACTIONS(2975), + [sym_raw_string] = ACTIONS(2973), + [anon_sym_POUND] = ACTIONS(2973), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2973), + [anon_sym_COLON] = ACTIONS(2975), + [anon_sym_COLON_QMARK] = ACTIONS(2975), + [anon_sym_COLON_DASH] = ACTIONS(2975), + [anon_sym_PERCENT] = ACTIONS(2975), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2973), + [anon_sym_BQUOTE] = ACTIONS(2973), + [anon_sym_LT_LPAREN] = ACTIONS(2973), + [anon_sym_GT_LPAREN] = ACTIONS(2973), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(2975), + }, + [1775] = { + [aux_sym_concatenation_repeat1] = STATE(1366), + [sym__concat] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(4726), + [sym_comment] = ACTIONS(55), + }, + [1776] = { + [aux_sym_concatenation_repeat1] = STATE(1366), + [sym__concat] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(4728), + [sym_comment] = ACTIONS(55), + }, + [1777] = { + [anon_sym_RBRACE] = ACTIONS(4728), + [sym_comment] = ACTIONS(55), + }, + [1778] = { + [sym_concatenation] = STATE(2061), + [sym_string] = STATE(2060), + [sym_simple_expansion] = STATE(2060), + [sym_string_expansion] = STATE(2060), + [sym_expansion] = STATE(2060), + [sym_command_substitution] = STATE(2060), + [sym_process_substitution] = STATE(2060), + [anon_sym_RBRACE] = ACTIONS(4728), + [sym__special_characters] = ACTIONS(4730), + [anon_sym_DQUOTE] = ACTIONS(1841), + [anon_sym_DOLLAR] = ACTIONS(1843), + [sym_raw_string] = ACTIONS(4732), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1849), + [anon_sym_BQUOTE] = ACTIONS(1851), + [anon_sym_LT_LPAREN] = ACTIONS(1853), + [anon_sym_GT_LPAREN] = ACTIONS(1853), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(4732), + }, + [1779] = { + [sym__concat] = ACTIONS(3009), + [anon_sym_RBRACE] = ACTIONS(3009), + [anon_sym_EQ] = ACTIONS(3011), + [anon_sym_DASH] = ACTIONS(3011), + [sym__special_characters] = ACTIONS(3011), + [anon_sym_DQUOTE] = ACTIONS(3009), + [anon_sym_DOLLAR] = ACTIONS(3011), + [sym_raw_string] = ACTIONS(3009), + [anon_sym_POUND] = ACTIONS(3009), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3009), + [anon_sym_COLON] = ACTIONS(3011), + [anon_sym_COLON_QMARK] = ACTIONS(3011), + [anon_sym_COLON_DASH] = ACTIONS(3011), + [anon_sym_PERCENT] = ACTIONS(3011), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3009), + [anon_sym_BQUOTE] = ACTIONS(3009), + [anon_sym_LT_LPAREN] = ACTIONS(3009), + [anon_sym_GT_LPAREN] = ACTIONS(3009), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(3011), }, [1780] = { - [anon_sym_LBRACK] = ACTIONS(815), - [anon_sym_EQ] = ACTIONS(4721), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(2064), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2064), + [sym_regex] = ACTIONS(4734), + [anon_sym_RBRACE] = ACTIONS(4736), + [anon_sym_EQ] = ACTIONS(4738), + [anon_sym_DASH] = ACTIONS(4738), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(4740), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(4738), + [anon_sym_COLON_QMARK] = ACTIONS(4738), + [anon_sym_COLON_DASH] = ACTIONS(4738), + [anon_sym_PERCENT] = ACTIONS(4738), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1781] = { - [sym_concatenation] = STATE(2043), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(2043), - [anon_sym_RBRACE] = ACTIONS(4723), - [anon_sym_EQ] = ACTIONS(4725), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(4727), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(4729), - [anon_sym_COLON] = ACTIONS(4725), - [anon_sym_COLON_QMARK] = ACTIONS(4725), - [anon_sym_COLON_DASH] = ACTIONS(4725), - [anon_sym_PERCENT] = ACTIONS(4725), - [anon_sym_DASH] = ACTIONS(4725), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(4736), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1782] = { - [sym_concatenation] = STATE(2045), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(2045), - [anon_sym_RBRACE] = ACTIONS(4715), - [anon_sym_EQ] = ACTIONS(4731), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(4733), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(4735), - [anon_sym_COLON] = ACTIONS(4731), - [anon_sym_COLON_QMARK] = ACTIONS(4731), - [anon_sym_COLON_DASH] = ACTIONS(4731), - [anon_sym_PERCENT] = ACTIONS(4731), - [anon_sym_DASH] = ACTIONS(4731), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_concatenation] = STATE(2066), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2066), + [sym_regex] = ACTIONS(4742), + [anon_sym_RBRACE] = ACTIONS(4728), + [anon_sym_EQ] = ACTIONS(4744), + [anon_sym_DASH] = ACTIONS(4744), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(4746), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(4744), + [anon_sym_COLON_QMARK] = ACTIONS(4744), + [anon_sym_COLON_DASH] = ACTIONS(4744), + [anon_sym_PERCENT] = ACTIONS(4744), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1783] = { - [sym__concat] = ACTIONS(1832), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1832), - [anon_sym_AMP_AMP] = ACTIONS(1832), - [anon_sym_PIPE_PIPE] = ACTIONS(1832), - [anon_sym_EQ_TILDE] = ACTIONS(1832), - [anon_sym_EQ_EQ] = ACTIONS(1832), - [anon_sym_EQ] = ACTIONS(1834), - [anon_sym_LT] = ACTIONS(1832), - [anon_sym_GT] = ACTIONS(1832), - [anon_sym_BANG_EQ] = ACTIONS(1832), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1832), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(4728), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1784] = { - [sym_comment] = ACTIONS(265), - [sym_regex_without_right_brace] = ACTIONS(4737), + [sym_concatenation] = STATE(2068), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2068), + [anon_sym_RBRACE] = ACTIONS(4748), + [anon_sym_EQ] = ACTIONS(4750), + [anon_sym_DASH] = ACTIONS(4750), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(4752), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(4750), + [anon_sym_COLON_QMARK] = ACTIONS(4750), + [anon_sym_COLON_DASH] = ACTIONS(4750), + [anon_sym_PERCENT] = ACTIONS(4750), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1785] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(4739), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym__concat] = ACTIONS(3065), + [anon_sym_RBRACE] = ACTIONS(3065), + [anon_sym_EQ] = ACTIONS(3067), + [anon_sym_DASH] = ACTIONS(3067), + [sym__special_characters] = ACTIONS(3067), + [anon_sym_DQUOTE] = ACTIONS(3065), + [anon_sym_DOLLAR] = ACTIONS(3067), + [sym_raw_string] = ACTIONS(3065), + [anon_sym_POUND] = ACTIONS(3065), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3065), + [anon_sym_COLON] = ACTIONS(3067), + [anon_sym_COLON_QMARK] = ACTIONS(3067), + [anon_sym_COLON_DASH] = ACTIONS(3067), + [anon_sym_PERCENT] = ACTIONS(3067), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3065), + [anon_sym_BQUOTE] = ACTIONS(3065), + [anon_sym_LT_LPAREN] = ACTIONS(3065), + [anon_sym_GT_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(3067), }, [1786] = { - [sym__concat] = ACTIONS(1876), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1876), - [anon_sym_AMP_AMP] = ACTIONS(1876), - [anon_sym_PIPE_PIPE] = ACTIONS(1876), - [anon_sym_EQ_TILDE] = ACTIONS(1876), - [anon_sym_EQ_EQ] = ACTIONS(1876), - [anon_sym_EQ] = ACTIONS(1878), - [anon_sym_LT] = ACTIONS(1876), - [anon_sym_GT] = ACTIONS(1876), - [anon_sym_BANG_EQ] = ACTIONS(1876), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1876), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(4748), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1787] = { - [sym_comment] = ACTIONS(265), - [sym_regex_without_right_brace] = ACTIONS(4741), + [sym_concatenation] = STATE(2066), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2066), + [anon_sym_RBRACE] = ACTIONS(4728), + [anon_sym_EQ] = ACTIONS(4744), + [anon_sym_DASH] = ACTIONS(4744), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(4746), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(4744), + [anon_sym_COLON_QMARK] = ACTIONS(4744), + [anon_sym_COLON_DASH] = ACTIONS(4744), + [anon_sym_PERCENT] = ACTIONS(4744), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1788] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(4715), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym__simple_heredoc_body] = ACTIONS(4754), + [sym__heredoc_body_beginning] = ACTIONS(4754), + [sym_file_descriptor] = ACTIONS(4754), + [sym__concat] = ACTIONS(4754), + [ts_builtin_sym_end] = ACTIONS(4754), + [anon_sym_SEMI] = ACTIONS(4756), + [anon_sym_PIPE] = ACTIONS(4756), + [anon_sym_RPAREN] = ACTIONS(4754), + [anon_sym_SEMI_SEMI] = ACTIONS(4754), + [anon_sym_PIPE_AMP] = ACTIONS(4754), + [anon_sym_AMP_AMP] = ACTIONS(4754), + [anon_sym_PIPE_PIPE] = ACTIONS(4754), + [anon_sym_EQ_TILDE] = ACTIONS(4756), + [anon_sym_EQ_EQ] = ACTIONS(4756), + [anon_sym_LT] = ACTIONS(4756), + [anon_sym_GT] = ACTIONS(4756), + [anon_sym_GT_GT] = ACTIONS(4754), + [anon_sym_AMP_GT] = ACTIONS(4756), + [anon_sym_AMP_GT_GT] = ACTIONS(4754), + [anon_sym_LT_AMP] = ACTIONS(4754), + [anon_sym_GT_AMP] = ACTIONS(4754), + [anon_sym_LT_LT] = ACTIONS(4756), + [anon_sym_LT_LT_DASH] = ACTIONS(4754), + [anon_sym_LT_LT_LT] = ACTIONS(4754), + [sym__special_characters] = ACTIONS(4754), + [anon_sym_DQUOTE] = ACTIONS(4754), + [anon_sym_DOLLAR] = ACTIONS(4756), + [sym_raw_string] = ACTIONS(4754), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4754), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4754), + [anon_sym_BQUOTE] = ACTIONS(4754), + [anon_sym_LT_LPAREN] = ACTIONS(4754), + [anon_sym_GT_LPAREN] = ACTIONS(4754), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(4756), + [anon_sym_LF] = ACTIONS(4754), + [anon_sym_AMP] = ACTIONS(4756), }, [1789] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(4743), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(901), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), + [sym__concat] = ACTIONS(3120), + [anon_sym_RBRACE] = ACTIONS(3120), + [anon_sym_EQ] = ACTIONS(3122), + [anon_sym_DASH] = ACTIONS(3122), + [sym__special_characters] = ACTIONS(3122), + [anon_sym_DQUOTE] = ACTIONS(3120), + [anon_sym_DOLLAR] = ACTIONS(3122), + [sym_raw_string] = ACTIONS(3120), + [anon_sym_POUND] = ACTIONS(3120), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(3122), + [anon_sym_COLON_QMARK] = ACTIONS(3122), + [anon_sym_COLON_DASH] = ACTIONS(3122), + [anon_sym_PERCENT] = ACTIONS(3122), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3120), + [anon_sym_BQUOTE] = ACTIONS(3120), + [anon_sym_LT_LPAREN] = ACTIONS(3120), + [anon_sym_GT_LPAREN] = ACTIONS(3120), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(3122), }, [1790] = { - [sym__concat] = ACTIONS(1884), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1884), - [anon_sym_AMP_AMP] = ACTIONS(1884), - [anon_sym_PIPE_PIPE] = ACTIONS(1884), - [anon_sym_EQ_TILDE] = ACTIONS(1884), - [anon_sym_EQ_EQ] = ACTIONS(1884), - [anon_sym_EQ] = ACTIONS(1886), - [anon_sym_LT] = ACTIONS(1884), - [anon_sym_GT] = ACTIONS(1884), - [anon_sym_BANG_EQ] = ACTIONS(1884), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1884), + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(4758), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), }, [1791] = { - [anon_sym_SEMI] = ACTIONS(4745), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(4743), - [anon_sym_SEMI_SEMI] = ACTIONS(4747), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(4747), - [anon_sym_AMP] = ACTIONS(4745), + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(4758), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), }, [1792] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(4745), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(4743), - [anon_sym_SEMI_SEMI] = ACTIONS(4747), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(4747), - [anon_sym_AMP] = ACTIONS(4745), + [sym__concat] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(3158), + [anon_sym_EQ] = ACTIONS(3160), + [anon_sym_DASH] = ACTIONS(3160), + [sym__special_characters] = ACTIONS(3160), + [anon_sym_DQUOTE] = ACTIONS(3158), + [anon_sym_DOLLAR] = ACTIONS(3160), + [sym_raw_string] = ACTIONS(3158), + [anon_sym_POUND] = ACTIONS(3158), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3158), + [anon_sym_COLON] = ACTIONS(3160), + [anon_sym_COLON_QMARK] = ACTIONS(3160), + [anon_sym_COLON_DASH] = ACTIONS(3160), + [anon_sym_PERCENT] = ACTIONS(3160), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3158), + [anon_sym_BQUOTE] = ACTIONS(3158), + [anon_sym_LT_LPAREN] = ACTIONS(3158), + [anon_sym_GT_LPAREN] = ACTIONS(3158), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(3160), }, [1793] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(4743), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(4760), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), }, [1794] = { - [anon_sym_SEMI] = ACTIONS(4749), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_SEMI_SEMI] = ACTIONS(4751), - [anon_sym_PIPE_AMP] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(883), - [anon_sym_PIPE_PIPE] = ACTIONS(883), - [anon_sym_BQUOTE] = ACTIONS(4743), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(4751), - [anon_sym_AMP] = ACTIONS(4749), + [sym_concatenation] = STATE(1586), + [sym_string] = STATE(2072), + [sym_simple_expansion] = STATE(2072), + [sym_string_expansion] = STATE(2072), + [sym_expansion] = STATE(2072), + [sym_command_substitution] = STATE(2072), + [sym_process_substitution] = STATE(2072), + [sym__special_characters] = ACTIONS(4762), + [anon_sym_DQUOTE] = ACTIONS(2396), + [anon_sym_DOLLAR] = ACTIONS(2398), + [sym_raw_string] = ACTIONS(4764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2402), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2404), + [anon_sym_BQUOTE] = ACTIONS(2406), + [anon_sym_LT_LPAREN] = ACTIONS(2408), + [anon_sym_GT_LPAREN] = ACTIONS(2408), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(4764), }, [1795] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(4749), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_SEMI_SEMI] = ACTIONS(4751), - [anon_sym_PIPE_AMP] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(883), - [anon_sym_PIPE_PIPE] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(4743), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(4751), - [anon_sym_AMP] = ACTIONS(4749), + [aux_sym_concatenation_repeat1] = STATE(2073), + [sym_file_descriptor] = ACTIONS(773), + [sym__concat] = ACTIONS(3579), + [anon_sym_SEMI] = ACTIONS(777), + [anon_sym_PIPE] = ACTIONS(777), + [anon_sym_SEMI_SEMI] = ACTIONS(773), + [anon_sym_PIPE_AMP] = ACTIONS(773), + [anon_sym_AMP_AMP] = ACTIONS(773), + [anon_sym_PIPE_PIPE] = ACTIONS(773), + [anon_sym_LT] = ACTIONS(777), + [anon_sym_GT] = ACTIONS(777), + [anon_sym_GT_GT] = ACTIONS(773), + [anon_sym_AMP_GT] = ACTIONS(777), + [anon_sym_AMP_GT_GT] = ACTIONS(773), + [anon_sym_LT_AMP] = ACTIONS(773), + [anon_sym_GT_AMP] = ACTIONS(773), + [anon_sym_LT_LT] = ACTIONS(777), + [anon_sym_LT_LT_DASH] = ACTIONS(773), + [anon_sym_LT_LT_LT] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(773), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(773), + [anon_sym_AMP] = ACTIONS(777), }, [1796] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(4753), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(901), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), + [aux_sym_concatenation_repeat1] = STATE(2073), + [sym_file_descriptor] = ACTIONS(791), + [sym__concat] = ACTIONS(3579), + [anon_sym_SEMI] = ACTIONS(793), + [anon_sym_PIPE] = ACTIONS(793), + [anon_sym_SEMI_SEMI] = ACTIONS(791), + [anon_sym_PIPE_AMP] = ACTIONS(791), + [anon_sym_AMP_AMP] = ACTIONS(791), + [anon_sym_PIPE_PIPE] = ACTIONS(791), + [anon_sym_LT] = ACTIONS(793), + [anon_sym_GT] = ACTIONS(793), + [anon_sym_GT_GT] = ACTIONS(791), + [anon_sym_AMP_GT] = ACTIONS(793), + [anon_sym_AMP_GT_GT] = ACTIONS(791), + [anon_sym_LT_AMP] = ACTIONS(791), + [anon_sym_GT_AMP] = ACTIONS(791), + [anon_sym_LT_LT] = ACTIONS(793), + [anon_sym_LT_LT_DASH] = ACTIONS(791), + [anon_sym_LT_LT_LT] = ACTIONS(791), + [anon_sym_BQUOTE] = ACTIONS(791), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(791), + [anon_sym_AMP] = ACTIONS(793), }, [1797] = { - [sym__concat] = ACTIONS(1916), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1916), - [anon_sym_AMP_AMP] = ACTIONS(1916), - [anon_sym_PIPE_PIPE] = ACTIONS(1916), - [anon_sym_EQ_TILDE] = ACTIONS(1916), - [anon_sym_EQ_EQ] = ACTIONS(1916), - [anon_sym_EQ] = ACTIONS(1918), - [anon_sym_LT] = ACTIONS(1916), - [anon_sym_GT] = ACTIONS(1916), - [anon_sym_BANG_EQ] = ACTIONS(1916), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1916), + [aux_sym_concatenation_repeat1] = STATE(2073), + [sym_file_descriptor] = ACTIONS(2015), + [sym__concat] = ACTIONS(3579), + [anon_sym_SEMI] = ACTIONS(2017), + [anon_sym_PIPE] = ACTIONS(2017), + [anon_sym_SEMI_SEMI] = ACTIONS(2015), + [anon_sym_PIPE_AMP] = ACTIONS(2015), + [anon_sym_AMP_AMP] = ACTIONS(2015), + [anon_sym_PIPE_PIPE] = ACTIONS(2015), + [anon_sym_LT] = ACTIONS(2017), + [anon_sym_GT] = ACTIONS(2017), + [anon_sym_GT_GT] = ACTIONS(2015), + [anon_sym_AMP_GT] = ACTIONS(2017), + [anon_sym_AMP_GT_GT] = ACTIONS(2015), + [anon_sym_LT_AMP] = ACTIONS(2015), + [anon_sym_GT_AMP] = ACTIONS(2015), + [anon_sym_LT_LT] = ACTIONS(2017), + [anon_sym_LT_LT_DASH] = ACTIONS(2015), + [anon_sym_LT_LT_LT] = ACTIONS(2015), + [anon_sym_BQUOTE] = ACTIONS(2015), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2017), }, [1798] = { - [anon_sym_SEMI] = ACTIONS(4755), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(4753), - [anon_sym_SEMI_SEMI] = ACTIONS(4757), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(4757), - [anon_sym_AMP] = ACTIONS(4755), + [aux_sym_concatenation_repeat1] = STATE(2073), + [sym_file_descriptor] = ACTIONS(2019), + [sym__concat] = ACTIONS(3579), + [anon_sym_SEMI] = ACTIONS(2021), + [anon_sym_PIPE] = ACTIONS(2021), + [anon_sym_SEMI_SEMI] = ACTIONS(2019), + [anon_sym_PIPE_AMP] = ACTIONS(2019), + [anon_sym_AMP_AMP] = ACTIONS(2019), + [anon_sym_PIPE_PIPE] = ACTIONS(2019), + [anon_sym_LT] = ACTIONS(2021), + [anon_sym_GT] = ACTIONS(2021), + [anon_sym_GT_GT] = ACTIONS(2019), + [anon_sym_AMP_GT] = ACTIONS(2021), + [anon_sym_AMP_GT_GT] = ACTIONS(2019), + [anon_sym_LT_AMP] = ACTIONS(2019), + [anon_sym_GT_AMP] = ACTIONS(2019), + [anon_sym_LT_LT] = ACTIONS(2021), + [anon_sym_LT_LT_DASH] = ACTIONS(2019), + [anon_sym_LT_LT_LT] = ACTIONS(2019), + [anon_sym_BQUOTE] = ACTIONS(2019), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2019), + [anon_sym_AMP] = ACTIONS(2021), }, [1799] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(4755), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(4753), - [anon_sym_SEMI_SEMI] = ACTIONS(4757), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(4757), - [anon_sym_AMP] = ACTIONS(4755), + [sym_file_redirect] = STATE(1799), + [sym_heredoc_redirect] = STATE(1799), + [sym_herestring_redirect] = STATE(1799), + [aux_sym_while_statement_repeat1] = STATE(1799), + [sym_file_descriptor] = ACTIONS(4766), + [anon_sym_SEMI] = ACTIONS(2032), + [anon_sym_PIPE] = ACTIONS(2032), + [anon_sym_SEMI_SEMI] = ACTIONS(2027), + [anon_sym_PIPE_AMP] = ACTIONS(2027), + [anon_sym_AMP_AMP] = ACTIONS(2027), + [anon_sym_PIPE_PIPE] = ACTIONS(2027), + [anon_sym_LT] = ACTIONS(4769), + [anon_sym_GT] = ACTIONS(4769), + [anon_sym_GT_GT] = ACTIONS(4772), + [anon_sym_AMP_GT] = ACTIONS(4769), + [anon_sym_AMP_GT_GT] = ACTIONS(4772), + [anon_sym_LT_AMP] = ACTIONS(4772), + [anon_sym_GT_AMP] = ACTIONS(4772), + [anon_sym_LT_LT] = ACTIONS(3612), + [anon_sym_LT_LT_DASH] = ACTIONS(3615), + [anon_sym_LT_LT_LT] = ACTIONS(4775), + [anon_sym_BQUOTE] = ACTIONS(2027), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2027), + [anon_sym_AMP] = ACTIONS(2032), }, [1800] = { - [sym_do_group] = STATE(2054), - [sym_compound_statement] = STATE(2054), - [anon_sym_do] = ACTIONS(1175), - [anon_sym_LBRACE] = ACTIONS(3259), - [sym_comment] = ACTIONS(53), + [sym_file_redirect] = STATE(1651), + [sym_file_descriptor] = ACTIONS(3136), + [anon_sym_SEMI] = ACTIONS(3722), + [anon_sym_PIPE] = ACTIONS(3722), + [anon_sym_SEMI_SEMI] = ACTIONS(3720), + [anon_sym_PIPE_AMP] = ACTIONS(3720), + [anon_sym_AMP_AMP] = ACTIONS(3720), + [anon_sym_PIPE_PIPE] = ACTIONS(3720), + [anon_sym_LT] = ACTIONS(3138), + [anon_sym_GT] = ACTIONS(3138), + [anon_sym_GT_GT] = ACTIONS(3140), + [anon_sym_AMP_GT] = ACTIONS(3138), + [anon_sym_AMP_GT_GT] = ACTIONS(3140), + [anon_sym_LT_AMP] = ACTIONS(3140), + [anon_sym_GT_AMP] = ACTIONS(3140), + [anon_sym_BQUOTE] = ACTIONS(3720), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(3720), + [anon_sym_AMP] = ACTIONS(3722), }, [1801] = { - [anon_sym_RPAREN_RPAREN] = ACTIONS(2602), - [anon_sym_AMP_AMP] = ACTIONS(2602), - [anon_sym_PIPE_PIPE] = ACTIONS(2602), - [anon_sym_EQ_TILDE] = ACTIONS(2602), - [anon_sym_EQ_EQ] = ACTIONS(2602), - [anon_sym_EQ] = ACTIONS(2604), - [anon_sym_LT] = ACTIONS(2602), - [anon_sym_GT] = ACTIONS(2602), - [anon_sym_BANG_EQ] = ACTIONS(2602), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2602), + [sym_concatenation] = STATE(1654), + [sym_string] = STATE(2075), + [sym_simple_expansion] = STATE(2075), + [sym_string_expansion] = STATE(2075), + [sym_expansion] = STATE(2075), + [sym_command_substitution] = STATE(2075), + [sym_process_substitution] = STATE(2075), + [sym__special_characters] = ACTIONS(4778), + [anon_sym_DQUOTE] = ACTIONS(229), + [anon_sym_DOLLAR] = ACTIONS(231), + [sym_raw_string] = ACTIONS(4780), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), + [anon_sym_BQUOTE] = ACTIONS(239), + [anon_sym_LT_LPAREN] = ACTIONS(241), + [anon_sym_GT_LPAREN] = ACTIONS(241), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(4780), }, [1802] = { - [anon_sym_RPAREN_RPAREN] = ACTIONS(2602), - [anon_sym_AMP_AMP] = ACTIONS(2602), - [anon_sym_PIPE_PIPE] = ACTIONS(2602), - [anon_sym_EQ_TILDE] = ACTIONS(2602), - [anon_sym_EQ_EQ] = ACTIONS(2602), - [anon_sym_EQ] = ACTIONS(2604), - [anon_sym_LT] = ACTIONS(2602), - [anon_sym_GT] = ACTIONS(2602), - [anon_sym_BANG_EQ] = ACTIONS(2602), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2602), + [aux_sym_concatenation_repeat1] = STATE(2076), + [sym__concat] = ACTIONS(735), + [anon_sym_SEMI] = ACTIONS(777), + [anon_sym_PIPE] = ACTIONS(777), + [anon_sym_SEMI_SEMI] = ACTIONS(773), + [anon_sym_PIPE_AMP] = ACTIONS(773), + [anon_sym_AMP_AMP] = ACTIONS(773), + [anon_sym_PIPE_PIPE] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(773), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(773), + [anon_sym_AMP] = ACTIONS(777), }, [1803] = { - [sym_do_group] = STATE(2054), - [sym_compound_statement] = STATE(2054), - [anon_sym_SEMI] = ACTIONS(4759), - [anon_sym_do] = ACTIONS(1175), - [anon_sym_LBRACE] = ACTIONS(3259), - [sym_comment] = ACTIONS(53), + [aux_sym_concatenation_repeat1] = STATE(2076), + [sym__concat] = ACTIONS(735), + [anon_sym_SEMI] = ACTIONS(793), + [anon_sym_PIPE] = ACTIONS(793), + [anon_sym_SEMI_SEMI] = ACTIONS(791), + [anon_sym_PIPE_AMP] = ACTIONS(791), + [anon_sym_AMP_AMP] = ACTIONS(791), + [anon_sym_PIPE_PIPE] = ACTIONS(791), + [anon_sym_BQUOTE] = ACTIONS(791), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(791), + [anon_sym_AMP] = ACTIONS(793), }, [1804] = { - [sym__concat] = ACTIONS(3788), - [anon_sym_SEMI] = ACTIONS(3790), - [anon_sym_esac] = ACTIONS(3788), - [anon_sym_PIPE] = ACTIONS(3790), - [anon_sym_SEMI_SEMI] = ACTIONS(3788), - [anon_sym_PIPE_AMP] = ACTIONS(3788), - [anon_sym_AMP_AMP] = ACTIONS(3788), - [anon_sym_PIPE_PIPE] = ACTIONS(3788), - [anon_sym_EQ_TILDE] = ACTIONS(3788), - [anon_sym_EQ_EQ] = ACTIONS(3788), - [anon_sym_EQ] = ACTIONS(3790), - [anon_sym_LT] = ACTIONS(3788), - [anon_sym_GT] = ACTIONS(3788), - [anon_sym_BANG_EQ] = ACTIONS(3788), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(3788), - [anon_sym_LF] = ACTIONS(3788), - [anon_sym_AMP] = ACTIONS(3790), + [aux_sym_concatenation_repeat1] = STATE(1804), + [sym__simple_heredoc_body] = ACTIONS(1763), + [sym__heredoc_body_beginning] = ACTIONS(1763), + [sym_file_descriptor] = ACTIONS(1763), + [sym__concat] = ACTIONS(1767), + [anon_sym_SEMI] = ACTIONS(1765), + [anon_sym_PIPE] = ACTIONS(1765), + [anon_sym_SEMI_SEMI] = ACTIONS(1763), + [anon_sym_PIPE_AMP] = ACTIONS(1763), + [anon_sym_AMP_AMP] = ACTIONS(1763), + [anon_sym_PIPE_PIPE] = ACTIONS(1763), + [anon_sym_LT] = ACTIONS(1765), + [anon_sym_GT] = ACTIONS(1765), + [anon_sym_GT_GT] = ACTIONS(1763), + [anon_sym_AMP_GT] = ACTIONS(1765), + [anon_sym_AMP_GT_GT] = ACTIONS(1763), + [anon_sym_LT_AMP] = ACTIONS(1763), + [anon_sym_GT_AMP] = ACTIONS(1763), + [anon_sym_LT_LT] = ACTIONS(1765), + [anon_sym_LT_LT_DASH] = ACTIONS(1763), + [anon_sym_LT_LT_LT] = ACTIONS(1763), + [anon_sym_BQUOTE] = ACTIONS(1763), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1763), + [anon_sym_AMP] = ACTIONS(1765), }, [1805] = { - [sym__concat] = ACTIONS(3796), - [anon_sym_SEMI] = ACTIONS(3798), - [anon_sym_esac] = ACTIONS(3796), - [anon_sym_PIPE] = ACTIONS(3798), - [anon_sym_SEMI_SEMI] = ACTIONS(3796), - [anon_sym_PIPE_AMP] = ACTIONS(3796), - [anon_sym_AMP_AMP] = ACTIONS(3796), - [anon_sym_PIPE_PIPE] = ACTIONS(3796), - [anon_sym_EQ_TILDE] = ACTIONS(3796), - [anon_sym_EQ_EQ] = ACTIONS(3796), - [anon_sym_EQ] = ACTIONS(3798), - [anon_sym_LT] = ACTIONS(3796), - [anon_sym_GT] = ACTIONS(3796), - [anon_sym_BANG_EQ] = ACTIONS(3796), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(3796), - [anon_sym_LF] = ACTIONS(3796), - [anon_sym_AMP] = ACTIONS(3798), + [sym__heredoc_body_middle] = ACTIONS(2973), + [sym__heredoc_body_end] = ACTIONS(2973), + [anon_sym_DOLLAR] = ACTIONS(2975), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2973), + [sym_comment] = ACTIONS(55), }, [1806] = { - [aux_sym_concatenation_repeat1] = STATE(1293), - [sym__concat] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(4761), - [sym_comment] = ACTIONS(53), + [aux_sym_concatenation_repeat1] = STATE(1366), + [sym__concat] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(4782), + [sym_comment] = ACTIONS(55), }, [1807] = { - [aux_sym_concatenation_repeat1] = STATE(1293), - [sym__concat] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(4763), - [sym_comment] = ACTIONS(53), + [aux_sym_concatenation_repeat1] = STATE(1366), + [sym__concat] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(4784), + [sym_comment] = ACTIONS(55), }, [1808] = { - [anon_sym_RBRACE] = ACTIONS(4763), - [sym_comment] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(4784), + [sym_comment] = ACTIONS(55), }, [1809] = { - [sym_concatenation] = STATE(2059), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(2059), - [anon_sym_RBRACE] = ACTIONS(4765), - [anon_sym_EQ] = ACTIONS(4767), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(4769), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(4767), - [anon_sym_COLON_QMARK] = ACTIONS(4767), - [anon_sym_COLON_DASH] = ACTIONS(4767), - [anon_sym_PERCENT] = ACTIONS(4767), - [anon_sym_DASH] = ACTIONS(4767), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_concatenation] = STATE(2081), + [sym_string] = STATE(2080), + [sym_simple_expansion] = STATE(2080), + [sym_string_expansion] = STATE(2080), + [sym_expansion] = STATE(2080), + [sym_command_substitution] = STATE(2080), + [sym_process_substitution] = STATE(2080), + [anon_sym_RBRACE] = ACTIONS(4784), + [sym__special_characters] = ACTIONS(4786), + [anon_sym_DQUOTE] = ACTIONS(1841), + [anon_sym_DOLLAR] = ACTIONS(1843), + [sym_raw_string] = ACTIONS(4788), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1849), + [anon_sym_BQUOTE] = ACTIONS(1851), + [anon_sym_LT_LPAREN] = ACTIONS(1853), + [anon_sym_GT_LPAREN] = ACTIONS(1853), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(4788), }, [1810] = { - [sym__concat] = ACTIONS(3852), - [anon_sym_SEMI] = ACTIONS(3854), - [anon_sym_esac] = ACTIONS(3852), - [anon_sym_PIPE] = ACTIONS(3854), - [anon_sym_SEMI_SEMI] = ACTIONS(3852), - [anon_sym_PIPE_AMP] = ACTIONS(3852), - [anon_sym_AMP_AMP] = ACTIONS(3852), - [anon_sym_PIPE_PIPE] = ACTIONS(3852), - [anon_sym_EQ_TILDE] = ACTIONS(3852), - [anon_sym_EQ_EQ] = ACTIONS(3852), - [anon_sym_EQ] = ACTIONS(3854), - [anon_sym_LT] = ACTIONS(3852), - [anon_sym_GT] = ACTIONS(3852), - [anon_sym_BANG_EQ] = ACTIONS(3852), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(3852), - [anon_sym_LF] = ACTIONS(3852), - [anon_sym_AMP] = ACTIONS(3854), + [sym__heredoc_body_middle] = ACTIONS(3009), + [sym__heredoc_body_end] = ACTIONS(3009), + [anon_sym_DOLLAR] = ACTIONS(3011), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3009), + [sym_comment] = ACTIONS(55), }, [1811] = { - [sym_concatenation] = STATE(2060), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(2060), - [anon_sym_RBRACE] = ACTIONS(4763), - [anon_sym_EQ] = ACTIONS(4771), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(4773), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(4771), - [anon_sym_COLON_QMARK] = ACTIONS(4771), - [anon_sym_COLON_DASH] = ACTIONS(4771), - [anon_sym_PERCENT] = ACTIONS(4771), - [anon_sym_DASH] = ACTIONS(4771), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_concatenation] = STATE(2084), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2084), + [sym_regex] = ACTIONS(4790), + [anon_sym_RBRACE] = ACTIONS(4792), + [anon_sym_EQ] = ACTIONS(4794), + [anon_sym_DASH] = ACTIONS(4794), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(4796), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(4794), + [anon_sym_COLON_QMARK] = ACTIONS(4794), + [anon_sym_COLON_DASH] = ACTIONS(4794), + [anon_sym_PERCENT] = ACTIONS(4794), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1812] = { - [sym__concat] = ACTIONS(3893), - [anon_sym_SEMI] = ACTIONS(3895), - [anon_sym_esac] = ACTIONS(3893), - [anon_sym_PIPE] = ACTIONS(3895), - [anon_sym_SEMI_SEMI] = ACTIONS(3893), - [anon_sym_PIPE_AMP] = ACTIONS(3893), - [anon_sym_AMP_AMP] = ACTIONS(3893), - [anon_sym_PIPE_PIPE] = ACTIONS(3893), - [anon_sym_EQ_TILDE] = ACTIONS(3893), - [anon_sym_EQ_EQ] = ACTIONS(3893), - [anon_sym_EQ] = ACTIONS(3895), - [anon_sym_LT] = ACTIONS(3893), - [anon_sym_GT] = ACTIONS(3893), - [anon_sym_BANG_EQ] = ACTIONS(3893), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(3893), - [anon_sym_LF] = ACTIONS(3893), - [anon_sym_AMP] = ACTIONS(3895), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(4792), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1813] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(4775), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_concatenation] = STATE(2086), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2086), + [sym_regex] = ACTIONS(4798), + [anon_sym_RBRACE] = ACTIONS(4784), + [anon_sym_EQ] = ACTIONS(4800), + [anon_sym_DASH] = ACTIONS(4800), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(4802), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(4800), + [anon_sym_COLON_QMARK] = ACTIONS(4800), + [anon_sym_COLON_DASH] = ACTIONS(4800), + [anon_sym_PERCENT] = ACTIONS(4800), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1814] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(4763), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(4784), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1815] = { - [sym__concat] = ACTIONS(3915), - [anon_sym_SEMI] = ACTIONS(3917), - [anon_sym_esac] = ACTIONS(3915), - [anon_sym_PIPE] = ACTIONS(3917), - [anon_sym_SEMI_SEMI] = ACTIONS(3915), - [anon_sym_PIPE_AMP] = ACTIONS(3915), - [anon_sym_AMP_AMP] = ACTIONS(3915), - [anon_sym_PIPE_PIPE] = ACTIONS(3915), - [anon_sym_EQ_TILDE] = ACTIONS(3915), - [anon_sym_EQ_EQ] = ACTIONS(3915), - [anon_sym_EQ] = ACTIONS(3917), - [anon_sym_LT] = ACTIONS(3915), - [anon_sym_GT] = ACTIONS(3915), - [anon_sym_BANG_EQ] = ACTIONS(3915), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(3915), - [anon_sym_LF] = ACTIONS(3915), - [anon_sym_AMP] = ACTIONS(3917), + [sym_concatenation] = STATE(2088), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2088), + [anon_sym_RBRACE] = ACTIONS(4804), + [anon_sym_EQ] = ACTIONS(4806), + [anon_sym_DASH] = ACTIONS(4806), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(4808), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(4806), + [anon_sym_COLON_QMARK] = ACTIONS(4806), + [anon_sym_COLON_DASH] = ACTIONS(4806), + [anon_sym_PERCENT] = ACTIONS(4806), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1816] = { - [sym__concat] = ACTIONS(3939), - [anon_sym_SEMI] = ACTIONS(3941), - [anon_sym_esac] = ACTIONS(3939), - [anon_sym_PIPE] = ACTIONS(3941), - [anon_sym_SEMI_SEMI] = ACTIONS(3939), - [anon_sym_PIPE_AMP] = ACTIONS(3939), - [anon_sym_AMP_AMP] = ACTIONS(3939), - [anon_sym_PIPE_PIPE] = ACTIONS(3939), - [anon_sym_EQ_TILDE] = ACTIONS(3939), - [anon_sym_EQ_EQ] = ACTIONS(3939), - [anon_sym_EQ] = ACTIONS(3941), - [anon_sym_LT] = ACTIONS(3939), - [anon_sym_GT] = ACTIONS(3939), - [anon_sym_BANG_EQ] = ACTIONS(3939), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(3939), - [anon_sym_LF] = ACTIONS(3939), - [anon_sym_AMP] = ACTIONS(3941), + [sym__heredoc_body_middle] = ACTIONS(3065), + [sym__heredoc_body_end] = ACTIONS(3065), + [anon_sym_DOLLAR] = ACTIONS(3067), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3065), + [sym_comment] = ACTIONS(55), }, [1817] = { - [anon_sym_RPAREN_RPAREN] = ACTIONS(4777), - [anon_sym_AMP_AMP] = ACTIONS(3287), - [anon_sym_PIPE_PIPE] = ACTIONS(3287), - [anon_sym_EQ_TILDE] = ACTIONS(3289), - [anon_sym_EQ_EQ] = ACTIONS(3289), - [anon_sym_EQ] = ACTIONS(3291), - [anon_sym_LT] = ACTIONS(3287), - [anon_sym_GT] = ACTIONS(3287), - [anon_sym_BANG_EQ] = ACTIONS(3287), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(3287), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(4804), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1818] = { - [sym__concat] = ACTIONS(2876), - [anon_sym_SEMI] = ACTIONS(2878), - [anon_sym_SEMI_SEMI] = ACTIONS(2876), - [sym__special_characters] = ACTIONS(2876), - [anon_sym_DQUOTE] = ACTIONS(2876), - [anon_sym_DOLLAR] = ACTIONS(2878), - [sym_raw_string] = ACTIONS(2876), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2876), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2876), - [anon_sym_BQUOTE] = ACTIONS(2876), - [anon_sym_LT_LPAREN] = ACTIONS(2876), - [anon_sym_GT_LPAREN] = ACTIONS(2876), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2878), - [anon_sym_LF] = ACTIONS(2876), - [anon_sym_AMP] = ACTIONS(2876), + [sym_concatenation] = STATE(2086), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2086), + [anon_sym_RBRACE] = ACTIONS(4784), + [anon_sym_EQ] = ACTIONS(4800), + [anon_sym_DASH] = ACTIONS(4800), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(4802), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(4800), + [anon_sym_COLON_QMARK] = ACTIONS(4800), + [anon_sym_COLON_DASH] = ACTIONS(4800), + [anon_sym_PERCENT] = ACTIONS(4800), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1819] = { - [sym__concat] = ACTIONS(2890), - [anon_sym_SEMI] = ACTIONS(2892), - [anon_sym_SEMI_SEMI] = ACTIONS(2890), - [sym__special_characters] = ACTIONS(2890), - [anon_sym_DQUOTE] = ACTIONS(2890), - [anon_sym_DOLLAR] = ACTIONS(2892), - [sym_raw_string] = ACTIONS(2890), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2890), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2890), - [anon_sym_BQUOTE] = ACTIONS(2890), - [anon_sym_LT_LPAREN] = ACTIONS(2890), - [anon_sym_GT_LPAREN] = ACTIONS(2890), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2892), - [anon_sym_LF] = ACTIONS(2890), - [anon_sym_AMP] = ACTIONS(2890), + [sym__concat] = ACTIONS(2959), + [anon_sym_RPAREN] = ACTIONS(2959), + [sym__special_characters] = ACTIONS(2959), + [anon_sym_DQUOTE] = ACTIONS(2959), + [anon_sym_DOLLAR] = ACTIONS(2961), + [sym_raw_string] = ACTIONS(2959), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2959), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2959), + [anon_sym_BQUOTE] = ACTIONS(2959), + [anon_sym_LT_LPAREN] = ACTIONS(2959), + [anon_sym_GT_LPAREN] = ACTIONS(2959), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(2959), }, [1820] = { - [aux_sym_concatenation_repeat1] = STATE(1293), - [sym__concat] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(4779), - [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(2973), + [anon_sym_RPAREN] = ACTIONS(2973), + [sym__special_characters] = ACTIONS(2973), + [anon_sym_DQUOTE] = ACTIONS(2973), + [anon_sym_DOLLAR] = ACTIONS(2975), + [sym_raw_string] = ACTIONS(2973), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2973), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2973), + [anon_sym_BQUOTE] = ACTIONS(2973), + [anon_sym_LT_LPAREN] = ACTIONS(2973), + [anon_sym_GT_LPAREN] = ACTIONS(2973), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(2973), }, [1821] = { - [aux_sym_concatenation_repeat1] = STATE(1293), - [sym__concat] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(4781), - [sym_comment] = ACTIONS(53), + [aux_sym_concatenation_repeat1] = STATE(1366), + [sym__concat] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(4810), + [sym_comment] = ACTIONS(55), }, [1822] = { - [anon_sym_RBRACE] = ACTIONS(4781), - [sym_comment] = ACTIONS(53), + [aux_sym_concatenation_repeat1] = STATE(1366), + [sym__concat] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(4812), + [sym_comment] = ACTIONS(55), }, [1823] = { - [sym_concatenation] = STATE(2067), - [sym_string] = STATE(2066), - [sym_simple_expansion] = STATE(2066), - [sym_string_expansion] = STATE(2066), - [sym_expansion] = STATE(2066), - [sym_command_substitution] = STATE(2066), - [sym_process_substitution] = STATE(2066), - [anon_sym_RBRACE] = ACTIONS(4781), - [sym__special_characters] = ACTIONS(4783), - [anon_sym_DQUOTE] = ACTIONS(1802), - [anon_sym_DOLLAR] = ACTIONS(1804), - [sym_raw_string] = ACTIONS(4785), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1808), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1810), - [anon_sym_BQUOTE] = ACTIONS(1812), - [anon_sym_LT_LPAREN] = ACTIONS(1814), - [anon_sym_GT_LPAREN] = ACTIONS(1814), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4785), + [anon_sym_RBRACE] = ACTIONS(4812), + [sym_comment] = ACTIONS(55), }, [1824] = { - [sym__concat] = ACTIONS(2926), - [anon_sym_SEMI] = ACTIONS(2928), - [anon_sym_SEMI_SEMI] = ACTIONS(2926), - [sym__special_characters] = ACTIONS(2926), - [anon_sym_DQUOTE] = ACTIONS(2926), - [anon_sym_DOLLAR] = ACTIONS(2928), - [sym_raw_string] = ACTIONS(2926), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2926), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2926), - [anon_sym_BQUOTE] = ACTIONS(2926), - [anon_sym_LT_LPAREN] = ACTIONS(2926), - [anon_sym_GT_LPAREN] = ACTIONS(2926), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2928), - [anon_sym_LF] = ACTIONS(2926), - [anon_sym_AMP] = ACTIONS(2926), + [sym_concatenation] = STATE(2093), + [sym_string] = STATE(2092), + [sym_simple_expansion] = STATE(2092), + [sym_string_expansion] = STATE(2092), + [sym_expansion] = STATE(2092), + [sym_command_substitution] = STATE(2092), + [sym_process_substitution] = STATE(2092), + [anon_sym_RBRACE] = ACTIONS(4812), + [sym__special_characters] = ACTIONS(4814), + [anon_sym_DQUOTE] = ACTIONS(1841), + [anon_sym_DOLLAR] = ACTIONS(1843), + [sym_raw_string] = ACTIONS(4816), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1849), + [anon_sym_BQUOTE] = ACTIONS(1851), + [anon_sym_LT_LPAREN] = ACTIONS(1853), + [anon_sym_GT_LPAREN] = ACTIONS(1853), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(4816), }, [1825] = { - [sym_comment] = ACTIONS(265), - [sym_regex_without_right_brace] = ACTIONS(4787), + [sym__concat] = ACTIONS(3009), + [anon_sym_RPAREN] = ACTIONS(3009), + [sym__special_characters] = ACTIONS(3009), + [anon_sym_DQUOTE] = ACTIONS(3009), + [anon_sym_DOLLAR] = ACTIONS(3011), + [sym_raw_string] = ACTIONS(3009), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3009), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3009), + [anon_sym_BQUOTE] = ACTIONS(3009), + [anon_sym_LT_LPAREN] = ACTIONS(3009), + [anon_sym_GT_LPAREN] = ACTIONS(3009), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(3009), }, [1826] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(4789), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_concatenation] = STATE(2096), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2096), + [sym_regex] = ACTIONS(4818), + [anon_sym_RBRACE] = ACTIONS(4820), + [anon_sym_EQ] = ACTIONS(4822), + [anon_sym_DASH] = ACTIONS(4822), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(4824), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(4822), + [anon_sym_COLON_QMARK] = ACTIONS(4822), + [anon_sym_COLON_DASH] = ACTIONS(4822), + [anon_sym_PERCENT] = ACTIONS(4822), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1827] = { - [sym_comment] = ACTIONS(265), - [sym_regex_without_right_brace] = ACTIONS(4791), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(4820), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1828] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(4781), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_concatenation] = STATE(2098), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2098), + [sym_regex] = ACTIONS(4826), + [anon_sym_RBRACE] = ACTIONS(4812), + [anon_sym_EQ] = ACTIONS(4828), + [anon_sym_DASH] = ACTIONS(4828), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(4830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(4828), + [anon_sym_COLON_QMARK] = ACTIONS(4828), + [anon_sym_COLON_DASH] = ACTIONS(4828), + [anon_sym_PERCENT] = ACTIONS(4828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1829] = { - [sym_concatenation] = STATE(2072), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(2072), - [anon_sym_RBRACE] = ACTIONS(4793), - [anon_sym_EQ] = ACTIONS(4795), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(4797), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(4795), - [anon_sym_COLON_QMARK] = ACTIONS(4795), - [anon_sym_COLON_DASH] = ACTIONS(4795), - [anon_sym_PERCENT] = ACTIONS(4795), - [anon_sym_DASH] = ACTIONS(4795), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(4812), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1830] = { - [sym__concat] = ACTIONS(2990), - [anon_sym_SEMI] = ACTIONS(2992), - [anon_sym_SEMI_SEMI] = ACTIONS(2990), - [sym__special_characters] = ACTIONS(2990), - [anon_sym_DQUOTE] = ACTIONS(2990), - [anon_sym_DOLLAR] = ACTIONS(2992), - [sym_raw_string] = ACTIONS(2990), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2990), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2990), - [anon_sym_BQUOTE] = ACTIONS(2990), - [anon_sym_LT_LPAREN] = ACTIONS(2990), - [anon_sym_GT_LPAREN] = ACTIONS(2990), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2992), - [anon_sym_LF] = ACTIONS(2990), - [anon_sym_AMP] = ACTIONS(2990), + [sym_concatenation] = STATE(2100), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2100), + [anon_sym_RBRACE] = ACTIONS(4832), + [anon_sym_EQ] = ACTIONS(4834), + [anon_sym_DASH] = ACTIONS(4834), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(4836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(4834), + [anon_sym_COLON_QMARK] = ACTIONS(4834), + [anon_sym_COLON_DASH] = ACTIONS(4834), + [anon_sym_PERCENT] = ACTIONS(4834), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1831] = { - [sym_concatenation] = STATE(2073), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(2073), - [anon_sym_RBRACE] = ACTIONS(4781), - [anon_sym_EQ] = ACTIONS(4799), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(4801), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(4799), - [anon_sym_COLON_QMARK] = ACTIONS(4799), - [anon_sym_COLON_DASH] = ACTIONS(4799), - [anon_sym_PERCENT] = ACTIONS(4799), - [anon_sym_DASH] = ACTIONS(4799), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym__concat] = ACTIONS(3065), + [anon_sym_RPAREN] = ACTIONS(3065), + [sym__special_characters] = ACTIONS(3065), + [anon_sym_DQUOTE] = ACTIONS(3065), + [anon_sym_DOLLAR] = ACTIONS(3067), + [sym_raw_string] = ACTIONS(3065), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3065), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3065), + [anon_sym_BQUOTE] = ACTIONS(3065), + [anon_sym_LT_LPAREN] = ACTIONS(3065), + [anon_sym_GT_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(3065), }, [1832] = { - [sym__concat] = ACTIONS(3033), - [anon_sym_SEMI] = ACTIONS(3035), - [anon_sym_SEMI_SEMI] = ACTIONS(3033), - [sym__special_characters] = ACTIONS(3033), - [anon_sym_DQUOTE] = ACTIONS(3033), - [anon_sym_DOLLAR] = ACTIONS(3035), - [sym_raw_string] = ACTIONS(3033), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3033), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3033), - [anon_sym_BQUOTE] = ACTIONS(3033), - [anon_sym_LT_LPAREN] = ACTIONS(3033), - [anon_sym_GT_LPAREN] = ACTIONS(3033), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3035), - [anon_sym_LF] = ACTIONS(3033), - [anon_sym_AMP] = ACTIONS(3033), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(4832), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1833] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(4803), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(901), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), + [sym_concatenation] = STATE(2098), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2098), + [anon_sym_RBRACE] = ACTIONS(4812), + [anon_sym_EQ] = ACTIONS(4828), + [anon_sym_DASH] = ACTIONS(4828), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(4830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(4828), + [anon_sym_COLON_QMARK] = ACTIONS(4828), + [anon_sym_COLON_DASH] = ACTIONS(4828), + [anon_sym_PERCENT] = ACTIONS(4828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1834] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(4803), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), + [sym__concat] = ACTIONS(3120), + [anon_sym_RPAREN] = ACTIONS(3120), + [sym__special_characters] = ACTIONS(3120), + [anon_sym_DQUOTE] = ACTIONS(3120), + [anon_sym_DOLLAR] = ACTIONS(3122), + [sym_raw_string] = ACTIONS(3120), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3120), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3120), + [anon_sym_BQUOTE] = ACTIONS(3120), + [anon_sym_LT_LPAREN] = ACTIONS(3120), + [anon_sym_GT_LPAREN] = ACTIONS(3120), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(3120), }, [1835] = { - [sym__concat] = ACTIONS(3071), - [anon_sym_SEMI] = ACTIONS(3073), - [anon_sym_SEMI_SEMI] = ACTIONS(3071), - [sym__special_characters] = ACTIONS(3071), - [anon_sym_DQUOTE] = ACTIONS(3071), - [anon_sym_DOLLAR] = ACTIONS(3073), - [sym_raw_string] = ACTIONS(3071), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3071), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3071), - [anon_sym_BQUOTE] = ACTIONS(3071), - [anon_sym_LT_LPAREN] = ACTIONS(3071), - [anon_sym_GT_LPAREN] = ACTIONS(3071), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3073), - [anon_sym_LF] = ACTIONS(3071), - [anon_sym_AMP] = ACTIONS(3071), + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(4838), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), }, [1836] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(4805), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(901), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(4838), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), }, [1837] = { - [aux_sym_concatenation_repeat1] = STATE(1839), - [sym__concat] = ACTIONS(693), - [anon_sym_SEMI] = ACTIONS(1055), - [anon_sym_PIPE] = ACTIONS(1055), - [anon_sym_SEMI_SEMI] = ACTIONS(1053), - [anon_sym_PIPE_AMP] = ACTIONS(1053), - [anon_sym_AMP_AMP] = ACTIONS(1053), - [anon_sym_PIPE_PIPE] = ACTIONS(1053), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1053), - [anon_sym_AMP] = ACTIONS(1055), + [sym__concat] = ACTIONS(3158), + [anon_sym_RPAREN] = ACTIONS(3158), + [sym__special_characters] = ACTIONS(3158), + [anon_sym_DQUOTE] = ACTIONS(3158), + [anon_sym_DOLLAR] = ACTIONS(3160), + [sym_raw_string] = ACTIONS(3158), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3158), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3158), + [anon_sym_BQUOTE] = ACTIONS(3158), + [anon_sym_LT_LPAREN] = ACTIONS(3158), + [anon_sym_GT_LPAREN] = ACTIONS(3158), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(3158), }, [1838] = { - [aux_sym_concatenation_repeat1] = STATE(1839), - [sym__concat] = ACTIONS(693), - [anon_sym_SEMI] = ACTIONS(1059), - [anon_sym_PIPE] = ACTIONS(1059), - [anon_sym_SEMI_SEMI] = ACTIONS(1057), - [anon_sym_PIPE_AMP] = ACTIONS(1057), - [anon_sym_AMP_AMP] = ACTIONS(1057), - [anon_sym_PIPE_PIPE] = ACTIONS(1057), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(4840), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), }, [1839] = { - [aux_sym_concatenation_repeat1] = STATE(2076), - [sym__concat] = ACTIONS(693), - [anon_sym_SEMI] = ACTIONS(767), - [anon_sym_PIPE] = ACTIONS(767), - [anon_sym_SEMI_SEMI] = ACTIONS(765), - [anon_sym_PIPE_AMP] = ACTIONS(765), - [anon_sym_AMP_AMP] = ACTIONS(765), - [anon_sym_PIPE_PIPE] = ACTIONS(765), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(765), - [anon_sym_AMP] = ACTIONS(767), + [sym_file_descriptor] = ACTIONS(3934), + [sym__concat] = ACTIONS(3934), + [sym_variable_name] = ACTIONS(3934), + [ts_builtin_sym_end] = ACTIONS(3934), + [anon_sym_SEMI] = ACTIONS(3936), + [anon_sym_PIPE] = ACTIONS(3936), + [anon_sym_RPAREN] = ACTIONS(3934), + [anon_sym_SEMI_SEMI] = ACTIONS(3934), + [anon_sym_PIPE_AMP] = ACTIONS(3934), + [anon_sym_AMP_AMP] = ACTIONS(3934), + [anon_sym_PIPE_PIPE] = ACTIONS(3934), + [anon_sym_LT] = ACTIONS(3936), + [anon_sym_GT] = ACTIONS(3936), + [anon_sym_GT_GT] = ACTIONS(3934), + [anon_sym_AMP_GT] = ACTIONS(3936), + [anon_sym_AMP_GT_GT] = ACTIONS(3934), + [anon_sym_LT_AMP] = ACTIONS(3934), + [anon_sym_GT_AMP] = ACTIONS(3934), + [sym__special_characters] = ACTIONS(3934), + [anon_sym_DQUOTE] = ACTIONS(3934), + [anon_sym_DOLLAR] = ACTIONS(3936), + [sym_raw_string] = ACTIONS(3934), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3934), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3934), + [anon_sym_BQUOTE] = ACTIONS(3934), + [anon_sym_LT_LPAREN] = ACTIONS(3934), + [anon_sym_GT_LPAREN] = ACTIONS(3934), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(3936), + [anon_sym_LF] = ACTIONS(3934), + [anon_sym_AMP] = ACTIONS(3936), }, [1840] = { - [aux_sym_concatenation_repeat1] = STATE(1842), - [sym_file_descriptor] = ACTIONS(1053), - [sym__concat] = ACTIONS(3592), - [anon_sym_SEMI] = ACTIONS(1055), - [anon_sym_PIPE] = ACTIONS(1055), - [anon_sym_SEMI_SEMI] = ACTIONS(1053), - [anon_sym_PIPE_AMP] = ACTIONS(1053), - [anon_sym_AMP_AMP] = ACTIONS(1053), - [anon_sym_PIPE_PIPE] = ACTIONS(1053), - [anon_sym_LT] = ACTIONS(1055), - [anon_sym_GT] = ACTIONS(1055), - [anon_sym_GT_GT] = ACTIONS(1053), - [anon_sym_AMP_GT] = ACTIONS(1055), - [anon_sym_AMP_GT_GT] = ACTIONS(1053), - [anon_sym_LT_AMP] = ACTIONS(1053), - [anon_sym_GT_AMP] = ACTIONS(1053), - [anon_sym_LT_LT] = ACTIONS(1055), - [anon_sym_LT_LT_DASH] = ACTIONS(1053), - [anon_sym_LT_LT_LT] = ACTIONS(1053), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1053), - [anon_sym_AMP] = ACTIONS(1055), + [sym_file_descriptor] = ACTIONS(3942), + [sym__concat] = ACTIONS(3942), + [sym_variable_name] = ACTIONS(3942), + [ts_builtin_sym_end] = ACTIONS(3942), + [anon_sym_SEMI] = ACTIONS(3944), + [anon_sym_PIPE] = ACTIONS(3944), + [anon_sym_RPAREN] = ACTIONS(3942), + [anon_sym_SEMI_SEMI] = ACTIONS(3942), + [anon_sym_PIPE_AMP] = ACTIONS(3942), + [anon_sym_AMP_AMP] = ACTIONS(3942), + [anon_sym_PIPE_PIPE] = ACTIONS(3942), + [anon_sym_LT] = ACTIONS(3944), + [anon_sym_GT] = ACTIONS(3944), + [anon_sym_GT_GT] = ACTIONS(3942), + [anon_sym_AMP_GT] = ACTIONS(3944), + [anon_sym_AMP_GT_GT] = ACTIONS(3942), + [anon_sym_LT_AMP] = ACTIONS(3942), + [anon_sym_GT_AMP] = ACTIONS(3942), + [sym__special_characters] = ACTIONS(3942), + [anon_sym_DQUOTE] = ACTIONS(3942), + [anon_sym_DOLLAR] = ACTIONS(3944), + [sym_raw_string] = ACTIONS(3942), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3942), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3942), + [anon_sym_BQUOTE] = ACTIONS(3942), + [anon_sym_LT_LPAREN] = ACTIONS(3942), + [anon_sym_GT_LPAREN] = ACTIONS(3942), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(3944), + [anon_sym_LF] = ACTIONS(3942), + [anon_sym_AMP] = ACTIONS(3944), }, [1841] = { - [aux_sym_concatenation_repeat1] = STATE(1842), - [sym_file_descriptor] = ACTIONS(1057), - [sym__concat] = ACTIONS(3592), - [anon_sym_SEMI] = ACTIONS(1059), - [anon_sym_PIPE] = ACTIONS(1059), - [anon_sym_SEMI_SEMI] = ACTIONS(1057), - [anon_sym_PIPE_AMP] = ACTIONS(1057), - [anon_sym_AMP_AMP] = ACTIONS(1057), - [anon_sym_PIPE_PIPE] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_GT_GT] = ACTIONS(1057), - [anon_sym_AMP_GT] = ACTIONS(1059), - [anon_sym_AMP_GT_GT] = ACTIONS(1057), - [anon_sym_LT_AMP] = ACTIONS(1057), - [anon_sym_GT_AMP] = ACTIONS(1057), - [anon_sym_LT_LT] = ACTIONS(1059), - [anon_sym_LT_LT_DASH] = ACTIONS(1057), - [anon_sym_LT_LT_LT] = ACTIONS(1057), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), + [aux_sym_concatenation_repeat1] = STATE(1366), + [sym__concat] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(4842), + [sym_comment] = ACTIONS(55), }, [1842] = { - [aux_sym_concatenation_repeat1] = STATE(2077), - [sym_file_descriptor] = ACTIONS(765), - [sym__concat] = ACTIONS(3592), - [anon_sym_SEMI] = ACTIONS(767), - [anon_sym_PIPE] = ACTIONS(767), - [anon_sym_SEMI_SEMI] = ACTIONS(765), - [anon_sym_PIPE_AMP] = ACTIONS(765), - [anon_sym_AMP_AMP] = ACTIONS(765), - [anon_sym_PIPE_PIPE] = ACTIONS(765), - [anon_sym_LT] = ACTIONS(767), - [anon_sym_GT] = ACTIONS(767), - [anon_sym_GT_GT] = ACTIONS(765), - [anon_sym_AMP_GT] = ACTIONS(767), - [anon_sym_AMP_GT_GT] = ACTIONS(765), - [anon_sym_LT_AMP] = ACTIONS(765), - [anon_sym_GT_AMP] = ACTIONS(765), - [anon_sym_LT_LT] = ACTIONS(767), - [anon_sym_LT_LT_DASH] = ACTIONS(765), - [anon_sym_LT_LT_LT] = ACTIONS(765), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(765), - [anon_sym_AMP] = ACTIONS(767), + [aux_sym_concatenation_repeat1] = STATE(1366), + [sym__concat] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(4844), + [sym_comment] = ACTIONS(55), }, [1843] = { - [sym__terminated_statement] = STATE(1095), - [sym_for_statement] = STATE(521), - [sym_c_style_for_statement] = STATE(521), - [sym_while_statement] = STATE(521), - [sym_if_statement] = STATE(521), - [sym_case_statement] = STATE(521), - [sym_function_definition] = STATE(521), - [sym_subshell] = STATE(521), - [sym_pipeline] = STATE(521), - [sym_list] = STATE(521), - [sym_negated_command] = STATE(521), - [sym_test_command] = STATE(521), - [sym_declaration_command] = STATE(521), - [sym_unset_command] = STATE(521), - [sym_command] = STATE(521), - [sym_command_name] = STATE(51), - [sym_variable_assignment] = STATE(522), - [sym_subscript] = STATE(53), - [sym_file_redirect] = STATE(54), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(47), - [sym_simple_expansion] = STATE(47), - [sym_string_expansion] = STATE(47), - [sym_expansion] = STATE(47), - [sym_command_substitution] = STATE(47), - [sym_process_substitution] = STATE(47), - [aux_sym__statements_repeat1] = STATE(1095), - [aux_sym_command_repeat1] = STATE(54), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(69), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(71), - [anon_sym_if] = ACTIONS(15), - [anon_sym_fi] = ACTIONS(4807), - [anon_sym_elif] = ACTIONS(4807), - [anon_sym_else] = ACTIONS(4807), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(73), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(75), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_LBRACK_LBRACK] = ACTIONS(79), - [anon_sym_declare] = ACTIONS(81), - [anon_sym_typeset] = ACTIONS(81), - [anon_sym_export] = ACTIONS(81), - [anon_sym_readonly] = ACTIONS(81), - [anon_sym_local] = ACTIONS(81), - [anon_sym_unset] = ACTIONS(83), - [anon_sym_unsetenv] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(87), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(89), + [anon_sym_RBRACE] = ACTIONS(4844), + [sym_comment] = ACTIONS(55), }, [1844] = { - [ts_builtin_sym_end] = ACTIONS(4809), - [anon_sym_SEMI] = ACTIONS(4811), - [anon_sym_esac] = ACTIONS(4809), - [anon_sym_PIPE] = ACTIONS(4811), - [anon_sym_RPAREN] = ACTIONS(4809), - [anon_sym_SEMI_SEMI] = ACTIONS(4809), - [anon_sym_PIPE_AMP] = ACTIONS(4809), - [anon_sym_AMP_AMP] = ACTIONS(4809), - [anon_sym_PIPE_PIPE] = ACTIONS(4809), - [anon_sym_BQUOTE] = ACTIONS(4809), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(4809), - [anon_sym_AMP] = ACTIONS(4811), + [sym_concatenation] = STATE(2106), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2106), + [anon_sym_RBRACE] = ACTIONS(4846), + [anon_sym_EQ] = ACTIONS(4848), + [anon_sym_DASH] = ACTIONS(4848), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(4850), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(4848), + [anon_sym_COLON_QMARK] = ACTIONS(4848), + [anon_sym_COLON_DASH] = ACTIONS(4848), + [anon_sym_PERCENT] = ACTIONS(4848), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1845] = { - [aux_sym_concatenation_repeat1] = STATE(1518), - [sym__concat] = ACTIONS(623), - [anon_sym_PIPE] = ACTIONS(4813), - [anon_sym_RPAREN] = ACTIONS(4813), - [sym_comment] = ACTIONS(53), + [sym_file_descriptor] = ACTIONS(3998), + [sym__concat] = ACTIONS(3998), + [sym_variable_name] = ACTIONS(3998), + [ts_builtin_sym_end] = ACTIONS(3998), + [anon_sym_SEMI] = ACTIONS(4000), + [anon_sym_PIPE] = ACTIONS(4000), + [anon_sym_RPAREN] = ACTIONS(3998), + [anon_sym_SEMI_SEMI] = ACTIONS(3998), + [anon_sym_PIPE_AMP] = ACTIONS(3998), + [anon_sym_AMP_AMP] = ACTIONS(3998), + [anon_sym_PIPE_PIPE] = ACTIONS(3998), + [anon_sym_LT] = ACTIONS(4000), + [anon_sym_GT] = ACTIONS(4000), + [anon_sym_GT_GT] = ACTIONS(3998), + [anon_sym_AMP_GT] = ACTIONS(4000), + [anon_sym_AMP_GT_GT] = ACTIONS(3998), + [anon_sym_LT_AMP] = ACTIONS(3998), + [anon_sym_GT_AMP] = ACTIONS(3998), + [sym__special_characters] = ACTIONS(3998), + [anon_sym_DQUOTE] = ACTIONS(3998), + [anon_sym_DOLLAR] = ACTIONS(4000), + [sym_raw_string] = ACTIONS(3998), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3998), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3998), + [anon_sym_BQUOTE] = ACTIONS(3998), + [anon_sym_LT_LPAREN] = ACTIONS(3998), + [anon_sym_GT_LPAREN] = ACTIONS(3998), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(4000), + [anon_sym_LF] = ACTIONS(3998), + [anon_sym_AMP] = ACTIONS(4000), }, [1846] = { - [aux_sym_concatenation_repeat1] = STATE(1518), - [sym__concat] = ACTIONS(623), - [anon_sym_PIPE] = ACTIONS(4815), - [anon_sym_RPAREN] = ACTIONS(4815), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(4846), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1847] = { - [anon_sym_PIPE] = ACTIONS(4815), - [anon_sym_RPAREN] = ACTIONS(4815), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(2107), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2107), + [anon_sym_RBRACE] = ACTIONS(4844), + [anon_sym_EQ] = ACTIONS(4852), + [anon_sym_DASH] = ACTIONS(4852), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(4854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(4852), + [anon_sym_COLON_QMARK] = ACTIONS(4852), + [anon_sym_COLON_DASH] = ACTIONS(4852), + [anon_sym_PERCENT] = ACTIONS(4852), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1848] = { - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_EQ] = ACTIONS(4817), - [anon_sym_PLUS_EQ] = ACTIONS(4817), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(4844), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1849] = { - [sym__terminated_statement] = STATE(2079), - [sym_for_statement] = STATE(50), - [sym_c_style_for_statement] = STATE(50), - [sym_while_statement] = STATE(50), - [sym_if_statement] = STATE(50), - [sym_case_statement] = STATE(50), - [sym_function_definition] = STATE(50), - [sym_subshell] = STATE(50), - [sym_pipeline] = STATE(50), - [sym_list] = STATE(50), - [sym_negated_command] = STATE(50), - [sym_test_command] = STATE(50), - [sym_declaration_command] = STATE(50), - [sym_unset_command] = STATE(50), - [sym_command] = STATE(50), - [sym_command_name] = STATE(51), - [sym_variable_assignment] = STATE(52), - [sym_subscript] = STATE(53), - [sym_file_redirect] = STATE(54), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(47), - [sym_simple_expansion] = STATE(47), - [sym_string_expansion] = STATE(47), - [sym_expansion] = STATE(47), - [sym_command_substitution] = STATE(47), - [sym_process_substitution] = STATE(47), - [aux_sym_command_repeat1] = STATE(54), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(69), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(71), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(73), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(75), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_LBRACK_LBRACK] = ACTIONS(79), - [anon_sym_declare] = ACTIONS(81), - [anon_sym_typeset] = ACTIONS(81), - [anon_sym_export] = ACTIONS(81), - [anon_sym_readonly] = ACTIONS(81), - [anon_sym_local] = ACTIONS(81), - [anon_sym_unset] = ACTIONS(83), - [anon_sym_unsetenv] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(87), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(89), + [sym_file_descriptor] = ACTIONS(4043), + [sym__concat] = ACTIONS(4043), + [sym_variable_name] = ACTIONS(4043), + [ts_builtin_sym_end] = ACTIONS(4043), + [anon_sym_SEMI] = ACTIONS(4045), + [anon_sym_PIPE] = ACTIONS(4045), + [anon_sym_RPAREN] = ACTIONS(4043), + [anon_sym_SEMI_SEMI] = ACTIONS(4043), + [anon_sym_PIPE_AMP] = ACTIONS(4043), + [anon_sym_AMP_AMP] = ACTIONS(4043), + [anon_sym_PIPE_PIPE] = ACTIONS(4043), + [anon_sym_LT] = ACTIONS(4045), + [anon_sym_GT] = ACTIONS(4045), + [anon_sym_GT_GT] = ACTIONS(4043), + [anon_sym_AMP_GT] = ACTIONS(4045), + [anon_sym_AMP_GT_GT] = ACTIONS(4043), + [anon_sym_LT_AMP] = ACTIONS(4043), + [anon_sym_GT_AMP] = ACTIONS(4043), + [sym__special_characters] = ACTIONS(4043), + [anon_sym_DQUOTE] = ACTIONS(4043), + [anon_sym_DOLLAR] = ACTIONS(4045), + [sym_raw_string] = ACTIONS(4043), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4043), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4043), + [anon_sym_BQUOTE] = ACTIONS(4043), + [anon_sym_LT_LPAREN] = ACTIONS(4043), + [anon_sym_GT_LPAREN] = ACTIONS(4043), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(4045), + [anon_sym_LF] = ACTIONS(4043), + [anon_sym_AMP] = ACTIONS(4045), }, [1850] = { - [anon_sym_esac] = ACTIONS(4819), - [sym__special_characters] = ACTIONS(4821), - [anon_sym_DQUOTE] = ACTIONS(4821), - [anon_sym_DOLLAR] = ACTIONS(4823), - [sym_raw_string] = ACTIONS(4821), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4821), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4821), - [anon_sym_BQUOTE] = ACTIONS(4821), - [anon_sym_LT_LPAREN] = ACTIONS(4821), - [anon_sym_GT_LPAREN] = ACTIONS(4821), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4823), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(4856), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1851] = { - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4825), + [sym_file_descriptor] = ACTIONS(4065), + [sym__concat] = ACTIONS(4065), + [sym_variable_name] = ACTIONS(4065), + [ts_builtin_sym_end] = ACTIONS(4065), + [anon_sym_SEMI] = ACTIONS(4067), + [anon_sym_PIPE] = ACTIONS(4067), + [anon_sym_RPAREN] = ACTIONS(4065), + [anon_sym_SEMI_SEMI] = ACTIONS(4065), + [anon_sym_PIPE_AMP] = ACTIONS(4065), + [anon_sym_AMP_AMP] = ACTIONS(4065), + [anon_sym_PIPE_PIPE] = ACTIONS(4065), + [anon_sym_LT] = ACTIONS(4067), + [anon_sym_GT] = ACTIONS(4067), + [anon_sym_GT_GT] = ACTIONS(4065), + [anon_sym_AMP_GT] = ACTIONS(4067), + [anon_sym_AMP_GT_GT] = ACTIONS(4065), + [anon_sym_LT_AMP] = ACTIONS(4065), + [anon_sym_GT_AMP] = ACTIONS(4065), + [sym__special_characters] = ACTIONS(4065), + [anon_sym_DQUOTE] = ACTIONS(4065), + [anon_sym_DOLLAR] = ACTIONS(4067), + [sym_raw_string] = ACTIONS(4065), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4065), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4065), + [anon_sym_BQUOTE] = ACTIONS(4065), + [anon_sym_LT_LPAREN] = ACTIONS(4065), + [anon_sym_GT_LPAREN] = ACTIONS(4065), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(4067), + [anon_sym_LF] = ACTIONS(4065), + [anon_sym_AMP] = ACTIONS(4067), }, [1852] = { - [sym_subshell] = STATE(84), - [sym_test_command] = STATE(84), - [sym_command] = STATE(84), - [sym_command_name] = STATE(1867), - [sym_variable_assignment] = STATE(1872), - [sym_subscript] = STATE(85), - [sym_file_redirect] = STATE(1872), - [sym_concatenation] = STATE(1870), - [sym_string] = STATE(1860), - [sym_simple_expansion] = STATE(1860), - [sym_string_expansion] = STATE(1860), - [sym_expansion] = STATE(1860), - [sym_command_substitution] = STATE(1860), - [sym_process_substitution] = STATE(1860), - [aux_sym_command_repeat1] = STATE(1872), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(4257), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4259), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(4265), - [anon_sym_DQUOTE] = ACTIONS(4267), - [anon_sym_DOLLAR] = ACTIONS(4269), - [sym_raw_string] = ACTIONS(4271), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4273), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4275), - [anon_sym_BQUOTE] = ACTIONS(4277), - [anon_sym_LT_LPAREN] = ACTIONS(4279), - [anon_sym_GT_LPAREN] = ACTIONS(4279), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4271), + [sym_file_descriptor] = ACTIONS(4089), + [sym__concat] = ACTIONS(4089), + [sym_variable_name] = ACTIONS(4089), + [ts_builtin_sym_end] = ACTIONS(4089), + [anon_sym_SEMI] = ACTIONS(4091), + [anon_sym_PIPE] = ACTIONS(4091), + [anon_sym_RPAREN] = ACTIONS(4089), + [anon_sym_SEMI_SEMI] = ACTIONS(4089), + [anon_sym_PIPE_AMP] = ACTIONS(4089), + [anon_sym_AMP_AMP] = ACTIONS(4089), + [anon_sym_PIPE_PIPE] = ACTIONS(4089), + [anon_sym_LT] = ACTIONS(4091), + [anon_sym_GT] = ACTIONS(4091), + [anon_sym_GT_GT] = ACTIONS(4089), + [anon_sym_AMP_GT] = ACTIONS(4091), + [anon_sym_AMP_GT_GT] = ACTIONS(4089), + [anon_sym_LT_AMP] = ACTIONS(4089), + [anon_sym_GT_AMP] = ACTIONS(4089), + [sym__special_characters] = ACTIONS(4089), + [anon_sym_DQUOTE] = ACTIONS(4089), + [anon_sym_DOLLAR] = ACTIONS(4091), + [sym_raw_string] = ACTIONS(4089), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4089), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4089), + [anon_sym_BQUOTE] = ACTIONS(4089), + [anon_sym_LT_LPAREN] = ACTIONS(4089), + [anon_sym_GT_LPAREN] = ACTIONS(4089), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(4091), + [anon_sym_LF] = ACTIONS(4089), + [anon_sym_AMP] = ACTIONS(4091), }, [1853] = { - [sym__expression] = STATE(2081), - [sym_binary_expression] = STATE(2081), - [sym_unary_expression] = STATE(2081), - [sym_parenthesized_expression] = STATE(2081), - [sym_concatenation] = STATE(2081), - [sym_string] = STATE(91), - [sym_simple_expansion] = STATE(91), - [sym_string_expansion] = STATE(91), - [sym_expansion] = STATE(91), - [sym_command_substitution] = STATE(91), - [sym_process_substitution] = STATE(91), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(135), - [sym__special_characters] = ACTIONS(137), - [anon_sym_DQUOTE] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(141), - [sym_raw_string] = ACTIONS(143), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(145), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(147), - [anon_sym_BQUOTE] = ACTIONS(149), - [anon_sym_LT_LPAREN] = ACTIONS(151), - [anon_sym_GT_LPAREN] = ACTIONS(151), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(153), - [sym_test_operator] = ACTIONS(155), + [ts_builtin_sym_end] = ACTIONS(4858), + [anon_sym_SEMI] = ACTIONS(4860), + [anon_sym_esac] = ACTIONS(4858), + [anon_sym_PIPE] = ACTIONS(4860), + [anon_sym_RPAREN] = ACTIONS(4858), + [anon_sym_SEMI_SEMI] = ACTIONS(4858), + [anon_sym_PIPE_AMP] = ACTIONS(4858), + [anon_sym_AMP_AMP] = ACTIONS(4858), + [anon_sym_PIPE_PIPE] = ACTIONS(4858), + [anon_sym_BQUOTE] = ACTIONS(4858), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(4858), + [anon_sym_AMP] = ACTIONS(4860), }, [1854] = { - [sym__expression] = STATE(2082), - [sym_binary_expression] = STATE(2082), - [sym_unary_expression] = STATE(2082), - [sym_parenthesized_expression] = STATE(2082), - [sym_concatenation] = STATE(2082), - [sym_string] = STATE(102), - [sym_simple_expansion] = STATE(102), - [sym_string_expansion] = STATE(102), - [sym_expansion] = STATE(102), - [sym_command_substitution] = STATE(102), - [sym_process_substitution] = STATE(102), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_BANG] = ACTIONS(159), - [sym__special_characters] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(163), - [anon_sym_DOLLAR] = ACTIONS(165), - [sym_raw_string] = ACTIONS(167), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(169), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(171), - [anon_sym_BQUOTE] = ACTIONS(173), - [anon_sym_LT_LPAREN] = ACTIONS(175), - [anon_sym_GT_LPAREN] = ACTIONS(175), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(177), - [sym_test_operator] = ACTIONS(179), + [ts_builtin_sym_end] = ACTIONS(2594), + [anon_sym_SEMI] = ACTIONS(2596), + [anon_sym_esac] = ACTIONS(2594), + [anon_sym_PIPE] = ACTIONS(2596), + [anon_sym_RPAREN] = ACTIONS(2594), + [anon_sym_SEMI_SEMI] = ACTIONS(2594), + [anon_sym_PIPE_AMP] = ACTIONS(2594), + [anon_sym_AMP_AMP] = ACTIONS(2594), + [anon_sym_PIPE_PIPE] = ACTIONS(2594), + [anon_sym_BQUOTE] = ACTIONS(2594), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2594), + [anon_sym_AMP] = ACTIONS(2596), }, [1855] = { - [sym_variable_assignment] = STATE(2093), - [sym_subscript] = STATE(2092), - [sym_concatenation] = STATE(2093), - [sym_string] = STATE(2087), - [sym_simple_expansion] = STATE(2087), - [sym_string_expansion] = STATE(2087), - [sym_expansion] = STATE(2087), - [sym_command_substitution] = STATE(2087), - [sym_process_substitution] = STATE(2087), - [aux_sym_declaration_command_repeat1] = STATE(2093), - [sym_variable_name] = ACTIONS(4827), - [anon_sym_SEMI] = ACTIONS(185), - [anon_sym_esac] = ACTIONS(185), - [anon_sym_PIPE] = ACTIONS(185), - [anon_sym_SEMI_SEMI] = ACTIONS(183), - [anon_sym_PIPE_AMP] = ACTIONS(183), - [anon_sym_AMP_AMP] = ACTIONS(183), - [anon_sym_PIPE_PIPE] = ACTIONS(183), - [sym__special_characters] = ACTIONS(4829), - [anon_sym_DQUOTE] = ACTIONS(4831), - [anon_sym_DOLLAR] = ACTIONS(4833), - [sym_raw_string] = ACTIONS(4835), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4837), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4839), - [anon_sym_BQUOTE] = ACTIONS(4841), - [anon_sym_LT_LPAREN] = ACTIONS(4843), - [anon_sym_GT_LPAREN] = ACTIONS(4843), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4845), - [sym_word] = ACTIONS(4847), - [anon_sym_LF] = ACTIONS(183), - [anon_sym_AMP] = ACTIONS(185), + [sym__terminated_statement] = STATE(1234), + [sym_for_statement] = STATE(751), + [sym_c_style_for_statement] = STATE(751), + [sym_while_statement] = STATE(751), + [sym_if_statement] = STATE(751), + [sym_case_statement] = STATE(751), + [sym_function_definition] = STATE(751), + [sym_subshell] = STATE(751), + [sym_pipeline] = STATE(751), + [sym_list] = STATE(751), + [sym_negated_command] = STATE(751), + [sym_test_command] = STATE(751), + [sym_declaration_command] = STATE(751), + [sym_unset_command] = STATE(751), + [sym_command] = STATE(751), + [sym_command_name] = STATE(64), + [sym_variable_assignment] = STATE(752), + [sym_subscript] = STATE(66), + [sym_file_redirect] = STATE(67), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(60), + [sym_simple_expansion] = STATE(60), + [sym_string_expansion] = STATE(60), + [sym_expansion] = STATE(60), + [sym_command_substitution] = STATE(60), + [sym_process_substitution] = STATE(60), + [aux_sym__statements_repeat1] = STATE(1234), + [aux_sym_command_repeat1] = STATE(67), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(95), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(97), + [anon_sym_while] = ACTIONS(99), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(101), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(4862), + [anon_sym_BANG] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_LBRACK] = ACTIONS(107), + [anon_sym_declare] = ACTIONS(109), + [anon_sym_typeset] = ACTIONS(109), + [anon_sym_export] = ACTIONS(109), + [anon_sym_readonly] = ACTIONS(109), + [anon_sym_local] = ACTIONS(109), + [anon_sym_unset] = ACTIONS(111), + [anon_sym_unsetenv] = ACTIONS(111), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(115), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(117), }, [1856] = { - [sym_concatenation] = STATE(2102), - [sym_string] = STATE(2097), - [sym_simple_expansion] = STATE(2097), - [sym_string_expansion] = STATE(2097), - [sym_expansion] = STATE(2097), - [sym_command_substitution] = STATE(2097), - [sym_process_substitution] = STATE(2097), - [aux_sym_unset_command_repeat1] = STATE(2102), - [anon_sym_SEMI] = ACTIONS(209), - [anon_sym_esac] = ACTIONS(209), - [anon_sym_PIPE] = ACTIONS(209), - [anon_sym_SEMI_SEMI] = ACTIONS(207), - [anon_sym_PIPE_AMP] = ACTIONS(207), - [anon_sym_AMP_AMP] = ACTIONS(207), - [anon_sym_PIPE_PIPE] = ACTIONS(207), - [sym__special_characters] = ACTIONS(4849), - [anon_sym_DQUOTE] = ACTIONS(4851), - [anon_sym_DOLLAR] = ACTIONS(4853), - [sym_raw_string] = ACTIONS(4855), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4857), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4859), - [anon_sym_BQUOTE] = ACTIONS(4861), - [anon_sym_LT_LPAREN] = ACTIONS(4863), - [anon_sym_GT_LPAREN] = ACTIONS(4863), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4865), - [sym_word] = ACTIONS(4867), - [anon_sym_LF] = ACTIONS(207), - [anon_sym_AMP] = ACTIONS(209), + [sym_do_group] = STATE(2110), + [sym_compound_statement] = STATE(2110), + [anon_sym_do] = ACTIONS(1212), + [anon_sym_LBRACE] = ACTIONS(3350), + [sym_comment] = ACTIONS(55), }, [1857] = { - [aux_sym_concatenation_repeat1] = STATE(2104), - [sym__simple_heredoc_body] = ACTIONS(247), - [sym__heredoc_body_beginning] = ACTIONS(247), - [sym_file_descriptor] = ACTIONS(247), - [sym__concat] = ACTIONS(4869), - [anon_sym_SEMI] = ACTIONS(251), - [anon_sym_esac] = ACTIONS(251), - [anon_sym_PIPE] = ACTIONS(251), - [anon_sym_SEMI_SEMI] = ACTIONS(247), - [anon_sym_PIPE_AMP] = ACTIONS(247), - [anon_sym_AMP_AMP] = ACTIONS(247), - [anon_sym_PIPE_PIPE] = ACTIONS(247), - [anon_sym_EQ_TILDE] = ACTIONS(251), - [anon_sym_EQ_EQ] = ACTIONS(251), - [anon_sym_LT] = ACTIONS(251), - [anon_sym_GT] = ACTIONS(251), - [anon_sym_GT_GT] = ACTIONS(247), - [anon_sym_AMP_GT] = ACTIONS(251), - [anon_sym_AMP_GT_GT] = ACTIONS(247), - [anon_sym_LT_AMP] = ACTIONS(247), - [anon_sym_GT_AMP] = ACTIONS(247), - [anon_sym_LT_LT] = ACTIONS(251), - [anon_sym_LT_LT_DASH] = ACTIONS(247), - [anon_sym_LT_LT_LT] = ACTIONS(247), - [sym__special_characters] = ACTIONS(247), - [anon_sym_DQUOTE] = ACTIONS(247), - [anon_sym_DOLLAR] = ACTIONS(251), - [sym_raw_string] = ACTIONS(247), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(247), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(247), - [anon_sym_BQUOTE] = ACTIONS(247), - [anon_sym_LT_LPAREN] = ACTIONS(247), - [anon_sym_GT_LPAREN] = ACTIONS(247), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(251), - [anon_sym_LF] = ACTIONS(247), - [anon_sym_AMP] = ACTIONS(251), + [sym_do_group] = STATE(2110), + [sym_compound_statement] = STATE(2110), + [anon_sym_SEMI] = ACTIONS(4864), + [anon_sym_do] = ACTIONS(1212), + [anon_sym_LBRACE] = ACTIONS(3350), + [sym_comment] = ACTIONS(55), }, [1858] = { - [sym_simple_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [sym_command_substitution] = STATE(141), - [aux_sym_string_repeat1] = STATE(2107), - [anon_sym_DQUOTE] = ACTIONS(4871), - [anon_sym_DOLLAR] = ACTIONS(4873), - [sym__string_content] = ACTIONS(257), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(261), - [anon_sym_BQUOTE] = ACTIONS(263), - [sym_comment] = ACTIONS(265), + [sym__concat] = ACTIONS(3934), + [anon_sym_SEMI] = ACTIONS(3936), + [anon_sym_esac] = ACTIONS(3934), + [anon_sym_PIPE] = ACTIONS(3936), + [anon_sym_SEMI_SEMI] = ACTIONS(3934), + [anon_sym_PIPE_AMP] = ACTIONS(3934), + [anon_sym_AMP_AMP] = ACTIONS(3934), + [anon_sym_PIPE_PIPE] = ACTIONS(3934), + [anon_sym_EQ_TILDE] = ACTIONS(3934), + [anon_sym_EQ_EQ] = ACTIONS(3934), + [anon_sym_EQ] = ACTIONS(3936), + [anon_sym_PLUS_EQ] = ACTIONS(3934), + [anon_sym_LT] = ACTIONS(3936), + [anon_sym_GT] = ACTIONS(3936), + [anon_sym_BANG_EQ] = ACTIONS(3934), + [anon_sym_PLUS] = ACTIONS(3936), + [anon_sym_DASH] = ACTIONS(3936), + [anon_sym_DASH_EQ] = ACTIONS(3934), + [anon_sym_LT_EQ] = ACTIONS(3934), + [anon_sym_GT_EQ] = ACTIONS(3934), + [anon_sym_PLUS_PLUS] = ACTIONS(3934), + [anon_sym_DASH_DASH] = ACTIONS(3934), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(3934), + [anon_sym_LF] = ACTIONS(3934), + [anon_sym_AMP] = ACTIONS(3936), }, [1859] = { - [sym_string] = STATE(2109), - [anon_sym_DQUOTE] = ACTIONS(4267), - [anon_sym_DOLLAR] = ACTIONS(4875), - [sym_raw_string] = ACTIONS(4877), - [anon_sym_POUND] = ACTIONS(4875), - [anon_sym_DASH] = ACTIONS(4875), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4879), - [anon_sym_STAR] = ACTIONS(4881), - [anon_sym_AT] = ACTIONS(4881), - [anon_sym_QMARK] = ACTIONS(4881), - [anon_sym_0] = ACTIONS(4879), - [anon_sym__] = ACTIONS(4879), + [sym__concat] = ACTIONS(3942), + [anon_sym_SEMI] = ACTIONS(3944), + [anon_sym_esac] = ACTIONS(3942), + [anon_sym_PIPE] = ACTIONS(3944), + [anon_sym_SEMI_SEMI] = ACTIONS(3942), + [anon_sym_PIPE_AMP] = ACTIONS(3942), + [anon_sym_AMP_AMP] = ACTIONS(3942), + [anon_sym_PIPE_PIPE] = ACTIONS(3942), + [anon_sym_EQ_TILDE] = ACTIONS(3942), + [anon_sym_EQ_EQ] = ACTIONS(3942), + [anon_sym_EQ] = ACTIONS(3944), + [anon_sym_PLUS_EQ] = ACTIONS(3942), + [anon_sym_LT] = ACTIONS(3944), + [anon_sym_GT] = ACTIONS(3944), + [anon_sym_BANG_EQ] = ACTIONS(3942), + [anon_sym_PLUS] = ACTIONS(3944), + [anon_sym_DASH] = ACTIONS(3944), + [anon_sym_DASH_EQ] = ACTIONS(3942), + [anon_sym_LT_EQ] = ACTIONS(3942), + [anon_sym_GT_EQ] = ACTIONS(3942), + [anon_sym_PLUS_PLUS] = ACTIONS(3942), + [anon_sym_DASH_DASH] = ACTIONS(3942), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(3942), + [anon_sym_LF] = ACTIONS(3942), + [anon_sym_AMP] = ACTIONS(3944), }, [1860] = { - [aux_sym_concatenation_repeat1] = STATE(2104), - [sym__simple_heredoc_body] = ACTIONS(275), - [sym__heredoc_body_beginning] = ACTIONS(275), - [sym_file_descriptor] = ACTIONS(275), - [sym__concat] = ACTIONS(4869), - [anon_sym_SEMI] = ACTIONS(277), - [anon_sym_esac] = ACTIONS(277), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_SEMI_SEMI] = ACTIONS(275), - [anon_sym_PIPE_AMP] = ACTIONS(275), - [anon_sym_AMP_AMP] = ACTIONS(275), - [anon_sym_PIPE_PIPE] = ACTIONS(275), - [anon_sym_EQ_TILDE] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_LT] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(277), - [anon_sym_GT_GT] = ACTIONS(275), - [anon_sym_AMP_GT] = ACTIONS(277), - [anon_sym_AMP_GT_GT] = ACTIONS(275), - [anon_sym_LT_AMP] = ACTIONS(275), - [anon_sym_GT_AMP] = ACTIONS(275), - [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_LT_LT_DASH] = ACTIONS(275), - [anon_sym_LT_LT_LT] = ACTIONS(275), - [sym__special_characters] = ACTIONS(275), - [anon_sym_DQUOTE] = ACTIONS(275), - [anon_sym_DOLLAR] = ACTIONS(277), - [sym_raw_string] = ACTIONS(275), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), - [anon_sym_BQUOTE] = ACTIONS(275), - [anon_sym_LT_LPAREN] = ACTIONS(275), - [anon_sym_GT_LPAREN] = ACTIONS(275), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(277), - [anon_sym_LF] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), + [aux_sym_concatenation_repeat1] = STATE(1366), + [sym__concat] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(4866), + [sym_comment] = ACTIONS(55), }, [1861] = { - [sym_subscript] = STATE(2114), - [sym_variable_name] = ACTIONS(4883), - [anon_sym_BANG] = ACTIONS(4885), - [anon_sym_DOLLAR] = ACTIONS(4887), - [anon_sym_POUND] = ACTIONS(4885), - [anon_sym_DASH] = ACTIONS(4887), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4889), - [anon_sym_STAR] = ACTIONS(4891), - [anon_sym_AT] = ACTIONS(4891), - [anon_sym_QMARK] = ACTIONS(4891), - [anon_sym_0] = ACTIONS(4889), - [anon_sym__] = ACTIONS(4889), + [aux_sym_concatenation_repeat1] = STATE(1366), + [sym__concat] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(4868), + [sym_comment] = ACTIONS(55), }, [1862] = { - [sym__terminated_statement] = STATE(2117), - [sym_for_statement] = STATE(2115), - [sym_c_style_for_statement] = STATE(2115), - [sym_while_statement] = STATE(2115), - [sym_if_statement] = STATE(2115), - [sym_case_statement] = STATE(2115), - [sym_function_definition] = STATE(2115), - [sym_subshell] = STATE(2115), - [sym_pipeline] = STATE(2115), - [sym_list] = STATE(2115), - [sym_negated_command] = STATE(2115), - [sym_test_command] = STATE(2115), - [sym_declaration_command] = STATE(2115), - [sym_unset_command] = STATE(2115), - [sym_command] = STATE(2115), - [sym_command_name] = STATE(78), - [sym_variable_assignment] = STATE(2116), - [sym_subscript] = STATE(80), - [sym_file_redirect] = STATE(82), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(75), - [sym_simple_expansion] = STATE(75), - [sym_string_expansion] = STATE(75), - [sym_expansion] = STATE(75), - [sym_command_substitution] = STATE(75), - [sym_process_substitution] = STATE(75), - [aux_sym__statements_repeat1] = STATE(2117), - [aux_sym_command_repeat1] = STATE(82), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(111), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(119), - [anon_sym_declare] = ACTIONS(121), - [anon_sym_typeset] = ACTIONS(121), - [anon_sym_export] = ACTIONS(121), - [anon_sym_readonly] = ACTIONS(121), - [anon_sym_local] = ACTIONS(121), - [anon_sym_unset] = ACTIONS(123), - [anon_sym_unsetenv] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), + [anon_sym_RBRACE] = ACTIONS(4868), + [sym_comment] = ACTIONS(55), }, [1863] = { - [sym__terminated_statement] = STATE(2120), - [sym_for_statement] = STATE(2118), - [sym_c_style_for_statement] = STATE(2118), - [sym_while_statement] = STATE(2118), - [sym_if_statement] = STATE(2118), - [sym_case_statement] = STATE(2118), - [sym_function_definition] = STATE(2118), - [sym_subshell] = STATE(2118), - [sym_pipeline] = STATE(2118), - [sym_list] = STATE(2118), - [sym_negated_command] = STATE(2118), - [sym_test_command] = STATE(2118), - [sym_declaration_command] = STATE(2118), - [sym_unset_command] = STATE(2118), - [sym_command] = STATE(2118), - [sym_command_name] = STATE(165), - [sym_variable_assignment] = STATE(2119), - [sym_subscript] = STATE(53), - [sym_file_redirect] = STATE(168), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(47), - [sym_simple_expansion] = STATE(47), - [sym_string_expansion] = STATE(47), - [sym_expansion] = STATE(47), - [sym_command_substitution] = STATE(47), - [sym_process_substitution] = STATE(47), - [aux_sym__statements_repeat1] = STATE(2120), - [aux_sym_command_repeat1] = STATE(168), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(69), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(289), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(291), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(293), - [anon_sym_LBRACK] = ACTIONS(295), - [anon_sym_LBRACK_LBRACK] = ACTIONS(297), - [anon_sym_declare] = ACTIONS(299), - [anon_sym_typeset] = ACTIONS(299), - [anon_sym_export] = ACTIONS(299), - [anon_sym_readonly] = ACTIONS(299), - [anon_sym_local] = ACTIONS(299), - [anon_sym_unset] = ACTIONS(301), - [anon_sym_unsetenv] = ACTIONS(301), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(87), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(303), + [sym_concatenation] = STATE(2115), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2115), + [anon_sym_RBRACE] = ACTIONS(4870), + [anon_sym_EQ] = ACTIONS(4872), + [anon_sym_DASH] = ACTIONS(4872), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(4874), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(4872), + [anon_sym_COLON_QMARK] = ACTIONS(4872), + [anon_sym_COLON_DASH] = ACTIONS(4872), + [anon_sym_PERCENT] = ACTIONS(4872), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1864] = { - [sym__terminated_statement] = STATE(2123), - [sym_for_statement] = STATE(2121), - [sym_c_style_for_statement] = STATE(2121), - [sym_while_statement] = STATE(2121), - [sym_if_statement] = STATE(2121), - [sym_case_statement] = STATE(2121), - [sym_function_definition] = STATE(2121), - [sym_subshell] = STATE(2121), - [sym_pipeline] = STATE(2121), - [sym_list] = STATE(2121), - [sym_negated_command] = STATE(2121), - [sym_test_command] = STATE(2121), - [sym_declaration_command] = STATE(2121), - [sym_unset_command] = STATE(2121), - [sym_command] = STATE(2121), - [sym_command_name] = STATE(78), - [sym_variable_assignment] = STATE(2122), - [sym_subscript] = STATE(80), - [sym_file_redirect] = STATE(82), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(75), - [sym_simple_expansion] = STATE(75), - [sym_string_expansion] = STATE(75), - [sym_expansion] = STATE(75), - [sym_command_substitution] = STATE(75), - [sym_process_substitution] = STATE(75), - [aux_sym__statements_repeat1] = STATE(2123), - [aux_sym_command_repeat1] = STATE(82), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(111), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(119), - [anon_sym_declare] = ACTIONS(121), - [anon_sym_typeset] = ACTIONS(121), - [anon_sym_export] = ACTIONS(121), - [anon_sym_readonly] = ACTIONS(121), - [anon_sym_local] = ACTIONS(121), - [anon_sym_unset] = ACTIONS(123), - [anon_sym_unsetenv] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), + [sym__concat] = ACTIONS(3998), + [anon_sym_SEMI] = ACTIONS(4000), + [anon_sym_esac] = ACTIONS(3998), + [anon_sym_PIPE] = ACTIONS(4000), + [anon_sym_SEMI_SEMI] = ACTIONS(3998), + [anon_sym_PIPE_AMP] = ACTIONS(3998), + [anon_sym_AMP_AMP] = ACTIONS(3998), + [anon_sym_PIPE_PIPE] = ACTIONS(3998), + [anon_sym_EQ_TILDE] = ACTIONS(3998), + [anon_sym_EQ_EQ] = ACTIONS(3998), + [anon_sym_EQ] = ACTIONS(4000), + [anon_sym_PLUS_EQ] = ACTIONS(3998), + [anon_sym_LT] = ACTIONS(4000), + [anon_sym_GT] = ACTIONS(4000), + [anon_sym_BANG_EQ] = ACTIONS(3998), + [anon_sym_PLUS] = ACTIONS(4000), + [anon_sym_DASH] = ACTIONS(4000), + [anon_sym_DASH_EQ] = ACTIONS(3998), + [anon_sym_LT_EQ] = ACTIONS(3998), + [anon_sym_GT_EQ] = ACTIONS(3998), + [anon_sym_PLUS_PLUS] = ACTIONS(3998), + [anon_sym_DASH_DASH] = ACTIONS(3998), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(3998), + [anon_sym_LF] = ACTIONS(3998), + [anon_sym_AMP] = ACTIONS(4000), }, [1865] = { - [aux_sym_concatenation_repeat1] = STATE(2104), - [sym__simple_heredoc_body] = ACTIONS(275), - [sym__heredoc_body_beginning] = ACTIONS(275), - [sym_file_descriptor] = ACTIONS(275), - [sym__concat] = ACTIONS(4869), - [anon_sym_SEMI] = ACTIONS(277), - [anon_sym_esac] = ACTIONS(277), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_SEMI_SEMI] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(4893), - [anon_sym_PIPE_AMP] = ACTIONS(275), - [anon_sym_AMP_AMP] = ACTIONS(275), - [anon_sym_PIPE_PIPE] = ACTIONS(275), - [anon_sym_EQ_TILDE] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_LT] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(277), - [anon_sym_GT_GT] = ACTIONS(275), - [anon_sym_AMP_GT] = ACTIONS(277), - [anon_sym_AMP_GT_GT] = ACTIONS(275), - [anon_sym_LT_AMP] = ACTIONS(275), - [anon_sym_GT_AMP] = ACTIONS(275), - [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_LT_LT_DASH] = ACTIONS(275), - [anon_sym_LT_LT_LT] = ACTIONS(275), - [sym__special_characters] = ACTIONS(275), - [anon_sym_DQUOTE] = ACTIONS(275), - [anon_sym_DOLLAR] = ACTIONS(277), - [sym_raw_string] = ACTIONS(275), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), - [anon_sym_BQUOTE] = ACTIONS(275), - [anon_sym_LT_LPAREN] = ACTIONS(275), - [anon_sym_GT_LPAREN] = ACTIONS(275), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(277), - [anon_sym_LF] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(4870), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1866] = { - [anon_sym_SEMI] = ACTIONS(4895), - [anon_sym_esac] = ACTIONS(4897), - [anon_sym_PIPE] = ACTIONS(4899), - [anon_sym_SEMI_SEMI] = ACTIONS(4901), - [anon_sym_PIPE_AMP] = ACTIONS(4903), - [anon_sym_AMP_AMP] = ACTIONS(4905), - [anon_sym_PIPE_PIPE] = ACTIONS(4905), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(4907), - [anon_sym_AMP] = ACTIONS(4895), + [sym_concatenation] = STATE(2116), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2116), + [anon_sym_RBRACE] = ACTIONS(4868), + [anon_sym_EQ] = ACTIONS(4876), + [anon_sym_DASH] = ACTIONS(4876), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(4878), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(4876), + [anon_sym_COLON_QMARK] = ACTIONS(4876), + [anon_sym_COLON_DASH] = ACTIONS(4876), + [anon_sym_PERCENT] = ACTIONS(4876), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1867] = { - [sym_file_redirect] = STATE(2135), - [sym_heredoc_redirect] = STATE(2135), - [sym_heredoc_body] = STATE(185), - [sym_herestring_redirect] = STATE(2135), - [sym_concatenation] = STATE(2136), - [sym_string] = STATE(2134), - [sym_simple_expansion] = STATE(2134), - [sym_string_expansion] = STATE(2134), - [sym_expansion] = STATE(2134), - [sym_command_substitution] = STATE(2134), - [sym_process_substitution] = STATE(2134), - [aux_sym_while_statement_repeat1] = STATE(2135), - [aux_sym_command_repeat2] = STATE(2136), - [sym__simple_heredoc_body] = ACTIONS(321), - [sym__heredoc_body_beginning] = ACTIONS(323), - [sym_file_descriptor] = ACTIONS(4909), - [anon_sym_SEMI] = ACTIONS(329), - [anon_sym_esac] = ACTIONS(329), - [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_SEMI_SEMI] = ACTIONS(327), - [anon_sym_PIPE_AMP] = ACTIONS(327), - [anon_sym_AMP_AMP] = ACTIONS(327), - [anon_sym_PIPE_PIPE] = ACTIONS(327), - [anon_sym_EQ_TILDE] = ACTIONS(4911), - [anon_sym_EQ_EQ] = ACTIONS(4911), - [anon_sym_LT] = ACTIONS(4913), - [anon_sym_GT] = ACTIONS(4913), - [anon_sym_GT_GT] = ACTIONS(4915), - [anon_sym_AMP_GT] = ACTIONS(4913), - [anon_sym_AMP_GT_GT] = ACTIONS(4915), - [anon_sym_LT_AMP] = ACTIONS(4915), - [anon_sym_GT_AMP] = ACTIONS(4915), - [anon_sym_LT_LT] = ACTIONS(337), - [anon_sym_LT_LT_DASH] = ACTIONS(339), - [anon_sym_LT_LT_LT] = ACTIONS(4917), - [sym__special_characters] = ACTIONS(4919), - [anon_sym_DQUOTE] = ACTIONS(4267), - [anon_sym_DOLLAR] = ACTIONS(4269), - [sym_raw_string] = ACTIONS(4921), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4273), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4275), - [anon_sym_BQUOTE] = ACTIONS(4277), - [anon_sym_LT_LPAREN] = ACTIONS(4279), - [anon_sym_GT_LPAREN] = ACTIONS(4279), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4923), - [anon_sym_LF] = ACTIONS(327), - [anon_sym_AMP] = ACTIONS(329), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(4868), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1868] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(4895), - [anon_sym_esac] = ACTIONS(4819), - [anon_sym_PIPE] = ACTIONS(4899), - [anon_sym_SEMI_SEMI] = ACTIONS(4901), - [anon_sym_PIPE_AMP] = ACTIONS(4903), - [anon_sym_AMP_AMP] = ACTIONS(4905), - [anon_sym_PIPE_PIPE] = ACTIONS(4905), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(4907), - [anon_sym_AMP] = ACTIONS(4895), + [sym__concat] = ACTIONS(4043), + [anon_sym_SEMI] = ACTIONS(4045), + [anon_sym_esac] = ACTIONS(4043), + [anon_sym_PIPE] = ACTIONS(4045), + [anon_sym_SEMI_SEMI] = ACTIONS(4043), + [anon_sym_PIPE_AMP] = ACTIONS(4043), + [anon_sym_AMP_AMP] = ACTIONS(4043), + [anon_sym_PIPE_PIPE] = ACTIONS(4043), + [anon_sym_EQ_TILDE] = ACTIONS(4043), + [anon_sym_EQ_EQ] = ACTIONS(4043), + [anon_sym_EQ] = ACTIONS(4045), + [anon_sym_PLUS_EQ] = ACTIONS(4043), + [anon_sym_LT] = ACTIONS(4045), + [anon_sym_GT] = ACTIONS(4045), + [anon_sym_BANG_EQ] = ACTIONS(4043), + [anon_sym_PLUS] = ACTIONS(4045), + [anon_sym_DASH] = ACTIONS(4045), + [anon_sym_DASH_EQ] = ACTIONS(4043), + [anon_sym_LT_EQ] = ACTIONS(4043), + [anon_sym_GT_EQ] = ACTIONS(4043), + [anon_sym_PLUS_PLUS] = ACTIONS(4043), + [anon_sym_DASH_DASH] = ACTIONS(4043), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(4043), + [anon_sym_LF] = ACTIONS(4043), + [anon_sym_AMP] = ACTIONS(4045), }, [1869] = { - [anon_sym_EQ] = ACTIONS(4817), - [anon_sym_PLUS_EQ] = ACTIONS(4817), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(4880), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1870] = { - [sym__simple_heredoc_body] = ACTIONS(275), - [sym__heredoc_body_beginning] = ACTIONS(275), - [sym_file_descriptor] = ACTIONS(275), - [anon_sym_SEMI] = ACTIONS(277), - [anon_sym_esac] = ACTIONS(277), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_SEMI_SEMI] = ACTIONS(275), - [anon_sym_PIPE_AMP] = ACTIONS(275), - [anon_sym_AMP_AMP] = ACTIONS(275), - [anon_sym_PIPE_PIPE] = ACTIONS(275), - [anon_sym_EQ_TILDE] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_LT] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(277), - [anon_sym_GT_GT] = ACTIONS(275), - [anon_sym_AMP_GT] = ACTIONS(277), - [anon_sym_AMP_GT_GT] = ACTIONS(275), - [anon_sym_LT_AMP] = ACTIONS(275), - [anon_sym_GT_AMP] = ACTIONS(275), - [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_LT_LT_DASH] = ACTIONS(275), - [anon_sym_LT_LT_LT] = ACTIONS(275), - [sym__special_characters] = ACTIONS(275), - [anon_sym_DQUOTE] = ACTIONS(275), - [anon_sym_DOLLAR] = ACTIONS(277), - [sym_raw_string] = ACTIONS(275), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), - [anon_sym_BQUOTE] = ACTIONS(275), - [anon_sym_LT_LPAREN] = ACTIONS(275), - [anon_sym_GT_LPAREN] = ACTIONS(275), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(277), - [anon_sym_LF] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(277), + [sym__concat] = ACTIONS(4065), + [anon_sym_SEMI] = ACTIONS(4067), + [anon_sym_esac] = ACTIONS(4065), + [anon_sym_PIPE] = ACTIONS(4067), + [anon_sym_SEMI_SEMI] = ACTIONS(4065), + [anon_sym_PIPE_AMP] = ACTIONS(4065), + [anon_sym_AMP_AMP] = ACTIONS(4065), + [anon_sym_PIPE_PIPE] = ACTIONS(4065), + [anon_sym_EQ_TILDE] = ACTIONS(4065), + [anon_sym_EQ_EQ] = ACTIONS(4065), + [anon_sym_EQ] = ACTIONS(4067), + [anon_sym_PLUS_EQ] = ACTIONS(4065), + [anon_sym_LT] = ACTIONS(4067), + [anon_sym_GT] = ACTIONS(4067), + [anon_sym_BANG_EQ] = ACTIONS(4065), + [anon_sym_PLUS] = ACTIONS(4067), + [anon_sym_DASH] = ACTIONS(4067), + [anon_sym_DASH_EQ] = ACTIONS(4065), + [anon_sym_LT_EQ] = ACTIONS(4065), + [anon_sym_GT_EQ] = ACTIONS(4065), + [anon_sym_PLUS_PLUS] = ACTIONS(4065), + [anon_sym_DASH_DASH] = ACTIONS(4065), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(4065), + [anon_sym_LF] = ACTIONS(4065), + [anon_sym_AMP] = ACTIONS(4067), }, [1871] = { - [sym__terminated_statement] = STATE(2140), - [sym_for_statement] = STATE(2138), - [sym_c_style_for_statement] = STATE(2138), - [sym_while_statement] = STATE(2138), - [sym_if_statement] = STATE(2138), - [sym_case_statement] = STATE(2138), - [sym_function_definition] = STATE(2138), - [sym_subshell] = STATE(2138), - [sym_pipeline] = STATE(2138), - [sym_list] = STATE(2138), - [sym_negated_command] = STATE(2138), - [sym_test_command] = STATE(2138), - [sym_declaration_command] = STATE(2138), - [sym_unset_command] = STATE(2138), - [sym_command] = STATE(2138), - [sym_command_name] = STATE(1867), - [sym_variable_assignment] = STATE(2139), - [sym_subscript] = STATE(1869), - [sym_file_redirect] = STATE(1872), - [sym_concatenation] = STATE(1870), - [sym_string] = STATE(1860), - [sym_simple_expansion] = STATE(1860), - [sym_string_expansion] = STATE(1860), - [sym_expansion] = STATE(1860), - [sym_command_substitution] = STATE(1860), - [sym_process_substitution] = STATE(1860), - [aux_sym__statements_repeat1] = STATE(2140), - [aux_sym_command_repeat1] = STATE(1872), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(4245), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(4247), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_esac] = ACTIONS(4819), - [anon_sym_SEMI_SEMI] = ACTIONS(4925), - [anon_sym_function] = ACTIONS(4253), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(4255), - [anon_sym_LBRACK] = ACTIONS(4257), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4259), - [anon_sym_declare] = ACTIONS(4261), - [anon_sym_typeset] = ACTIONS(4261), - [anon_sym_export] = ACTIONS(4261), - [anon_sym_readonly] = ACTIONS(4261), - [anon_sym_local] = ACTIONS(4261), - [anon_sym_unset] = ACTIONS(4263), - [anon_sym_unsetenv] = ACTIONS(4263), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(4265), - [anon_sym_DQUOTE] = ACTIONS(4267), - [anon_sym_DOLLAR] = ACTIONS(4269), - [sym_raw_string] = ACTIONS(4271), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4273), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4275), - [anon_sym_BQUOTE] = ACTIONS(4277), - [anon_sym_LT_LPAREN] = ACTIONS(4279), - [anon_sym_GT_LPAREN] = ACTIONS(4279), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4281), + [sym__concat] = ACTIONS(4089), + [anon_sym_SEMI] = ACTIONS(4091), + [anon_sym_esac] = ACTIONS(4089), + [anon_sym_PIPE] = ACTIONS(4091), + [anon_sym_SEMI_SEMI] = ACTIONS(4089), + [anon_sym_PIPE_AMP] = ACTIONS(4089), + [anon_sym_AMP_AMP] = ACTIONS(4089), + [anon_sym_PIPE_PIPE] = ACTIONS(4089), + [anon_sym_EQ_TILDE] = ACTIONS(4089), + [anon_sym_EQ_EQ] = ACTIONS(4089), + [anon_sym_EQ] = ACTIONS(4091), + [anon_sym_PLUS_EQ] = ACTIONS(4089), + [anon_sym_LT] = ACTIONS(4091), + [anon_sym_GT] = ACTIONS(4091), + [anon_sym_BANG_EQ] = ACTIONS(4089), + [anon_sym_PLUS] = ACTIONS(4091), + [anon_sym_DASH] = ACTIONS(4091), + [anon_sym_DASH_EQ] = ACTIONS(4089), + [anon_sym_LT_EQ] = ACTIONS(4089), + [anon_sym_GT_EQ] = ACTIONS(4089), + [anon_sym_PLUS_PLUS] = ACTIONS(4089), + [anon_sym_DASH_DASH] = ACTIONS(4089), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(4089), + [anon_sym_LF] = ACTIONS(4089), + [anon_sym_AMP] = ACTIONS(4091), }, [1872] = { - [sym_command_name] = STATE(2141), - [sym_variable_assignment] = STATE(192), - [sym_subscript] = STATE(85), - [sym_file_redirect] = STATE(192), - [sym_concatenation] = STATE(1870), - [sym_string] = STATE(1860), - [sym_simple_expansion] = STATE(1860), - [sym_string_expansion] = STATE(1860), - [sym_expansion] = STATE(1860), - [sym_command_substitution] = STATE(1860), - [sym_process_substitution] = STATE(1860), - [aux_sym_command_repeat1] = STATE(192), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(131), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(4927), - [anon_sym_DQUOTE] = ACTIONS(4267), - [anon_sym_DOLLAR] = ACTIONS(4269), - [sym_raw_string] = ACTIONS(4271), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4273), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4275), - [anon_sym_BQUOTE] = ACTIONS(4277), - [anon_sym_LT_LPAREN] = ACTIONS(4279), - [anon_sym_GT_LPAREN] = ACTIONS(4279), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4271), + [anon_sym_RPAREN_RPAREN] = ACTIONS(4882), + [anon_sym_AMP_AMP] = ACTIONS(493), + [anon_sym_PIPE_PIPE] = ACTIONS(493), + [anon_sym_EQ_TILDE] = ACTIONS(495), + [anon_sym_EQ_EQ] = ACTIONS(495), + [anon_sym_EQ] = ACTIONS(497), + [anon_sym_PLUS_EQ] = ACTIONS(493), + [anon_sym_LT] = ACTIONS(497), + [anon_sym_GT] = ACTIONS(497), + [anon_sym_BANG_EQ] = ACTIONS(493), + [anon_sym_PLUS] = ACTIONS(497), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_DASH_EQ] = ACTIONS(493), + [anon_sym_LT_EQ] = ACTIONS(493), + [anon_sym_GT_EQ] = ACTIONS(493), + [anon_sym_PLUS_PLUS] = ACTIONS(499), + [anon_sym_DASH_DASH] = ACTIONS(499), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(493), }, [1873] = { - [sym__terminated_statement] = STATE(2142), - [sym_for_statement] = STATE(2138), - [sym_c_style_for_statement] = STATE(2138), - [sym_while_statement] = STATE(2138), - [sym_if_statement] = STATE(2138), - [sym_case_statement] = STATE(2138), - [sym_function_definition] = STATE(2138), - [sym_subshell] = STATE(2138), - [sym_pipeline] = STATE(2138), - [sym_list] = STATE(2138), - [sym_negated_command] = STATE(2138), - [sym_test_command] = STATE(2138), - [sym_declaration_command] = STATE(2138), - [sym_unset_command] = STATE(2138), - [sym_command] = STATE(2138), - [sym_command_name] = STATE(1867), - [sym_variable_assignment] = STATE(2139), - [sym_subscript] = STATE(1869), - [sym_file_redirect] = STATE(1872), - [sym_concatenation] = STATE(1870), - [sym_string] = STATE(1860), - [sym_simple_expansion] = STATE(1860), - [sym_string_expansion] = STATE(1860), - [sym_expansion] = STATE(1860), - [sym_command_substitution] = STATE(1860), - [sym_process_substitution] = STATE(1860), - [aux_sym__statements_repeat1] = STATE(2142), - [aux_sym_command_repeat1] = STATE(1872), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(4245), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(4247), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_esac] = ACTIONS(4819), - [anon_sym_SEMI_SEMI] = ACTIONS(4925), - [anon_sym_function] = ACTIONS(4253), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(4255), - [anon_sym_LBRACK] = ACTIONS(4257), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4259), - [anon_sym_declare] = ACTIONS(4261), - [anon_sym_typeset] = ACTIONS(4261), - [anon_sym_export] = ACTIONS(4261), - [anon_sym_readonly] = ACTIONS(4261), - [anon_sym_local] = ACTIONS(4261), - [anon_sym_unset] = ACTIONS(4263), - [anon_sym_unsetenv] = ACTIONS(4263), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(4265), - [anon_sym_DQUOTE] = ACTIONS(4267), - [anon_sym_DOLLAR] = ACTIONS(4269), - [sym_raw_string] = ACTIONS(4271), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4273), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4275), - [anon_sym_BQUOTE] = ACTIONS(4277), - [anon_sym_LT_LPAREN] = ACTIONS(4279), - [anon_sym_GT_LPAREN] = ACTIONS(4279), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4281), + [sym__concat] = ACTIONS(2959), + [anon_sym_SEMI] = ACTIONS(2961), + [anon_sym_SEMI_SEMI] = ACTIONS(2959), + [sym__special_characters] = ACTIONS(2959), + [anon_sym_DQUOTE] = ACTIONS(2959), + [anon_sym_DOLLAR] = ACTIONS(2961), + [sym_raw_string] = ACTIONS(2959), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2959), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2959), + [anon_sym_BQUOTE] = ACTIONS(2959), + [anon_sym_LT_LPAREN] = ACTIONS(2959), + [anon_sym_GT_LPAREN] = ACTIONS(2959), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(2961), + [anon_sym_LF] = ACTIONS(2959), + [anon_sym_AMP] = ACTIONS(2959), }, [1874] = { - [aux_sym_case_item_repeat1] = STATE(1874), - [anon_sym_PIPE] = ACTIONS(4929), - [anon_sym_RPAREN] = ACTIONS(4815), - [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(2973), + [anon_sym_SEMI] = ACTIONS(2975), + [anon_sym_SEMI_SEMI] = ACTIONS(2973), + [sym__special_characters] = ACTIONS(2973), + [anon_sym_DQUOTE] = ACTIONS(2973), + [anon_sym_DOLLAR] = ACTIONS(2975), + [sym_raw_string] = ACTIONS(2973), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2973), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2973), + [anon_sym_BQUOTE] = ACTIONS(2973), + [anon_sym_LT_LPAREN] = ACTIONS(2973), + [anon_sym_GT_LPAREN] = ACTIONS(2973), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(2975), + [anon_sym_LF] = ACTIONS(2973), + [anon_sym_AMP] = ACTIONS(2973), }, [1875] = { - [aux_sym_concatenation_repeat1] = STATE(1875), - [sym__concat] = ACTIONS(2636), - [anon_sym_PIPE] = ACTIONS(1724), - [anon_sym_RPAREN] = ACTIONS(1724), - [sym_comment] = ACTIONS(53), + [aux_sym_concatenation_repeat1] = STATE(1366), + [sym__concat] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(4884), + [sym_comment] = ACTIONS(55), }, [1876] = { - [anon_sym_esac] = ACTIONS(4932), - [sym__special_characters] = ACTIONS(4934), - [anon_sym_DQUOTE] = ACTIONS(4934), - [anon_sym_DOLLAR] = ACTIONS(4936), - [sym_raw_string] = ACTIONS(4934), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4934), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4934), - [anon_sym_BQUOTE] = ACTIONS(4934), - [anon_sym_LT_LPAREN] = ACTIONS(4934), - [anon_sym_GT_LPAREN] = ACTIONS(4934), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4936), + [aux_sym_concatenation_repeat1] = STATE(1366), + [sym__concat] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(4886), + [sym_comment] = ACTIONS(55), }, [1877] = { - [anon_sym_SEMI] = ACTIONS(4895), - [anon_sym_esac] = ACTIONS(4938), - [anon_sym_PIPE] = ACTIONS(4899), - [anon_sym_SEMI_SEMI] = ACTIONS(4940), - [anon_sym_PIPE_AMP] = ACTIONS(4903), - [anon_sym_AMP_AMP] = ACTIONS(4905), - [anon_sym_PIPE_PIPE] = ACTIONS(4905), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(4907), - [anon_sym_AMP] = ACTIONS(4895), + [anon_sym_RBRACE] = ACTIONS(4886), + [sym_comment] = ACTIONS(55), }, [1878] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(4895), - [anon_sym_esac] = ACTIONS(4932), - [anon_sym_PIPE] = ACTIONS(4899), - [anon_sym_SEMI_SEMI] = ACTIONS(4940), - [anon_sym_PIPE_AMP] = ACTIONS(4903), - [anon_sym_AMP_AMP] = ACTIONS(4905), - [anon_sym_PIPE_PIPE] = ACTIONS(4905), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(4907), - [anon_sym_AMP] = ACTIONS(4895), + [sym_concatenation] = STATE(2123), + [sym_string] = STATE(2122), + [sym_simple_expansion] = STATE(2122), + [sym_string_expansion] = STATE(2122), + [sym_expansion] = STATE(2122), + [sym_command_substitution] = STATE(2122), + [sym_process_substitution] = STATE(2122), + [anon_sym_RBRACE] = ACTIONS(4886), + [sym__special_characters] = ACTIONS(4888), + [anon_sym_DQUOTE] = ACTIONS(1841), + [anon_sym_DOLLAR] = ACTIONS(1843), + [sym_raw_string] = ACTIONS(4890), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1849), + [anon_sym_BQUOTE] = ACTIONS(1851), + [anon_sym_LT_LPAREN] = ACTIONS(1853), + [anon_sym_GT_LPAREN] = ACTIONS(1853), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(4890), }, [1879] = { - [sym__terminated_statement] = STATE(2140), - [sym_for_statement] = STATE(2145), - [sym_c_style_for_statement] = STATE(2145), - [sym_while_statement] = STATE(2145), - [sym_if_statement] = STATE(2145), - [sym_case_statement] = STATE(2145), - [sym_function_definition] = STATE(2145), - [sym_subshell] = STATE(2145), - [sym_pipeline] = STATE(2145), - [sym_list] = STATE(2145), - [sym_negated_command] = STATE(2145), - [sym_test_command] = STATE(2145), - [sym_declaration_command] = STATE(2145), - [sym_unset_command] = STATE(2145), - [sym_command] = STATE(2145), - [sym_command_name] = STATE(1867), - [sym_variable_assignment] = STATE(2146), - [sym_subscript] = STATE(1869), - [sym_file_redirect] = STATE(1872), - [sym_concatenation] = STATE(1870), - [sym_string] = STATE(1860), - [sym_simple_expansion] = STATE(1860), - [sym_string_expansion] = STATE(1860), - [sym_expansion] = STATE(1860), - [sym_command_substitution] = STATE(1860), - [sym_process_substitution] = STATE(1860), - [aux_sym__statements_repeat1] = STATE(2140), - [aux_sym_command_repeat1] = STATE(1872), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(4245), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(4247), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_esac] = ACTIONS(4932), - [anon_sym_SEMI_SEMI] = ACTIONS(4942), - [anon_sym_function] = ACTIONS(4253), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(4255), - [anon_sym_LBRACK] = ACTIONS(4257), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4259), - [anon_sym_declare] = ACTIONS(4261), - [anon_sym_typeset] = ACTIONS(4261), - [anon_sym_export] = ACTIONS(4261), - [anon_sym_readonly] = ACTIONS(4261), - [anon_sym_local] = ACTIONS(4261), - [anon_sym_unset] = ACTIONS(4263), - [anon_sym_unsetenv] = ACTIONS(4263), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(4265), - [anon_sym_DQUOTE] = ACTIONS(4267), - [anon_sym_DOLLAR] = ACTIONS(4269), - [sym_raw_string] = ACTIONS(4271), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4273), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4275), - [anon_sym_BQUOTE] = ACTIONS(4277), - [anon_sym_LT_LPAREN] = ACTIONS(4279), - [anon_sym_GT_LPAREN] = ACTIONS(4279), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4281), + [sym__concat] = ACTIONS(3009), + [anon_sym_SEMI] = ACTIONS(3011), + [anon_sym_SEMI_SEMI] = ACTIONS(3009), + [sym__special_characters] = ACTIONS(3009), + [anon_sym_DQUOTE] = ACTIONS(3009), + [anon_sym_DOLLAR] = ACTIONS(3011), + [sym_raw_string] = ACTIONS(3009), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3009), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3009), + [anon_sym_BQUOTE] = ACTIONS(3009), + [anon_sym_LT_LPAREN] = ACTIONS(3009), + [anon_sym_GT_LPAREN] = ACTIONS(3009), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(3011), + [anon_sym_LF] = ACTIONS(3009), + [anon_sym_AMP] = ACTIONS(3009), }, [1880] = { - [sym__terminated_statement] = STATE(2147), - [sym_for_statement] = STATE(2145), - [sym_c_style_for_statement] = STATE(2145), - [sym_while_statement] = STATE(2145), - [sym_if_statement] = STATE(2145), - [sym_case_statement] = STATE(2145), - [sym_function_definition] = STATE(2145), - [sym_subshell] = STATE(2145), - [sym_pipeline] = STATE(2145), - [sym_list] = STATE(2145), - [sym_negated_command] = STATE(2145), - [sym_test_command] = STATE(2145), - [sym_declaration_command] = STATE(2145), - [sym_unset_command] = STATE(2145), - [sym_command] = STATE(2145), - [sym_command_name] = STATE(1867), - [sym_variable_assignment] = STATE(2146), - [sym_subscript] = STATE(1869), - [sym_file_redirect] = STATE(1872), - [sym_concatenation] = STATE(1870), - [sym_string] = STATE(1860), - [sym_simple_expansion] = STATE(1860), - [sym_string_expansion] = STATE(1860), - [sym_expansion] = STATE(1860), - [sym_command_substitution] = STATE(1860), - [sym_process_substitution] = STATE(1860), - [aux_sym__statements_repeat1] = STATE(2147), - [aux_sym_command_repeat1] = STATE(1872), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(4245), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(4247), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_esac] = ACTIONS(4932), - [anon_sym_SEMI_SEMI] = ACTIONS(4942), - [anon_sym_function] = ACTIONS(4253), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(4255), - [anon_sym_LBRACK] = ACTIONS(4257), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4259), - [anon_sym_declare] = ACTIONS(4261), - [anon_sym_typeset] = ACTIONS(4261), - [anon_sym_export] = ACTIONS(4261), - [anon_sym_readonly] = ACTIONS(4261), - [anon_sym_local] = ACTIONS(4261), - [anon_sym_unset] = ACTIONS(4263), - [anon_sym_unsetenv] = ACTIONS(4263), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(4265), - [anon_sym_DQUOTE] = ACTIONS(4267), - [anon_sym_DOLLAR] = ACTIONS(4269), - [sym_raw_string] = ACTIONS(4271), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4273), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4275), - [anon_sym_BQUOTE] = ACTIONS(4277), - [anon_sym_LT_LPAREN] = ACTIONS(4279), - [anon_sym_GT_LPAREN] = ACTIONS(4279), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4281), + [sym_concatenation] = STATE(2126), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2126), + [sym_regex] = ACTIONS(4892), + [anon_sym_RBRACE] = ACTIONS(4894), + [anon_sym_EQ] = ACTIONS(4896), + [anon_sym_DASH] = ACTIONS(4896), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(4898), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(4896), + [anon_sym_COLON_QMARK] = ACTIONS(4896), + [anon_sym_COLON_DASH] = ACTIONS(4896), + [anon_sym_PERCENT] = ACTIONS(4896), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1881] = { - [ts_builtin_sym_end] = ACTIONS(4944), - [anon_sym_SEMI] = ACTIONS(4946), - [anon_sym_esac] = ACTIONS(4944), - [anon_sym_PIPE] = ACTIONS(4946), - [anon_sym_RPAREN] = ACTIONS(4944), - [anon_sym_SEMI_SEMI] = ACTIONS(4944), - [anon_sym_PIPE_AMP] = ACTIONS(4944), - [anon_sym_AMP_AMP] = ACTIONS(4944), - [anon_sym_PIPE_PIPE] = ACTIONS(4944), - [anon_sym_BQUOTE] = ACTIONS(4944), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(4944), - [anon_sym_AMP] = ACTIONS(4946), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(4894), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1882] = { - [aux_sym_case_item_repeat1] = STATE(2149), - [aux_sym_concatenation_repeat1] = STATE(1518), - [sym__concat] = ACTIONS(623), - [anon_sym_PIPE] = ACTIONS(3474), - [anon_sym_RPAREN] = ACTIONS(4948), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(2128), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2128), + [sym_regex] = ACTIONS(4900), + [anon_sym_RBRACE] = ACTIONS(4886), + [anon_sym_EQ] = ACTIONS(4902), + [anon_sym_DASH] = ACTIONS(4902), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(4904), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(4902), + [anon_sym_COLON_QMARK] = ACTIONS(4902), + [anon_sym_COLON_DASH] = ACTIONS(4902), + [anon_sym_PERCENT] = ACTIONS(4902), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1883] = { - [aux_sym_case_item_repeat1] = STATE(2151), - [aux_sym_concatenation_repeat1] = STATE(1518), - [sym__concat] = ACTIONS(623), - [anon_sym_PIPE] = ACTIONS(3474), - [anon_sym_RPAREN] = ACTIONS(4950), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(4886), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1884] = { - [aux_sym_case_item_repeat1] = STATE(2151), - [anon_sym_PIPE] = ACTIONS(3474), - [anon_sym_RPAREN] = ACTIONS(4950), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(2130), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2130), + [anon_sym_RBRACE] = ACTIONS(4906), + [anon_sym_EQ] = ACTIONS(4908), + [anon_sym_DASH] = ACTIONS(4908), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(4910), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(4908), + [anon_sym_COLON_QMARK] = ACTIONS(4908), + [anon_sym_COLON_DASH] = ACTIONS(4908), + [anon_sym_PERCENT] = ACTIONS(4908), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1885] = { - [anon_sym_esac] = ACTIONS(4952), - [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(3065), + [anon_sym_SEMI] = ACTIONS(3067), + [anon_sym_SEMI_SEMI] = ACTIONS(3065), + [sym__special_characters] = ACTIONS(3065), + [anon_sym_DQUOTE] = ACTIONS(3065), + [anon_sym_DOLLAR] = ACTIONS(3067), + [sym_raw_string] = ACTIONS(3065), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3065), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3065), + [anon_sym_BQUOTE] = ACTIONS(3065), + [anon_sym_LT_LPAREN] = ACTIONS(3065), + [anon_sym_GT_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(3067), + [anon_sym_LF] = ACTIONS(3065), + [anon_sym_AMP] = ACTIONS(3065), }, [1886] = { - [ts_builtin_sym_end] = ACTIONS(4954), - [anon_sym_SEMI] = ACTIONS(4956), - [anon_sym_esac] = ACTIONS(4954), - [anon_sym_PIPE] = ACTIONS(4956), - [anon_sym_RPAREN] = ACTIONS(4954), - [anon_sym_SEMI_SEMI] = ACTIONS(4954), - [anon_sym_PIPE_AMP] = ACTIONS(4954), - [anon_sym_AMP_AMP] = ACTIONS(4954), - [anon_sym_PIPE_PIPE] = ACTIONS(4954), - [anon_sym_BQUOTE] = ACTIONS(4954), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(4954), - [anon_sym_AMP] = ACTIONS(4956), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(4906), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1887] = { - [anon_sym_esac] = ACTIONS(4958), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(2128), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2128), + [anon_sym_RBRACE] = ACTIONS(4886), + [anon_sym_EQ] = ACTIONS(4902), + [anon_sym_DASH] = ACTIONS(4902), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(4904), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(4902), + [anon_sym_COLON_QMARK] = ACTIONS(4902), + [anon_sym_COLON_DASH] = ACTIONS(4902), + [anon_sym_PERCENT] = ACTIONS(4902), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1888] = { - [sym__concat] = ACTIONS(4568), - [anon_sym_in] = ACTIONS(4568), - [anon_sym_SEMI] = ACTIONS(4570), - [anon_sym_SEMI_SEMI] = ACTIONS(4568), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(4568), - [anon_sym_AMP] = ACTIONS(4568), + [sym__concat] = ACTIONS(3120), + [anon_sym_SEMI] = ACTIONS(3122), + [anon_sym_SEMI_SEMI] = ACTIONS(3120), + [sym__special_characters] = ACTIONS(3120), + [anon_sym_DQUOTE] = ACTIONS(3120), + [anon_sym_DOLLAR] = ACTIONS(3122), + [sym_raw_string] = ACTIONS(3120), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3120), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3120), + [anon_sym_BQUOTE] = ACTIONS(3120), + [anon_sym_LT_LPAREN] = ACTIONS(3120), + [anon_sym_GT_LPAREN] = ACTIONS(3120), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(3122), + [anon_sym_LF] = ACTIONS(3120), + [anon_sym_AMP] = ACTIONS(3120), }, [1889] = { - [sym__concat] = ACTIONS(4572), - [anon_sym_in] = ACTIONS(4572), - [anon_sym_SEMI] = ACTIONS(4574), - [anon_sym_SEMI_SEMI] = ACTIONS(4572), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(4572), - [anon_sym_AMP] = ACTIONS(4572), + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(4912), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), }, [1890] = { - [sym__concat] = ACTIONS(4576), - [anon_sym_in] = ACTIONS(4576), - [anon_sym_SEMI] = ACTIONS(4578), - [anon_sym_SEMI_SEMI] = ACTIONS(4576), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(4576), - [anon_sym_AMP] = ACTIONS(4576), + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(4912), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), }, [1891] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(4960), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym__concat] = ACTIONS(3158), + [anon_sym_SEMI] = ACTIONS(3160), + [anon_sym_SEMI_SEMI] = ACTIONS(3158), + [sym__special_characters] = ACTIONS(3158), + [anon_sym_DQUOTE] = ACTIONS(3158), + [anon_sym_DOLLAR] = ACTIONS(3160), + [sym_raw_string] = ACTIONS(3158), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3158), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3158), + [anon_sym_BQUOTE] = ACTIONS(3158), + [anon_sym_LT_LPAREN] = ACTIONS(3158), + [anon_sym_GT_LPAREN] = ACTIONS(3158), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(3160), + [anon_sym_LF] = ACTIONS(3158), + [anon_sym_AMP] = ACTIONS(3158), }, [1892] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(4962), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(4914), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), }, [1893] = { - [sym__concat] = ACTIONS(4608), - [anon_sym_in] = ACTIONS(4608), - [anon_sym_SEMI] = ACTIONS(4610), - [anon_sym_SEMI_SEMI] = ACTIONS(4608), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(4608), - [anon_sym_AMP] = ACTIONS(4608), + [sym__concat] = ACTIONS(3934), + [anon_sym_PIPE] = ACTIONS(3936), + [anon_sym_RPAREN] = ACTIONS(3934), + [anon_sym_AMP_AMP] = ACTIONS(3934), + [anon_sym_PIPE_PIPE] = ACTIONS(3934), + [anon_sym_EQ_TILDE] = ACTIONS(3934), + [anon_sym_EQ_EQ] = ACTIONS(3934), + [anon_sym_EQ] = ACTIONS(3936), + [anon_sym_PLUS_EQ] = ACTIONS(3934), + [anon_sym_LT] = ACTIONS(3936), + [anon_sym_GT] = ACTIONS(3936), + [anon_sym_BANG_EQ] = ACTIONS(3934), + [anon_sym_PLUS] = ACTIONS(3936), + [anon_sym_DASH] = ACTIONS(3936), + [anon_sym_DASH_EQ] = ACTIONS(3934), + [anon_sym_LT_EQ] = ACTIONS(3934), + [anon_sym_GT_EQ] = ACTIONS(3934), + [anon_sym_PLUS_PLUS] = ACTIONS(3934), + [anon_sym_DASH_DASH] = ACTIONS(3934), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(3934), }, [1894] = { - [aux_sym_concatenation_repeat1] = STATE(1894), - [sym__concat] = ACTIONS(2736), - [ts_builtin_sym_end] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(1726), - [anon_sym_SEMI_SEMI] = ACTIONS(1724), - [anon_sym_PIPE_AMP] = ACTIONS(1724), - [anon_sym_AMP_AMP] = ACTIONS(1724), - [anon_sym_PIPE_PIPE] = ACTIONS(1724), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1726), + [sym__concat] = ACTIONS(3942), + [anon_sym_PIPE] = ACTIONS(3944), + [anon_sym_RPAREN] = ACTIONS(3942), + [anon_sym_AMP_AMP] = ACTIONS(3942), + [anon_sym_PIPE_PIPE] = ACTIONS(3942), + [anon_sym_EQ_TILDE] = ACTIONS(3942), + [anon_sym_EQ_EQ] = ACTIONS(3942), + [anon_sym_EQ] = ACTIONS(3944), + [anon_sym_PLUS_EQ] = ACTIONS(3942), + [anon_sym_LT] = ACTIONS(3944), + [anon_sym_GT] = ACTIONS(3944), + [anon_sym_BANG_EQ] = ACTIONS(3942), + [anon_sym_PLUS] = ACTIONS(3944), + [anon_sym_DASH] = ACTIONS(3944), + [anon_sym_DASH_EQ] = ACTIONS(3942), + [anon_sym_LT_EQ] = ACTIONS(3942), + [anon_sym_GT_EQ] = ACTIONS(3942), + [anon_sym_PLUS_PLUS] = ACTIONS(3942), + [anon_sym_DASH_DASH] = ACTIONS(3942), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(3942), }, [1895] = { - [aux_sym_concatenation_repeat1] = STATE(1897), - [sym__concat] = ACTIONS(693), - [anon_sym_SEMI] = ACTIONS(1055), - [anon_sym_PIPE] = ACTIONS(1055), - [anon_sym_RPAREN] = ACTIONS(1053), - [anon_sym_SEMI_SEMI] = ACTIONS(1053), - [anon_sym_PIPE_AMP] = ACTIONS(1053), - [anon_sym_AMP_AMP] = ACTIONS(1053), - [anon_sym_PIPE_PIPE] = ACTIONS(1053), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1053), - [anon_sym_AMP] = ACTIONS(1055), + [aux_sym_concatenation_repeat1] = STATE(1366), + [sym__concat] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(4916), + [sym_comment] = ACTIONS(55), }, [1896] = { - [aux_sym_concatenation_repeat1] = STATE(1897), - [sym__concat] = ACTIONS(693), - [anon_sym_SEMI] = ACTIONS(1059), - [anon_sym_PIPE] = ACTIONS(1059), - [anon_sym_RPAREN] = ACTIONS(1057), - [anon_sym_SEMI_SEMI] = ACTIONS(1057), - [anon_sym_PIPE_AMP] = ACTIONS(1057), - [anon_sym_AMP_AMP] = ACTIONS(1057), - [anon_sym_PIPE_PIPE] = ACTIONS(1057), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), + [aux_sym_concatenation_repeat1] = STATE(1366), + [sym__concat] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(4918), + [sym_comment] = ACTIONS(55), }, [1897] = { - [aux_sym_concatenation_repeat1] = STATE(2156), - [sym__concat] = ACTIONS(693), - [anon_sym_SEMI] = ACTIONS(767), - [anon_sym_PIPE] = ACTIONS(767), - [anon_sym_RPAREN] = ACTIONS(765), - [anon_sym_SEMI_SEMI] = ACTIONS(765), - [anon_sym_PIPE_AMP] = ACTIONS(765), - [anon_sym_AMP_AMP] = ACTIONS(765), - [anon_sym_PIPE_PIPE] = ACTIONS(765), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(765), - [anon_sym_AMP] = ACTIONS(767), + [anon_sym_RBRACE] = ACTIONS(4918), + [sym_comment] = ACTIONS(55), }, [1898] = { - [aux_sym_concatenation_repeat1] = STATE(1900), - [sym_file_descriptor] = ACTIONS(1053), - [sym__concat] = ACTIONS(3592), - [anon_sym_SEMI] = ACTIONS(1055), - [anon_sym_PIPE] = ACTIONS(1055), - [anon_sym_RPAREN] = ACTIONS(1053), - [anon_sym_SEMI_SEMI] = ACTIONS(1053), - [anon_sym_PIPE_AMP] = ACTIONS(1053), - [anon_sym_AMP_AMP] = ACTIONS(1053), - [anon_sym_PIPE_PIPE] = ACTIONS(1053), - [anon_sym_LT] = ACTIONS(1055), - [anon_sym_GT] = ACTIONS(1055), - [anon_sym_GT_GT] = ACTIONS(1053), - [anon_sym_AMP_GT] = ACTIONS(1055), - [anon_sym_AMP_GT_GT] = ACTIONS(1053), - [anon_sym_LT_AMP] = ACTIONS(1053), - [anon_sym_GT_AMP] = ACTIONS(1053), - [anon_sym_LT_LT] = ACTIONS(1055), - [anon_sym_LT_LT_DASH] = ACTIONS(1053), - [anon_sym_LT_LT_LT] = ACTIONS(1053), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1053), - [anon_sym_AMP] = ACTIONS(1055), + [sym_concatenation] = STATE(2136), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2136), + [anon_sym_RBRACE] = ACTIONS(4920), + [anon_sym_EQ] = ACTIONS(4922), + [anon_sym_DASH] = ACTIONS(4922), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(4924), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(4922), + [anon_sym_COLON_QMARK] = ACTIONS(4922), + [anon_sym_COLON_DASH] = ACTIONS(4922), + [anon_sym_PERCENT] = ACTIONS(4922), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1899] = { - [aux_sym_concatenation_repeat1] = STATE(1900), - [sym_file_descriptor] = ACTIONS(1057), - [sym__concat] = ACTIONS(3592), - [anon_sym_SEMI] = ACTIONS(1059), - [anon_sym_PIPE] = ACTIONS(1059), - [anon_sym_RPAREN] = ACTIONS(1057), - [anon_sym_SEMI_SEMI] = ACTIONS(1057), - [anon_sym_PIPE_AMP] = ACTIONS(1057), - [anon_sym_AMP_AMP] = ACTIONS(1057), - [anon_sym_PIPE_PIPE] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_GT_GT] = ACTIONS(1057), - [anon_sym_AMP_GT] = ACTIONS(1059), - [anon_sym_AMP_GT_GT] = ACTIONS(1057), - [anon_sym_LT_AMP] = ACTIONS(1057), - [anon_sym_GT_AMP] = ACTIONS(1057), - [anon_sym_LT_LT] = ACTIONS(1059), - [anon_sym_LT_LT_DASH] = ACTIONS(1057), - [anon_sym_LT_LT_LT] = ACTIONS(1057), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), + [sym__concat] = ACTIONS(3998), + [anon_sym_PIPE] = ACTIONS(4000), + [anon_sym_RPAREN] = ACTIONS(3998), + [anon_sym_AMP_AMP] = ACTIONS(3998), + [anon_sym_PIPE_PIPE] = ACTIONS(3998), + [anon_sym_EQ_TILDE] = ACTIONS(3998), + [anon_sym_EQ_EQ] = ACTIONS(3998), + [anon_sym_EQ] = ACTIONS(4000), + [anon_sym_PLUS_EQ] = ACTIONS(3998), + [anon_sym_LT] = ACTIONS(4000), + [anon_sym_GT] = ACTIONS(4000), + [anon_sym_BANG_EQ] = ACTIONS(3998), + [anon_sym_PLUS] = ACTIONS(4000), + [anon_sym_DASH] = ACTIONS(4000), + [anon_sym_DASH_EQ] = ACTIONS(3998), + [anon_sym_LT_EQ] = ACTIONS(3998), + [anon_sym_GT_EQ] = ACTIONS(3998), + [anon_sym_PLUS_PLUS] = ACTIONS(3998), + [anon_sym_DASH_DASH] = ACTIONS(3998), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(3998), }, [1900] = { - [aux_sym_concatenation_repeat1] = STATE(2157), - [sym_file_descriptor] = ACTIONS(765), - [sym__concat] = ACTIONS(3592), - [anon_sym_SEMI] = ACTIONS(767), - [anon_sym_PIPE] = ACTIONS(767), - [anon_sym_RPAREN] = ACTIONS(765), - [anon_sym_SEMI_SEMI] = ACTIONS(765), - [anon_sym_PIPE_AMP] = ACTIONS(765), - [anon_sym_AMP_AMP] = ACTIONS(765), - [anon_sym_PIPE_PIPE] = ACTIONS(765), - [anon_sym_LT] = ACTIONS(767), - [anon_sym_GT] = ACTIONS(767), - [anon_sym_GT_GT] = ACTIONS(765), - [anon_sym_AMP_GT] = ACTIONS(767), - [anon_sym_AMP_GT_GT] = ACTIONS(765), - [anon_sym_LT_AMP] = ACTIONS(765), - [anon_sym_GT_AMP] = ACTIONS(765), - [anon_sym_LT_LT] = ACTIONS(767), - [anon_sym_LT_LT_DASH] = ACTIONS(765), - [anon_sym_LT_LT_LT] = ACTIONS(765), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(765), - [anon_sym_AMP] = ACTIONS(767), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(4920), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1901] = { - [sym__concat] = ACTIONS(4568), - [anon_sym_AMP_AMP] = ACTIONS(4568), - [anon_sym_PIPE_PIPE] = ACTIONS(4568), - [anon_sym_RBRACK] = ACTIONS(4568), - [anon_sym_EQ_TILDE] = ACTIONS(4568), - [anon_sym_EQ_EQ] = ACTIONS(4568), - [anon_sym_EQ] = ACTIONS(4570), - [anon_sym_LT] = ACTIONS(4568), - [anon_sym_GT] = ACTIONS(4568), - [anon_sym_BANG_EQ] = ACTIONS(4568), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4568), + [sym_concatenation] = STATE(2137), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2137), + [anon_sym_RBRACE] = ACTIONS(4918), + [anon_sym_EQ] = ACTIONS(4926), + [anon_sym_DASH] = ACTIONS(4926), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(4928), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(4926), + [anon_sym_COLON_QMARK] = ACTIONS(4926), + [anon_sym_COLON_DASH] = ACTIONS(4926), + [anon_sym_PERCENT] = ACTIONS(4926), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1902] = { - [sym__concat] = ACTIONS(4572), - [anon_sym_AMP_AMP] = ACTIONS(4572), - [anon_sym_PIPE_PIPE] = ACTIONS(4572), - [anon_sym_RBRACK] = ACTIONS(4572), - [anon_sym_EQ_TILDE] = ACTIONS(4572), - [anon_sym_EQ_EQ] = ACTIONS(4572), - [anon_sym_EQ] = ACTIONS(4574), - [anon_sym_LT] = ACTIONS(4572), - [anon_sym_GT] = ACTIONS(4572), - [anon_sym_BANG_EQ] = ACTIONS(4572), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4572), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(4918), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1903] = { - [sym__concat] = ACTIONS(4576), - [anon_sym_AMP_AMP] = ACTIONS(4576), - [anon_sym_PIPE_PIPE] = ACTIONS(4576), - [anon_sym_RBRACK] = ACTIONS(4576), - [anon_sym_EQ_TILDE] = ACTIONS(4576), - [anon_sym_EQ_EQ] = ACTIONS(4576), - [anon_sym_EQ] = ACTIONS(4578), - [anon_sym_LT] = ACTIONS(4576), - [anon_sym_GT] = ACTIONS(4576), - [anon_sym_BANG_EQ] = ACTIONS(4576), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4576), + [sym__concat] = ACTIONS(4043), + [anon_sym_PIPE] = ACTIONS(4045), + [anon_sym_RPAREN] = ACTIONS(4043), + [anon_sym_AMP_AMP] = ACTIONS(4043), + [anon_sym_PIPE_PIPE] = ACTIONS(4043), + [anon_sym_EQ_TILDE] = ACTIONS(4043), + [anon_sym_EQ_EQ] = ACTIONS(4043), + [anon_sym_EQ] = ACTIONS(4045), + [anon_sym_PLUS_EQ] = ACTIONS(4043), + [anon_sym_LT] = ACTIONS(4045), + [anon_sym_GT] = ACTIONS(4045), + [anon_sym_BANG_EQ] = ACTIONS(4043), + [anon_sym_PLUS] = ACTIONS(4045), + [anon_sym_DASH] = ACTIONS(4045), + [anon_sym_DASH_EQ] = ACTIONS(4043), + [anon_sym_LT_EQ] = ACTIONS(4043), + [anon_sym_GT_EQ] = ACTIONS(4043), + [anon_sym_PLUS_PLUS] = ACTIONS(4043), + [anon_sym_DASH_DASH] = ACTIONS(4043), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(4043), }, [1904] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(4964), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(4930), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1905] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(4966), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym__concat] = ACTIONS(4065), + [anon_sym_PIPE] = ACTIONS(4067), + [anon_sym_RPAREN] = ACTIONS(4065), + [anon_sym_AMP_AMP] = ACTIONS(4065), + [anon_sym_PIPE_PIPE] = ACTIONS(4065), + [anon_sym_EQ_TILDE] = ACTIONS(4065), + [anon_sym_EQ_EQ] = ACTIONS(4065), + [anon_sym_EQ] = ACTIONS(4067), + [anon_sym_PLUS_EQ] = ACTIONS(4065), + [anon_sym_LT] = ACTIONS(4067), + [anon_sym_GT] = ACTIONS(4067), + [anon_sym_BANG_EQ] = ACTIONS(4065), + [anon_sym_PLUS] = ACTIONS(4067), + [anon_sym_DASH] = ACTIONS(4067), + [anon_sym_DASH_EQ] = ACTIONS(4065), + [anon_sym_LT_EQ] = ACTIONS(4065), + [anon_sym_GT_EQ] = ACTIONS(4065), + [anon_sym_PLUS_PLUS] = ACTIONS(4065), + [anon_sym_DASH_DASH] = ACTIONS(4065), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(4065), }, [1906] = { - [sym__concat] = ACTIONS(4608), - [anon_sym_AMP_AMP] = ACTIONS(4608), - [anon_sym_PIPE_PIPE] = ACTIONS(4608), - [anon_sym_RBRACK] = ACTIONS(4608), - [anon_sym_EQ_TILDE] = ACTIONS(4608), - [anon_sym_EQ_EQ] = ACTIONS(4608), - [anon_sym_EQ] = ACTIONS(4610), - [anon_sym_LT] = ACTIONS(4608), - [anon_sym_GT] = ACTIONS(4608), - [anon_sym_BANG_EQ] = ACTIONS(4608), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4608), + [sym__concat] = ACTIONS(4089), + [anon_sym_PIPE] = ACTIONS(4091), + [anon_sym_RPAREN] = ACTIONS(4089), + [anon_sym_AMP_AMP] = ACTIONS(4089), + [anon_sym_PIPE_PIPE] = ACTIONS(4089), + [anon_sym_EQ_TILDE] = ACTIONS(4089), + [anon_sym_EQ_EQ] = ACTIONS(4089), + [anon_sym_EQ] = ACTIONS(4091), + [anon_sym_PLUS_EQ] = ACTIONS(4089), + [anon_sym_LT] = ACTIONS(4091), + [anon_sym_GT] = ACTIONS(4091), + [anon_sym_BANG_EQ] = ACTIONS(4089), + [anon_sym_PLUS] = ACTIONS(4091), + [anon_sym_DASH] = ACTIONS(4091), + [anon_sym_DASH_EQ] = ACTIONS(4089), + [anon_sym_LT_EQ] = ACTIONS(4089), + [anon_sym_GT_EQ] = ACTIONS(4089), + [anon_sym_PLUS_PLUS] = ACTIONS(4089), + [anon_sym_DASH_DASH] = ACTIONS(4089), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(4089), }, [1907] = { - [sym_file_descriptor] = ACTIONS(1724), - [sym__concat] = ACTIONS(1724), - [ts_builtin_sym_end] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_esac] = ACTIONS(1724), - [anon_sym_PIPE] = ACTIONS(1726), - [anon_sym_RPAREN] = ACTIONS(1724), - [anon_sym_SEMI_SEMI] = ACTIONS(1724), - [anon_sym_PIPE_AMP] = ACTIONS(1724), - [anon_sym_AMP_AMP] = ACTIONS(1724), - [anon_sym_PIPE_PIPE] = ACTIONS(1724), - [anon_sym_LT] = ACTIONS(1726), - [anon_sym_GT] = ACTIONS(1726), - [anon_sym_GT_GT] = ACTIONS(1724), - [anon_sym_AMP_GT] = ACTIONS(1726), - [anon_sym_AMP_GT_GT] = ACTIONS(1724), - [anon_sym_LT_AMP] = ACTIONS(1724), - [anon_sym_GT_AMP] = ACTIONS(1724), - [anon_sym_LT_LT] = ACTIONS(1726), - [anon_sym_LT_LT_DASH] = ACTIONS(1724), - [anon_sym_LT_LT_LT] = ACTIONS(1724), - [anon_sym_BQUOTE] = ACTIONS(1724), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1726), + [sym__concat] = ACTIONS(4710), + [anon_sym_RPAREN_RPAREN] = ACTIONS(4710), + [anon_sym_AMP_AMP] = ACTIONS(4710), + [anon_sym_PIPE_PIPE] = ACTIONS(4710), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4710), + [anon_sym_EQ_TILDE] = ACTIONS(4710), + [anon_sym_EQ_EQ] = ACTIONS(4710), + [anon_sym_EQ] = ACTIONS(4712), + [anon_sym_PLUS_EQ] = ACTIONS(4710), + [anon_sym_LT] = ACTIONS(4712), + [anon_sym_GT] = ACTIONS(4712), + [anon_sym_BANG_EQ] = ACTIONS(4710), + [anon_sym_PLUS] = ACTIONS(4712), + [anon_sym_DASH] = ACTIONS(4712), + [anon_sym_DASH_EQ] = ACTIONS(4710), + [anon_sym_LT_EQ] = ACTIONS(4710), + [anon_sym_GT_EQ] = ACTIONS(4710), + [anon_sym_PLUS_PLUS] = ACTIONS(4710), + [anon_sym_DASH_DASH] = ACTIONS(4710), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(4710), }, [1908] = { - [aux_sym_concatenation_repeat1] = STATE(1908), - [sym_file_descriptor] = ACTIONS(1724), - [sym__concat] = ACTIONS(4968), - [ts_builtin_sym_end] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(1726), - [anon_sym_SEMI_SEMI] = ACTIONS(1724), - [anon_sym_PIPE_AMP] = ACTIONS(1724), - [anon_sym_AMP_AMP] = ACTIONS(1724), - [anon_sym_PIPE_PIPE] = ACTIONS(1724), - [anon_sym_LT] = ACTIONS(1726), - [anon_sym_GT] = ACTIONS(1726), - [anon_sym_GT_GT] = ACTIONS(1724), - [anon_sym_AMP_GT] = ACTIONS(1726), - [anon_sym_AMP_GT_GT] = ACTIONS(1724), - [anon_sym_LT_AMP] = ACTIONS(1724), - [anon_sym_GT_AMP] = ACTIONS(1724), - [anon_sym_LT_LT] = ACTIONS(1726), - [anon_sym_LT_LT_DASH] = ACTIONS(1724), - [anon_sym_LT_LT_LT] = ACTIONS(1724), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1726), + [sym__concat] = ACTIONS(4714), + [anon_sym_RPAREN_RPAREN] = ACTIONS(4714), + [anon_sym_AMP_AMP] = ACTIONS(4714), + [anon_sym_PIPE_PIPE] = ACTIONS(4714), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4714), + [anon_sym_EQ_TILDE] = ACTIONS(4714), + [anon_sym_EQ_EQ] = ACTIONS(4714), + [anon_sym_EQ] = ACTIONS(4716), + [anon_sym_PLUS_EQ] = ACTIONS(4714), + [anon_sym_LT] = ACTIONS(4716), + [anon_sym_GT] = ACTIONS(4716), + [anon_sym_BANG_EQ] = ACTIONS(4714), + [anon_sym_PLUS] = ACTIONS(4716), + [anon_sym_DASH] = ACTIONS(4716), + [anon_sym_DASH_EQ] = ACTIONS(4714), + [anon_sym_LT_EQ] = ACTIONS(4714), + [anon_sym_GT_EQ] = ACTIONS(4714), + [anon_sym_PLUS_PLUS] = ACTIONS(4714), + [anon_sym_DASH_DASH] = ACTIONS(4714), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(4714), }, [1909] = { - [sym_file_descriptor] = ACTIONS(1731), - [sym__concat] = ACTIONS(1731), - [ts_builtin_sym_end] = ACTIONS(1731), - [anon_sym_SEMI] = ACTIONS(1733), - [anon_sym_esac] = ACTIONS(1731), - [anon_sym_PIPE] = ACTIONS(1733), - [anon_sym_RPAREN] = ACTIONS(1731), - [anon_sym_SEMI_SEMI] = ACTIONS(1731), - [anon_sym_PIPE_AMP] = ACTIONS(1731), - [anon_sym_AMP_AMP] = ACTIONS(1731), - [anon_sym_PIPE_PIPE] = ACTIONS(1731), - [anon_sym_LT] = ACTIONS(1733), - [anon_sym_GT] = ACTIONS(1733), - [anon_sym_GT_GT] = ACTIONS(1731), - [anon_sym_AMP_GT] = ACTIONS(1733), - [anon_sym_AMP_GT_GT] = ACTIONS(1731), - [anon_sym_LT_AMP] = ACTIONS(1731), - [anon_sym_GT_AMP] = ACTIONS(1731), - [anon_sym_LT_LT] = ACTIONS(1733), - [anon_sym_LT_LT_DASH] = ACTIONS(1731), - [anon_sym_LT_LT_LT] = ACTIONS(1731), - [anon_sym_BQUOTE] = ACTIONS(1731), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1731), - [anon_sym_AMP] = ACTIONS(1733), + [sym__concat] = ACTIONS(4718), + [anon_sym_RPAREN_RPAREN] = ACTIONS(4718), + [anon_sym_AMP_AMP] = ACTIONS(4718), + [anon_sym_PIPE_PIPE] = ACTIONS(4718), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4718), + [anon_sym_EQ_TILDE] = ACTIONS(4718), + [anon_sym_EQ_EQ] = ACTIONS(4718), + [anon_sym_EQ] = ACTIONS(4720), + [anon_sym_PLUS_EQ] = ACTIONS(4718), + [anon_sym_LT] = ACTIONS(4720), + [anon_sym_GT] = ACTIONS(4720), + [anon_sym_BANG_EQ] = ACTIONS(4718), + [anon_sym_PLUS] = ACTIONS(4720), + [anon_sym_DASH] = ACTIONS(4720), + [anon_sym_DASH_EQ] = ACTIONS(4718), + [anon_sym_LT_EQ] = ACTIONS(4718), + [anon_sym_GT_EQ] = ACTIONS(4718), + [anon_sym_PLUS_PLUS] = ACTIONS(4718), + [anon_sym_DASH_DASH] = ACTIONS(4718), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(4718), }, [1910] = { - [anon_sym_DQUOTE] = ACTIONS(4971), - [anon_sym_DOLLAR] = ACTIONS(775), - [sym__string_content] = ACTIONS(777), - [anon_sym_POUND] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(781), - [anon_sym_STAR] = ACTIONS(783), - [anon_sym_AT] = ACTIONS(783), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_0] = ACTIONS(781), - [anon_sym__] = ACTIONS(781), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(4932), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1911] = { - [sym_concatenation] = STATE(2164), - [sym_string] = STATE(2163), - [sym_simple_expansion] = STATE(2163), - [sym_string_expansion] = STATE(2163), - [sym_expansion] = STATE(2163), - [sym_command_substitution] = STATE(2163), - [sym_process_substitution] = STATE(2163), - [anon_sym_RBRACE] = ACTIONS(4973), - [sym__special_characters] = ACTIONS(4975), - [anon_sym_DQUOTE] = ACTIONS(1802), - [anon_sym_DOLLAR] = ACTIONS(1804), - [sym_raw_string] = ACTIONS(4977), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1808), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1810), - [anon_sym_BQUOTE] = ACTIONS(1812), - [anon_sym_LT_LPAREN] = ACTIONS(1814), - [anon_sym_GT_LPAREN] = ACTIONS(1814), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4977), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(4934), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1912] = { - [anon_sym_LBRACK] = ACTIONS(815), - [anon_sym_EQ] = ACTIONS(4979), - [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(4754), + [anon_sym_RPAREN_RPAREN] = ACTIONS(4754), + [anon_sym_AMP_AMP] = ACTIONS(4754), + [anon_sym_PIPE_PIPE] = ACTIONS(4754), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4754), + [anon_sym_EQ_TILDE] = ACTIONS(4754), + [anon_sym_EQ_EQ] = ACTIONS(4754), + [anon_sym_EQ] = ACTIONS(4756), + [anon_sym_PLUS_EQ] = ACTIONS(4754), + [anon_sym_LT] = ACTIONS(4756), + [anon_sym_GT] = ACTIONS(4756), + [anon_sym_BANG_EQ] = ACTIONS(4754), + [anon_sym_PLUS] = ACTIONS(4756), + [anon_sym_DASH] = ACTIONS(4756), + [anon_sym_DASH_EQ] = ACTIONS(4754), + [anon_sym_LT_EQ] = ACTIONS(4754), + [anon_sym_GT_EQ] = ACTIONS(4754), + [anon_sym_PLUS_PLUS] = ACTIONS(4754), + [anon_sym_DASH_DASH] = ACTIONS(4754), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(4754), }, [1913] = { - [sym_concatenation] = STATE(2168), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(2168), - [anon_sym_RBRACE] = ACTIONS(4981), - [anon_sym_EQ] = ACTIONS(4983), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(4985), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(4987), - [anon_sym_COLON] = ACTIONS(4983), - [anon_sym_COLON_QMARK] = ACTIONS(4983), - [anon_sym_COLON_DASH] = ACTIONS(4983), - [anon_sym_PERCENT] = ACTIONS(4983), - [anon_sym_DASH] = ACTIONS(4983), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_file_descriptor] = ACTIONS(1763), + [sym__concat] = ACTIONS(1763), + [ts_builtin_sym_end] = ACTIONS(1763), + [anon_sym_SEMI] = ACTIONS(1765), + [anon_sym_esac] = ACTIONS(1763), + [anon_sym_PIPE] = ACTIONS(1765), + [anon_sym_RPAREN] = ACTIONS(1763), + [anon_sym_SEMI_SEMI] = ACTIONS(1763), + [anon_sym_PIPE_AMP] = ACTIONS(1763), + [anon_sym_AMP_AMP] = ACTIONS(1763), + [anon_sym_PIPE_PIPE] = ACTIONS(1763), + [anon_sym_LT] = ACTIONS(1765), + [anon_sym_GT] = ACTIONS(1765), + [anon_sym_GT_GT] = ACTIONS(1763), + [anon_sym_AMP_GT] = ACTIONS(1765), + [anon_sym_AMP_GT_GT] = ACTIONS(1763), + [anon_sym_LT_AMP] = ACTIONS(1763), + [anon_sym_GT_AMP] = ACTIONS(1763), + [anon_sym_LT_LT] = ACTIONS(1765), + [anon_sym_LT_LT_DASH] = ACTIONS(1763), + [anon_sym_LT_LT_LT] = ACTIONS(1763), + [anon_sym_BQUOTE] = ACTIONS(1763), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1763), + [anon_sym_AMP] = ACTIONS(1765), }, [1914] = { - [sym_concatenation] = STATE(2170), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(2170), - [anon_sym_RBRACE] = ACTIONS(4973), - [anon_sym_EQ] = ACTIONS(4989), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(4991), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(4993), - [anon_sym_COLON] = ACTIONS(4989), - [anon_sym_COLON_QMARK] = ACTIONS(4989), - [anon_sym_COLON_DASH] = ACTIONS(4989), - [anon_sym_PERCENT] = ACTIONS(4989), - [anon_sym_DASH] = ACTIONS(4989), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [aux_sym_concatenation_repeat1] = STATE(1914), + [sym_file_descriptor] = ACTIONS(1763), + [sym__concat] = ACTIONS(4936), + [ts_builtin_sym_end] = ACTIONS(1763), + [anon_sym_SEMI] = ACTIONS(1765), + [anon_sym_PIPE] = ACTIONS(1765), + [anon_sym_SEMI_SEMI] = ACTIONS(1763), + [anon_sym_PIPE_AMP] = ACTIONS(1763), + [anon_sym_AMP_AMP] = ACTIONS(1763), + [anon_sym_PIPE_PIPE] = ACTIONS(1763), + [anon_sym_LT] = ACTIONS(1765), + [anon_sym_GT] = ACTIONS(1765), + [anon_sym_GT_GT] = ACTIONS(1763), + [anon_sym_AMP_GT] = ACTIONS(1765), + [anon_sym_AMP_GT_GT] = ACTIONS(1763), + [anon_sym_LT_AMP] = ACTIONS(1763), + [anon_sym_GT_AMP] = ACTIONS(1763), + [anon_sym_LT_LT] = ACTIONS(1765), + [anon_sym_LT_LT_DASH] = ACTIONS(1763), + [anon_sym_LT_LT_LT] = ACTIONS(1763), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1763), + [anon_sym_AMP] = ACTIONS(1765), }, [1915] = { - [sym_file_descriptor] = ACTIONS(1832), - [sym__concat] = ACTIONS(1832), - [ts_builtin_sym_end] = ACTIONS(1832), - [anon_sym_SEMI] = ACTIONS(1834), - [anon_sym_esac] = ACTIONS(1832), - [anon_sym_PIPE] = ACTIONS(1834), - [anon_sym_RPAREN] = ACTIONS(1832), - [anon_sym_SEMI_SEMI] = ACTIONS(1832), - [anon_sym_PIPE_AMP] = ACTIONS(1832), - [anon_sym_AMP_AMP] = ACTIONS(1832), - [anon_sym_PIPE_PIPE] = ACTIONS(1832), - [anon_sym_LT] = ACTIONS(1834), - [anon_sym_GT] = ACTIONS(1834), - [anon_sym_GT_GT] = ACTIONS(1832), - [anon_sym_AMP_GT] = ACTIONS(1834), - [anon_sym_AMP_GT_GT] = ACTIONS(1832), - [anon_sym_LT_AMP] = ACTIONS(1832), - [anon_sym_GT_AMP] = ACTIONS(1832), - [anon_sym_LT_LT] = ACTIONS(1834), - [anon_sym_LT_LT_DASH] = ACTIONS(1832), - [anon_sym_LT_LT_LT] = ACTIONS(1832), - [anon_sym_BQUOTE] = ACTIONS(1832), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1832), - [anon_sym_AMP] = ACTIONS(1834), + [sym_file_descriptor] = ACTIONS(1770), + [sym__concat] = ACTIONS(1770), + [ts_builtin_sym_end] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(1772), + [anon_sym_esac] = ACTIONS(1770), + [anon_sym_PIPE] = ACTIONS(1772), + [anon_sym_RPAREN] = ACTIONS(1770), + [anon_sym_SEMI_SEMI] = ACTIONS(1770), + [anon_sym_PIPE_AMP] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1772), + [anon_sym_GT] = ACTIONS(1772), + [anon_sym_GT_GT] = ACTIONS(1770), + [anon_sym_AMP_GT] = ACTIONS(1772), + [anon_sym_AMP_GT_GT] = ACTIONS(1770), + [anon_sym_LT_AMP] = ACTIONS(1770), + [anon_sym_GT_AMP] = ACTIONS(1770), + [anon_sym_LT_LT] = ACTIONS(1772), + [anon_sym_LT_LT_DASH] = ACTIONS(1770), + [anon_sym_LT_LT_LT] = ACTIONS(1770), + [anon_sym_BQUOTE] = ACTIONS(1770), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1770), + [anon_sym_AMP] = ACTIONS(1772), }, [1916] = { - [sym_comment] = ACTIONS(265), - [sym_regex_without_right_brace] = ACTIONS(4995), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_DQUOTE] = ACTIONS(4939), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym__string_content] = ACTIONS(821), + [anon_sym_POUND] = ACTIONS(815), + [sym_comment] = ACTIONS(281), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(823), + [anon_sym_STAR] = ACTIONS(825), + [anon_sym_AT] = ACTIONS(825), + [anon_sym_QMARK] = ACTIONS(825), + [anon_sym_0] = ACTIONS(823), + [anon_sym__] = ACTIONS(823), }, [1917] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(4997), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_concatenation] = STATE(2145), + [sym_string] = STATE(2144), + [sym_simple_expansion] = STATE(2144), + [sym_string_expansion] = STATE(2144), + [sym_expansion] = STATE(2144), + [sym_command_substitution] = STATE(2144), + [sym_process_substitution] = STATE(2144), + [anon_sym_RBRACE] = ACTIONS(4941), + [sym__special_characters] = ACTIONS(4943), + [anon_sym_DQUOTE] = ACTIONS(1841), + [anon_sym_DOLLAR] = ACTIONS(1843), + [sym_raw_string] = ACTIONS(4945), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1849), + [anon_sym_BQUOTE] = ACTIONS(1851), + [anon_sym_LT_LPAREN] = ACTIONS(1853), + [anon_sym_GT_LPAREN] = ACTIONS(1853), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(4945), }, [1918] = { - [sym_file_descriptor] = ACTIONS(1876), - [sym__concat] = ACTIONS(1876), - [ts_builtin_sym_end] = ACTIONS(1876), - [anon_sym_SEMI] = ACTIONS(1878), - [anon_sym_esac] = ACTIONS(1876), - [anon_sym_PIPE] = ACTIONS(1878), - [anon_sym_RPAREN] = ACTIONS(1876), - [anon_sym_SEMI_SEMI] = ACTIONS(1876), - [anon_sym_PIPE_AMP] = ACTIONS(1876), - [anon_sym_AMP_AMP] = ACTIONS(1876), - [anon_sym_PIPE_PIPE] = ACTIONS(1876), - [anon_sym_LT] = ACTIONS(1878), - [anon_sym_GT] = ACTIONS(1878), - [anon_sym_GT_GT] = ACTIONS(1876), - [anon_sym_AMP_GT] = ACTIONS(1878), - [anon_sym_AMP_GT_GT] = ACTIONS(1876), - [anon_sym_LT_AMP] = ACTIONS(1876), - [anon_sym_GT_AMP] = ACTIONS(1876), - [anon_sym_LT_LT] = ACTIONS(1878), - [anon_sym_LT_LT_DASH] = ACTIONS(1876), - [anon_sym_LT_LT_LT] = ACTIONS(1876), - [anon_sym_BQUOTE] = ACTIONS(1876), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1876), - [anon_sym_AMP] = ACTIONS(1878), + [anon_sym_LBRACK] = ACTIONS(857), + [anon_sym_EQ] = ACTIONS(4947), + [sym_comment] = ACTIONS(55), }, [1919] = { - [sym_comment] = ACTIONS(265), - [sym_regex_without_right_brace] = ACTIONS(4999), + [sym_concatenation] = STATE(2149), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2149), + [anon_sym_RBRACE] = ACTIONS(4949), + [anon_sym_EQ] = ACTIONS(4951), + [anon_sym_DASH] = ACTIONS(4951), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(4953), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(4955), + [anon_sym_COLON] = ACTIONS(4951), + [anon_sym_COLON_QMARK] = ACTIONS(4951), + [anon_sym_COLON_DASH] = ACTIONS(4951), + [anon_sym_PERCENT] = ACTIONS(4951), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1920] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(4973), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_concatenation] = STATE(2151), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2151), + [anon_sym_RBRACE] = ACTIONS(4941), + [anon_sym_EQ] = ACTIONS(4957), + [anon_sym_DASH] = ACTIONS(4957), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(4959), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(4961), + [anon_sym_COLON] = ACTIONS(4957), + [anon_sym_COLON_QMARK] = ACTIONS(4957), + [anon_sym_COLON_DASH] = ACTIONS(4957), + [anon_sym_PERCENT] = ACTIONS(4957), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1921] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(5001), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(901), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), + [sym_file_descriptor] = ACTIONS(1871), + [sym__concat] = ACTIONS(1871), + [ts_builtin_sym_end] = ACTIONS(1871), + [anon_sym_SEMI] = ACTIONS(1873), + [anon_sym_esac] = ACTIONS(1871), + [anon_sym_PIPE] = ACTIONS(1873), + [anon_sym_RPAREN] = ACTIONS(1871), + [anon_sym_SEMI_SEMI] = ACTIONS(1871), + [anon_sym_PIPE_AMP] = ACTIONS(1871), + [anon_sym_AMP_AMP] = ACTIONS(1871), + [anon_sym_PIPE_PIPE] = ACTIONS(1871), + [anon_sym_LT] = ACTIONS(1873), + [anon_sym_GT] = ACTIONS(1873), + [anon_sym_GT_GT] = ACTIONS(1871), + [anon_sym_AMP_GT] = ACTIONS(1873), + [anon_sym_AMP_GT_GT] = ACTIONS(1871), + [anon_sym_LT_AMP] = ACTIONS(1871), + [anon_sym_GT_AMP] = ACTIONS(1871), + [anon_sym_LT_LT] = ACTIONS(1873), + [anon_sym_LT_LT_DASH] = ACTIONS(1871), + [anon_sym_LT_LT_LT] = ACTIONS(1871), + [anon_sym_BQUOTE] = ACTIONS(1871), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1871), + [anon_sym_AMP] = ACTIONS(1873), }, [1922] = { - [sym_file_descriptor] = ACTIONS(1884), - [sym__concat] = ACTIONS(1884), - [ts_builtin_sym_end] = ACTIONS(1884), - [anon_sym_SEMI] = ACTIONS(1886), - [anon_sym_esac] = ACTIONS(1884), - [anon_sym_PIPE] = ACTIONS(1886), - [anon_sym_RPAREN] = ACTIONS(1884), - [anon_sym_SEMI_SEMI] = ACTIONS(1884), - [anon_sym_PIPE_AMP] = ACTIONS(1884), - [anon_sym_AMP_AMP] = ACTIONS(1884), - [anon_sym_PIPE_PIPE] = ACTIONS(1884), - [anon_sym_LT] = ACTIONS(1886), - [anon_sym_GT] = ACTIONS(1886), - [anon_sym_GT_GT] = ACTIONS(1884), - [anon_sym_AMP_GT] = ACTIONS(1886), - [anon_sym_AMP_GT_GT] = ACTIONS(1884), - [anon_sym_LT_AMP] = ACTIONS(1884), - [anon_sym_GT_AMP] = ACTIONS(1884), - [anon_sym_LT_LT] = ACTIONS(1886), - [anon_sym_LT_LT_DASH] = ACTIONS(1884), - [anon_sym_LT_LT_LT] = ACTIONS(1884), - [anon_sym_BQUOTE] = ACTIONS(1884), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1884), - [anon_sym_AMP] = ACTIONS(1886), + [sym_concatenation] = STATE(2154), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2154), + [sym_regex] = ACTIONS(4963), + [anon_sym_RBRACE] = ACTIONS(4965), + [anon_sym_EQ] = ACTIONS(4967), + [anon_sym_DASH] = ACTIONS(4967), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(4969), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(4967), + [anon_sym_COLON_QMARK] = ACTIONS(4967), + [anon_sym_COLON_DASH] = ACTIONS(4967), + [anon_sym_PERCENT] = ACTIONS(4967), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1923] = { - [anon_sym_SEMI] = ACTIONS(5003), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(5001), - [anon_sym_SEMI_SEMI] = ACTIONS(5005), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(5005), - [anon_sym_AMP] = ACTIONS(5003), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(4965), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1924] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(5003), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(5001), - [anon_sym_SEMI_SEMI] = ACTIONS(5005), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(5005), - [anon_sym_AMP] = ACTIONS(5003), + [sym_file_descriptor] = ACTIONS(1919), + [sym__concat] = ACTIONS(1919), + [ts_builtin_sym_end] = ACTIONS(1919), + [anon_sym_SEMI] = ACTIONS(1921), + [anon_sym_esac] = ACTIONS(1919), + [anon_sym_PIPE] = ACTIONS(1921), + [anon_sym_RPAREN] = ACTIONS(1919), + [anon_sym_SEMI_SEMI] = ACTIONS(1919), + [anon_sym_PIPE_AMP] = ACTIONS(1919), + [anon_sym_AMP_AMP] = ACTIONS(1919), + [anon_sym_PIPE_PIPE] = ACTIONS(1919), + [anon_sym_LT] = ACTIONS(1921), + [anon_sym_GT] = ACTIONS(1921), + [anon_sym_GT_GT] = ACTIONS(1919), + [anon_sym_AMP_GT] = ACTIONS(1921), + [anon_sym_AMP_GT_GT] = ACTIONS(1919), + [anon_sym_LT_AMP] = ACTIONS(1919), + [anon_sym_GT_AMP] = ACTIONS(1919), + [anon_sym_LT_LT] = ACTIONS(1921), + [anon_sym_LT_LT_DASH] = ACTIONS(1919), + [anon_sym_LT_LT_LT] = ACTIONS(1919), + [anon_sym_BQUOTE] = ACTIONS(1919), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1919), + [anon_sym_AMP] = ACTIONS(1921), }, [1925] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(5001), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), + [sym_concatenation] = STATE(2151), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2151), + [sym_regex] = ACTIONS(4971), + [anon_sym_RBRACE] = ACTIONS(4941), + [anon_sym_EQ] = ACTIONS(4957), + [anon_sym_DASH] = ACTIONS(4957), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(4959), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(4957), + [anon_sym_COLON_QMARK] = ACTIONS(4957), + [anon_sym_COLON_DASH] = ACTIONS(4957), + [anon_sym_PERCENT] = ACTIONS(4957), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1926] = { - [anon_sym_SEMI] = ACTIONS(5007), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_SEMI_SEMI] = ACTIONS(5009), - [anon_sym_PIPE_AMP] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(883), - [anon_sym_PIPE_PIPE] = ACTIONS(883), - [anon_sym_BQUOTE] = ACTIONS(5001), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(5009), - [anon_sym_AMP] = ACTIONS(5007), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(4941), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1927] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(5007), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_SEMI_SEMI] = ACTIONS(5009), - [anon_sym_PIPE_AMP] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(883), - [anon_sym_PIPE_PIPE] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(5001), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(5009), - [anon_sym_AMP] = ACTIONS(5007), + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(4973), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), }, [1928] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(5011), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(901), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), + [sym_file_descriptor] = ACTIONS(1927), + [sym__concat] = ACTIONS(1927), + [ts_builtin_sym_end] = ACTIONS(1927), + [anon_sym_SEMI] = ACTIONS(1929), + [anon_sym_esac] = ACTIONS(1927), + [anon_sym_PIPE] = ACTIONS(1929), + [anon_sym_RPAREN] = ACTIONS(1927), + [anon_sym_SEMI_SEMI] = ACTIONS(1927), + [anon_sym_PIPE_AMP] = ACTIONS(1927), + [anon_sym_AMP_AMP] = ACTIONS(1927), + [anon_sym_PIPE_PIPE] = ACTIONS(1927), + [anon_sym_LT] = ACTIONS(1929), + [anon_sym_GT] = ACTIONS(1929), + [anon_sym_GT_GT] = ACTIONS(1927), + [anon_sym_AMP_GT] = ACTIONS(1929), + [anon_sym_AMP_GT_GT] = ACTIONS(1927), + [anon_sym_LT_AMP] = ACTIONS(1927), + [anon_sym_GT_AMP] = ACTIONS(1927), + [anon_sym_LT_LT] = ACTIONS(1929), + [anon_sym_LT_LT_DASH] = ACTIONS(1927), + [anon_sym_LT_LT_LT] = ACTIONS(1927), + [anon_sym_BQUOTE] = ACTIONS(1927), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1929), }, [1929] = { - [sym_file_descriptor] = ACTIONS(1916), - [sym__concat] = ACTIONS(1916), - [ts_builtin_sym_end] = ACTIONS(1916), - [anon_sym_SEMI] = ACTIONS(1918), - [anon_sym_esac] = ACTIONS(1916), - [anon_sym_PIPE] = ACTIONS(1918), - [anon_sym_RPAREN] = ACTIONS(1916), - [anon_sym_SEMI_SEMI] = ACTIONS(1916), - [anon_sym_PIPE_AMP] = ACTIONS(1916), - [anon_sym_AMP_AMP] = ACTIONS(1916), - [anon_sym_PIPE_PIPE] = ACTIONS(1916), - [anon_sym_LT] = ACTIONS(1918), - [anon_sym_GT] = ACTIONS(1918), - [anon_sym_GT_GT] = ACTIONS(1916), - [anon_sym_AMP_GT] = ACTIONS(1918), - [anon_sym_AMP_GT_GT] = ACTIONS(1916), - [anon_sym_LT_AMP] = ACTIONS(1916), - [anon_sym_GT_AMP] = ACTIONS(1916), - [anon_sym_LT_LT] = ACTIONS(1918), - [anon_sym_LT_LT_DASH] = ACTIONS(1916), - [anon_sym_LT_LT_LT] = ACTIONS(1916), - [anon_sym_BQUOTE] = ACTIONS(1916), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1916), - [anon_sym_AMP] = ACTIONS(1918), + [anon_sym_SEMI] = ACTIONS(4975), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(4973), + [anon_sym_SEMI_SEMI] = ACTIONS(4977), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(4977), + [anon_sym_AMP] = ACTIONS(4975), }, [1930] = { - [anon_sym_SEMI] = ACTIONS(5013), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(5011), - [anon_sym_SEMI_SEMI] = ACTIONS(5015), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(5015), - [anon_sym_AMP] = ACTIONS(5013), + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(4975), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(4973), + [anon_sym_SEMI_SEMI] = ACTIONS(4977), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(4977), + [anon_sym_AMP] = ACTIONS(4975), }, [1931] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(5013), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(5011), - [anon_sym_SEMI_SEMI] = ACTIONS(5015), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(5015), - [anon_sym_AMP] = ACTIONS(5013), + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(4973), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), }, [1932] = { - [sym__concat] = ACTIONS(4568), - [anon_sym_PIPE] = ACTIONS(4570), - [anon_sym_RPAREN] = ACTIONS(4568), - [anon_sym_AMP_AMP] = ACTIONS(4568), - [anon_sym_PIPE_PIPE] = ACTIONS(4568), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4568), - [anon_sym_EQ_TILDE] = ACTIONS(4568), - [anon_sym_EQ_EQ] = ACTIONS(4568), - [anon_sym_EQ] = ACTIONS(4570), - [anon_sym_LT] = ACTIONS(4568), - [anon_sym_GT] = ACTIONS(4568), - [anon_sym_BANG_EQ] = ACTIONS(4568), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4568), + [anon_sym_SEMI] = ACTIONS(4979), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_SEMI_SEMI] = ACTIONS(4981), + [anon_sym_PIPE_AMP] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_BQUOTE] = ACTIONS(4973), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(4981), + [anon_sym_AMP] = ACTIONS(4979), }, [1933] = { - [sym__concat] = ACTIONS(4572), - [anon_sym_PIPE] = ACTIONS(4574), - [anon_sym_RPAREN] = ACTIONS(4572), - [anon_sym_AMP_AMP] = ACTIONS(4572), - [anon_sym_PIPE_PIPE] = ACTIONS(4572), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4572), - [anon_sym_EQ_TILDE] = ACTIONS(4572), - [anon_sym_EQ_EQ] = ACTIONS(4572), - [anon_sym_EQ] = ACTIONS(4574), - [anon_sym_LT] = ACTIONS(4572), - [anon_sym_GT] = ACTIONS(4572), - [anon_sym_BANG_EQ] = ACTIONS(4572), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4572), + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(4979), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_SEMI_SEMI] = ACTIONS(4981), + [anon_sym_PIPE_AMP] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(4973), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(4981), + [anon_sym_AMP] = ACTIONS(4979), }, [1934] = { - [sym__concat] = ACTIONS(4576), - [anon_sym_PIPE] = ACTIONS(4578), - [anon_sym_RPAREN] = ACTIONS(4576), - [anon_sym_AMP_AMP] = ACTIONS(4576), - [anon_sym_PIPE_PIPE] = ACTIONS(4576), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4576), - [anon_sym_EQ_TILDE] = ACTIONS(4576), - [anon_sym_EQ_EQ] = ACTIONS(4576), - [anon_sym_EQ] = ACTIONS(4578), - [anon_sym_LT] = ACTIONS(4576), - [anon_sym_GT] = ACTIONS(4576), - [anon_sym_BANG_EQ] = ACTIONS(4576), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4576), + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(4983), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), }, [1935] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(5017), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_file_descriptor] = ACTIONS(1959), + [sym__concat] = ACTIONS(1959), + [ts_builtin_sym_end] = ACTIONS(1959), + [anon_sym_SEMI] = ACTIONS(1961), + [anon_sym_esac] = ACTIONS(1959), + [anon_sym_PIPE] = ACTIONS(1961), + [anon_sym_RPAREN] = ACTIONS(1959), + [anon_sym_SEMI_SEMI] = ACTIONS(1959), + [anon_sym_PIPE_AMP] = ACTIONS(1959), + [anon_sym_AMP_AMP] = ACTIONS(1959), + [anon_sym_PIPE_PIPE] = ACTIONS(1959), + [anon_sym_LT] = ACTIONS(1961), + [anon_sym_GT] = ACTIONS(1961), + [anon_sym_GT_GT] = ACTIONS(1959), + [anon_sym_AMP_GT] = ACTIONS(1961), + [anon_sym_AMP_GT_GT] = ACTIONS(1959), + [anon_sym_LT_AMP] = ACTIONS(1959), + [anon_sym_GT_AMP] = ACTIONS(1959), + [anon_sym_LT_LT] = ACTIONS(1961), + [anon_sym_LT_LT_DASH] = ACTIONS(1959), + [anon_sym_LT_LT_LT] = ACTIONS(1959), + [anon_sym_BQUOTE] = ACTIONS(1959), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1959), + [anon_sym_AMP] = ACTIONS(1961), }, [1936] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(5019), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [anon_sym_SEMI] = ACTIONS(4985), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(4983), + [anon_sym_SEMI_SEMI] = ACTIONS(4987), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(4987), + [anon_sym_AMP] = ACTIONS(4985), }, [1937] = { - [sym__concat] = ACTIONS(4608), - [anon_sym_PIPE] = ACTIONS(4610), - [anon_sym_RPAREN] = ACTIONS(4608), - [anon_sym_AMP_AMP] = ACTIONS(4608), - [anon_sym_PIPE_PIPE] = ACTIONS(4608), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4608), - [anon_sym_EQ_TILDE] = ACTIONS(4608), - [anon_sym_EQ_EQ] = ACTIONS(4608), - [anon_sym_EQ] = ACTIONS(4610), - [anon_sym_LT] = ACTIONS(4608), - [anon_sym_GT] = ACTIONS(4608), - [anon_sym_BANG_EQ] = ACTIONS(4608), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4608), + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(4985), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(4983), + [anon_sym_SEMI_SEMI] = ACTIONS(4987), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(4987), + [anon_sym_AMP] = ACTIONS(4985), }, [1938] = { - [sym__concat] = ACTIONS(4568), - [sym_variable_name] = ACTIONS(4568), - [ts_builtin_sym_end] = ACTIONS(4568), - [anon_sym_SEMI] = ACTIONS(4570), - [anon_sym_PIPE] = ACTIONS(4570), - [anon_sym_RPAREN] = ACTIONS(4568), - [anon_sym_SEMI_SEMI] = ACTIONS(4568), - [anon_sym_PIPE_AMP] = ACTIONS(4568), - [anon_sym_AMP_AMP] = ACTIONS(4568), - [anon_sym_PIPE_PIPE] = ACTIONS(4568), - [sym__special_characters] = ACTIONS(4568), - [anon_sym_DQUOTE] = ACTIONS(4568), - [anon_sym_DOLLAR] = ACTIONS(4570), - [sym_raw_string] = ACTIONS(4568), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4568), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4568), - [anon_sym_BQUOTE] = ACTIONS(4568), - [anon_sym_LT_LPAREN] = ACTIONS(4568), - [anon_sym_GT_LPAREN] = ACTIONS(4568), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4570), - [sym_word] = ACTIONS(4570), - [anon_sym_LF] = ACTIONS(4568), - [anon_sym_AMP] = ACTIONS(4570), + [aux_sym_concatenation_repeat1] = STATE(1940), + [sym_file_descriptor] = ACTIONS(1088), + [sym__concat] = ACTIONS(3579), + [anon_sym_SEMI] = ACTIONS(1090), + [anon_sym_PIPE] = ACTIONS(1090), + [anon_sym_SEMI_SEMI] = ACTIONS(1088), + [anon_sym_PIPE_AMP] = ACTIONS(1088), + [anon_sym_AMP_AMP] = ACTIONS(1088), + [anon_sym_PIPE_PIPE] = ACTIONS(1088), + [anon_sym_LT] = ACTIONS(1090), + [anon_sym_GT] = ACTIONS(1090), + [anon_sym_GT_GT] = ACTIONS(1088), + [anon_sym_AMP_GT] = ACTIONS(1090), + [anon_sym_AMP_GT_GT] = ACTIONS(1088), + [anon_sym_LT_AMP] = ACTIONS(1088), + [anon_sym_GT_AMP] = ACTIONS(1088), + [anon_sym_LT_LT] = ACTIONS(1090), + [anon_sym_LT_LT_DASH] = ACTIONS(1088), + [anon_sym_LT_LT_LT] = ACTIONS(1088), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1088), + [anon_sym_AMP] = ACTIONS(1090), }, [1939] = { - [sym__concat] = ACTIONS(4572), - [sym_variable_name] = ACTIONS(4572), - [ts_builtin_sym_end] = ACTIONS(4572), - [anon_sym_SEMI] = ACTIONS(4574), - [anon_sym_PIPE] = ACTIONS(4574), - [anon_sym_RPAREN] = ACTIONS(4572), - [anon_sym_SEMI_SEMI] = ACTIONS(4572), - [anon_sym_PIPE_AMP] = ACTIONS(4572), - [anon_sym_AMP_AMP] = ACTIONS(4572), - [anon_sym_PIPE_PIPE] = ACTIONS(4572), - [sym__special_characters] = ACTIONS(4572), - [anon_sym_DQUOTE] = ACTIONS(4572), - [anon_sym_DOLLAR] = ACTIONS(4574), - [sym_raw_string] = ACTIONS(4572), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4572), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4572), - [anon_sym_BQUOTE] = ACTIONS(4572), - [anon_sym_LT_LPAREN] = ACTIONS(4572), - [anon_sym_GT_LPAREN] = ACTIONS(4572), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4574), - [sym_word] = ACTIONS(4574), - [anon_sym_LF] = ACTIONS(4572), - [anon_sym_AMP] = ACTIONS(4574), + [aux_sym_concatenation_repeat1] = STATE(1940), + [sym_file_descriptor] = ACTIONS(1092), + [sym__concat] = ACTIONS(3579), + [anon_sym_SEMI] = ACTIONS(1094), + [anon_sym_PIPE] = ACTIONS(1094), + [anon_sym_SEMI_SEMI] = ACTIONS(1092), + [anon_sym_PIPE_AMP] = ACTIONS(1092), + [anon_sym_AMP_AMP] = ACTIONS(1092), + [anon_sym_PIPE_PIPE] = ACTIONS(1092), + [anon_sym_LT] = ACTIONS(1094), + [anon_sym_GT] = ACTIONS(1094), + [anon_sym_GT_GT] = ACTIONS(1092), + [anon_sym_AMP_GT] = ACTIONS(1094), + [anon_sym_AMP_GT_GT] = ACTIONS(1092), + [anon_sym_LT_AMP] = ACTIONS(1092), + [anon_sym_GT_AMP] = ACTIONS(1092), + [anon_sym_LT_LT] = ACTIONS(1094), + [anon_sym_LT_LT_DASH] = ACTIONS(1092), + [anon_sym_LT_LT_LT] = ACTIONS(1092), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1092), + [anon_sym_AMP] = ACTIONS(1094), }, [1940] = { - [sym__concat] = ACTIONS(4576), - [sym_variable_name] = ACTIONS(4576), - [ts_builtin_sym_end] = ACTIONS(4576), - [anon_sym_SEMI] = ACTIONS(4578), - [anon_sym_PIPE] = ACTIONS(4578), - [anon_sym_RPAREN] = ACTIONS(4576), - [anon_sym_SEMI_SEMI] = ACTIONS(4576), - [anon_sym_PIPE_AMP] = ACTIONS(4576), - [anon_sym_AMP_AMP] = ACTIONS(4576), - [anon_sym_PIPE_PIPE] = ACTIONS(4576), - [sym__special_characters] = ACTIONS(4576), - [anon_sym_DQUOTE] = ACTIONS(4576), - [anon_sym_DOLLAR] = ACTIONS(4578), - [sym_raw_string] = ACTIONS(4576), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4576), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4576), - [anon_sym_BQUOTE] = ACTIONS(4576), - [anon_sym_LT_LPAREN] = ACTIONS(4576), - [anon_sym_GT_LPAREN] = ACTIONS(4576), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4578), - [sym_word] = ACTIONS(4578), - [anon_sym_LF] = ACTIONS(4576), - [anon_sym_AMP] = ACTIONS(4578), + [aux_sym_concatenation_repeat1] = STATE(2161), + [sym_file_descriptor] = ACTIONS(807), + [sym__concat] = ACTIONS(3579), + [anon_sym_SEMI] = ACTIONS(809), + [anon_sym_PIPE] = ACTIONS(809), + [anon_sym_SEMI_SEMI] = ACTIONS(807), + [anon_sym_PIPE_AMP] = ACTIONS(807), + [anon_sym_AMP_AMP] = ACTIONS(807), + [anon_sym_PIPE_PIPE] = ACTIONS(807), + [anon_sym_LT] = ACTIONS(809), + [anon_sym_GT] = ACTIONS(809), + [anon_sym_GT_GT] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(809), + [anon_sym_AMP_GT_GT] = ACTIONS(807), + [anon_sym_LT_AMP] = ACTIONS(807), + [anon_sym_GT_AMP] = ACTIONS(807), + [anon_sym_LT_LT] = ACTIONS(809), + [anon_sym_LT_LT_DASH] = ACTIONS(807), + [anon_sym_LT_LT_LT] = ACTIONS(807), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(807), + [anon_sym_AMP] = ACTIONS(809), }, [1941] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(5021), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [aux_sym_concatenation_repeat1] = STATE(1943), + [sym__concat] = ACTIONS(735), + [anon_sym_SEMI] = ACTIONS(1090), + [anon_sym_PIPE] = ACTIONS(1090), + [anon_sym_SEMI_SEMI] = ACTIONS(1088), + [anon_sym_PIPE_AMP] = ACTIONS(1088), + [anon_sym_AMP_AMP] = ACTIONS(1088), + [anon_sym_PIPE_PIPE] = ACTIONS(1088), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1088), + [anon_sym_AMP] = ACTIONS(1090), }, [1942] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(5023), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [aux_sym_concatenation_repeat1] = STATE(1943), + [sym__concat] = ACTIONS(735), + [anon_sym_SEMI] = ACTIONS(1094), + [anon_sym_PIPE] = ACTIONS(1094), + [anon_sym_SEMI_SEMI] = ACTIONS(1092), + [anon_sym_PIPE_AMP] = ACTIONS(1092), + [anon_sym_AMP_AMP] = ACTIONS(1092), + [anon_sym_PIPE_PIPE] = ACTIONS(1092), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1092), + [anon_sym_AMP] = ACTIONS(1094), }, [1943] = { - [sym__concat] = ACTIONS(4608), - [sym_variable_name] = ACTIONS(4608), - [ts_builtin_sym_end] = ACTIONS(4608), - [anon_sym_SEMI] = ACTIONS(4610), - [anon_sym_PIPE] = ACTIONS(4610), - [anon_sym_RPAREN] = ACTIONS(4608), - [anon_sym_SEMI_SEMI] = ACTIONS(4608), - [anon_sym_PIPE_AMP] = ACTIONS(4608), - [anon_sym_AMP_AMP] = ACTIONS(4608), - [anon_sym_PIPE_PIPE] = ACTIONS(4608), - [sym__special_characters] = ACTIONS(4608), - [anon_sym_DQUOTE] = ACTIONS(4608), - [anon_sym_DOLLAR] = ACTIONS(4610), - [sym_raw_string] = ACTIONS(4608), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4608), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4608), - [anon_sym_BQUOTE] = ACTIONS(4608), - [anon_sym_LT_LPAREN] = ACTIONS(4608), - [anon_sym_GT_LPAREN] = ACTIONS(4608), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4610), - [sym_word] = ACTIONS(4610), - [anon_sym_LF] = ACTIONS(4608), - [anon_sym_AMP] = ACTIONS(4610), + [aux_sym_concatenation_repeat1] = STATE(2162), + [sym__concat] = ACTIONS(735), + [anon_sym_SEMI] = ACTIONS(809), + [anon_sym_PIPE] = ACTIONS(809), + [anon_sym_SEMI_SEMI] = ACTIONS(807), + [anon_sym_PIPE_AMP] = ACTIONS(807), + [anon_sym_AMP_AMP] = ACTIONS(807), + [anon_sym_PIPE_PIPE] = ACTIONS(807), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(807), + [anon_sym_AMP] = ACTIONS(809), }, [1944] = { - [sym__concat] = ACTIONS(4568), - [ts_builtin_sym_end] = ACTIONS(4568), - [anon_sym_SEMI] = ACTIONS(4570), - [anon_sym_PIPE] = ACTIONS(4570), - [anon_sym_RPAREN] = ACTIONS(4568), - [anon_sym_SEMI_SEMI] = ACTIONS(4568), - [anon_sym_PIPE_AMP] = ACTIONS(4568), - [anon_sym_AMP_AMP] = ACTIONS(4568), - [anon_sym_PIPE_PIPE] = ACTIONS(4568), - [sym__special_characters] = ACTIONS(4568), - [anon_sym_DQUOTE] = ACTIONS(4568), - [anon_sym_DOLLAR] = ACTIONS(4570), - [sym_raw_string] = ACTIONS(4568), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4568), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4568), - [anon_sym_BQUOTE] = ACTIONS(4568), - [anon_sym_LT_LPAREN] = ACTIONS(4568), - [anon_sym_GT_LPAREN] = ACTIONS(4568), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4570), - [sym_word] = ACTIONS(4570), - [anon_sym_LF] = ACTIONS(4568), - [anon_sym_AMP] = ACTIONS(4570), + [sym__terminated_statement] = STATE(1197), + [sym_for_statement] = STATE(545), + [sym_c_style_for_statement] = STATE(545), + [sym_while_statement] = STATE(545), + [sym_if_statement] = STATE(545), + [sym_case_statement] = STATE(545), + [sym_function_definition] = STATE(545), + [sym_subshell] = STATE(545), + [sym_pipeline] = STATE(545), + [sym_list] = STATE(545), + [sym_negated_command] = STATE(545), + [sym_test_command] = STATE(545), + [sym_declaration_command] = STATE(545), + [sym_unset_command] = STATE(545), + [sym_command] = STATE(545), + [sym_command_name] = STATE(64), + [sym_variable_assignment] = STATE(546), + [sym_subscript] = STATE(66), + [sym_file_redirect] = STATE(67), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(60), + [sym_simple_expansion] = STATE(60), + [sym_string_expansion] = STATE(60), + [sym_expansion] = STATE(60), + [sym_command_substitution] = STATE(60), + [sym_process_substitution] = STATE(60), + [aux_sym__statements_repeat1] = STATE(1197), + [aux_sym_command_repeat1] = STATE(67), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(95), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(97), + [anon_sym_while] = ACTIONS(99), + [anon_sym_if] = ACTIONS(17), + [anon_sym_fi] = ACTIONS(4989), + [anon_sym_elif] = ACTIONS(4989), + [anon_sym_else] = ACTIONS(4989), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(101), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_LBRACK] = ACTIONS(107), + [anon_sym_declare] = ACTIONS(109), + [anon_sym_typeset] = ACTIONS(109), + [anon_sym_export] = ACTIONS(109), + [anon_sym_readonly] = ACTIONS(109), + [anon_sym_local] = ACTIONS(109), + [anon_sym_unset] = ACTIONS(111), + [anon_sym_unsetenv] = ACTIONS(111), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(115), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(117), }, [1945] = { - [sym__concat] = ACTIONS(4572), - [ts_builtin_sym_end] = ACTIONS(4572), - [anon_sym_SEMI] = ACTIONS(4574), - [anon_sym_PIPE] = ACTIONS(4574), - [anon_sym_RPAREN] = ACTIONS(4572), - [anon_sym_SEMI_SEMI] = ACTIONS(4572), - [anon_sym_PIPE_AMP] = ACTIONS(4572), - [anon_sym_AMP_AMP] = ACTIONS(4572), - [anon_sym_PIPE_PIPE] = ACTIONS(4572), - [sym__special_characters] = ACTIONS(4572), - [anon_sym_DQUOTE] = ACTIONS(4572), - [anon_sym_DOLLAR] = ACTIONS(4574), - [sym_raw_string] = ACTIONS(4572), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4572), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4572), - [anon_sym_BQUOTE] = ACTIONS(4572), - [anon_sym_LT_LPAREN] = ACTIONS(4572), - [anon_sym_GT_LPAREN] = ACTIONS(4572), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4574), - [sym_word] = ACTIONS(4574), - [anon_sym_LF] = ACTIONS(4572), - [anon_sym_AMP] = ACTIONS(4574), + [ts_builtin_sym_end] = ACTIONS(4991), + [anon_sym_SEMI] = ACTIONS(4993), + [anon_sym_esac] = ACTIONS(4991), + [anon_sym_PIPE] = ACTIONS(4993), + [anon_sym_RPAREN] = ACTIONS(4991), + [anon_sym_SEMI_SEMI] = ACTIONS(4991), + [anon_sym_PIPE_AMP] = ACTIONS(4991), + [anon_sym_AMP_AMP] = ACTIONS(4991), + [anon_sym_PIPE_PIPE] = ACTIONS(4991), + [anon_sym_BQUOTE] = ACTIONS(4991), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(4991), + [anon_sym_AMP] = ACTIONS(4993), }, [1946] = { - [sym__concat] = ACTIONS(4576), - [ts_builtin_sym_end] = ACTIONS(4576), - [anon_sym_SEMI] = ACTIONS(4578), - [anon_sym_PIPE] = ACTIONS(4578), - [anon_sym_RPAREN] = ACTIONS(4576), - [anon_sym_SEMI_SEMI] = ACTIONS(4576), - [anon_sym_PIPE_AMP] = ACTIONS(4576), - [anon_sym_AMP_AMP] = ACTIONS(4576), - [anon_sym_PIPE_PIPE] = ACTIONS(4576), - [sym__special_characters] = ACTIONS(4576), - [anon_sym_DQUOTE] = ACTIONS(4576), - [anon_sym_DOLLAR] = ACTIONS(4578), - [sym_raw_string] = ACTIONS(4576), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4576), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4576), - [anon_sym_BQUOTE] = ACTIONS(4576), - [anon_sym_LT_LPAREN] = ACTIONS(4576), - [anon_sym_GT_LPAREN] = ACTIONS(4576), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4578), - [sym_word] = ACTIONS(4578), - [anon_sym_LF] = ACTIONS(4576), - [anon_sym_AMP] = ACTIONS(4578), + [aux_sym_concatenation_repeat1] = STATE(1627), + [sym__concat] = ACTIONS(1214), + [anon_sym_PIPE] = ACTIONS(4995), + [anon_sym_RPAREN] = ACTIONS(4995), + [sym_comment] = ACTIONS(55), }, [1947] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(5025), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [aux_sym_concatenation_repeat1] = STATE(1627), + [sym__concat] = ACTIONS(1214), + [anon_sym_PIPE] = ACTIONS(4997), + [anon_sym_RPAREN] = ACTIONS(4997), + [sym_comment] = ACTIONS(55), }, [1948] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(5027), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [anon_sym_PIPE] = ACTIONS(4997), + [anon_sym_RPAREN] = ACTIONS(4997), + [sym_comment] = ACTIONS(55), }, [1949] = { - [sym__concat] = ACTIONS(4608), - [ts_builtin_sym_end] = ACTIONS(4608), - [anon_sym_SEMI] = ACTIONS(4610), - [anon_sym_PIPE] = ACTIONS(4610), - [anon_sym_RPAREN] = ACTIONS(4608), - [anon_sym_SEMI_SEMI] = ACTIONS(4608), - [anon_sym_PIPE_AMP] = ACTIONS(4608), - [anon_sym_AMP_AMP] = ACTIONS(4608), - [anon_sym_PIPE_PIPE] = ACTIONS(4608), - [sym__special_characters] = ACTIONS(4608), - [anon_sym_DQUOTE] = ACTIONS(4608), - [anon_sym_DOLLAR] = ACTIONS(4610), - [sym_raw_string] = ACTIONS(4608), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4608), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4608), - [anon_sym_BQUOTE] = ACTIONS(4608), - [anon_sym_LT_LPAREN] = ACTIONS(4608), - [anon_sym_GT_LPAREN] = ACTIONS(4608), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4610), - [sym_word] = ACTIONS(4610), - [anon_sym_LF] = ACTIONS(4608), - [anon_sym_AMP] = ACTIONS(4610), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_EQ] = ACTIONS(4999), + [anon_sym_PLUS_EQ] = ACTIONS(4999), + [sym_comment] = ACTIONS(55), }, [1950] = { - [sym_file_descriptor] = ACTIONS(4568), - [sym__concat] = ACTIONS(4568), - [sym_variable_name] = ACTIONS(4568), - [anon_sym_LT] = ACTIONS(4570), - [anon_sym_GT] = ACTIONS(4570), - [anon_sym_GT_GT] = ACTIONS(4568), - [anon_sym_AMP_GT] = ACTIONS(4570), - [anon_sym_AMP_GT_GT] = ACTIONS(4568), - [anon_sym_LT_AMP] = ACTIONS(4568), - [anon_sym_GT_AMP] = ACTIONS(4568), - [sym__special_characters] = ACTIONS(4568), - [anon_sym_DQUOTE] = ACTIONS(4568), - [anon_sym_DOLLAR] = ACTIONS(4570), - [sym_raw_string] = ACTIONS(4568), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4568), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4568), - [anon_sym_BQUOTE] = ACTIONS(4568), - [anon_sym_LT_LPAREN] = ACTIONS(4568), - [anon_sym_GT_LPAREN] = ACTIONS(4568), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4568), + [sym__expression] = STATE(2164), + [sym_binary_expression] = STATE(2164), + [sym_unary_expression] = STATE(2164), + [sym_postfix_expression] = STATE(2164), + [sym_parenthesized_expression] = STATE(2164), + [sym_concatenation] = STATE(2164), + [sym_string] = STATE(44), + [sym_simple_expansion] = STATE(44), + [sym_string_expansion] = STATE(44), + [sym_expansion] = STATE(44), + [sym_command_substitution] = STATE(44), + [sym_process_substitution] = STATE(44), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(73), + [sym__special_characters] = ACTIONS(75), + [anon_sym_DQUOTE] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(79), + [sym_raw_string] = ACTIONS(81), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(83), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(85), + [anon_sym_BQUOTE] = ACTIONS(87), + [anon_sym_LT_LPAREN] = ACTIONS(89), + [anon_sym_GT_LPAREN] = ACTIONS(89), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(91), + [sym_test_operator] = ACTIONS(93), }, [1951] = { - [sym_file_descriptor] = ACTIONS(4572), - [sym__concat] = ACTIONS(4572), - [sym_variable_name] = ACTIONS(4572), - [anon_sym_LT] = ACTIONS(4574), - [anon_sym_GT] = ACTIONS(4574), - [anon_sym_GT_GT] = ACTIONS(4572), - [anon_sym_AMP_GT] = ACTIONS(4574), - [anon_sym_AMP_GT_GT] = ACTIONS(4572), - [anon_sym_LT_AMP] = ACTIONS(4572), - [anon_sym_GT_AMP] = ACTIONS(4572), - [sym__special_characters] = ACTIONS(4572), - [anon_sym_DQUOTE] = ACTIONS(4572), - [anon_sym_DOLLAR] = ACTIONS(4574), - [sym_raw_string] = ACTIONS(4572), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4572), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4572), - [anon_sym_BQUOTE] = ACTIONS(4572), - [anon_sym_LT_LPAREN] = ACTIONS(4572), - [anon_sym_GT_LPAREN] = ACTIONS(4572), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4572), + [sym__terminated_statement] = STATE(2165), + [sym_for_statement] = STATE(63), + [sym_c_style_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_if_statement] = STATE(63), + [sym_case_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_subshell] = STATE(63), + [sym_pipeline] = STATE(63), + [sym_list] = STATE(63), + [sym_negated_command] = STATE(63), + [sym_test_command] = STATE(63), + [sym_declaration_command] = STATE(63), + [sym_unset_command] = STATE(63), + [sym_command] = STATE(63), + [sym_command_name] = STATE(64), + [sym_variable_assignment] = STATE(65), + [sym_subscript] = STATE(66), + [sym_file_redirect] = STATE(67), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(60), + [sym_simple_expansion] = STATE(60), + [sym_string_expansion] = STATE(60), + [sym_expansion] = STATE(60), + [sym_command_substitution] = STATE(60), + [sym_process_substitution] = STATE(60), + [aux_sym_command_repeat1] = STATE(67), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(95), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(97), + [anon_sym_while] = ACTIONS(99), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(101), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_LBRACK] = ACTIONS(107), + [anon_sym_declare] = ACTIONS(109), + [anon_sym_typeset] = ACTIONS(109), + [anon_sym_export] = ACTIONS(109), + [anon_sym_readonly] = ACTIONS(109), + [anon_sym_local] = ACTIONS(109), + [anon_sym_unset] = ACTIONS(111), + [anon_sym_unsetenv] = ACTIONS(111), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(115), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(117), }, [1952] = { - [sym_file_descriptor] = ACTIONS(4576), - [sym__concat] = ACTIONS(4576), - [sym_variable_name] = ACTIONS(4576), - [anon_sym_LT] = ACTIONS(4578), - [anon_sym_GT] = ACTIONS(4578), - [anon_sym_GT_GT] = ACTIONS(4576), - [anon_sym_AMP_GT] = ACTIONS(4578), - [anon_sym_AMP_GT_GT] = ACTIONS(4576), - [anon_sym_LT_AMP] = ACTIONS(4576), - [anon_sym_GT_AMP] = ACTIONS(4576), - [sym__special_characters] = ACTIONS(4576), - [anon_sym_DQUOTE] = ACTIONS(4576), - [anon_sym_DOLLAR] = ACTIONS(4578), - [sym_raw_string] = ACTIONS(4576), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4576), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4576), - [anon_sym_BQUOTE] = ACTIONS(4576), - [anon_sym_LT_LPAREN] = ACTIONS(4576), - [anon_sym_GT_LPAREN] = ACTIONS(4576), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4576), + [anon_sym_esac] = ACTIONS(5001), + [sym__special_characters] = ACTIONS(5003), + [anon_sym_DQUOTE] = ACTIONS(5003), + [anon_sym_DOLLAR] = ACTIONS(5005), + [sym_raw_string] = ACTIONS(5003), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5003), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5003), + [anon_sym_BQUOTE] = ACTIONS(5003), + [anon_sym_LT_LPAREN] = ACTIONS(5003), + [anon_sym_GT_LPAREN] = ACTIONS(5003), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(5005), }, [1953] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(5029), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(5007), }, [1954] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(5031), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_subshell] = STATE(98), + [sym_test_command] = STATE(98), + [sym_command] = STATE(98), + [sym_command_name] = STATE(1969), + [sym_variable_assignment] = STATE(1974), + [sym_subscript] = STATE(99), + [sym_file_redirect] = STATE(1974), + [sym_concatenation] = STATE(1972), + [sym_string] = STATE(1962), + [sym_simple_expansion] = STATE(1962), + [sym_string_expansion] = STATE(1962), + [sym_expansion] = STATE(1962), + [sym_command_substitution] = STATE(1962), + [sym_process_substitution] = STATE(1962), + [aux_sym_command_repeat1] = STATE(1974), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(161), + [anon_sym_LPAREN_LPAREN] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(4459), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4461), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(4467), + [anon_sym_DQUOTE] = ACTIONS(4469), + [anon_sym_DOLLAR] = ACTIONS(4471), + [sym_raw_string] = ACTIONS(4473), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4475), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4477), + [anon_sym_BQUOTE] = ACTIONS(4479), + [anon_sym_LT_LPAREN] = ACTIONS(4481), + [anon_sym_GT_LPAREN] = ACTIONS(4481), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(4473), }, [1955] = { - [sym_file_descriptor] = ACTIONS(4608), - [sym__concat] = ACTIONS(4608), - [sym_variable_name] = ACTIONS(4608), - [anon_sym_LT] = ACTIONS(4610), - [anon_sym_GT] = ACTIONS(4610), - [anon_sym_GT_GT] = ACTIONS(4608), - [anon_sym_AMP_GT] = ACTIONS(4610), - [anon_sym_AMP_GT_GT] = ACTIONS(4608), - [anon_sym_LT_AMP] = ACTIONS(4608), - [anon_sym_GT_AMP] = ACTIONS(4608), - [sym__special_characters] = ACTIONS(4608), - [anon_sym_DQUOTE] = ACTIONS(4608), - [anon_sym_DOLLAR] = ACTIONS(4610), - [sym_raw_string] = ACTIONS(4608), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4608), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4608), - [anon_sym_BQUOTE] = ACTIONS(4608), - [anon_sym_LT_LPAREN] = ACTIONS(4608), - [anon_sym_GT_LPAREN] = ACTIONS(4608), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4608), + [sym__expression] = STATE(2167), + [sym_binary_expression] = STATE(2167), + [sym_unary_expression] = STATE(2167), + [sym_postfix_expression] = STATE(2167), + [sym_parenthesized_expression] = STATE(2167), + [sym_concatenation] = STATE(2167), + [sym_string] = STATE(105), + [sym_simple_expansion] = STATE(105), + [sym_string_expansion] = STATE(105), + [sym_expansion] = STATE(105), + [sym_command_substitution] = STATE(105), + [sym_process_substitution] = STATE(105), + [anon_sym_LPAREN] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(165), + [sym__special_characters] = ACTIONS(167), + [anon_sym_DQUOTE] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(171), + [sym_raw_string] = ACTIONS(173), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(175), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(177), + [anon_sym_BQUOTE] = ACTIONS(179), + [anon_sym_LT_LPAREN] = ACTIONS(181), + [anon_sym_GT_LPAREN] = ACTIONS(181), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(183), + [sym_test_operator] = ACTIONS(185), }, [1956] = { - [sym__concat] = ACTIONS(4568), - [anon_sym_DQUOTE] = ACTIONS(4570), - [anon_sym_DOLLAR] = ACTIONS(4570), - [sym__string_content] = ACTIONS(4568), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4570), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4570), - [anon_sym_BQUOTE] = ACTIONS(4570), - [sym_comment] = ACTIONS(265), + [sym__expression] = STATE(2168), + [sym_binary_expression] = STATE(2168), + [sym_unary_expression] = STATE(2168), + [sym_postfix_expression] = STATE(2168), + [sym_parenthesized_expression] = STATE(2168), + [sym_concatenation] = STATE(2168), + [sym_string] = STATE(113), + [sym_simple_expansion] = STATE(113), + [sym_string_expansion] = STATE(113), + [sym_expansion] = STATE(113), + [sym_command_substitution] = STATE(113), + [sym_process_substitution] = STATE(113), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(187), + [sym__special_characters] = ACTIONS(189), + [anon_sym_DQUOTE] = ACTIONS(77), + [anon_sym_DOLLAR] = ACTIONS(79), + [sym_raw_string] = ACTIONS(191), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(83), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(85), + [anon_sym_BQUOTE] = ACTIONS(87), + [anon_sym_LT_LPAREN] = ACTIONS(89), + [anon_sym_GT_LPAREN] = ACTIONS(89), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(193), + [sym_test_operator] = ACTIONS(195), }, [1957] = { - [sym__concat] = ACTIONS(4572), - [anon_sym_DQUOTE] = ACTIONS(4574), - [anon_sym_DOLLAR] = ACTIONS(4574), - [sym__string_content] = ACTIONS(4572), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4574), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4574), - [anon_sym_BQUOTE] = ACTIONS(4574), - [sym_comment] = ACTIONS(265), + [sym_variable_assignment] = STATE(2179), + [sym_subscript] = STATE(2178), + [sym_concatenation] = STATE(2179), + [sym_string] = STATE(2173), + [sym_simple_expansion] = STATE(2173), + [sym_string_expansion] = STATE(2173), + [sym_expansion] = STATE(2173), + [sym_command_substitution] = STATE(2173), + [sym_process_substitution] = STATE(2173), + [aux_sym_declaration_command_repeat1] = STATE(2179), + [sym_variable_name] = ACTIONS(5009), + [anon_sym_SEMI] = ACTIONS(201), + [anon_sym_esac] = ACTIONS(201), + [anon_sym_PIPE] = ACTIONS(201), + [anon_sym_SEMI_SEMI] = ACTIONS(199), + [anon_sym_PIPE_AMP] = ACTIONS(199), + [anon_sym_AMP_AMP] = ACTIONS(199), + [anon_sym_PIPE_PIPE] = ACTIONS(199), + [sym__special_characters] = ACTIONS(5011), + [anon_sym_DQUOTE] = ACTIONS(5013), + [anon_sym_DOLLAR] = ACTIONS(5015), + [sym_raw_string] = ACTIONS(5017), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5019), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5021), + [anon_sym_BQUOTE] = ACTIONS(5023), + [anon_sym_LT_LPAREN] = ACTIONS(5025), + [anon_sym_GT_LPAREN] = ACTIONS(5025), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5027), + [sym_word] = ACTIONS(5029), + [anon_sym_LF] = ACTIONS(199), + [anon_sym_AMP] = ACTIONS(201), }, [1958] = { - [sym__concat] = ACTIONS(4576), - [anon_sym_DQUOTE] = ACTIONS(4578), - [anon_sym_DOLLAR] = ACTIONS(4578), - [sym__string_content] = ACTIONS(4576), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4578), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4578), - [anon_sym_BQUOTE] = ACTIONS(4578), - [sym_comment] = ACTIONS(265), + [sym_concatenation] = STATE(2188), + [sym_string] = STATE(2183), + [sym_simple_expansion] = STATE(2183), + [sym_string_expansion] = STATE(2183), + [sym_expansion] = STATE(2183), + [sym_command_substitution] = STATE(2183), + [sym_process_substitution] = STATE(2183), + [aux_sym_unset_command_repeat1] = STATE(2188), + [anon_sym_SEMI] = ACTIONS(225), + [anon_sym_esac] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(225), + [anon_sym_SEMI_SEMI] = ACTIONS(223), + [anon_sym_PIPE_AMP] = ACTIONS(223), + [anon_sym_AMP_AMP] = ACTIONS(223), + [anon_sym_PIPE_PIPE] = ACTIONS(223), + [sym__special_characters] = ACTIONS(5031), + [anon_sym_DQUOTE] = ACTIONS(5033), + [anon_sym_DOLLAR] = ACTIONS(5035), + [sym_raw_string] = ACTIONS(5037), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5039), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5041), + [anon_sym_BQUOTE] = ACTIONS(5043), + [anon_sym_LT_LPAREN] = ACTIONS(5045), + [anon_sym_GT_LPAREN] = ACTIONS(5045), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5047), + [sym_word] = ACTIONS(5049), + [anon_sym_LF] = ACTIONS(223), + [anon_sym_AMP] = ACTIONS(225), }, [1959] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(5033), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [aux_sym_concatenation_repeat1] = STATE(2190), + [sym__simple_heredoc_body] = ACTIONS(263), + [sym__heredoc_body_beginning] = ACTIONS(263), + [sym_file_descriptor] = ACTIONS(263), + [sym__concat] = ACTIONS(5051), + [anon_sym_SEMI] = ACTIONS(267), + [anon_sym_esac] = ACTIONS(267), + [anon_sym_PIPE] = ACTIONS(267), + [anon_sym_SEMI_SEMI] = ACTIONS(263), + [anon_sym_PIPE_AMP] = ACTIONS(263), + [anon_sym_AMP_AMP] = ACTIONS(263), + [anon_sym_PIPE_PIPE] = ACTIONS(263), + [anon_sym_EQ_TILDE] = ACTIONS(267), + [anon_sym_EQ_EQ] = ACTIONS(267), + [anon_sym_LT] = ACTIONS(267), + [anon_sym_GT] = ACTIONS(267), + [anon_sym_GT_GT] = ACTIONS(263), + [anon_sym_AMP_GT] = ACTIONS(267), + [anon_sym_AMP_GT_GT] = ACTIONS(263), + [anon_sym_LT_AMP] = ACTIONS(263), + [anon_sym_GT_AMP] = ACTIONS(263), + [anon_sym_LT_LT] = ACTIONS(267), + [anon_sym_LT_LT_DASH] = ACTIONS(263), + [anon_sym_LT_LT_LT] = ACTIONS(263), + [sym__special_characters] = ACTIONS(263), + [anon_sym_DQUOTE] = ACTIONS(263), + [anon_sym_DOLLAR] = ACTIONS(267), + [sym_raw_string] = ACTIONS(263), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(263), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(263), + [anon_sym_BQUOTE] = ACTIONS(263), + [anon_sym_LT_LPAREN] = ACTIONS(263), + [anon_sym_GT_LPAREN] = ACTIONS(263), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(267), + [anon_sym_LF] = ACTIONS(263), + [anon_sym_AMP] = ACTIONS(267), }, [1960] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(5035), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_simple_expansion] = STATE(148), + [sym_expansion] = STATE(148), + [sym_command_substitution] = STATE(148), + [aux_sym_string_repeat1] = STATE(2193), + [anon_sym_DQUOTE] = ACTIONS(5053), + [anon_sym_DOLLAR] = ACTIONS(5055), + [sym__string_content] = ACTIONS(273), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(277), + [anon_sym_BQUOTE] = ACTIONS(279), + [sym_comment] = ACTIONS(281), }, [1961] = { - [sym__concat] = ACTIONS(4608), - [anon_sym_DQUOTE] = ACTIONS(4610), - [anon_sym_DOLLAR] = ACTIONS(4610), - [sym__string_content] = ACTIONS(4608), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4610), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4610), - [anon_sym_BQUOTE] = ACTIONS(4610), - [sym_comment] = ACTIONS(265), + [sym_string] = STATE(2195), + [anon_sym_DASH] = ACTIONS(5057), + [anon_sym_DQUOTE] = ACTIONS(4469), + [anon_sym_DOLLAR] = ACTIONS(5057), + [sym_raw_string] = ACTIONS(5059), + [anon_sym_POUND] = ACTIONS(5057), + [sym_comment] = ACTIONS(281), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5061), + [anon_sym_STAR] = ACTIONS(5063), + [anon_sym_AT] = ACTIONS(5063), + [anon_sym_QMARK] = ACTIONS(5063), + [anon_sym_0] = ACTIONS(5061), + [anon_sym__] = ACTIONS(5061), }, [1962] = { - [anon_sym_RBRACE] = ACTIONS(3975), - [anon_sym_EQ] = ACTIONS(5037), - [sym__special_characters] = ACTIONS(5037), - [anon_sym_DQUOTE] = ACTIONS(3975), - [anon_sym_DOLLAR] = ACTIONS(5037), - [sym_raw_string] = ACTIONS(3975), - [anon_sym_POUND] = ACTIONS(3975), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3975), - [anon_sym_SLASH] = ACTIONS(3975), - [anon_sym_COLON] = ACTIONS(5037), - [anon_sym_COLON_QMARK] = ACTIONS(5037), - [anon_sym_COLON_DASH] = ACTIONS(5037), - [anon_sym_PERCENT] = ACTIONS(5037), - [anon_sym_DASH] = ACTIONS(5037), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3975), - [anon_sym_BQUOTE] = ACTIONS(3975), - [anon_sym_LT_LPAREN] = ACTIONS(3975), - [anon_sym_GT_LPAREN] = ACTIONS(3975), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(5037), + [aux_sym_concatenation_repeat1] = STATE(2190), + [sym__simple_heredoc_body] = ACTIONS(291), + [sym__heredoc_body_beginning] = ACTIONS(291), + [sym_file_descriptor] = ACTIONS(291), + [sym__concat] = ACTIONS(5051), + [anon_sym_SEMI] = ACTIONS(293), + [anon_sym_esac] = ACTIONS(293), + [anon_sym_PIPE] = ACTIONS(293), + [anon_sym_SEMI_SEMI] = ACTIONS(291), + [anon_sym_PIPE_AMP] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(291), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_EQ_TILDE] = ACTIONS(293), + [anon_sym_EQ_EQ] = ACTIONS(293), + [anon_sym_LT] = ACTIONS(293), + [anon_sym_GT] = ACTIONS(293), + [anon_sym_GT_GT] = ACTIONS(291), + [anon_sym_AMP_GT] = ACTIONS(293), + [anon_sym_AMP_GT_GT] = ACTIONS(291), + [anon_sym_LT_AMP] = ACTIONS(291), + [anon_sym_GT_AMP] = ACTIONS(291), + [anon_sym_LT_LT] = ACTIONS(293), + [anon_sym_LT_LT_DASH] = ACTIONS(291), + [anon_sym_LT_LT_LT] = ACTIONS(291), + [sym__special_characters] = ACTIONS(291), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_DOLLAR] = ACTIONS(293), + [sym_raw_string] = ACTIONS(291), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(291), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(291), + [anon_sym_BQUOTE] = ACTIONS(291), + [anon_sym_LT_LPAREN] = ACTIONS(291), + [anon_sym_GT_LPAREN] = ACTIONS(291), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(293), + [anon_sym_LF] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(293), }, [1963] = { - [anon_sym_RBRACE] = ACTIONS(3977), - [anon_sym_EQ] = ACTIONS(5039), - [sym__special_characters] = ACTIONS(5039), - [anon_sym_DQUOTE] = ACTIONS(3977), - [anon_sym_DOLLAR] = ACTIONS(5039), - [sym_raw_string] = ACTIONS(3977), - [anon_sym_POUND] = ACTIONS(3977), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3977), - [anon_sym_SLASH] = ACTIONS(3977), - [anon_sym_COLON] = ACTIONS(5039), - [anon_sym_COLON_QMARK] = ACTIONS(5039), - [anon_sym_COLON_DASH] = ACTIONS(5039), - [anon_sym_PERCENT] = ACTIONS(5039), - [anon_sym_DASH] = ACTIONS(5039), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3977), - [anon_sym_BQUOTE] = ACTIONS(3977), - [anon_sym_LT_LPAREN] = ACTIONS(3977), - [anon_sym_GT_LPAREN] = ACTIONS(3977), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(5039), + [sym_subscript] = STATE(2200), + [sym_variable_name] = ACTIONS(5065), + [anon_sym_BANG] = ACTIONS(5067), + [anon_sym_DASH] = ACTIONS(5069), + [anon_sym_DOLLAR] = ACTIONS(5069), + [anon_sym_POUND] = ACTIONS(5067), + [sym_comment] = ACTIONS(281), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5071), + [anon_sym_STAR] = ACTIONS(5073), + [anon_sym_AT] = ACTIONS(5073), + [anon_sym_QMARK] = ACTIONS(5073), + [anon_sym_0] = ACTIONS(5071), + [anon_sym__] = ACTIONS(5071), }, [1964] = { - [sym__concat] = ACTIONS(2876), - [anon_sym_RBRACE] = ACTIONS(2876), - [sym_comment] = ACTIONS(53), + [sym__terminated_statement] = STATE(2203), + [sym_for_statement] = STATE(2201), + [sym_c_style_for_statement] = STATE(2201), + [sym_while_statement] = STATE(2201), + [sym_if_statement] = STATE(2201), + [sym_case_statement] = STATE(2201), + [sym_function_definition] = STATE(2201), + [sym_subshell] = STATE(2201), + [sym_pipeline] = STATE(2201), + [sym_list] = STATE(2201), + [sym_negated_command] = STATE(2201), + [sym_test_command] = STATE(2201), + [sym_declaration_command] = STATE(2201), + [sym_unset_command] = STATE(2201), + [sym_command] = STATE(2201), + [sym_command_name] = STATE(92), + [sym_variable_assignment] = STATE(2202), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(96), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), + [aux_sym__statements_repeat1] = STATE(2203), + [aux_sym_command_repeat1] = STATE(96), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(137), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(149), + [anon_sym_declare] = ACTIONS(151), + [anon_sym_typeset] = ACTIONS(151), + [anon_sym_export] = ACTIONS(151), + [anon_sym_readonly] = ACTIONS(151), + [anon_sym_local] = ACTIONS(151), + [anon_sym_unset] = ACTIONS(153), + [anon_sym_unsetenv] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(159), }, [1965] = { - [sym__concat] = ACTIONS(2890), - [anon_sym_RBRACE] = ACTIONS(2890), - [sym_comment] = ACTIONS(53), + [sym__terminated_statement] = STATE(2206), + [sym_for_statement] = STATE(2204), + [sym_c_style_for_statement] = STATE(2204), + [sym_while_statement] = STATE(2204), + [sym_if_statement] = STATE(2204), + [sym_case_statement] = STATE(2204), + [sym_function_definition] = STATE(2204), + [sym_subshell] = STATE(2204), + [sym_pipeline] = STATE(2204), + [sym_list] = STATE(2204), + [sym_negated_command] = STATE(2204), + [sym_test_command] = STATE(2204), + [sym_declaration_command] = STATE(2204), + [sym_unset_command] = STATE(2204), + [sym_command] = STATE(2204), + [sym_command_name] = STATE(173), + [sym_variable_assignment] = STATE(2205), + [sym_subscript] = STATE(66), + [sym_file_redirect] = STATE(176), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(60), + [sym_simple_expansion] = STATE(60), + [sym_string_expansion] = STATE(60), + [sym_expansion] = STATE(60), + [sym_command_substitution] = STATE(60), + [sym_process_substitution] = STATE(60), + [aux_sym__statements_repeat1] = STATE(2206), + [aux_sym_command_repeat1] = STATE(176), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(95), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(305), + [anon_sym_while] = ACTIONS(307), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(311), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(315), + [anon_sym_declare] = ACTIONS(317), + [anon_sym_typeset] = ACTIONS(317), + [anon_sym_export] = ACTIONS(317), + [anon_sym_readonly] = ACTIONS(317), + [anon_sym_local] = ACTIONS(317), + [anon_sym_unset] = ACTIONS(319), + [anon_sym_unsetenv] = ACTIONS(319), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(115), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(321), }, [1966] = { - [aux_sym_concatenation_repeat1] = STATE(1293), - [sym__concat] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(5041), - [sym_comment] = ACTIONS(53), + [sym__terminated_statement] = STATE(2209), + [sym_for_statement] = STATE(2207), + [sym_c_style_for_statement] = STATE(2207), + [sym_while_statement] = STATE(2207), + [sym_if_statement] = STATE(2207), + [sym_case_statement] = STATE(2207), + [sym_function_definition] = STATE(2207), + [sym_subshell] = STATE(2207), + [sym_pipeline] = STATE(2207), + [sym_list] = STATE(2207), + [sym_negated_command] = STATE(2207), + [sym_test_command] = STATE(2207), + [sym_declaration_command] = STATE(2207), + [sym_unset_command] = STATE(2207), + [sym_command] = STATE(2207), + [sym_command_name] = STATE(92), + [sym_variable_assignment] = STATE(2208), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(96), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), + [aux_sym__statements_repeat1] = STATE(2209), + [aux_sym_command_repeat1] = STATE(96), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(137), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(149), + [anon_sym_declare] = ACTIONS(151), + [anon_sym_typeset] = ACTIONS(151), + [anon_sym_export] = ACTIONS(151), + [anon_sym_readonly] = ACTIONS(151), + [anon_sym_local] = ACTIONS(151), + [anon_sym_unset] = ACTIONS(153), + [anon_sym_unsetenv] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(159), }, [1967] = { - [aux_sym_concatenation_repeat1] = STATE(1293), - [sym__concat] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(5043), - [sym_comment] = ACTIONS(53), + [aux_sym_concatenation_repeat1] = STATE(2190), + [sym__simple_heredoc_body] = ACTIONS(291), + [sym__heredoc_body_beginning] = ACTIONS(291), + [sym_file_descriptor] = ACTIONS(291), + [sym__concat] = ACTIONS(5051), + [anon_sym_SEMI] = ACTIONS(293), + [anon_sym_esac] = ACTIONS(293), + [anon_sym_PIPE] = ACTIONS(293), + [anon_sym_SEMI_SEMI] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(5075), + [anon_sym_PIPE_AMP] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(291), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_EQ_TILDE] = ACTIONS(293), + [anon_sym_EQ_EQ] = ACTIONS(293), + [anon_sym_LT] = ACTIONS(293), + [anon_sym_GT] = ACTIONS(293), + [anon_sym_GT_GT] = ACTIONS(291), + [anon_sym_AMP_GT] = ACTIONS(293), + [anon_sym_AMP_GT_GT] = ACTIONS(291), + [anon_sym_LT_AMP] = ACTIONS(291), + [anon_sym_GT_AMP] = ACTIONS(291), + [anon_sym_LT_LT] = ACTIONS(293), + [anon_sym_LT_LT_DASH] = ACTIONS(291), + [anon_sym_LT_LT_LT] = ACTIONS(291), + [sym__special_characters] = ACTIONS(291), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_DOLLAR] = ACTIONS(293), + [sym_raw_string] = ACTIONS(291), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(291), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(291), + [anon_sym_BQUOTE] = ACTIONS(291), + [anon_sym_LT_LPAREN] = ACTIONS(291), + [anon_sym_GT_LPAREN] = ACTIONS(291), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(293), + [anon_sym_LF] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(293), }, [1968] = { - [anon_sym_RBRACE] = ACTIONS(5043), - [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(5077), + [anon_sym_esac] = ACTIONS(5079), + [anon_sym_PIPE] = ACTIONS(5081), + [anon_sym_SEMI_SEMI] = ACTIONS(5083), + [anon_sym_PIPE_AMP] = ACTIONS(5085), + [anon_sym_AMP_AMP] = ACTIONS(5087), + [anon_sym_PIPE_PIPE] = ACTIONS(5087), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(5089), + [anon_sym_AMP] = ACTIONS(5077), }, [1969] = { - [sym_concatenation] = STATE(2193), - [sym_string] = STATE(2192), - [sym_simple_expansion] = STATE(2192), - [sym_string_expansion] = STATE(2192), - [sym_expansion] = STATE(2192), - [sym_command_substitution] = STATE(2192), - [sym_process_substitution] = STATE(2192), - [anon_sym_RBRACE] = ACTIONS(5043), - [sym__special_characters] = ACTIONS(5045), - [anon_sym_DQUOTE] = ACTIONS(1802), - [anon_sym_DOLLAR] = ACTIONS(1804), - [sym_raw_string] = ACTIONS(5047), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1808), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1810), - [anon_sym_BQUOTE] = ACTIONS(1812), - [anon_sym_LT_LPAREN] = ACTIONS(1814), - [anon_sym_GT_LPAREN] = ACTIONS(1814), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5047), + [sym_file_redirect] = STATE(2221), + [sym_heredoc_redirect] = STATE(2221), + [sym_heredoc_body] = STATE(193), + [sym_herestring_redirect] = STATE(2221), + [sym_concatenation] = STATE(2222), + [sym_string] = STATE(2220), + [sym_simple_expansion] = STATE(2220), + [sym_string_expansion] = STATE(2220), + [sym_expansion] = STATE(2220), + [sym_command_substitution] = STATE(2220), + [sym_process_substitution] = STATE(2220), + [aux_sym_while_statement_repeat1] = STATE(2221), + [aux_sym_command_repeat2] = STATE(2222), + [sym__simple_heredoc_body] = ACTIONS(339), + [sym__heredoc_body_beginning] = ACTIONS(341), + [sym_file_descriptor] = ACTIONS(5091), + [anon_sym_SEMI] = ACTIONS(347), + [anon_sym_esac] = ACTIONS(347), + [anon_sym_PIPE] = ACTIONS(347), + [anon_sym_SEMI_SEMI] = ACTIONS(345), + [anon_sym_PIPE_AMP] = ACTIONS(345), + [anon_sym_AMP_AMP] = ACTIONS(345), + [anon_sym_PIPE_PIPE] = ACTIONS(345), + [anon_sym_EQ_TILDE] = ACTIONS(5093), + [anon_sym_EQ_EQ] = ACTIONS(5093), + [anon_sym_LT] = ACTIONS(5095), + [anon_sym_GT] = ACTIONS(5095), + [anon_sym_GT_GT] = ACTIONS(5097), + [anon_sym_AMP_GT] = ACTIONS(5095), + [anon_sym_AMP_GT_GT] = ACTIONS(5097), + [anon_sym_LT_AMP] = ACTIONS(5097), + [anon_sym_GT_AMP] = ACTIONS(5097), + [anon_sym_LT_LT] = ACTIONS(355), + [anon_sym_LT_LT_DASH] = ACTIONS(357), + [anon_sym_LT_LT_LT] = ACTIONS(5099), + [sym__special_characters] = ACTIONS(5101), + [anon_sym_DQUOTE] = ACTIONS(4469), + [anon_sym_DOLLAR] = ACTIONS(4471), + [sym_raw_string] = ACTIONS(5103), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4475), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4477), + [anon_sym_BQUOTE] = ACTIONS(4479), + [anon_sym_LT_LPAREN] = ACTIONS(4481), + [anon_sym_GT_LPAREN] = ACTIONS(4481), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(5105), + [anon_sym_LF] = ACTIONS(345), + [anon_sym_AMP] = ACTIONS(347), }, [1970] = { - [sym__concat] = ACTIONS(2926), - [anon_sym_RBRACE] = ACTIONS(2926), - [sym_comment] = ACTIONS(53), + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(5077), + [anon_sym_esac] = ACTIONS(5001), + [anon_sym_PIPE] = ACTIONS(5081), + [anon_sym_SEMI_SEMI] = ACTIONS(5083), + [anon_sym_PIPE_AMP] = ACTIONS(5085), + [anon_sym_AMP_AMP] = ACTIONS(5087), + [anon_sym_PIPE_PIPE] = ACTIONS(5087), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(5089), + [anon_sym_AMP] = ACTIONS(5077), }, [1971] = { - [sym_comment] = ACTIONS(265), - [sym_regex_without_right_brace] = ACTIONS(5049), + [anon_sym_EQ] = ACTIONS(4999), + [anon_sym_PLUS_EQ] = ACTIONS(4999), + [sym_comment] = ACTIONS(55), }, [1972] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(5051), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym__simple_heredoc_body] = ACTIONS(291), + [sym__heredoc_body_beginning] = ACTIONS(291), + [sym_file_descriptor] = ACTIONS(291), + [anon_sym_SEMI] = ACTIONS(293), + [anon_sym_esac] = ACTIONS(293), + [anon_sym_PIPE] = ACTIONS(293), + [anon_sym_SEMI_SEMI] = ACTIONS(291), + [anon_sym_PIPE_AMP] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(291), + [anon_sym_PIPE_PIPE] = ACTIONS(291), + [anon_sym_EQ_TILDE] = ACTIONS(293), + [anon_sym_EQ_EQ] = ACTIONS(293), + [anon_sym_LT] = ACTIONS(293), + [anon_sym_GT] = ACTIONS(293), + [anon_sym_GT_GT] = ACTIONS(291), + [anon_sym_AMP_GT] = ACTIONS(293), + [anon_sym_AMP_GT_GT] = ACTIONS(291), + [anon_sym_LT_AMP] = ACTIONS(291), + [anon_sym_GT_AMP] = ACTIONS(291), + [anon_sym_LT_LT] = ACTIONS(293), + [anon_sym_LT_LT_DASH] = ACTIONS(291), + [anon_sym_LT_LT_LT] = ACTIONS(291), + [sym__special_characters] = ACTIONS(291), + [anon_sym_DQUOTE] = ACTIONS(291), + [anon_sym_DOLLAR] = ACTIONS(293), + [sym_raw_string] = ACTIONS(291), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(291), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(291), + [anon_sym_BQUOTE] = ACTIONS(291), + [anon_sym_LT_LPAREN] = ACTIONS(291), + [anon_sym_GT_LPAREN] = ACTIONS(291), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(293), + [anon_sym_LF] = ACTIONS(291), + [anon_sym_AMP] = ACTIONS(293), }, [1973] = { - [sym_comment] = ACTIONS(265), - [sym_regex_without_right_brace] = ACTIONS(5053), + [sym__terminated_statement] = STATE(2226), + [sym_for_statement] = STATE(2224), + [sym_c_style_for_statement] = STATE(2224), + [sym_while_statement] = STATE(2224), + [sym_if_statement] = STATE(2224), + [sym_case_statement] = STATE(2224), + [sym_function_definition] = STATE(2224), + [sym_subshell] = STATE(2224), + [sym_pipeline] = STATE(2224), + [sym_list] = STATE(2224), + [sym_negated_command] = STATE(2224), + [sym_test_command] = STATE(2224), + [sym_declaration_command] = STATE(2224), + [sym_unset_command] = STATE(2224), + [sym_command] = STATE(2224), + [sym_command_name] = STATE(1969), + [sym_variable_assignment] = STATE(2225), + [sym_subscript] = STATE(1971), + [sym_file_redirect] = STATE(1974), + [sym_concatenation] = STATE(1972), + [sym_string] = STATE(1962), + [sym_simple_expansion] = STATE(1962), + [sym_string_expansion] = STATE(1962), + [sym_expansion] = STATE(1962), + [sym_command_substitution] = STATE(1962), + [sym_process_substitution] = STATE(1962), + [aux_sym__statements_repeat1] = STATE(2226), + [aux_sym_command_repeat1] = STATE(1974), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(4445), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(4447), + [anon_sym_while] = ACTIONS(4449), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_esac] = ACTIONS(5001), + [anon_sym_SEMI_SEMI] = ACTIONS(5107), + [anon_sym_function] = ACTIONS(4455), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(4457), + [anon_sym_LBRACK] = ACTIONS(4459), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4461), + [anon_sym_declare] = ACTIONS(4463), + [anon_sym_typeset] = ACTIONS(4463), + [anon_sym_export] = ACTIONS(4463), + [anon_sym_readonly] = ACTIONS(4463), + [anon_sym_local] = ACTIONS(4463), + [anon_sym_unset] = ACTIONS(4465), + [anon_sym_unsetenv] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(4467), + [anon_sym_DQUOTE] = ACTIONS(4469), + [anon_sym_DOLLAR] = ACTIONS(4471), + [sym_raw_string] = ACTIONS(4473), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4475), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4477), + [anon_sym_BQUOTE] = ACTIONS(4479), + [anon_sym_LT_LPAREN] = ACTIONS(4481), + [anon_sym_GT_LPAREN] = ACTIONS(4481), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(4483), }, [1974] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(5043), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_command_name] = STATE(2227), + [sym_variable_assignment] = STATE(200), + [sym_subscript] = STATE(99), + [sym_file_redirect] = STATE(200), + [sym_concatenation] = STATE(1972), + [sym_string] = STATE(1962), + [sym_simple_expansion] = STATE(1962), + [sym_string_expansion] = STATE(1962), + [sym_expansion] = STATE(1962), + [sym_command_substitution] = STATE(1962), + [sym_process_substitution] = STATE(1962), + [aux_sym_command_repeat1] = STATE(200), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(5109), + [anon_sym_DQUOTE] = ACTIONS(4469), + [anon_sym_DOLLAR] = ACTIONS(4471), + [sym_raw_string] = ACTIONS(4473), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4475), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4477), + [anon_sym_BQUOTE] = ACTIONS(4479), + [anon_sym_LT_LPAREN] = ACTIONS(4481), + [anon_sym_GT_LPAREN] = ACTIONS(4481), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(4473), }, [1975] = { - [sym_concatenation] = STATE(2198), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(2198), - [anon_sym_RBRACE] = ACTIONS(5055), - [anon_sym_EQ] = ACTIONS(5057), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(5059), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(5057), - [anon_sym_COLON_QMARK] = ACTIONS(5057), - [anon_sym_COLON_DASH] = ACTIONS(5057), - [anon_sym_PERCENT] = ACTIONS(5057), - [anon_sym_DASH] = ACTIONS(5057), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym__terminated_statement] = STATE(2228), + [sym_for_statement] = STATE(2224), + [sym_c_style_for_statement] = STATE(2224), + [sym_while_statement] = STATE(2224), + [sym_if_statement] = STATE(2224), + [sym_case_statement] = STATE(2224), + [sym_function_definition] = STATE(2224), + [sym_subshell] = STATE(2224), + [sym_pipeline] = STATE(2224), + [sym_list] = STATE(2224), + [sym_negated_command] = STATE(2224), + [sym_test_command] = STATE(2224), + [sym_declaration_command] = STATE(2224), + [sym_unset_command] = STATE(2224), + [sym_command] = STATE(2224), + [sym_command_name] = STATE(1969), + [sym_variable_assignment] = STATE(2225), + [sym_subscript] = STATE(1971), + [sym_file_redirect] = STATE(1974), + [sym_concatenation] = STATE(1972), + [sym_string] = STATE(1962), + [sym_simple_expansion] = STATE(1962), + [sym_string_expansion] = STATE(1962), + [sym_expansion] = STATE(1962), + [sym_command_substitution] = STATE(1962), + [sym_process_substitution] = STATE(1962), + [aux_sym__statements_repeat1] = STATE(2228), + [aux_sym_command_repeat1] = STATE(1974), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(4445), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(4447), + [anon_sym_while] = ACTIONS(4449), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_esac] = ACTIONS(5001), + [anon_sym_SEMI_SEMI] = ACTIONS(5107), + [anon_sym_function] = ACTIONS(4455), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(4457), + [anon_sym_LBRACK] = ACTIONS(4459), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4461), + [anon_sym_declare] = ACTIONS(4463), + [anon_sym_typeset] = ACTIONS(4463), + [anon_sym_export] = ACTIONS(4463), + [anon_sym_readonly] = ACTIONS(4463), + [anon_sym_local] = ACTIONS(4463), + [anon_sym_unset] = ACTIONS(4465), + [anon_sym_unsetenv] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(4467), + [anon_sym_DQUOTE] = ACTIONS(4469), + [anon_sym_DOLLAR] = ACTIONS(4471), + [sym_raw_string] = ACTIONS(4473), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4475), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4477), + [anon_sym_BQUOTE] = ACTIONS(4479), + [anon_sym_LT_LPAREN] = ACTIONS(4481), + [anon_sym_GT_LPAREN] = ACTIONS(4481), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(4483), }, [1976] = { - [sym__concat] = ACTIONS(2990), - [anon_sym_RBRACE] = ACTIONS(2990), - [sym_comment] = ACTIONS(53), + [aux_sym_case_item_repeat1] = STATE(1976), + [anon_sym_PIPE] = ACTIONS(5111), + [anon_sym_RPAREN] = ACTIONS(4997), + [sym_comment] = ACTIONS(55), }, [1977] = { - [sym_concatenation] = STATE(2199), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(2199), - [anon_sym_RBRACE] = ACTIONS(5043), - [anon_sym_EQ] = ACTIONS(5061), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(5063), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(5061), - [anon_sym_COLON_QMARK] = ACTIONS(5061), - [anon_sym_COLON_DASH] = ACTIONS(5061), - [anon_sym_PERCENT] = ACTIONS(5061), - [anon_sym_DASH] = ACTIONS(5061), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [aux_sym_concatenation_repeat1] = STATE(1977), + [sym__concat] = ACTIONS(3490), + [anon_sym_PIPE] = ACTIONS(1763), + [anon_sym_RPAREN] = ACTIONS(1763), + [sym_comment] = ACTIONS(55), }, [1978] = { - [sym__concat] = ACTIONS(3033), - [anon_sym_RBRACE] = ACTIONS(3033), - [sym_comment] = ACTIONS(53), + [anon_sym_esac] = ACTIONS(5114), + [sym__special_characters] = ACTIONS(5116), + [anon_sym_DQUOTE] = ACTIONS(5116), + [anon_sym_DOLLAR] = ACTIONS(5118), + [sym_raw_string] = ACTIONS(5116), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5116), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5116), + [anon_sym_BQUOTE] = ACTIONS(5116), + [anon_sym_LT_LPAREN] = ACTIONS(5116), + [anon_sym_GT_LPAREN] = ACTIONS(5116), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(5118), }, [1979] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(5065), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(901), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), + [anon_sym_SEMI] = ACTIONS(5077), + [anon_sym_esac] = ACTIONS(5120), + [anon_sym_PIPE] = ACTIONS(5081), + [anon_sym_SEMI_SEMI] = ACTIONS(5122), + [anon_sym_PIPE_AMP] = ACTIONS(5085), + [anon_sym_AMP_AMP] = ACTIONS(5087), + [anon_sym_PIPE_PIPE] = ACTIONS(5087), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(5089), + [anon_sym_AMP] = ACTIONS(5077), }, [1980] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(5065), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(5077), + [anon_sym_esac] = ACTIONS(5114), + [anon_sym_PIPE] = ACTIONS(5081), + [anon_sym_SEMI_SEMI] = ACTIONS(5122), + [anon_sym_PIPE_AMP] = ACTIONS(5085), + [anon_sym_AMP_AMP] = ACTIONS(5087), + [anon_sym_PIPE_PIPE] = ACTIONS(5087), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(5089), + [anon_sym_AMP] = ACTIONS(5077), }, [1981] = { - [sym__concat] = ACTIONS(3071), - [anon_sym_RBRACE] = ACTIONS(3071), - [sym_comment] = ACTIONS(53), + [sym__terminated_statement] = STATE(2226), + [sym_for_statement] = STATE(2231), + [sym_c_style_for_statement] = STATE(2231), + [sym_while_statement] = STATE(2231), + [sym_if_statement] = STATE(2231), + [sym_case_statement] = STATE(2231), + [sym_function_definition] = STATE(2231), + [sym_subshell] = STATE(2231), + [sym_pipeline] = STATE(2231), + [sym_list] = STATE(2231), + [sym_negated_command] = STATE(2231), + [sym_test_command] = STATE(2231), + [sym_declaration_command] = STATE(2231), + [sym_unset_command] = STATE(2231), + [sym_command] = STATE(2231), + [sym_command_name] = STATE(1969), + [sym_variable_assignment] = STATE(2232), + [sym_subscript] = STATE(1971), + [sym_file_redirect] = STATE(1974), + [sym_concatenation] = STATE(1972), + [sym_string] = STATE(1962), + [sym_simple_expansion] = STATE(1962), + [sym_string_expansion] = STATE(1962), + [sym_expansion] = STATE(1962), + [sym_command_substitution] = STATE(1962), + [sym_process_substitution] = STATE(1962), + [aux_sym__statements_repeat1] = STATE(2226), + [aux_sym_command_repeat1] = STATE(1974), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(4445), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(4447), + [anon_sym_while] = ACTIONS(4449), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_esac] = ACTIONS(5114), + [anon_sym_SEMI_SEMI] = ACTIONS(5124), + [anon_sym_function] = ACTIONS(4455), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(4457), + [anon_sym_LBRACK] = ACTIONS(4459), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4461), + [anon_sym_declare] = ACTIONS(4463), + [anon_sym_typeset] = ACTIONS(4463), + [anon_sym_export] = ACTIONS(4463), + [anon_sym_readonly] = ACTIONS(4463), + [anon_sym_local] = ACTIONS(4463), + [anon_sym_unset] = ACTIONS(4465), + [anon_sym_unsetenv] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(4467), + [anon_sym_DQUOTE] = ACTIONS(4469), + [anon_sym_DOLLAR] = ACTIONS(4471), + [sym_raw_string] = ACTIONS(4473), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4475), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4477), + [anon_sym_BQUOTE] = ACTIONS(4479), + [anon_sym_LT_LPAREN] = ACTIONS(4481), + [anon_sym_GT_LPAREN] = ACTIONS(4481), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(4483), }, [1982] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(5067), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(901), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), + [sym__terminated_statement] = STATE(2233), + [sym_for_statement] = STATE(2231), + [sym_c_style_for_statement] = STATE(2231), + [sym_while_statement] = STATE(2231), + [sym_if_statement] = STATE(2231), + [sym_case_statement] = STATE(2231), + [sym_function_definition] = STATE(2231), + [sym_subshell] = STATE(2231), + [sym_pipeline] = STATE(2231), + [sym_list] = STATE(2231), + [sym_negated_command] = STATE(2231), + [sym_test_command] = STATE(2231), + [sym_declaration_command] = STATE(2231), + [sym_unset_command] = STATE(2231), + [sym_command] = STATE(2231), + [sym_command_name] = STATE(1969), + [sym_variable_assignment] = STATE(2232), + [sym_subscript] = STATE(1971), + [sym_file_redirect] = STATE(1974), + [sym_concatenation] = STATE(1972), + [sym_string] = STATE(1962), + [sym_simple_expansion] = STATE(1962), + [sym_string_expansion] = STATE(1962), + [sym_expansion] = STATE(1962), + [sym_command_substitution] = STATE(1962), + [sym_process_substitution] = STATE(1962), + [aux_sym__statements_repeat1] = STATE(2233), + [aux_sym_command_repeat1] = STATE(1974), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(4445), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(4447), + [anon_sym_while] = ACTIONS(4449), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_esac] = ACTIONS(5114), + [anon_sym_SEMI_SEMI] = ACTIONS(5124), + [anon_sym_function] = ACTIONS(4455), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(4457), + [anon_sym_LBRACK] = ACTIONS(4459), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4461), + [anon_sym_declare] = ACTIONS(4463), + [anon_sym_typeset] = ACTIONS(4463), + [anon_sym_export] = ACTIONS(4463), + [anon_sym_readonly] = ACTIONS(4463), + [anon_sym_local] = ACTIONS(4463), + [anon_sym_unset] = ACTIONS(4465), + [anon_sym_unsetenv] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(4467), + [anon_sym_DQUOTE] = ACTIONS(4469), + [anon_sym_DOLLAR] = ACTIONS(4471), + [sym_raw_string] = ACTIONS(4473), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4475), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4477), + [anon_sym_BQUOTE] = ACTIONS(4479), + [anon_sym_LT_LPAREN] = ACTIONS(4481), + [anon_sym_GT_LPAREN] = ACTIONS(4481), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(4483), }, [1983] = { - [sym__simple_heredoc_body] = ACTIONS(5069), - [sym__heredoc_body_beginning] = ACTIONS(5069), - [sym_file_descriptor] = ACTIONS(5069), - [sym__concat] = ACTIONS(5069), - [ts_builtin_sym_end] = ACTIONS(5069), - [anon_sym_SEMI] = ACTIONS(5071), - [anon_sym_PIPE] = ACTIONS(5071), - [anon_sym_RPAREN] = ACTIONS(5069), - [anon_sym_SEMI_SEMI] = ACTIONS(5069), - [anon_sym_PIPE_AMP] = ACTIONS(5069), - [anon_sym_AMP_AMP] = ACTIONS(5069), - [anon_sym_PIPE_PIPE] = ACTIONS(5069), - [anon_sym_EQ_TILDE] = ACTIONS(5071), - [anon_sym_EQ_EQ] = ACTIONS(5071), - [anon_sym_LT] = ACTIONS(5071), - [anon_sym_GT] = ACTIONS(5071), - [anon_sym_GT_GT] = ACTIONS(5069), - [anon_sym_AMP_GT] = ACTIONS(5071), - [anon_sym_AMP_GT_GT] = ACTIONS(5069), - [anon_sym_LT_AMP] = ACTIONS(5069), - [anon_sym_GT_AMP] = ACTIONS(5069), - [anon_sym_LT_LT] = ACTIONS(5071), - [anon_sym_LT_LT_DASH] = ACTIONS(5069), - [anon_sym_LT_LT_LT] = ACTIONS(5069), - [sym__special_characters] = ACTIONS(5069), - [anon_sym_DQUOTE] = ACTIONS(5069), - [anon_sym_DOLLAR] = ACTIONS(5071), - [sym_raw_string] = ACTIONS(5069), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5069), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5069), - [anon_sym_BQUOTE] = ACTIONS(5069), - [anon_sym_LT_LPAREN] = ACTIONS(5069), - [anon_sym_GT_LPAREN] = ACTIONS(5069), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5071), - [anon_sym_LF] = ACTIONS(5069), - [anon_sym_AMP] = ACTIONS(5071), + [ts_builtin_sym_end] = ACTIONS(5126), + [anon_sym_SEMI] = ACTIONS(5128), + [anon_sym_esac] = ACTIONS(5126), + [anon_sym_PIPE] = ACTIONS(5128), + [anon_sym_RPAREN] = ACTIONS(5126), + [anon_sym_SEMI_SEMI] = ACTIONS(5126), + [anon_sym_PIPE_AMP] = ACTIONS(5126), + [anon_sym_AMP_AMP] = ACTIONS(5126), + [anon_sym_PIPE_PIPE] = ACTIONS(5126), + [anon_sym_BQUOTE] = ACTIONS(5126), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(5126), + [anon_sym_AMP] = ACTIONS(5128), }, [1984] = { - [sym__simple_heredoc_body] = ACTIONS(5073), - [sym__heredoc_body_beginning] = ACTIONS(5073), - [sym_file_descriptor] = ACTIONS(5073), - [sym__concat] = ACTIONS(5073), - [ts_builtin_sym_end] = ACTIONS(5073), - [anon_sym_SEMI] = ACTIONS(5075), - [anon_sym_PIPE] = ACTIONS(5075), - [anon_sym_RPAREN] = ACTIONS(5073), - [anon_sym_SEMI_SEMI] = ACTIONS(5073), - [anon_sym_PIPE_AMP] = ACTIONS(5073), - [anon_sym_AMP_AMP] = ACTIONS(5073), - [anon_sym_PIPE_PIPE] = ACTIONS(5073), - [anon_sym_EQ_TILDE] = ACTIONS(5075), - [anon_sym_EQ_EQ] = ACTIONS(5075), - [anon_sym_LT] = ACTIONS(5075), - [anon_sym_GT] = ACTIONS(5075), - [anon_sym_GT_GT] = ACTIONS(5073), - [anon_sym_AMP_GT] = ACTIONS(5075), - [anon_sym_AMP_GT_GT] = ACTIONS(5073), - [anon_sym_LT_AMP] = ACTIONS(5073), - [anon_sym_GT_AMP] = ACTIONS(5073), - [anon_sym_LT_LT] = ACTIONS(5075), - [anon_sym_LT_LT_DASH] = ACTIONS(5073), - [anon_sym_LT_LT_LT] = ACTIONS(5073), - [sym__special_characters] = ACTIONS(5073), - [anon_sym_DQUOTE] = ACTIONS(5073), - [anon_sym_DOLLAR] = ACTIONS(5075), - [sym_raw_string] = ACTIONS(5073), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5073), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5073), - [anon_sym_BQUOTE] = ACTIONS(5073), - [anon_sym_LT_LPAREN] = ACTIONS(5073), - [anon_sym_GT_LPAREN] = ACTIONS(5073), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5075), - [anon_sym_LF] = ACTIONS(5073), - [anon_sym_AMP] = ACTIONS(5075), + [aux_sym_case_item_repeat1] = STATE(2235), + [aux_sym_concatenation_repeat1] = STATE(1627), + [sym__concat] = ACTIONS(1214), + [anon_sym_PIPE] = ACTIONS(3670), + [anon_sym_RPAREN] = ACTIONS(5130), + [sym_comment] = ACTIONS(55), }, [1985] = { - [sym__concat] = ACTIONS(3788), - [anon_sym_RBRACE] = ACTIONS(3788), - [anon_sym_EQ] = ACTIONS(3790), - [sym__special_characters] = ACTIONS(3790), - [anon_sym_DQUOTE] = ACTIONS(3788), - [anon_sym_DOLLAR] = ACTIONS(3790), - [sym_raw_string] = ACTIONS(3788), - [anon_sym_POUND] = ACTIONS(3788), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3788), - [anon_sym_COLON] = ACTIONS(3790), - [anon_sym_COLON_QMARK] = ACTIONS(3790), - [anon_sym_COLON_DASH] = ACTIONS(3790), - [anon_sym_PERCENT] = ACTIONS(3790), - [anon_sym_DASH] = ACTIONS(3790), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3788), - [anon_sym_BQUOTE] = ACTIONS(3788), - [anon_sym_LT_LPAREN] = ACTIONS(3788), - [anon_sym_GT_LPAREN] = ACTIONS(3788), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(3790), + [aux_sym_case_item_repeat1] = STATE(2237), + [aux_sym_concatenation_repeat1] = STATE(1627), + [sym__concat] = ACTIONS(1214), + [anon_sym_PIPE] = ACTIONS(3670), + [anon_sym_RPAREN] = ACTIONS(5132), + [sym_comment] = ACTIONS(55), }, [1986] = { - [sym__concat] = ACTIONS(3796), - [anon_sym_RBRACE] = ACTIONS(3796), - [anon_sym_EQ] = ACTIONS(3798), - [sym__special_characters] = ACTIONS(3798), - [anon_sym_DQUOTE] = ACTIONS(3796), - [anon_sym_DOLLAR] = ACTIONS(3798), - [sym_raw_string] = ACTIONS(3796), - [anon_sym_POUND] = ACTIONS(3796), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3796), - [anon_sym_COLON] = ACTIONS(3798), - [anon_sym_COLON_QMARK] = ACTIONS(3798), - [anon_sym_COLON_DASH] = ACTIONS(3798), - [anon_sym_PERCENT] = ACTIONS(3798), - [anon_sym_DASH] = ACTIONS(3798), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3796), - [anon_sym_BQUOTE] = ACTIONS(3796), - [anon_sym_LT_LPAREN] = ACTIONS(3796), - [anon_sym_GT_LPAREN] = ACTIONS(3796), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(3798), + [aux_sym_case_item_repeat1] = STATE(2237), + [anon_sym_PIPE] = ACTIONS(3670), + [anon_sym_RPAREN] = ACTIONS(5132), + [sym_comment] = ACTIONS(55), }, [1987] = { - [aux_sym_concatenation_repeat1] = STATE(1293), - [sym__concat] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(5077), - [sym_comment] = ACTIONS(53), + [anon_sym_esac] = ACTIONS(5134), + [sym_comment] = ACTIONS(55), }, [1988] = { - [aux_sym_concatenation_repeat1] = STATE(1293), - [sym__concat] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(5079), - [sym_comment] = ACTIONS(53), + [ts_builtin_sym_end] = ACTIONS(5136), + [anon_sym_SEMI] = ACTIONS(5138), + [anon_sym_esac] = ACTIONS(5136), + [anon_sym_PIPE] = ACTIONS(5138), + [anon_sym_RPAREN] = ACTIONS(5136), + [anon_sym_SEMI_SEMI] = ACTIONS(5136), + [anon_sym_PIPE_AMP] = ACTIONS(5136), + [anon_sym_AMP_AMP] = ACTIONS(5136), + [anon_sym_PIPE_PIPE] = ACTIONS(5136), + [anon_sym_BQUOTE] = ACTIONS(5136), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(5136), + [anon_sym_AMP] = ACTIONS(5138), }, [1989] = { - [anon_sym_RBRACE] = ACTIONS(5079), - [sym_comment] = ACTIONS(53), + [anon_sym_esac] = ACTIONS(5140), + [sym_comment] = ACTIONS(55), }, [1990] = { - [sym_concatenation] = STATE(2205), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(2205), - [anon_sym_RBRACE] = ACTIONS(5081), - [anon_sym_EQ] = ACTIONS(5083), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(5085), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(5083), - [anon_sym_COLON_QMARK] = ACTIONS(5083), - [anon_sym_COLON_DASH] = ACTIONS(5083), - [anon_sym_PERCENT] = ACTIONS(5083), - [anon_sym_DASH] = ACTIONS(5083), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym__concat] = ACTIONS(4710), + [anon_sym_in] = ACTIONS(4710), + [anon_sym_SEMI] = ACTIONS(4712), + [anon_sym_SEMI_SEMI] = ACTIONS(4710), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(4710), + [anon_sym_AMP] = ACTIONS(4710), }, [1991] = { - [sym__concat] = ACTIONS(3852), - [anon_sym_RBRACE] = ACTIONS(3852), - [anon_sym_EQ] = ACTIONS(3854), - [sym__special_characters] = ACTIONS(3854), - [anon_sym_DQUOTE] = ACTIONS(3852), - [anon_sym_DOLLAR] = ACTIONS(3854), - [sym_raw_string] = ACTIONS(3852), - [anon_sym_POUND] = ACTIONS(3852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3852), - [anon_sym_COLON] = ACTIONS(3854), - [anon_sym_COLON_QMARK] = ACTIONS(3854), - [anon_sym_COLON_DASH] = ACTIONS(3854), - [anon_sym_PERCENT] = ACTIONS(3854), - [anon_sym_DASH] = ACTIONS(3854), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3852), - [anon_sym_BQUOTE] = ACTIONS(3852), - [anon_sym_LT_LPAREN] = ACTIONS(3852), - [anon_sym_GT_LPAREN] = ACTIONS(3852), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(3854), + [sym__concat] = ACTIONS(4714), + [anon_sym_in] = ACTIONS(4714), + [anon_sym_SEMI] = ACTIONS(4716), + [anon_sym_SEMI_SEMI] = ACTIONS(4714), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(4714), + [anon_sym_AMP] = ACTIONS(4714), }, [1992] = { - [sym_concatenation] = STATE(2206), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(2206), - [anon_sym_RBRACE] = ACTIONS(5079), - [anon_sym_EQ] = ACTIONS(5087), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(5089), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(5087), - [anon_sym_COLON_QMARK] = ACTIONS(5087), - [anon_sym_COLON_DASH] = ACTIONS(5087), - [anon_sym_PERCENT] = ACTIONS(5087), - [anon_sym_DASH] = ACTIONS(5087), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym__concat] = ACTIONS(4718), + [anon_sym_in] = ACTIONS(4718), + [anon_sym_SEMI] = ACTIONS(4720), + [anon_sym_SEMI_SEMI] = ACTIONS(4718), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(4718), + [anon_sym_AMP] = ACTIONS(4718), }, [1993] = { - [sym__concat] = ACTIONS(3893), - [anon_sym_RBRACE] = ACTIONS(3893), - [anon_sym_EQ] = ACTIONS(3895), - [sym__special_characters] = ACTIONS(3895), - [anon_sym_DQUOTE] = ACTIONS(3893), - [anon_sym_DOLLAR] = ACTIONS(3895), - [sym_raw_string] = ACTIONS(3893), - [anon_sym_POUND] = ACTIONS(3893), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3893), - [anon_sym_COLON] = ACTIONS(3895), - [anon_sym_COLON_QMARK] = ACTIONS(3895), - [anon_sym_COLON_DASH] = ACTIONS(3895), - [anon_sym_PERCENT] = ACTIONS(3895), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3893), - [anon_sym_BQUOTE] = ACTIONS(3893), - [anon_sym_LT_LPAREN] = ACTIONS(3893), - [anon_sym_GT_LPAREN] = ACTIONS(3893), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(3895), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(5142), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1994] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(5091), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(5144), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [1995] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(5079), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym__concat] = ACTIONS(4754), + [anon_sym_in] = ACTIONS(4754), + [anon_sym_SEMI] = ACTIONS(4756), + [anon_sym_SEMI_SEMI] = ACTIONS(4754), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(4754), + [anon_sym_AMP] = ACTIONS(4754), }, [1996] = { - [sym__concat] = ACTIONS(3915), - [anon_sym_RBRACE] = ACTIONS(3915), - [anon_sym_EQ] = ACTIONS(3917), - [sym__special_characters] = ACTIONS(3917), - [anon_sym_DQUOTE] = ACTIONS(3915), - [anon_sym_DOLLAR] = ACTIONS(3917), - [sym_raw_string] = ACTIONS(3915), - [anon_sym_POUND] = ACTIONS(3915), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3915), - [anon_sym_COLON] = ACTIONS(3917), - [anon_sym_COLON_QMARK] = ACTIONS(3917), - [anon_sym_COLON_DASH] = ACTIONS(3917), - [anon_sym_PERCENT] = ACTIONS(3917), - [anon_sym_DASH] = ACTIONS(3917), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3915), - [anon_sym_BQUOTE] = ACTIONS(3915), - [anon_sym_LT_LPAREN] = ACTIONS(3915), - [anon_sym_GT_LPAREN] = ACTIONS(3915), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(3917), + [aux_sym_concatenation_repeat1] = STATE(1996), + [sym__concat] = ACTIONS(2807), + [ts_builtin_sym_end] = ACTIONS(1763), + [anon_sym_SEMI] = ACTIONS(1765), + [anon_sym_PIPE] = ACTIONS(1765), + [anon_sym_SEMI_SEMI] = ACTIONS(1763), + [anon_sym_PIPE_AMP] = ACTIONS(1763), + [anon_sym_AMP_AMP] = ACTIONS(1763), + [anon_sym_PIPE_PIPE] = ACTIONS(1763), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1763), + [anon_sym_AMP] = ACTIONS(1765), }, [1997] = { - [sym__concat] = ACTIONS(3939), - [anon_sym_RBRACE] = ACTIONS(3939), - [anon_sym_EQ] = ACTIONS(3941), - [sym__special_characters] = ACTIONS(3941), - [anon_sym_DQUOTE] = ACTIONS(3939), - [anon_sym_DOLLAR] = ACTIONS(3941), - [sym_raw_string] = ACTIONS(3939), - [anon_sym_POUND] = ACTIONS(3939), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3939), - [anon_sym_COLON] = ACTIONS(3941), - [anon_sym_COLON_QMARK] = ACTIONS(3941), - [anon_sym_COLON_DASH] = ACTIONS(3941), - [anon_sym_PERCENT] = ACTIONS(3941), - [anon_sym_DASH] = ACTIONS(3941), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3939), - [anon_sym_BQUOTE] = ACTIONS(3939), - [anon_sym_LT_LPAREN] = ACTIONS(3939), - [anon_sym_GT_LPAREN] = ACTIONS(3939), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(3941), + [aux_sym_concatenation_repeat1] = STATE(1999), + [sym_file_descriptor] = ACTIONS(1088), + [sym__concat] = ACTIONS(3579), + [anon_sym_SEMI] = ACTIONS(1090), + [anon_sym_PIPE] = ACTIONS(1090), + [anon_sym_RPAREN] = ACTIONS(1088), + [anon_sym_SEMI_SEMI] = ACTIONS(1088), + [anon_sym_PIPE_AMP] = ACTIONS(1088), + [anon_sym_AMP_AMP] = ACTIONS(1088), + [anon_sym_PIPE_PIPE] = ACTIONS(1088), + [anon_sym_LT] = ACTIONS(1090), + [anon_sym_GT] = ACTIONS(1090), + [anon_sym_GT_GT] = ACTIONS(1088), + [anon_sym_AMP_GT] = ACTIONS(1090), + [anon_sym_AMP_GT_GT] = ACTIONS(1088), + [anon_sym_LT_AMP] = ACTIONS(1088), + [anon_sym_GT_AMP] = ACTIONS(1088), + [anon_sym_LT_LT] = ACTIONS(1090), + [anon_sym_LT_LT_DASH] = ACTIONS(1088), + [anon_sym_LT_LT_LT] = ACTIONS(1088), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1088), + [anon_sym_AMP] = ACTIONS(1090), }, [1998] = { - [aux_sym_concatenation_repeat1] = STATE(2000), - [sym__concat] = ACTIONS(693), - [anon_sym_SEMI] = ACTIONS(1055), - [anon_sym_PIPE] = ACTIONS(1055), - [anon_sym_SEMI_SEMI] = ACTIONS(1053), - [anon_sym_PIPE_AMP] = ACTIONS(1053), - [anon_sym_AMP_AMP] = ACTIONS(1053), - [anon_sym_PIPE_PIPE] = ACTIONS(1053), - [anon_sym_BQUOTE] = ACTIONS(1053), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1053), - [anon_sym_AMP] = ACTIONS(1055), + [aux_sym_concatenation_repeat1] = STATE(1999), + [sym_file_descriptor] = ACTIONS(1092), + [sym__concat] = ACTIONS(3579), + [anon_sym_SEMI] = ACTIONS(1094), + [anon_sym_PIPE] = ACTIONS(1094), + [anon_sym_RPAREN] = ACTIONS(1092), + [anon_sym_SEMI_SEMI] = ACTIONS(1092), + [anon_sym_PIPE_AMP] = ACTIONS(1092), + [anon_sym_AMP_AMP] = ACTIONS(1092), + [anon_sym_PIPE_PIPE] = ACTIONS(1092), + [anon_sym_LT] = ACTIONS(1094), + [anon_sym_GT] = ACTIONS(1094), + [anon_sym_GT_GT] = ACTIONS(1092), + [anon_sym_AMP_GT] = ACTIONS(1094), + [anon_sym_AMP_GT_GT] = ACTIONS(1092), + [anon_sym_LT_AMP] = ACTIONS(1092), + [anon_sym_GT_AMP] = ACTIONS(1092), + [anon_sym_LT_LT] = ACTIONS(1094), + [anon_sym_LT_LT_DASH] = ACTIONS(1092), + [anon_sym_LT_LT_LT] = ACTIONS(1092), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1092), + [anon_sym_AMP] = ACTIONS(1094), }, [1999] = { - [aux_sym_concatenation_repeat1] = STATE(2000), - [sym__concat] = ACTIONS(693), - [anon_sym_SEMI] = ACTIONS(1059), - [anon_sym_PIPE] = ACTIONS(1059), - [anon_sym_SEMI_SEMI] = ACTIONS(1057), - [anon_sym_PIPE_AMP] = ACTIONS(1057), - [anon_sym_AMP_AMP] = ACTIONS(1057), - [anon_sym_PIPE_PIPE] = ACTIONS(1057), - [anon_sym_BQUOTE] = ACTIONS(1057), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), + [aux_sym_concatenation_repeat1] = STATE(2242), + [sym_file_descriptor] = ACTIONS(807), + [sym__concat] = ACTIONS(3579), + [anon_sym_SEMI] = ACTIONS(809), + [anon_sym_PIPE] = ACTIONS(809), + [anon_sym_RPAREN] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(807), + [anon_sym_PIPE_AMP] = ACTIONS(807), + [anon_sym_AMP_AMP] = ACTIONS(807), + [anon_sym_PIPE_PIPE] = ACTIONS(807), + [anon_sym_LT] = ACTIONS(809), + [anon_sym_GT] = ACTIONS(809), + [anon_sym_GT_GT] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(809), + [anon_sym_AMP_GT_GT] = ACTIONS(807), + [anon_sym_LT_AMP] = ACTIONS(807), + [anon_sym_GT_AMP] = ACTIONS(807), + [anon_sym_LT_LT] = ACTIONS(809), + [anon_sym_LT_LT_DASH] = ACTIONS(807), + [anon_sym_LT_LT_LT] = ACTIONS(807), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(807), + [anon_sym_AMP] = ACTIONS(809), }, [2000] = { - [aux_sym_concatenation_repeat1] = STATE(2208), - [sym__concat] = ACTIONS(693), - [anon_sym_SEMI] = ACTIONS(767), - [anon_sym_PIPE] = ACTIONS(767), - [anon_sym_SEMI_SEMI] = ACTIONS(765), - [anon_sym_PIPE_AMP] = ACTIONS(765), - [anon_sym_AMP_AMP] = ACTIONS(765), - [anon_sym_PIPE_PIPE] = ACTIONS(765), - [anon_sym_BQUOTE] = ACTIONS(765), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(765), - [anon_sym_AMP] = ACTIONS(767), + [aux_sym_concatenation_repeat1] = STATE(2002), + [sym__concat] = ACTIONS(735), + [anon_sym_SEMI] = ACTIONS(1090), + [anon_sym_PIPE] = ACTIONS(1090), + [anon_sym_RPAREN] = ACTIONS(1088), + [anon_sym_SEMI_SEMI] = ACTIONS(1088), + [anon_sym_PIPE_AMP] = ACTIONS(1088), + [anon_sym_AMP_AMP] = ACTIONS(1088), + [anon_sym_PIPE_PIPE] = ACTIONS(1088), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1088), + [anon_sym_AMP] = ACTIONS(1090), }, [2001] = { - [aux_sym_concatenation_repeat1] = STATE(2003), - [sym_file_descriptor] = ACTIONS(1053), - [sym__concat] = ACTIONS(3592), - [anon_sym_SEMI] = ACTIONS(1055), - [anon_sym_PIPE] = ACTIONS(1055), - [anon_sym_SEMI_SEMI] = ACTIONS(1053), - [anon_sym_PIPE_AMP] = ACTIONS(1053), - [anon_sym_AMP_AMP] = ACTIONS(1053), - [anon_sym_PIPE_PIPE] = ACTIONS(1053), - [anon_sym_LT] = ACTIONS(1055), - [anon_sym_GT] = ACTIONS(1055), - [anon_sym_GT_GT] = ACTIONS(1053), - [anon_sym_AMP_GT] = ACTIONS(1055), - [anon_sym_AMP_GT_GT] = ACTIONS(1053), - [anon_sym_LT_AMP] = ACTIONS(1053), - [anon_sym_GT_AMP] = ACTIONS(1053), - [anon_sym_LT_LT] = ACTIONS(1055), - [anon_sym_LT_LT_DASH] = ACTIONS(1053), - [anon_sym_LT_LT_LT] = ACTIONS(1053), - [anon_sym_BQUOTE] = ACTIONS(1053), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1053), - [anon_sym_AMP] = ACTIONS(1055), + [aux_sym_concatenation_repeat1] = STATE(2002), + [sym__concat] = ACTIONS(735), + [anon_sym_SEMI] = ACTIONS(1094), + [anon_sym_PIPE] = ACTIONS(1094), + [anon_sym_RPAREN] = ACTIONS(1092), + [anon_sym_SEMI_SEMI] = ACTIONS(1092), + [anon_sym_PIPE_AMP] = ACTIONS(1092), + [anon_sym_AMP_AMP] = ACTIONS(1092), + [anon_sym_PIPE_PIPE] = ACTIONS(1092), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1092), + [anon_sym_AMP] = ACTIONS(1094), }, [2002] = { - [aux_sym_concatenation_repeat1] = STATE(2003), - [sym_file_descriptor] = ACTIONS(1057), - [sym__concat] = ACTIONS(3592), - [anon_sym_SEMI] = ACTIONS(1059), - [anon_sym_PIPE] = ACTIONS(1059), - [anon_sym_SEMI_SEMI] = ACTIONS(1057), - [anon_sym_PIPE_AMP] = ACTIONS(1057), - [anon_sym_AMP_AMP] = ACTIONS(1057), - [anon_sym_PIPE_PIPE] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_GT_GT] = ACTIONS(1057), - [anon_sym_AMP_GT] = ACTIONS(1059), - [anon_sym_AMP_GT_GT] = ACTIONS(1057), - [anon_sym_LT_AMP] = ACTIONS(1057), - [anon_sym_GT_AMP] = ACTIONS(1057), - [anon_sym_LT_LT] = ACTIONS(1059), - [anon_sym_LT_LT_DASH] = ACTIONS(1057), - [anon_sym_LT_LT_LT] = ACTIONS(1057), - [anon_sym_BQUOTE] = ACTIONS(1057), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), + [aux_sym_concatenation_repeat1] = STATE(2243), + [sym__concat] = ACTIONS(735), + [anon_sym_SEMI] = ACTIONS(809), + [anon_sym_PIPE] = ACTIONS(809), + [anon_sym_RPAREN] = ACTIONS(807), + [anon_sym_SEMI_SEMI] = ACTIONS(807), + [anon_sym_PIPE_AMP] = ACTIONS(807), + [anon_sym_AMP_AMP] = ACTIONS(807), + [anon_sym_PIPE_PIPE] = ACTIONS(807), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(807), + [anon_sym_AMP] = ACTIONS(809), }, [2003] = { - [aux_sym_concatenation_repeat1] = STATE(2209), - [sym_file_descriptor] = ACTIONS(765), - [sym__concat] = ACTIONS(3592), - [anon_sym_SEMI] = ACTIONS(767), - [anon_sym_PIPE] = ACTIONS(767), - [anon_sym_SEMI_SEMI] = ACTIONS(765), - [anon_sym_PIPE_AMP] = ACTIONS(765), - [anon_sym_AMP_AMP] = ACTIONS(765), - [anon_sym_PIPE_PIPE] = ACTIONS(765), - [anon_sym_LT] = ACTIONS(767), - [anon_sym_GT] = ACTIONS(767), - [anon_sym_GT_GT] = ACTIONS(765), - [anon_sym_AMP_GT] = ACTIONS(767), - [anon_sym_AMP_GT_GT] = ACTIONS(765), - [anon_sym_LT_AMP] = ACTIONS(765), - [anon_sym_GT_AMP] = ACTIONS(765), - [anon_sym_LT_LT] = ACTIONS(767), - [anon_sym_LT_LT_DASH] = ACTIONS(765), - [anon_sym_LT_LT_LT] = ACTIONS(765), - [anon_sym_BQUOTE] = ACTIONS(765), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(765), - [anon_sym_AMP] = ACTIONS(767), + [sym__concat] = ACTIONS(4710), + [anon_sym_AMP_AMP] = ACTIONS(4710), + [anon_sym_PIPE_PIPE] = ACTIONS(4710), + [anon_sym_RBRACK] = ACTIONS(4710), + [anon_sym_EQ_TILDE] = ACTIONS(4710), + [anon_sym_EQ_EQ] = ACTIONS(4710), + [anon_sym_EQ] = ACTIONS(4712), + [anon_sym_PLUS_EQ] = ACTIONS(4710), + [anon_sym_LT] = ACTIONS(4712), + [anon_sym_GT] = ACTIONS(4712), + [anon_sym_BANG_EQ] = ACTIONS(4710), + [anon_sym_PLUS] = ACTIONS(4712), + [anon_sym_DASH] = ACTIONS(4712), + [anon_sym_DASH_EQ] = ACTIONS(4710), + [anon_sym_LT_EQ] = ACTIONS(4710), + [anon_sym_GT_EQ] = ACTIONS(4710), + [anon_sym_PLUS_PLUS] = ACTIONS(4710), + [anon_sym_DASH_DASH] = ACTIONS(4710), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(4710), }, [2004] = { - [sym__heredoc_body_middle] = ACTIONS(3788), - [sym__heredoc_body_end] = ACTIONS(3788), - [anon_sym_DOLLAR] = ACTIONS(3790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3788), - [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(4714), + [anon_sym_AMP_AMP] = ACTIONS(4714), + [anon_sym_PIPE_PIPE] = ACTIONS(4714), + [anon_sym_RBRACK] = ACTIONS(4714), + [anon_sym_EQ_TILDE] = ACTIONS(4714), + [anon_sym_EQ_EQ] = ACTIONS(4714), + [anon_sym_EQ] = ACTIONS(4716), + [anon_sym_PLUS_EQ] = ACTIONS(4714), + [anon_sym_LT] = ACTIONS(4716), + [anon_sym_GT] = ACTIONS(4716), + [anon_sym_BANG_EQ] = ACTIONS(4714), + [anon_sym_PLUS] = ACTIONS(4716), + [anon_sym_DASH] = ACTIONS(4716), + [anon_sym_DASH_EQ] = ACTIONS(4714), + [anon_sym_LT_EQ] = ACTIONS(4714), + [anon_sym_GT_EQ] = ACTIONS(4714), + [anon_sym_PLUS_PLUS] = ACTIONS(4714), + [anon_sym_DASH_DASH] = ACTIONS(4714), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(4714), }, [2005] = { - [sym__heredoc_body_middle] = ACTIONS(3796), - [sym__heredoc_body_end] = ACTIONS(3796), - [anon_sym_DOLLAR] = ACTIONS(3798), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3796), - [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(4718), + [anon_sym_AMP_AMP] = ACTIONS(4718), + [anon_sym_PIPE_PIPE] = ACTIONS(4718), + [anon_sym_RBRACK] = ACTIONS(4718), + [anon_sym_EQ_TILDE] = ACTIONS(4718), + [anon_sym_EQ_EQ] = ACTIONS(4718), + [anon_sym_EQ] = ACTIONS(4720), + [anon_sym_PLUS_EQ] = ACTIONS(4718), + [anon_sym_LT] = ACTIONS(4720), + [anon_sym_GT] = ACTIONS(4720), + [anon_sym_BANG_EQ] = ACTIONS(4718), + [anon_sym_PLUS] = ACTIONS(4720), + [anon_sym_DASH] = ACTIONS(4720), + [anon_sym_DASH_EQ] = ACTIONS(4718), + [anon_sym_LT_EQ] = ACTIONS(4718), + [anon_sym_GT_EQ] = ACTIONS(4718), + [anon_sym_PLUS_PLUS] = ACTIONS(4718), + [anon_sym_DASH_DASH] = ACTIONS(4718), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(4718), }, [2006] = { - [aux_sym_concatenation_repeat1] = STATE(1293), - [sym__concat] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(5093), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(5146), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2007] = { - [aux_sym_concatenation_repeat1] = STATE(1293), - [sym__concat] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(5095), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(5148), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2008] = { - [anon_sym_RBRACE] = ACTIONS(5095), - [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(4754), + [anon_sym_AMP_AMP] = ACTIONS(4754), + [anon_sym_PIPE_PIPE] = ACTIONS(4754), + [anon_sym_RBRACK] = ACTIONS(4754), + [anon_sym_EQ_TILDE] = ACTIONS(4754), + [anon_sym_EQ_EQ] = ACTIONS(4754), + [anon_sym_EQ] = ACTIONS(4756), + [anon_sym_PLUS_EQ] = ACTIONS(4754), + [anon_sym_LT] = ACTIONS(4756), + [anon_sym_GT] = ACTIONS(4756), + [anon_sym_BANG_EQ] = ACTIONS(4754), + [anon_sym_PLUS] = ACTIONS(4756), + [anon_sym_DASH] = ACTIONS(4756), + [anon_sym_DASH_EQ] = ACTIONS(4754), + [anon_sym_LT_EQ] = ACTIONS(4754), + [anon_sym_GT_EQ] = ACTIONS(4754), + [anon_sym_PLUS_PLUS] = ACTIONS(4754), + [anon_sym_DASH_DASH] = ACTIONS(4754), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(4754), }, [2009] = { - [sym_concatenation] = STATE(2213), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(2213), - [anon_sym_RBRACE] = ACTIONS(5097), - [anon_sym_EQ] = ACTIONS(5099), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(5101), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(5099), - [anon_sym_COLON_QMARK] = ACTIONS(5099), - [anon_sym_COLON_DASH] = ACTIONS(5099), - [anon_sym_PERCENT] = ACTIONS(5099), - [anon_sym_DASH] = ACTIONS(5099), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym__concat] = ACTIONS(4710), + [sym_variable_name] = ACTIONS(4710), + [ts_builtin_sym_end] = ACTIONS(4710), + [anon_sym_SEMI] = ACTIONS(4712), + [anon_sym_PIPE] = ACTIONS(4712), + [anon_sym_RPAREN] = ACTIONS(4710), + [anon_sym_SEMI_SEMI] = ACTIONS(4710), + [anon_sym_PIPE_AMP] = ACTIONS(4710), + [anon_sym_AMP_AMP] = ACTIONS(4710), + [anon_sym_PIPE_PIPE] = ACTIONS(4710), + [sym__special_characters] = ACTIONS(4710), + [anon_sym_DQUOTE] = ACTIONS(4710), + [anon_sym_DOLLAR] = ACTIONS(4712), + [sym_raw_string] = ACTIONS(4710), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4710), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4710), + [anon_sym_BQUOTE] = ACTIONS(4710), + [anon_sym_LT_LPAREN] = ACTIONS(4710), + [anon_sym_GT_LPAREN] = ACTIONS(4710), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4712), + [sym_word] = ACTIONS(4712), + [anon_sym_LF] = ACTIONS(4710), + [anon_sym_AMP] = ACTIONS(4712), }, [2010] = { - [sym__heredoc_body_middle] = ACTIONS(3852), - [sym__heredoc_body_end] = ACTIONS(3852), - [anon_sym_DOLLAR] = ACTIONS(3854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3852), - [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(4714), + [sym_variable_name] = ACTIONS(4714), + [ts_builtin_sym_end] = ACTIONS(4714), + [anon_sym_SEMI] = ACTIONS(4716), + [anon_sym_PIPE] = ACTIONS(4716), + [anon_sym_RPAREN] = ACTIONS(4714), + [anon_sym_SEMI_SEMI] = ACTIONS(4714), + [anon_sym_PIPE_AMP] = ACTIONS(4714), + [anon_sym_AMP_AMP] = ACTIONS(4714), + [anon_sym_PIPE_PIPE] = ACTIONS(4714), + [sym__special_characters] = ACTIONS(4714), + [anon_sym_DQUOTE] = ACTIONS(4714), + [anon_sym_DOLLAR] = ACTIONS(4716), + [sym_raw_string] = ACTIONS(4714), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4714), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4714), + [anon_sym_BQUOTE] = ACTIONS(4714), + [anon_sym_LT_LPAREN] = ACTIONS(4714), + [anon_sym_GT_LPAREN] = ACTIONS(4714), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4716), + [sym_word] = ACTIONS(4716), + [anon_sym_LF] = ACTIONS(4714), + [anon_sym_AMP] = ACTIONS(4716), }, [2011] = { - [sym_concatenation] = STATE(2214), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(2214), - [anon_sym_RBRACE] = ACTIONS(5095), - [anon_sym_EQ] = ACTIONS(5103), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(5105), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(5103), - [anon_sym_COLON_QMARK] = ACTIONS(5103), - [anon_sym_COLON_DASH] = ACTIONS(5103), - [anon_sym_PERCENT] = ACTIONS(5103), - [anon_sym_DASH] = ACTIONS(5103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym__concat] = ACTIONS(4718), + [sym_variable_name] = ACTIONS(4718), + [ts_builtin_sym_end] = ACTIONS(4718), + [anon_sym_SEMI] = ACTIONS(4720), + [anon_sym_PIPE] = ACTIONS(4720), + [anon_sym_RPAREN] = ACTIONS(4718), + [anon_sym_SEMI_SEMI] = ACTIONS(4718), + [anon_sym_PIPE_AMP] = ACTIONS(4718), + [anon_sym_AMP_AMP] = ACTIONS(4718), + [anon_sym_PIPE_PIPE] = ACTIONS(4718), + [sym__special_characters] = ACTIONS(4718), + [anon_sym_DQUOTE] = ACTIONS(4718), + [anon_sym_DOLLAR] = ACTIONS(4720), + [sym_raw_string] = ACTIONS(4718), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4718), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4718), + [anon_sym_BQUOTE] = ACTIONS(4718), + [anon_sym_LT_LPAREN] = ACTIONS(4718), + [anon_sym_GT_LPAREN] = ACTIONS(4718), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4720), + [sym_word] = ACTIONS(4720), + [anon_sym_LF] = ACTIONS(4718), + [anon_sym_AMP] = ACTIONS(4720), }, [2012] = { - [sym__heredoc_body_middle] = ACTIONS(3893), - [sym__heredoc_body_end] = ACTIONS(3893), - [anon_sym_DOLLAR] = ACTIONS(3895), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3893), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(5150), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2013] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(5107), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(5152), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2014] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(5095), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym__concat] = ACTIONS(4754), + [sym_variable_name] = ACTIONS(4754), + [ts_builtin_sym_end] = ACTIONS(4754), + [anon_sym_SEMI] = ACTIONS(4756), + [anon_sym_PIPE] = ACTIONS(4756), + [anon_sym_RPAREN] = ACTIONS(4754), + [anon_sym_SEMI_SEMI] = ACTIONS(4754), + [anon_sym_PIPE_AMP] = ACTIONS(4754), + [anon_sym_AMP_AMP] = ACTIONS(4754), + [anon_sym_PIPE_PIPE] = ACTIONS(4754), + [sym__special_characters] = ACTIONS(4754), + [anon_sym_DQUOTE] = ACTIONS(4754), + [anon_sym_DOLLAR] = ACTIONS(4756), + [sym_raw_string] = ACTIONS(4754), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4754), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4754), + [anon_sym_BQUOTE] = ACTIONS(4754), + [anon_sym_LT_LPAREN] = ACTIONS(4754), + [anon_sym_GT_LPAREN] = ACTIONS(4754), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4756), + [sym_word] = ACTIONS(4756), + [anon_sym_LF] = ACTIONS(4754), + [anon_sym_AMP] = ACTIONS(4756), }, [2015] = { - [sym__concat] = ACTIONS(3788), - [anon_sym_RPAREN] = ACTIONS(3788), - [sym__special_characters] = ACTIONS(3788), - [anon_sym_DQUOTE] = ACTIONS(3788), - [anon_sym_DOLLAR] = ACTIONS(3790), - [sym_raw_string] = ACTIONS(3788), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3788), - [anon_sym_BQUOTE] = ACTIONS(3788), - [anon_sym_LT_LPAREN] = ACTIONS(3788), - [anon_sym_GT_LPAREN] = ACTIONS(3788), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3788), + [sym__concat] = ACTIONS(4710), + [ts_builtin_sym_end] = ACTIONS(4710), + [anon_sym_SEMI] = ACTIONS(4712), + [anon_sym_PIPE] = ACTIONS(4712), + [anon_sym_RPAREN] = ACTIONS(4710), + [anon_sym_SEMI_SEMI] = ACTIONS(4710), + [anon_sym_PIPE_AMP] = ACTIONS(4710), + [anon_sym_AMP_AMP] = ACTIONS(4710), + [anon_sym_PIPE_PIPE] = ACTIONS(4710), + [sym__special_characters] = ACTIONS(4710), + [anon_sym_DQUOTE] = ACTIONS(4710), + [anon_sym_DOLLAR] = ACTIONS(4712), + [sym_raw_string] = ACTIONS(4710), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4710), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4710), + [anon_sym_BQUOTE] = ACTIONS(4710), + [anon_sym_LT_LPAREN] = ACTIONS(4710), + [anon_sym_GT_LPAREN] = ACTIONS(4710), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4712), + [sym_word] = ACTIONS(4712), + [anon_sym_LF] = ACTIONS(4710), + [anon_sym_AMP] = ACTIONS(4712), }, [2016] = { - [sym__concat] = ACTIONS(3796), - [anon_sym_RPAREN] = ACTIONS(3796), - [sym__special_characters] = ACTIONS(3796), - [anon_sym_DQUOTE] = ACTIONS(3796), - [anon_sym_DOLLAR] = ACTIONS(3798), - [sym_raw_string] = ACTIONS(3796), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3796), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3796), - [anon_sym_BQUOTE] = ACTIONS(3796), - [anon_sym_LT_LPAREN] = ACTIONS(3796), - [anon_sym_GT_LPAREN] = ACTIONS(3796), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3796), + [sym__concat] = ACTIONS(4714), + [ts_builtin_sym_end] = ACTIONS(4714), + [anon_sym_SEMI] = ACTIONS(4716), + [anon_sym_PIPE] = ACTIONS(4716), + [anon_sym_RPAREN] = ACTIONS(4714), + [anon_sym_SEMI_SEMI] = ACTIONS(4714), + [anon_sym_PIPE_AMP] = ACTIONS(4714), + [anon_sym_AMP_AMP] = ACTIONS(4714), + [anon_sym_PIPE_PIPE] = ACTIONS(4714), + [sym__special_characters] = ACTIONS(4714), + [anon_sym_DQUOTE] = ACTIONS(4714), + [anon_sym_DOLLAR] = ACTIONS(4716), + [sym_raw_string] = ACTIONS(4714), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4714), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4714), + [anon_sym_BQUOTE] = ACTIONS(4714), + [anon_sym_LT_LPAREN] = ACTIONS(4714), + [anon_sym_GT_LPAREN] = ACTIONS(4714), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4716), + [sym_word] = ACTIONS(4716), + [anon_sym_LF] = ACTIONS(4714), + [anon_sym_AMP] = ACTIONS(4716), }, [2017] = { - [aux_sym_concatenation_repeat1] = STATE(1293), - [sym__concat] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(5109), - [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(4718), + [ts_builtin_sym_end] = ACTIONS(4718), + [anon_sym_SEMI] = ACTIONS(4720), + [anon_sym_PIPE] = ACTIONS(4720), + [anon_sym_RPAREN] = ACTIONS(4718), + [anon_sym_SEMI_SEMI] = ACTIONS(4718), + [anon_sym_PIPE_AMP] = ACTIONS(4718), + [anon_sym_AMP_AMP] = ACTIONS(4718), + [anon_sym_PIPE_PIPE] = ACTIONS(4718), + [sym__special_characters] = ACTIONS(4718), + [anon_sym_DQUOTE] = ACTIONS(4718), + [anon_sym_DOLLAR] = ACTIONS(4720), + [sym_raw_string] = ACTIONS(4718), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4718), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4718), + [anon_sym_BQUOTE] = ACTIONS(4718), + [anon_sym_LT_LPAREN] = ACTIONS(4718), + [anon_sym_GT_LPAREN] = ACTIONS(4718), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4720), + [sym_word] = ACTIONS(4720), + [anon_sym_LF] = ACTIONS(4718), + [anon_sym_AMP] = ACTIONS(4720), }, [2018] = { - [aux_sym_concatenation_repeat1] = STATE(1293), - [sym__concat] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(5111), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(5154), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2019] = { - [anon_sym_RBRACE] = ACTIONS(5111), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(5156), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2020] = { - [sym_concatenation] = STATE(2219), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(2219), - [anon_sym_RBRACE] = ACTIONS(5113), - [anon_sym_EQ] = ACTIONS(5115), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(5117), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(5115), - [anon_sym_COLON_QMARK] = ACTIONS(5115), - [anon_sym_COLON_DASH] = ACTIONS(5115), - [anon_sym_PERCENT] = ACTIONS(5115), - [anon_sym_DASH] = ACTIONS(5115), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym__concat] = ACTIONS(4754), + [ts_builtin_sym_end] = ACTIONS(4754), + [anon_sym_SEMI] = ACTIONS(4756), + [anon_sym_PIPE] = ACTIONS(4756), + [anon_sym_RPAREN] = ACTIONS(4754), + [anon_sym_SEMI_SEMI] = ACTIONS(4754), + [anon_sym_PIPE_AMP] = ACTIONS(4754), + [anon_sym_AMP_AMP] = ACTIONS(4754), + [anon_sym_PIPE_PIPE] = ACTIONS(4754), + [sym__special_characters] = ACTIONS(4754), + [anon_sym_DQUOTE] = ACTIONS(4754), + [anon_sym_DOLLAR] = ACTIONS(4756), + [sym_raw_string] = ACTIONS(4754), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4754), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4754), + [anon_sym_BQUOTE] = ACTIONS(4754), + [anon_sym_LT_LPAREN] = ACTIONS(4754), + [anon_sym_GT_LPAREN] = ACTIONS(4754), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4756), + [sym_word] = ACTIONS(4756), + [anon_sym_LF] = ACTIONS(4754), + [anon_sym_AMP] = ACTIONS(4756), }, [2021] = { - [sym__concat] = ACTIONS(3852), - [anon_sym_RPAREN] = ACTIONS(3852), - [sym__special_characters] = ACTIONS(3852), - [anon_sym_DQUOTE] = ACTIONS(3852), - [anon_sym_DOLLAR] = ACTIONS(3854), - [sym_raw_string] = ACTIONS(3852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3852), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3852), - [anon_sym_BQUOTE] = ACTIONS(3852), - [anon_sym_LT_LPAREN] = ACTIONS(3852), - [anon_sym_GT_LPAREN] = ACTIONS(3852), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3852), + [sym_file_descriptor] = ACTIONS(4710), + [sym__concat] = ACTIONS(4710), + [sym_variable_name] = ACTIONS(4710), + [anon_sym_LT] = ACTIONS(4712), + [anon_sym_GT] = ACTIONS(4712), + [anon_sym_GT_GT] = ACTIONS(4710), + [anon_sym_AMP_GT] = ACTIONS(4712), + [anon_sym_AMP_GT_GT] = ACTIONS(4710), + [anon_sym_LT_AMP] = ACTIONS(4710), + [anon_sym_GT_AMP] = ACTIONS(4710), + [sym__special_characters] = ACTIONS(4710), + [anon_sym_DQUOTE] = ACTIONS(4710), + [anon_sym_DOLLAR] = ACTIONS(4712), + [sym_raw_string] = ACTIONS(4710), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4710), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4710), + [anon_sym_BQUOTE] = ACTIONS(4710), + [anon_sym_LT_LPAREN] = ACTIONS(4710), + [anon_sym_GT_LPAREN] = ACTIONS(4710), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(4710), }, [2022] = { - [sym_concatenation] = STATE(2220), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(2220), - [anon_sym_RBRACE] = ACTIONS(5111), - [anon_sym_EQ] = ACTIONS(5119), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(5121), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(5119), - [anon_sym_COLON_QMARK] = ACTIONS(5119), - [anon_sym_COLON_DASH] = ACTIONS(5119), - [anon_sym_PERCENT] = ACTIONS(5119), - [anon_sym_DASH] = ACTIONS(5119), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_file_descriptor] = ACTIONS(4714), + [sym__concat] = ACTIONS(4714), + [sym_variable_name] = ACTIONS(4714), + [anon_sym_LT] = ACTIONS(4716), + [anon_sym_GT] = ACTIONS(4716), + [anon_sym_GT_GT] = ACTIONS(4714), + [anon_sym_AMP_GT] = ACTIONS(4716), + [anon_sym_AMP_GT_GT] = ACTIONS(4714), + [anon_sym_LT_AMP] = ACTIONS(4714), + [anon_sym_GT_AMP] = ACTIONS(4714), + [sym__special_characters] = ACTIONS(4714), + [anon_sym_DQUOTE] = ACTIONS(4714), + [anon_sym_DOLLAR] = ACTIONS(4716), + [sym_raw_string] = ACTIONS(4714), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4714), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4714), + [anon_sym_BQUOTE] = ACTIONS(4714), + [anon_sym_LT_LPAREN] = ACTIONS(4714), + [anon_sym_GT_LPAREN] = ACTIONS(4714), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(4714), }, [2023] = { - [sym__concat] = ACTIONS(3893), - [anon_sym_RPAREN] = ACTIONS(3893), - [sym__special_characters] = ACTIONS(3893), - [anon_sym_DQUOTE] = ACTIONS(3893), - [anon_sym_DOLLAR] = ACTIONS(3895), - [sym_raw_string] = ACTIONS(3893), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3893), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3893), - [anon_sym_BQUOTE] = ACTIONS(3893), - [anon_sym_LT_LPAREN] = ACTIONS(3893), - [anon_sym_GT_LPAREN] = ACTIONS(3893), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3893), + [sym_file_descriptor] = ACTIONS(4718), + [sym__concat] = ACTIONS(4718), + [sym_variable_name] = ACTIONS(4718), + [anon_sym_LT] = ACTIONS(4720), + [anon_sym_GT] = ACTIONS(4720), + [anon_sym_GT_GT] = ACTIONS(4718), + [anon_sym_AMP_GT] = ACTIONS(4720), + [anon_sym_AMP_GT_GT] = ACTIONS(4718), + [anon_sym_LT_AMP] = ACTIONS(4718), + [anon_sym_GT_AMP] = ACTIONS(4718), + [sym__special_characters] = ACTIONS(4718), + [anon_sym_DQUOTE] = ACTIONS(4718), + [anon_sym_DOLLAR] = ACTIONS(4720), + [sym_raw_string] = ACTIONS(4718), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4718), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4718), + [anon_sym_BQUOTE] = ACTIONS(4718), + [anon_sym_LT_LPAREN] = ACTIONS(4718), + [anon_sym_GT_LPAREN] = ACTIONS(4718), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(4718), }, [2024] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(5123), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(5158), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2025] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(5111), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(5160), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2026] = { - [sym__concat] = ACTIONS(3915), - [anon_sym_RPAREN] = ACTIONS(3915), - [sym__special_characters] = ACTIONS(3915), - [anon_sym_DQUOTE] = ACTIONS(3915), - [anon_sym_DOLLAR] = ACTIONS(3917), - [sym_raw_string] = ACTIONS(3915), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3915), - [anon_sym_BQUOTE] = ACTIONS(3915), - [anon_sym_LT_LPAREN] = ACTIONS(3915), - [anon_sym_GT_LPAREN] = ACTIONS(3915), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3915), + [sym_file_descriptor] = ACTIONS(4754), + [sym__concat] = ACTIONS(4754), + [sym_variable_name] = ACTIONS(4754), + [anon_sym_LT] = ACTIONS(4756), + [anon_sym_GT] = ACTIONS(4756), + [anon_sym_GT_GT] = ACTIONS(4754), + [anon_sym_AMP_GT] = ACTIONS(4756), + [anon_sym_AMP_GT_GT] = ACTIONS(4754), + [anon_sym_LT_AMP] = ACTIONS(4754), + [anon_sym_GT_AMP] = ACTIONS(4754), + [sym__special_characters] = ACTIONS(4754), + [anon_sym_DQUOTE] = ACTIONS(4754), + [anon_sym_DOLLAR] = ACTIONS(4756), + [sym_raw_string] = ACTIONS(4754), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4754), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4754), + [anon_sym_BQUOTE] = ACTIONS(4754), + [anon_sym_LT_LPAREN] = ACTIONS(4754), + [anon_sym_GT_LPAREN] = ACTIONS(4754), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(4754), }, [2027] = { - [sym__concat] = ACTIONS(3939), - [anon_sym_RPAREN] = ACTIONS(3939), - [sym__special_characters] = ACTIONS(3939), - [anon_sym_DQUOTE] = ACTIONS(3939), - [anon_sym_DOLLAR] = ACTIONS(3941), - [sym_raw_string] = ACTIONS(3939), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3939), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3939), - [anon_sym_BQUOTE] = ACTIONS(3939), - [anon_sym_LT_LPAREN] = ACTIONS(3939), - [anon_sym_GT_LPAREN] = ACTIONS(3939), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3939), + [sym__concat] = ACTIONS(4710), + [anon_sym_DQUOTE] = ACTIONS(4712), + [anon_sym_DOLLAR] = ACTIONS(4712), + [sym__string_content] = ACTIONS(4710), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4712), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4712), + [anon_sym_BQUOTE] = ACTIONS(4712), + [sym_comment] = ACTIONS(281), }, [2028] = { - [sym_file_descriptor] = ACTIONS(4568), - [sym__concat] = ACTIONS(4568), - [sym_variable_name] = ACTIONS(4568), - [ts_builtin_sym_end] = ACTIONS(4568), - [anon_sym_SEMI] = ACTIONS(4570), - [anon_sym_PIPE] = ACTIONS(4570), - [anon_sym_RPAREN] = ACTIONS(4568), - [anon_sym_SEMI_SEMI] = ACTIONS(4568), - [anon_sym_PIPE_AMP] = ACTIONS(4568), - [anon_sym_AMP_AMP] = ACTIONS(4568), - [anon_sym_PIPE_PIPE] = ACTIONS(4568), - [anon_sym_LT] = ACTIONS(4570), - [anon_sym_GT] = ACTIONS(4570), - [anon_sym_GT_GT] = ACTIONS(4568), - [anon_sym_AMP_GT] = ACTIONS(4570), - [anon_sym_AMP_GT_GT] = ACTIONS(4568), - [anon_sym_LT_AMP] = ACTIONS(4568), - [anon_sym_GT_AMP] = ACTIONS(4568), - [sym__special_characters] = ACTIONS(4568), - [anon_sym_DQUOTE] = ACTIONS(4568), - [anon_sym_DOLLAR] = ACTIONS(4570), - [sym_raw_string] = ACTIONS(4568), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4568), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4568), - [anon_sym_BQUOTE] = ACTIONS(4568), - [anon_sym_LT_LPAREN] = ACTIONS(4568), - [anon_sym_GT_LPAREN] = ACTIONS(4568), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4570), - [anon_sym_LF] = ACTIONS(4568), - [anon_sym_AMP] = ACTIONS(4570), + [sym__concat] = ACTIONS(4714), + [anon_sym_DQUOTE] = ACTIONS(4716), + [anon_sym_DOLLAR] = ACTIONS(4716), + [sym__string_content] = ACTIONS(4714), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4716), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4716), + [anon_sym_BQUOTE] = ACTIONS(4716), + [sym_comment] = ACTIONS(281), }, [2029] = { - [sym_file_descriptor] = ACTIONS(4572), - [sym__concat] = ACTIONS(4572), - [sym_variable_name] = ACTIONS(4572), - [ts_builtin_sym_end] = ACTIONS(4572), - [anon_sym_SEMI] = ACTIONS(4574), - [anon_sym_PIPE] = ACTIONS(4574), - [anon_sym_RPAREN] = ACTIONS(4572), - [anon_sym_SEMI_SEMI] = ACTIONS(4572), - [anon_sym_PIPE_AMP] = ACTIONS(4572), - [anon_sym_AMP_AMP] = ACTIONS(4572), - [anon_sym_PIPE_PIPE] = ACTIONS(4572), - [anon_sym_LT] = ACTIONS(4574), - [anon_sym_GT] = ACTIONS(4574), - [anon_sym_GT_GT] = ACTIONS(4572), - [anon_sym_AMP_GT] = ACTIONS(4574), - [anon_sym_AMP_GT_GT] = ACTIONS(4572), - [anon_sym_LT_AMP] = ACTIONS(4572), - [anon_sym_GT_AMP] = ACTIONS(4572), - [sym__special_characters] = ACTIONS(4572), - [anon_sym_DQUOTE] = ACTIONS(4572), - [anon_sym_DOLLAR] = ACTIONS(4574), - [sym_raw_string] = ACTIONS(4572), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4572), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4572), - [anon_sym_BQUOTE] = ACTIONS(4572), - [anon_sym_LT_LPAREN] = ACTIONS(4572), - [anon_sym_GT_LPAREN] = ACTIONS(4572), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4574), - [anon_sym_LF] = ACTIONS(4572), - [anon_sym_AMP] = ACTIONS(4574), + [sym__concat] = ACTIONS(4718), + [anon_sym_DQUOTE] = ACTIONS(4720), + [anon_sym_DOLLAR] = ACTIONS(4720), + [sym__string_content] = ACTIONS(4718), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4720), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4720), + [anon_sym_BQUOTE] = ACTIONS(4720), + [sym_comment] = ACTIONS(281), }, [2030] = { - [sym_file_descriptor] = ACTIONS(4576), - [sym__concat] = ACTIONS(4576), - [sym_variable_name] = ACTIONS(4576), - [ts_builtin_sym_end] = ACTIONS(4576), - [anon_sym_SEMI] = ACTIONS(4578), - [anon_sym_PIPE] = ACTIONS(4578), - [anon_sym_RPAREN] = ACTIONS(4576), - [anon_sym_SEMI_SEMI] = ACTIONS(4576), - [anon_sym_PIPE_AMP] = ACTIONS(4576), - [anon_sym_AMP_AMP] = ACTIONS(4576), - [anon_sym_PIPE_PIPE] = ACTIONS(4576), - [anon_sym_LT] = ACTIONS(4578), - [anon_sym_GT] = ACTIONS(4578), - [anon_sym_GT_GT] = ACTIONS(4576), - [anon_sym_AMP_GT] = ACTIONS(4578), - [anon_sym_AMP_GT_GT] = ACTIONS(4576), - [anon_sym_LT_AMP] = ACTIONS(4576), - [anon_sym_GT_AMP] = ACTIONS(4576), - [sym__special_characters] = ACTIONS(4576), - [anon_sym_DQUOTE] = ACTIONS(4576), - [anon_sym_DOLLAR] = ACTIONS(4578), - [sym_raw_string] = ACTIONS(4576), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4576), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4576), - [anon_sym_BQUOTE] = ACTIONS(4576), - [anon_sym_LT_LPAREN] = ACTIONS(4576), - [anon_sym_GT_LPAREN] = ACTIONS(4576), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4578), - [anon_sym_LF] = ACTIONS(4576), - [anon_sym_AMP] = ACTIONS(4578), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(5162), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2031] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(5125), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(5164), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2032] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(5127), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym__concat] = ACTIONS(4754), + [anon_sym_DQUOTE] = ACTIONS(4756), + [anon_sym_DOLLAR] = ACTIONS(4756), + [sym__string_content] = ACTIONS(4754), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4756), + [anon_sym_BQUOTE] = ACTIONS(4756), + [sym_comment] = ACTIONS(281), }, [2033] = { - [sym_file_descriptor] = ACTIONS(4608), - [sym__concat] = ACTIONS(4608), - [sym_variable_name] = ACTIONS(4608), - [ts_builtin_sym_end] = ACTIONS(4608), - [anon_sym_SEMI] = ACTIONS(4610), - [anon_sym_PIPE] = ACTIONS(4610), - [anon_sym_RPAREN] = ACTIONS(4608), - [anon_sym_SEMI_SEMI] = ACTIONS(4608), - [anon_sym_PIPE_AMP] = ACTIONS(4608), - [anon_sym_AMP_AMP] = ACTIONS(4608), - [anon_sym_PIPE_PIPE] = ACTIONS(4608), - [anon_sym_LT] = ACTIONS(4610), - [anon_sym_GT] = ACTIONS(4610), - [anon_sym_GT_GT] = ACTIONS(4608), - [anon_sym_AMP_GT] = ACTIONS(4610), - [anon_sym_AMP_GT_GT] = ACTIONS(4608), - [anon_sym_LT_AMP] = ACTIONS(4608), - [anon_sym_GT_AMP] = ACTIONS(4608), - [sym__special_characters] = ACTIONS(4608), - [anon_sym_DQUOTE] = ACTIONS(4608), - [anon_sym_DOLLAR] = ACTIONS(4610), - [sym_raw_string] = ACTIONS(4608), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4608), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4608), - [anon_sym_BQUOTE] = ACTIONS(4608), - [anon_sym_LT_LPAREN] = ACTIONS(4608), - [anon_sym_GT_LPAREN] = ACTIONS(4608), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4610), - [anon_sym_LF] = ACTIONS(4608), - [anon_sym_AMP] = ACTIONS(4610), + [anon_sym_RBRACE] = ACTIONS(4129), + [anon_sym_EQ] = ACTIONS(5166), + [anon_sym_DASH] = ACTIONS(5166), + [sym__special_characters] = ACTIONS(5166), + [anon_sym_DQUOTE] = ACTIONS(4129), + [anon_sym_DOLLAR] = ACTIONS(5166), + [sym_raw_string] = ACTIONS(4129), + [anon_sym_POUND] = ACTIONS(4129), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4129), + [anon_sym_SLASH] = ACTIONS(4129), + [anon_sym_COLON] = ACTIONS(5166), + [anon_sym_COLON_QMARK] = ACTIONS(5166), + [anon_sym_COLON_DASH] = ACTIONS(5166), + [anon_sym_PERCENT] = ACTIONS(5166), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4129), + [anon_sym_BQUOTE] = ACTIONS(4129), + [anon_sym_LT_LPAREN] = ACTIONS(4129), + [anon_sym_GT_LPAREN] = ACTIONS(4129), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(5166), }, [2034] = { - [ts_builtin_sym_end] = ACTIONS(3524), - [anon_sym_SEMI] = ACTIONS(3526), - [anon_sym_esac] = ACTIONS(3524), - [anon_sym_PIPE] = ACTIONS(3526), - [anon_sym_RPAREN] = ACTIONS(3524), - [anon_sym_SEMI_SEMI] = ACTIONS(3524), - [anon_sym_PIPE_AMP] = ACTIONS(3524), - [anon_sym_AMP_AMP] = ACTIONS(3524), - [anon_sym_PIPE_PIPE] = ACTIONS(3524), - [anon_sym_BQUOTE] = ACTIONS(3524), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(3524), - [anon_sym_AMP] = ACTIONS(3526), + [anon_sym_RBRACE] = ACTIONS(4131), + [anon_sym_EQ] = ACTIONS(5168), + [anon_sym_DASH] = ACTIONS(5168), + [sym__special_characters] = ACTIONS(5168), + [anon_sym_DQUOTE] = ACTIONS(4131), + [anon_sym_DOLLAR] = ACTIONS(5168), + [sym_raw_string] = ACTIONS(4131), + [anon_sym_POUND] = ACTIONS(4131), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4131), + [anon_sym_SLASH] = ACTIONS(4131), + [anon_sym_COLON] = ACTIONS(5168), + [anon_sym_COLON_QMARK] = ACTIONS(5168), + [anon_sym_COLON_DASH] = ACTIONS(5168), + [anon_sym_PERCENT] = ACTIONS(5168), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4131), + [anon_sym_BQUOTE] = ACTIONS(4131), + [anon_sym_LT_LPAREN] = ACTIONS(4131), + [anon_sym_GT_LPAREN] = ACTIONS(4131), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(5168), }, [2035] = { - [sym__concat] = ACTIONS(2876), - [anon_sym_RPAREN_RPAREN] = ACTIONS(2876), - [anon_sym_AMP_AMP] = ACTIONS(2876), - [anon_sym_PIPE_PIPE] = ACTIONS(2876), - [anon_sym_EQ_TILDE] = ACTIONS(2876), - [anon_sym_EQ_EQ] = ACTIONS(2876), - [anon_sym_EQ] = ACTIONS(2878), - [anon_sym_LT] = ACTIONS(2876), - [anon_sym_GT] = ACTIONS(2876), - [anon_sym_BANG_EQ] = ACTIONS(2876), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2876), + [sym__concat] = ACTIONS(2959), + [anon_sym_RBRACE] = ACTIONS(2959), + [sym_comment] = ACTIONS(55), }, [2036] = { - [sym__concat] = ACTIONS(2890), - [anon_sym_RPAREN_RPAREN] = ACTIONS(2890), - [anon_sym_AMP_AMP] = ACTIONS(2890), - [anon_sym_PIPE_PIPE] = ACTIONS(2890), - [anon_sym_EQ_TILDE] = ACTIONS(2890), - [anon_sym_EQ_EQ] = ACTIONS(2890), - [anon_sym_EQ] = ACTIONS(2892), - [anon_sym_LT] = ACTIONS(2890), - [anon_sym_GT] = ACTIONS(2890), - [anon_sym_BANG_EQ] = ACTIONS(2890), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2890), + [sym__concat] = ACTIONS(2973), + [anon_sym_RBRACE] = ACTIONS(2973), + [sym_comment] = ACTIONS(55), }, [2037] = { - [aux_sym_concatenation_repeat1] = STATE(1293), - [sym__concat] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(5129), - [sym_comment] = ACTIONS(53), + [aux_sym_concatenation_repeat1] = STATE(1366), + [sym__concat] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(5170), + [sym_comment] = ACTIONS(55), }, [2038] = { - [aux_sym_concatenation_repeat1] = STATE(1293), - [sym__concat] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(5131), - [sym_comment] = ACTIONS(53), + [aux_sym_concatenation_repeat1] = STATE(1366), + [sym__concat] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(5172), + [sym_comment] = ACTIONS(55), }, [2039] = { - [anon_sym_RBRACE] = ACTIONS(5131), - [sym_comment] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(5172), + [sym_comment] = ACTIONS(55), }, [2040] = { - [sym_concatenation] = STATE(2228), - [sym_string] = STATE(2227), - [sym_simple_expansion] = STATE(2227), - [sym_string_expansion] = STATE(2227), - [sym_expansion] = STATE(2227), - [sym_command_substitution] = STATE(2227), - [sym_process_substitution] = STATE(2227), - [anon_sym_RBRACE] = ACTIONS(5131), - [sym__special_characters] = ACTIONS(5133), - [anon_sym_DQUOTE] = ACTIONS(1802), - [anon_sym_DOLLAR] = ACTIONS(1804), - [sym_raw_string] = ACTIONS(5135), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1808), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1810), - [anon_sym_BQUOTE] = ACTIONS(1812), - [anon_sym_LT_LPAREN] = ACTIONS(1814), - [anon_sym_GT_LPAREN] = ACTIONS(1814), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5135), + [sym_concatenation] = STATE(2258), + [sym_string] = STATE(2257), + [sym_simple_expansion] = STATE(2257), + [sym_string_expansion] = STATE(2257), + [sym_expansion] = STATE(2257), + [sym_command_substitution] = STATE(2257), + [sym_process_substitution] = STATE(2257), + [anon_sym_RBRACE] = ACTIONS(5172), + [sym__special_characters] = ACTIONS(5174), + [anon_sym_DQUOTE] = ACTIONS(1841), + [anon_sym_DOLLAR] = ACTIONS(1843), + [sym_raw_string] = ACTIONS(5176), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1849), + [anon_sym_BQUOTE] = ACTIONS(1851), + [anon_sym_LT_LPAREN] = ACTIONS(1853), + [anon_sym_GT_LPAREN] = ACTIONS(1853), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(5176), }, [2041] = { - [sym__concat] = ACTIONS(2926), - [anon_sym_RPAREN_RPAREN] = ACTIONS(2926), - [anon_sym_AMP_AMP] = ACTIONS(2926), - [anon_sym_PIPE_PIPE] = ACTIONS(2926), - [anon_sym_EQ_TILDE] = ACTIONS(2926), - [anon_sym_EQ_EQ] = ACTIONS(2926), - [anon_sym_EQ] = ACTIONS(2928), - [anon_sym_LT] = ACTIONS(2926), - [anon_sym_GT] = ACTIONS(2926), - [anon_sym_BANG_EQ] = ACTIONS(2926), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2926), + [sym__concat] = ACTIONS(3009), + [anon_sym_RBRACE] = ACTIONS(3009), + [sym_comment] = ACTIONS(55), }, [2042] = { - [sym_comment] = ACTIONS(265), - [sym_regex_without_right_brace] = ACTIONS(5137), + [sym_concatenation] = STATE(2261), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2261), + [sym_regex] = ACTIONS(5178), + [anon_sym_RBRACE] = ACTIONS(5180), + [anon_sym_EQ] = ACTIONS(5182), + [anon_sym_DASH] = ACTIONS(5182), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(5184), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(5182), + [anon_sym_COLON_QMARK] = ACTIONS(5182), + [anon_sym_COLON_DASH] = ACTIONS(5182), + [anon_sym_PERCENT] = ACTIONS(5182), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2043] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(5139), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(5180), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2044] = { - [sym_comment] = ACTIONS(265), - [sym_regex_without_right_brace] = ACTIONS(5141), + [sym_concatenation] = STATE(2263), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2263), + [sym_regex] = ACTIONS(5186), + [anon_sym_RBRACE] = ACTIONS(5172), + [anon_sym_EQ] = ACTIONS(5188), + [anon_sym_DASH] = ACTIONS(5188), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(5190), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(5188), + [anon_sym_COLON_QMARK] = ACTIONS(5188), + [anon_sym_COLON_DASH] = ACTIONS(5188), + [anon_sym_PERCENT] = ACTIONS(5188), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2045] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(5131), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(5172), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2046] = { - [sym_concatenation] = STATE(2233), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(2233), - [anon_sym_RBRACE] = ACTIONS(5143), - [anon_sym_EQ] = ACTIONS(5145), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(5147), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(5145), - [anon_sym_COLON_QMARK] = ACTIONS(5145), - [anon_sym_COLON_DASH] = ACTIONS(5145), - [anon_sym_PERCENT] = ACTIONS(5145), - [anon_sym_DASH] = ACTIONS(5145), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_concatenation] = STATE(2265), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2265), + [anon_sym_RBRACE] = ACTIONS(5192), + [anon_sym_EQ] = ACTIONS(5194), + [anon_sym_DASH] = ACTIONS(5194), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(5196), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(5194), + [anon_sym_COLON_QMARK] = ACTIONS(5194), + [anon_sym_COLON_DASH] = ACTIONS(5194), + [anon_sym_PERCENT] = ACTIONS(5194), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2047] = { - [sym__concat] = ACTIONS(2990), - [anon_sym_RPAREN_RPAREN] = ACTIONS(2990), - [anon_sym_AMP_AMP] = ACTIONS(2990), - [anon_sym_PIPE_PIPE] = ACTIONS(2990), - [anon_sym_EQ_TILDE] = ACTIONS(2990), - [anon_sym_EQ_EQ] = ACTIONS(2990), - [anon_sym_EQ] = ACTIONS(2992), - [anon_sym_LT] = ACTIONS(2990), - [anon_sym_GT] = ACTIONS(2990), - [anon_sym_BANG_EQ] = ACTIONS(2990), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2990), + [sym__concat] = ACTIONS(3065), + [anon_sym_RBRACE] = ACTIONS(3065), + [sym_comment] = ACTIONS(55), }, [2048] = { - [sym_concatenation] = STATE(2234), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(2234), - [anon_sym_RBRACE] = ACTIONS(5131), - [anon_sym_EQ] = ACTIONS(5149), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(5151), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(5149), - [anon_sym_COLON_QMARK] = ACTIONS(5149), - [anon_sym_COLON_DASH] = ACTIONS(5149), - [anon_sym_PERCENT] = ACTIONS(5149), - [anon_sym_DASH] = ACTIONS(5149), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(5192), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2049] = { - [sym__concat] = ACTIONS(3033), - [anon_sym_RPAREN_RPAREN] = ACTIONS(3033), - [anon_sym_AMP_AMP] = ACTIONS(3033), - [anon_sym_PIPE_PIPE] = ACTIONS(3033), - [anon_sym_EQ_TILDE] = ACTIONS(3033), - [anon_sym_EQ_EQ] = ACTIONS(3033), - [anon_sym_EQ] = ACTIONS(3035), - [anon_sym_LT] = ACTIONS(3033), - [anon_sym_GT] = ACTIONS(3033), - [anon_sym_BANG_EQ] = ACTIONS(3033), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(3033), + [sym_concatenation] = STATE(2263), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2263), + [anon_sym_RBRACE] = ACTIONS(5172), + [anon_sym_EQ] = ACTIONS(5188), + [anon_sym_DASH] = ACTIONS(5188), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(5190), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(5188), + [anon_sym_COLON_QMARK] = ACTIONS(5188), + [anon_sym_COLON_DASH] = ACTIONS(5188), + [anon_sym_PERCENT] = ACTIONS(5188), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2050] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(5153), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(901), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), + [sym__concat] = ACTIONS(3120), + [anon_sym_RBRACE] = ACTIONS(3120), + [sym_comment] = ACTIONS(55), }, [2051] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(5153), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(5198), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), }, [2052] = { - [sym__concat] = ACTIONS(3071), - [anon_sym_RPAREN_RPAREN] = ACTIONS(3071), - [anon_sym_AMP_AMP] = ACTIONS(3071), - [anon_sym_PIPE_PIPE] = ACTIONS(3071), - [anon_sym_EQ_TILDE] = ACTIONS(3071), - [anon_sym_EQ_EQ] = ACTIONS(3071), - [anon_sym_EQ] = ACTIONS(3073), - [anon_sym_LT] = ACTIONS(3071), - [anon_sym_GT] = ACTIONS(3071), - [anon_sym_BANG_EQ] = ACTIONS(3071), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(3071), + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(5198), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), }, [2053] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(5155), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(901), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), + [sym__concat] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(3158), + [sym_comment] = ACTIONS(55), }, [2054] = { - [ts_builtin_sym_end] = ACTIONS(5157), - [anon_sym_SEMI] = ACTIONS(5159), - [anon_sym_esac] = ACTIONS(5157), - [anon_sym_PIPE] = ACTIONS(5159), - [anon_sym_RPAREN] = ACTIONS(5157), - [anon_sym_SEMI_SEMI] = ACTIONS(5157), - [anon_sym_PIPE_AMP] = ACTIONS(5157), - [anon_sym_AMP_AMP] = ACTIONS(5157), - [anon_sym_PIPE_PIPE] = ACTIONS(5157), - [anon_sym_BQUOTE] = ACTIONS(5157), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(5157), - [anon_sym_AMP] = ACTIONS(5159), + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(5200), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), }, [2055] = { - [sym_do_group] = STATE(2237), - [sym_compound_statement] = STATE(2237), - [anon_sym_do] = ACTIONS(1175), - [anon_sym_LBRACE] = ACTIONS(3259), - [sym_comment] = ACTIONS(53), + [sym__simple_heredoc_body] = ACTIONS(5202), + [sym__heredoc_body_beginning] = ACTIONS(5202), + [sym_file_descriptor] = ACTIONS(5202), + [sym__concat] = ACTIONS(5202), + [ts_builtin_sym_end] = ACTIONS(5202), + [anon_sym_SEMI] = ACTIONS(5204), + [anon_sym_PIPE] = ACTIONS(5204), + [anon_sym_RPAREN] = ACTIONS(5202), + [anon_sym_SEMI_SEMI] = ACTIONS(5202), + [anon_sym_PIPE_AMP] = ACTIONS(5202), + [anon_sym_AMP_AMP] = ACTIONS(5202), + [anon_sym_PIPE_PIPE] = ACTIONS(5202), + [anon_sym_EQ_TILDE] = ACTIONS(5204), + [anon_sym_EQ_EQ] = ACTIONS(5204), + [anon_sym_LT] = ACTIONS(5204), + [anon_sym_GT] = ACTIONS(5204), + [anon_sym_GT_GT] = ACTIONS(5202), + [anon_sym_AMP_GT] = ACTIONS(5204), + [anon_sym_AMP_GT_GT] = ACTIONS(5202), + [anon_sym_LT_AMP] = ACTIONS(5202), + [anon_sym_GT_AMP] = ACTIONS(5202), + [anon_sym_LT_LT] = ACTIONS(5204), + [anon_sym_LT_LT_DASH] = ACTIONS(5202), + [anon_sym_LT_LT_LT] = ACTIONS(5202), + [sym__special_characters] = ACTIONS(5202), + [anon_sym_DQUOTE] = ACTIONS(5202), + [anon_sym_DOLLAR] = ACTIONS(5204), + [sym_raw_string] = ACTIONS(5202), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5202), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5202), + [anon_sym_BQUOTE] = ACTIONS(5202), + [anon_sym_LT_LPAREN] = ACTIONS(5202), + [anon_sym_GT_LPAREN] = ACTIONS(5202), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(5204), + [anon_sym_LF] = ACTIONS(5202), + [anon_sym_AMP] = ACTIONS(5204), }, [2056] = { - [sym__concat] = ACTIONS(4568), - [anon_sym_SEMI] = ACTIONS(4570), - [anon_sym_esac] = ACTIONS(4568), - [anon_sym_PIPE] = ACTIONS(4570), - [anon_sym_SEMI_SEMI] = ACTIONS(4568), - [anon_sym_PIPE_AMP] = ACTIONS(4568), - [anon_sym_AMP_AMP] = ACTIONS(4568), - [anon_sym_PIPE_PIPE] = ACTIONS(4568), - [anon_sym_EQ_TILDE] = ACTIONS(4568), - [anon_sym_EQ_EQ] = ACTIONS(4568), - [anon_sym_EQ] = ACTIONS(4570), - [anon_sym_LT] = ACTIONS(4568), - [anon_sym_GT] = ACTIONS(4568), - [anon_sym_BANG_EQ] = ACTIONS(4568), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4568), - [anon_sym_LF] = ACTIONS(4568), - [anon_sym_AMP] = ACTIONS(4570), + [sym__simple_heredoc_body] = ACTIONS(5206), + [sym__heredoc_body_beginning] = ACTIONS(5206), + [sym_file_descriptor] = ACTIONS(5206), + [sym__concat] = ACTIONS(5206), + [ts_builtin_sym_end] = ACTIONS(5206), + [anon_sym_SEMI] = ACTIONS(5208), + [anon_sym_PIPE] = ACTIONS(5208), + [anon_sym_RPAREN] = ACTIONS(5206), + [anon_sym_SEMI_SEMI] = ACTIONS(5206), + [anon_sym_PIPE_AMP] = ACTIONS(5206), + [anon_sym_AMP_AMP] = ACTIONS(5206), + [anon_sym_PIPE_PIPE] = ACTIONS(5206), + [anon_sym_EQ_TILDE] = ACTIONS(5208), + [anon_sym_EQ_EQ] = ACTIONS(5208), + [anon_sym_LT] = ACTIONS(5208), + [anon_sym_GT] = ACTIONS(5208), + [anon_sym_GT_GT] = ACTIONS(5206), + [anon_sym_AMP_GT] = ACTIONS(5208), + [anon_sym_AMP_GT_GT] = ACTIONS(5206), + [anon_sym_LT_AMP] = ACTIONS(5206), + [anon_sym_GT_AMP] = ACTIONS(5206), + [anon_sym_LT_LT] = ACTIONS(5208), + [anon_sym_LT_LT_DASH] = ACTIONS(5206), + [anon_sym_LT_LT_LT] = ACTIONS(5206), + [sym__special_characters] = ACTIONS(5206), + [anon_sym_DQUOTE] = ACTIONS(5206), + [anon_sym_DOLLAR] = ACTIONS(5208), + [sym_raw_string] = ACTIONS(5206), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5206), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5206), + [anon_sym_BQUOTE] = ACTIONS(5206), + [anon_sym_LT_LPAREN] = ACTIONS(5206), + [anon_sym_GT_LPAREN] = ACTIONS(5206), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(5208), + [anon_sym_LF] = ACTIONS(5206), + [anon_sym_AMP] = ACTIONS(5208), }, [2057] = { - [sym__concat] = ACTIONS(4572), - [anon_sym_SEMI] = ACTIONS(4574), - [anon_sym_esac] = ACTIONS(4572), - [anon_sym_PIPE] = ACTIONS(4574), - [anon_sym_SEMI_SEMI] = ACTIONS(4572), - [anon_sym_PIPE_AMP] = ACTIONS(4572), - [anon_sym_AMP_AMP] = ACTIONS(4572), - [anon_sym_PIPE_PIPE] = ACTIONS(4572), - [anon_sym_EQ_TILDE] = ACTIONS(4572), - [anon_sym_EQ_EQ] = ACTIONS(4572), - [anon_sym_EQ] = ACTIONS(4574), - [anon_sym_LT] = ACTIONS(4572), - [anon_sym_GT] = ACTIONS(4572), - [anon_sym_BANG_EQ] = ACTIONS(4572), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4572), - [anon_sym_LF] = ACTIONS(4572), - [anon_sym_AMP] = ACTIONS(4574), + [sym__concat] = ACTIONS(3934), + [anon_sym_RBRACE] = ACTIONS(3934), + [anon_sym_EQ] = ACTIONS(3936), + [anon_sym_DASH] = ACTIONS(3936), + [sym__special_characters] = ACTIONS(3936), + [anon_sym_DQUOTE] = ACTIONS(3934), + [anon_sym_DOLLAR] = ACTIONS(3936), + [sym_raw_string] = ACTIONS(3934), + [anon_sym_POUND] = ACTIONS(3934), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3934), + [anon_sym_COLON] = ACTIONS(3936), + [anon_sym_COLON_QMARK] = ACTIONS(3936), + [anon_sym_COLON_DASH] = ACTIONS(3936), + [anon_sym_PERCENT] = ACTIONS(3936), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3934), + [anon_sym_BQUOTE] = ACTIONS(3934), + [anon_sym_LT_LPAREN] = ACTIONS(3934), + [anon_sym_GT_LPAREN] = ACTIONS(3934), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(3936), }, [2058] = { - [sym__concat] = ACTIONS(4576), - [anon_sym_SEMI] = ACTIONS(4578), - [anon_sym_esac] = ACTIONS(4576), - [anon_sym_PIPE] = ACTIONS(4578), - [anon_sym_SEMI_SEMI] = ACTIONS(4576), - [anon_sym_PIPE_AMP] = ACTIONS(4576), - [anon_sym_AMP_AMP] = ACTIONS(4576), - [anon_sym_PIPE_PIPE] = ACTIONS(4576), - [anon_sym_EQ_TILDE] = ACTIONS(4576), - [anon_sym_EQ_EQ] = ACTIONS(4576), - [anon_sym_EQ] = ACTIONS(4578), - [anon_sym_LT] = ACTIONS(4576), - [anon_sym_GT] = ACTIONS(4576), - [anon_sym_BANG_EQ] = ACTIONS(4576), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4576), - [anon_sym_LF] = ACTIONS(4576), - [anon_sym_AMP] = ACTIONS(4578), + [sym__concat] = ACTIONS(3942), + [anon_sym_RBRACE] = ACTIONS(3942), + [anon_sym_EQ] = ACTIONS(3944), + [anon_sym_DASH] = ACTIONS(3944), + [sym__special_characters] = ACTIONS(3944), + [anon_sym_DQUOTE] = ACTIONS(3942), + [anon_sym_DOLLAR] = ACTIONS(3944), + [sym_raw_string] = ACTIONS(3942), + [anon_sym_POUND] = ACTIONS(3942), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3942), + [anon_sym_COLON] = ACTIONS(3944), + [anon_sym_COLON_QMARK] = ACTIONS(3944), + [anon_sym_COLON_DASH] = ACTIONS(3944), + [anon_sym_PERCENT] = ACTIONS(3944), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3942), + [anon_sym_BQUOTE] = ACTIONS(3942), + [anon_sym_LT_LPAREN] = ACTIONS(3942), + [anon_sym_GT_LPAREN] = ACTIONS(3942), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(3944), }, [2059] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(5161), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [aux_sym_concatenation_repeat1] = STATE(1366), + [sym__concat] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(5210), + [sym_comment] = ACTIONS(55), }, [2060] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(5163), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [aux_sym_concatenation_repeat1] = STATE(1366), + [sym__concat] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(5212), + [sym_comment] = ACTIONS(55), }, [2061] = { - [sym__concat] = ACTIONS(4608), - [anon_sym_SEMI] = ACTIONS(4610), - [anon_sym_esac] = ACTIONS(4608), - [anon_sym_PIPE] = ACTIONS(4610), - [anon_sym_SEMI_SEMI] = ACTIONS(4608), - [anon_sym_PIPE_AMP] = ACTIONS(4608), - [anon_sym_AMP_AMP] = ACTIONS(4608), - [anon_sym_PIPE_PIPE] = ACTIONS(4608), - [anon_sym_EQ_TILDE] = ACTIONS(4608), - [anon_sym_EQ_EQ] = ACTIONS(4608), - [anon_sym_EQ] = ACTIONS(4610), - [anon_sym_LT] = ACTIONS(4608), - [anon_sym_GT] = ACTIONS(4608), - [anon_sym_BANG_EQ] = ACTIONS(4608), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4608), - [anon_sym_LF] = ACTIONS(4608), - [anon_sym_AMP] = ACTIONS(4610), + [anon_sym_RBRACE] = ACTIONS(5212), + [sym_comment] = ACTIONS(55), }, [2062] = { - [sym_do_group] = STATE(2237), - [sym_compound_statement] = STATE(2237), - [anon_sym_SEMI] = ACTIONS(5165), - [anon_sym_do] = ACTIONS(1175), - [anon_sym_LBRACE] = ACTIONS(3259), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(2271), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2271), + [anon_sym_RBRACE] = ACTIONS(5214), + [anon_sym_EQ] = ACTIONS(5216), + [anon_sym_DASH] = ACTIONS(5216), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(5218), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(5216), + [anon_sym_COLON_QMARK] = ACTIONS(5216), + [anon_sym_COLON_DASH] = ACTIONS(5216), + [anon_sym_PERCENT] = ACTIONS(5216), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2063] = { - [sym__concat] = ACTIONS(3788), - [anon_sym_SEMI] = ACTIONS(3790), - [anon_sym_SEMI_SEMI] = ACTIONS(3788), - [sym__special_characters] = ACTIONS(3788), - [anon_sym_DQUOTE] = ACTIONS(3788), - [anon_sym_DOLLAR] = ACTIONS(3790), - [sym_raw_string] = ACTIONS(3788), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3788), - [anon_sym_BQUOTE] = ACTIONS(3788), - [anon_sym_LT_LPAREN] = ACTIONS(3788), - [anon_sym_GT_LPAREN] = ACTIONS(3788), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3790), - [anon_sym_LF] = ACTIONS(3788), - [anon_sym_AMP] = ACTIONS(3788), + [sym__concat] = ACTIONS(3998), + [anon_sym_RBRACE] = ACTIONS(3998), + [anon_sym_EQ] = ACTIONS(4000), + [anon_sym_DASH] = ACTIONS(4000), + [sym__special_characters] = ACTIONS(4000), + [anon_sym_DQUOTE] = ACTIONS(3998), + [anon_sym_DOLLAR] = ACTIONS(4000), + [sym_raw_string] = ACTIONS(3998), + [anon_sym_POUND] = ACTIONS(3998), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3998), + [anon_sym_COLON] = ACTIONS(4000), + [anon_sym_COLON_QMARK] = ACTIONS(4000), + [anon_sym_COLON_DASH] = ACTIONS(4000), + [anon_sym_PERCENT] = ACTIONS(4000), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3998), + [anon_sym_BQUOTE] = ACTIONS(3998), + [anon_sym_LT_LPAREN] = ACTIONS(3998), + [anon_sym_GT_LPAREN] = ACTIONS(3998), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(4000), }, [2064] = { - [sym__concat] = ACTIONS(3796), - [anon_sym_SEMI] = ACTIONS(3798), - [anon_sym_SEMI_SEMI] = ACTIONS(3796), - [sym__special_characters] = ACTIONS(3796), - [anon_sym_DQUOTE] = ACTIONS(3796), - [anon_sym_DOLLAR] = ACTIONS(3798), - [sym_raw_string] = ACTIONS(3796), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3796), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3796), - [anon_sym_BQUOTE] = ACTIONS(3796), - [anon_sym_LT_LPAREN] = ACTIONS(3796), - [anon_sym_GT_LPAREN] = ACTIONS(3796), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3798), - [anon_sym_LF] = ACTIONS(3796), - [anon_sym_AMP] = ACTIONS(3796), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(5214), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2065] = { - [aux_sym_concatenation_repeat1] = STATE(1293), - [sym__concat] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(5167), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(2272), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2272), + [anon_sym_RBRACE] = ACTIONS(5212), + [anon_sym_EQ] = ACTIONS(5220), + [anon_sym_DASH] = ACTIONS(5220), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(5222), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(5220), + [anon_sym_COLON_QMARK] = ACTIONS(5220), + [anon_sym_COLON_DASH] = ACTIONS(5220), + [anon_sym_PERCENT] = ACTIONS(5220), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2066] = { - [aux_sym_concatenation_repeat1] = STATE(1293), - [sym__concat] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(5169), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(5212), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2067] = { - [anon_sym_RBRACE] = ACTIONS(5169), - [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(4043), + [anon_sym_RBRACE] = ACTIONS(4043), + [anon_sym_EQ] = ACTIONS(4045), + [anon_sym_DASH] = ACTIONS(4045), + [sym__special_characters] = ACTIONS(4045), + [anon_sym_DQUOTE] = ACTIONS(4043), + [anon_sym_DOLLAR] = ACTIONS(4045), + [sym_raw_string] = ACTIONS(4043), + [anon_sym_POUND] = ACTIONS(4043), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4043), + [anon_sym_COLON] = ACTIONS(4045), + [anon_sym_COLON_QMARK] = ACTIONS(4045), + [anon_sym_COLON_DASH] = ACTIONS(4045), + [anon_sym_PERCENT] = ACTIONS(4045), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4043), + [anon_sym_BQUOTE] = ACTIONS(4043), + [anon_sym_LT_LPAREN] = ACTIONS(4043), + [anon_sym_GT_LPAREN] = ACTIONS(4043), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(4045), }, [2068] = { - [sym_concatenation] = STATE(2244), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(2244), - [anon_sym_RBRACE] = ACTIONS(5171), - [anon_sym_EQ] = ACTIONS(5173), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(5175), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(5173), - [anon_sym_COLON_QMARK] = ACTIONS(5173), - [anon_sym_COLON_DASH] = ACTIONS(5173), - [anon_sym_PERCENT] = ACTIONS(5173), - [anon_sym_DASH] = ACTIONS(5173), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(5224), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2069] = { - [sym__concat] = ACTIONS(3852), - [anon_sym_SEMI] = ACTIONS(3854), - [anon_sym_SEMI_SEMI] = ACTIONS(3852), - [sym__special_characters] = ACTIONS(3852), - [anon_sym_DQUOTE] = ACTIONS(3852), - [anon_sym_DOLLAR] = ACTIONS(3854), - [sym_raw_string] = ACTIONS(3852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3852), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3852), - [anon_sym_BQUOTE] = ACTIONS(3852), - [anon_sym_LT_LPAREN] = ACTIONS(3852), - [anon_sym_GT_LPAREN] = ACTIONS(3852), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3854), - [anon_sym_LF] = ACTIONS(3852), - [anon_sym_AMP] = ACTIONS(3852), + [sym__concat] = ACTIONS(4065), + [anon_sym_RBRACE] = ACTIONS(4065), + [anon_sym_EQ] = ACTIONS(4067), + [anon_sym_DASH] = ACTIONS(4067), + [sym__special_characters] = ACTIONS(4067), + [anon_sym_DQUOTE] = ACTIONS(4065), + [anon_sym_DOLLAR] = ACTIONS(4067), + [sym_raw_string] = ACTIONS(4065), + [anon_sym_POUND] = ACTIONS(4065), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4065), + [anon_sym_COLON] = ACTIONS(4067), + [anon_sym_COLON_QMARK] = ACTIONS(4067), + [anon_sym_COLON_DASH] = ACTIONS(4067), + [anon_sym_PERCENT] = ACTIONS(4067), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4065), + [anon_sym_BQUOTE] = ACTIONS(4065), + [anon_sym_LT_LPAREN] = ACTIONS(4065), + [anon_sym_GT_LPAREN] = ACTIONS(4065), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(4067), }, [2070] = { - [sym_concatenation] = STATE(2245), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(2245), - [anon_sym_RBRACE] = ACTIONS(5169), - [anon_sym_EQ] = ACTIONS(5177), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(5179), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(5177), - [anon_sym_COLON_QMARK] = ACTIONS(5177), - [anon_sym_COLON_DASH] = ACTIONS(5177), - [anon_sym_PERCENT] = ACTIONS(5177), - [anon_sym_DASH] = ACTIONS(5177), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym__concat] = ACTIONS(4089), + [anon_sym_RBRACE] = ACTIONS(4089), + [anon_sym_EQ] = ACTIONS(4091), + [anon_sym_DASH] = ACTIONS(4091), + [sym__special_characters] = ACTIONS(4091), + [anon_sym_DQUOTE] = ACTIONS(4089), + [anon_sym_DOLLAR] = ACTIONS(4091), + [sym_raw_string] = ACTIONS(4089), + [anon_sym_POUND] = ACTIONS(4089), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4089), + [anon_sym_COLON] = ACTIONS(4091), + [anon_sym_COLON_QMARK] = ACTIONS(4091), + [anon_sym_COLON_DASH] = ACTIONS(4091), + [anon_sym_PERCENT] = ACTIONS(4091), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4089), + [anon_sym_BQUOTE] = ACTIONS(4089), + [anon_sym_LT_LPAREN] = ACTIONS(4089), + [anon_sym_GT_LPAREN] = ACTIONS(4089), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(4091), }, [2071] = { - [sym__concat] = ACTIONS(3893), - [anon_sym_SEMI] = ACTIONS(3895), - [anon_sym_SEMI_SEMI] = ACTIONS(3893), - [sym__special_characters] = ACTIONS(3893), - [anon_sym_DQUOTE] = ACTIONS(3893), - [anon_sym_DOLLAR] = ACTIONS(3895), - [sym_raw_string] = ACTIONS(3893), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3893), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3893), - [anon_sym_BQUOTE] = ACTIONS(3893), - [anon_sym_LT_LPAREN] = ACTIONS(3893), - [anon_sym_GT_LPAREN] = ACTIONS(3893), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3895), - [anon_sym_LF] = ACTIONS(3893), - [anon_sym_AMP] = ACTIONS(3893), + [aux_sym_concatenation_repeat1] = STATE(2073), + [sym_file_descriptor] = ACTIONS(1088), + [sym__concat] = ACTIONS(3579), + [anon_sym_SEMI] = ACTIONS(1090), + [anon_sym_PIPE] = ACTIONS(1090), + [anon_sym_SEMI_SEMI] = ACTIONS(1088), + [anon_sym_PIPE_AMP] = ACTIONS(1088), + [anon_sym_AMP_AMP] = ACTIONS(1088), + [anon_sym_PIPE_PIPE] = ACTIONS(1088), + [anon_sym_LT] = ACTIONS(1090), + [anon_sym_GT] = ACTIONS(1090), + [anon_sym_GT_GT] = ACTIONS(1088), + [anon_sym_AMP_GT] = ACTIONS(1090), + [anon_sym_AMP_GT_GT] = ACTIONS(1088), + [anon_sym_LT_AMP] = ACTIONS(1088), + [anon_sym_GT_AMP] = ACTIONS(1088), + [anon_sym_LT_LT] = ACTIONS(1090), + [anon_sym_LT_LT_DASH] = ACTIONS(1088), + [anon_sym_LT_LT_LT] = ACTIONS(1088), + [anon_sym_BQUOTE] = ACTIONS(1088), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1088), + [anon_sym_AMP] = ACTIONS(1090), }, [2072] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(5181), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [aux_sym_concatenation_repeat1] = STATE(2073), + [sym_file_descriptor] = ACTIONS(1092), + [sym__concat] = ACTIONS(3579), + [anon_sym_SEMI] = ACTIONS(1094), + [anon_sym_PIPE] = ACTIONS(1094), + [anon_sym_SEMI_SEMI] = ACTIONS(1092), + [anon_sym_PIPE_AMP] = ACTIONS(1092), + [anon_sym_AMP_AMP] = ACTIONS(1092), + [anon_sym_PIPE_PIPE] = ACTIONS(1092), + [anon_sym_LT] = ACTIONS(1094), + [anon_sym_GT] = ACTIONS(1094), + [anon_sym_GT_GT] = ACTIONS(1092), + [anon_sym_AMP_GT] = ACTIONS(1094), + [anon_sym_AMP_GT_GT] = ACTIONS(1092), + [anon_sym_LT_AMP] = ACTIONS(1092), + [anon_sym_GT_AMP] = ACTIONS(1092), + [anon_sym_LT_LT] = ACTIONS(1094), + [anon_sym_LT_LT_DASH] = ACTIONS(1092), + [anon_sym_LT_LT_LT] = ACTIONS(1092), + [anon_sym_BQUOTE] = ACTIONS(1092), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1092), + [anon_sym_AMP] = ACTIONS(1094), }, [2073] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(5169), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [aux_sym_concatenation_repeat1] = STATE(2274), + [sym_file_descriptor] = ACTIONS(807), + [sym__concat] = ACTIONS(3579), + [anon_sym_SEMI] = ACTIONS(809), + [anon_sym_PIPE] = ACTIONS(809), + [anon_sym_SEMI_SEMI] = ACTIONS(807), + [anon_sym_PIPE_AMP] = ACTIONS(807), + [anon_sym_AMP_AMP] = ACTIONS(807), + [anon_sym_PIPE_PIPE] = ACTIONS(807), + [anon_sym_LT] = ACTIONS(809), + [anon_sym_GT] = ACTIONS(809), + [anon_sym_GT_GT] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(809), + [anon_sym_AMP_GT_GT] = ACTIONS(807), + [anon_sym_LT_AMP] = ACTIONS(807), + [anon_sym_GT_AMP] = ACTIONS(807), + [anon_sym_LT_LT] = ACTIONS(809), + [anon_sym_LT_LT_DASH] = ACTIONS(807), + [anon_sym_LT_LT_LT] = ACTIONS(807), + [anon_sym_BQUOTE] = ACTIONS(807), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(807), + [anon_sym_AMP] = ACTIONS(809), }, [2074] = { - [sym__concat] = ACTIONS(3915), - [anon_sym_SEMI] = ACTIONS(3917), - [anon_sym_SEMI_SEMI] = ACTIONS(3915), - [sym__special_characters] = ACTIONS(3915), - [anon_sym_DQUOTE] = ACTIONS(3915), - [anon_sym_DOLLAR] = ACTIONS(3917), - [sym_raw_string] = ACTIONS(3915), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3915), - [anon_sym_BQUOTE] = ACTIONS(3915), - [anon_sym_LT_LPAREN] = ACTIONS(3915), - [anon_sym_GT_LPAREN] = ACTIONS(3915), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3917), - [anon_sym_LF] = ACTIONS(3915), - [anon_sym_AMP] = ACTIONS(3915), + [aux_sym_concatenation_repeat1] = STATE(2076), + [sym__concat] = ACTIONS(735), + [anon_sym_SEMI] = ACTIONS(1090), + [anon_sym_PIPE] = ACTIONS(1090), + [anon_sym_SEMI_SEMI] = ACTIONS(1088), + [anon_sym_PIPE_AMP] = ACTIONS(1088), + [anon_sym_AMP_AMP] = ACTIONS(1088), + [anon_sym_PIPE_PIPE] = ACTIONS(1088), + [anon_sym_BQUOTE] = ACTIONS(1088), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1088), + [anon_sym_AMP] = ACTIONS(1090), }, [2075] = { - [sym__concat] = ACTIONS(3939), - [anon_sym_SEMI] = ACTIONS(3941), - [anon_sym_SEMI_SEMI] = ACTIONS(3939), - [sym__special_characters] = ACTIONS(3939), - [anon_sym_DQUOTE] = ACTIONS(3939), - [anon_sym_DOLLAR] = ACTIONS(3941), - [sym_raw_string] = ACTIONS(3939), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3939), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3939), - [anon_sym_BQUOTE] = ACTIONS(3939), - [anon_sym_LT_LPAREN] = ACTIONS(3939), - [anon_sym_GT_LPAREN] = ACTIONS(3939), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3941), - [anon_sym_LF] = ACTIONS(3939), - [anon_sym_AMP] = ACTIONS(3939), + [aux_sym_concatenation_repeat1] = STATE(2076), + [sym__concat] = ACTIONS(735), + [anon_sym_SEMI] = ACTIONS(1094), + [anon_sym_PIPE] = ACTIONS(1094), + [anon_sym_SEMI_SEMI] = ACTIONS(1092), + [anon_sym_PIPE_AMP] = ACTIONS(1092), + [anon_sym_AMP_AMP] = ACTIONS(1092), + [anon_sym_PIPE_PIPE] = ACTIONS(1092), + [anon_sym_BQUOTE] = ACTIONS(1092), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1092), + [anon_sym_AMP] = ACTIONS(1094), }, [2076] = { - [aux_sym_concatenation_repeat1] = STATE(2076), - [sym__concat] = ACTIONS(2736), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(1726), - [anon_sym_SEMI_SEMI] = ACTIONS(1724), - [anon_sym_PIPE_AMP] = ACTIONS(1724), - [anon_sym_AMP_AMP] = ACTIONS(1724), - [anon_sym_PIPE_PIPE] = ACTIONS(1724), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1726), + [aux_sym_concatenation_repeat1] = STATE(2275), + [sym__concat] = ACTIONS(735), + [anon_sym_SEMI] = ACTIONS(809), + [anon_sym_PIPE] = ACTIONS(809), + [anon_sym_SEMI_SEMI] = ACTIONS(807), + [anon_sym_PIPE_AMP] = ACTIONS(807), + [anon_sym_AMP_AMP] = ACTIONS(807), + [anon_sym_PIPE_PIPE] = ACTIONS(807), + [anon_sym_BQUOTE] = ACTIONS(807), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(807), + [anon_sym_AMP] = ACTIONS(809), }, [2077] = { - [aux_sym_concatenation_repeat1] = STATE(2077), - [sym_file_descriptor] = ACTIONS(1724), - [sym__concat] = ACTIONS(4968), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(1726), - [anon_sym_SEMI_SEMI] = ACTIONS(1724), - [anon_sym_PIPE_AMP] = ACTIONS(1724), - [anon_sym_AMP_AMP] = ACTIONS(1724), - [anon_sym_PIPE_PIPE] = ACTIONS(1724), - [anon_sym_LT] = ACTIONS(1726), - [anon_sym_GT] = ACTIONS(1726), - [anon_sym_GT_GT] = ACTIONS(1724), - [anon_sym_AMP_GT] = ACTIONS(1726), - [anon_sym_AMP_GT_GT] = ACTIONS(1724), - [anon_sym_LT_AMP] = ACTIONS(1724), - [anon_sym_GT_AMP] = ACTIONS(1724), - [anon_sym_LT_LT] = ACTIONS(1726), - [anon_sym_LT_LT_DASH] = ACTIONS(1724), - [anon_sym_LT_LT_LT] = ACTIONS(1724), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1726), + [sym__heredoc_body_middle] = ACTIONS(3934), + [sym__heredoc_body_end] = ACTIONS(3934), + [anon_sym_DOLLAR] = ACTIONS(3936), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3934), + [sym_comment] = ACTIONS(55), }, [2078] = { - [sym_concatenation] = STATE(2247), - [sym_string] = STATE(2252), - [sym_array] = STATE(2247), - [sym_simple_expansion] = STATE(2252), - [sym_string_expansion] = STATE(2252), - [sym_expansion] = STATE(2252), - [sym_command_substitution] = STATE(2252), - [sym_process_substitution] = STATE(2252), - [sym__empty_value] = ACTIONS(5183), - [anon_sym_LPAREN] = ACTIONS(5185), - [sym__special_characters] = ACTIONS(5187), - [anon_sym_DQUOTE] = ACTIONS(5189), - [anon_sym_DOLLAR] = ACTIONS(5191), - [sym_raw_string] = ACTIONS(5193), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5195), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5197), - [anon_sym_BQUOTE] = ACTIONS(5199), - [anon_sym_LT_LPAREN] = ACTIONS(5201), - [anon_sym_GT_LPAREN] = ACTIONS(5201), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5193), + [sym__heredoc_body_middle] = ACTIONS(3942), + [sym__heredoc_body_end] = ACTIONS(3942), + [anon_sym_DOLLAR] = ACTIONS(3944), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3942), + [sym_comment] = ACTIONS(55), }, [2079] = { - [sym_do_group] = STATE(2257), - [anon_sym_do] = ACTIONS(441), - [sym_comment] = ACTIONS(53), + [aux_sym_concatenation_repeat1] = STATE(1366), + [sym__concat] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(5226), + [sym_comment] = ACTIONS(55), }, [2080] = { - [sym_compound_statement] = STATE(2259), - [anon_sym_LPAREN] = ACTIONS(5203), - [anon_sym_LBRACE] = ACTIONS(511), - [sym_comment] = ACTIONS(53), + [aux_sym_concatenation_repeat1] = STATE(1366), + [sym__concat] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(5228), + [sym_comment] = ACTIONS(55), }, [2081] = { - [anon_sym_AMP_AMP] = ACTIONS(615), - [anon_sym_PIPE_PIPE] = ACTIONS(615), - [anon_sym_RBRACK] = ACTIONS(5205), - [anon_sym_EQ_TILDE] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(619), - [anon_sym_EQ] = ACTIONS(621), - [anon_sym_LT] = ACTIONS(615), - [anon_sym_GT] = ACTIONS(615), - [anon_sym_BANG_EQ] = ACTIONS(615), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(615), + [anon_sym_RBRACE] = ACTIONS(5228), + [sym_comment] = ACTIONS(55), }, [2082] = { - [anon_sym_AMP_AMP] = ACTIONS(647), - [anon_sym_PIPE_PIPE] = ACTIONS(647), - [anon_sym_RBRACK_RBRACK] = ACTIONS(5205), - [anon_sym_EQ_TILDE] = ACTIONS(649), - [anon_sym_EQ_EQ] = ACTIONS(649), - [anon_sym_EQ] = ACTIONS(651), - [anon_sym_LT] = ACTIONS(647), - [anon_sym_GT] = ACTIONS(647), - [anon_sym_BANG_EQ] = ACTIONS(647), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(647), + [sym_concatenation] = STATE(2279), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2279), + [anon_sym_RBRACE] = ACTIONS(5230), + [anon_sym_EQ] = ACTIONS(5232), + [anon_sym_DASH] = ACTIONS(5232), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(5234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(5232), + [anon_sym_COLON_QMARK] = ACTIONS(5232), + [anon_sym_COLON_DASH] = ACTIONS(5232), + [anon_sym_PERCENT] = ACTIONS(5232), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2083] = { - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_EQ] = ACTIONS(5207), - [anon_sym_PLUS_EQ] = ACTIONS(5207), - [sym_comment] = ACTIONS(53), + [sym__heredoc_body_middle] = ACTIONS(3998), + [sym__heredoc_body_end] = ACTIONS(3998), + [anon_sym_DOLLAR] = ACTIONS(4000), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3998), + [sym_comment] = ACTIONS(55), }, [2084] = { - [aux_sym_concatenation_repeat1] = STATE(2263), - [sym__concat] = ACTIONS(5209), - [sym_variable_name] = ACTIONS(657), - [anon_sym_SEMI] = ACTIONS(659), - [anon_sym_esac] = ACTIONS(659), - [anon_sym_PIPE] = ACTIONS(659), - [anon_sym_SEMI_SEMI] = ACTIONS(657), - [anon_sym_PIPE_AMP] = ACTIONS(657), - [anon_sym_AMP_AMP] = ACTIONS(657), - [anon_sym_PIPE_PIPE] = ACTIONS(657), - [sym__special_characters] = ACTIONS(657), - [anon_sym_DQUOTE] = ACTIONS(657), - [anon_sym_DOLLAR] = ACTIONS(659), - [sym_raw_string] = ACTIONS(657), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(657), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(657), - [anon_sym_BQUOTE] = ACTIONS(657), - [anon_sym_LT_LPAREN] = ACTIONS(657), - [anon_sym_GT_LPAREN] = ACTIONS(657), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(659), - [sym_word] = ACTIONS(659), - [anon_sym_LF] = ACTIONS(657), - [anon_sym_AMP] = ACTIONS(659), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(5230), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2085] = { - [sym_simple_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [sym_command_substitution] = STATE(141), - [aux_sym_string_repeat1] = STATE(2266), - [anon_sym_DQUOTE] = ACTIONS(5211), - [anon_sym_DOLLAR] = ACTIONS(5213), - [sym__string_content] = ACTIONS(257), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(261), - [anon_sym_BQUOTE] = ACTIONS(263), - [sym_comment] = ACTIONS(265), + [sym_concatenation] = STATE(2280), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2280), + [anon_sym_RBRACE] = ACTIONS(5228), + [anon_sym_EQ] = ACTIONS(5236), + [anon_sym_DASH] = ACTIONS(5236), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(5238), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(5236), + [anon_sym_COLON_QMARK] = ACTIONS(5236), + [anon_sym_COLON_DASH] = ACTIONS(5236), + [anon_sym_PERCENT] = ACTIONS(5236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2086] = { - [sym_string] = STATE(2268), - [anon_sym_DQUOTE] = ACTIONS(4831), - [anon_sym_DOLLAR] = ACTIONS(5215), - [sym_raw_string] = ACTIONS(5217), - [anon_sym_POUND] = ACTIONS(5215), - [anon_sym_DASH] = ACTIONS(5215), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5219), - [anon_sym_STAR] = ACTIONS(5221), - [anon_sym_AT] = ACTIONS(5221), - [anon_sym_QMARK] = ACTIONS(5221), - [anon_sym_0] = ACTIONS(5219), - [anon_sym__] = ACTIONS(5219), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(5228), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2087] = { - [aux_sym_concatenation_repeat1] = STATE(2263), - [sym__concat] = ACTIONS(5209), - [sym_variable_name] = ACTIONS(673), - [anon_sym_SEMI] = ACTIONS(675), - [anon_sym_esac] = ACTIONS(675), - [anon_sym_PIPE] = ACTIONS(675), - [anon_sym_SEMI_SEMI] = ACTIONS(673), - [anon_sym_PIPE_AMP] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(673), - [anon_sym_PIPE_PIPE] = ACTIONS(673), - [sym__special_characters] = ACTIONS(673), - [anon_sym_DQUOTE] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(675), - [sym_raw_string] = ACTIONS(673), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(673), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(673), - [anon_sym_BQUOTE] = ACTIONS(673), - [anon_sym_LT_LPAREN] = ACTIONS(673), - [anon_sym_GT_LPAREN] = ACTIONS(673), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(675), - [sym_word] = ACTIONS(675), - [anon_sym_LF] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(675), + [sym__heredoc_body_middle] = ACTIONS(4043), + [sym__heredoc_body_end] = ACTIONS(4043), + [anon_sym_DOLLAR] = ACTIONS(4045), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4043), + [sym_comment] = ACTIONS(55), }, [2088] = { - [sym_subscript] = STATE(2273), - [sym_variable_name] = ACTIONS(5223), - [anon_sym_BANG] = ACTIONS(5225), - [anon_sym_DOLLAR] = ACTIONS(5227), - [anon_sym_POUND] = ACTIONS(5225), - [anon_sym_DASH] = ACTIONS(5227), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5229), - [anon_sym_STAR] = ACTIONS(5231), - [anon_sym_AT] = ACTIONS(5231), - [anon_sym_QMARK] = ACTIONS(5231), - [anon_sym_0] = ACTIONS(5229), - [anon_sym__] = ACTIONS(5229), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(5240), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2089] = { - [sym__terminated_statement] = STATE(2276), - [sym_for_statement] = STATE(2274), - [sym_c_style_for_statement] = STATE(2274), - [sym_while_statement] = STATE(2274), - [sym_if_statement] = STATE(2274), - [sym_case_statement] = STATE(2274), - [sym_function_definition] = STATE(2274), - [sym_subshell] = STATE(2274), - [sym_pipeline] = STATE(2274), - [sym_list] = STATE(2274), - [sym_negated_command] = STATE(2274), - [sym_test_command] = STATE(2274), - [sym_declaration_command] = STATE(2274), - [sym_unset_command] = STATE(2274), - [sym_command] = STATE(2274), - [sym_command_name] = STATE(78), - [sym_variable_assignment] = STATE(2275), - [sym_subscript] = STATE(80), - [sym_file_redirect] = STATE(82), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(75), - [sym_simple_expansion] = STATE(75), - [sym_string_expansion] = STATE(75), - [sym_expansion] = STATE(75), - [sym_command_substitution] = STATE(75), - [sym_process_substitution] = STATE(75), - [aux_sym__statements_repeat1] = STATE(2276), - [aux_sym_command_repeat1] = STATE(82), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(111), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(119), - [anon_sym_declare] = ACTIONS(121), - [anon_sym_typeset] = ACTIONS(121), - [anon_sym_export] = ACTIONS(121), - [anon_sym_readonly] = ACTIONS(121), - [anon_sym_local] = ACTIONS(121), - [anon_sym_unset] = ACTIONS(123), - [anon_sym_unsetenv] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), + [sym__concat] = ACTIONS(3934), + [anon_sym_RPAREN] = ACTIONS(3934), + [sym__special_characters] = ACTIONS(3934), + [anon_sym_DQUOTE] = ACTIONS(3934), + [anon_sym_DOLLAR] = ACTIONS(3936), + [sym_raw_string] = ACTIONS(3934), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3934), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3934), + [anon_sym_BQUOTE] = ACTIONS(3934), + [anon_sym_LT_LPAREN] = ACTIONS(3934), + [anon_sym_GT_LPAREN] = ACTIONS(3934), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(3934), }, [2090] = { - [sym__terminated_statement] = STATE(2279), - [sym_for_statement] = STATE(2277), - [sym_c_style_for_statement] = STATE(2277), - [sym_while_statement] = STATE(2277), - [sym_if_statement] = STATE(2277), - [sym_case_statement] = STATE(2277), - [sym_function_definition] = STATE(2277), - [sym_subshell] = STATE(2277), - [sym_pipeline] = STATE(2277), - [sym_list] = STATE(2277), - [sym_negated_command] = STATE(2277), - [sym_test_command] = STATE(2277), - [sym_declaration_command] = STATE(2277), - [sym_unset_command] = STATE(2277), - [sym_command] = STATE(2277), - [sym_command_name] = STATE(165), - [sym_variable_assignment] = STATE(2278), - [sym_subscript] = STATE(53), - [sym_file_redirect] = STATE(168), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(47), - [sym_simple_expansion] = STATE(47), - [sym_string_expansion] = STATE(47), - [sym_expansion] = STATE(47), - [sym_command_substitution] = STATE(47), - [sym_process_substitution] = STATE(47), - [aux_sym__statements_repeat1] = STATE(2279), - [aux_sym_command_repeat1] = STATE(168), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(69), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(289), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(291), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(293), - [anon_sym_LBRACK] = ACTIONS(295), - [anon_sym_LBRACK_LBRACK] = ACTIONS(297), - [anon_sym_declare] = ACTIONS(299), - [anon_sym_typeset] = ACTIONS(299), - [anon_sym_export] = ACTIONS(299), - [anon_sym_readonly] = ACTIONS(299), - [anon_sym_local] = ACTIONS(299), - [anon_sym_unset] = ACTIONS(301), - [anon_sym_unsetenv] = ACTIONS(301), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(87), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(303), + [sym__concat] = ACTIONS(3942), + [anon_sym_RPAREN] = ACTIONS(3942), + [sym__special_characters] = ACTIONS(3942), + [anon_sym_DQUOTE] = ACTIONS(3942), + [anon_sym_DOLLAR] = ACTIONS(3944), + [sym_raw_string] = ACTIONS(3942), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3942), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3942), + [anon_sym_BQUOTE] = ACTIONS(3942), + [anon_sym_LT_LPAREN] = ACTIONS(3942), + [anon_sym_GT_LPAREN] = ACTIONS(3942), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(3942), }, [2091] = { - [sym__terminated_statement] = STATE(2282), - [sym_for_statement] = STATE(2280), - [sym_c_style_for_statement] = STATE(2280), - [sym_while_statement] = STATE(2280), - [sym_if_statement] = STATE(2280), - [sym_case_statement] = STATE(2280), - [sym_function_definition] = STATE(2280), - [sym_subshell] = STATE(2280), - [sym_pipeline] = STATE(2280), - [sym_list] = STATE(2280), - [sym_negated_command] = STATE(2280), - [sym_test_command] = STATE(2280), - [sym_declaration_command] = STATE(2280), - [sym_unset_command] = STATE(2280), - [sym_command] = STATE(2280), - [sym_command_name] = STATE(78), - [sym_variable_assignment] = STATE(2281), - [sym_subscript] = STATE(80), - [sym_file_redirect] = STATE(82), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(75), - [sym_simple_expansion] = STATE(75), - [sym_string_expansion] = STATE(75), - [sym_expansion] = STATE(75), - [sym_command_substitution] = STATE(75), - [sym_process_substitution] = STATE(75), - [aux_sym__statements_repeat1] = STATE(2282), - [aux_sym_command_repeat1] = STATE(82), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(111), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(119), - [anon_sym_declare] = ACTIONS(121), - [anon_sym_typeset] = ACTIONS(121), - [anon_sym_export] = ACTIONS(121), - [anon_sym_readonly] = ACTIONS(121), - [anon_sym_local] = ACTIONS(121), - [anon_sym_unset] = ACTIONS(123), - [anon_sym_unsetenv] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), + [aux_sym_concatenation_repeat1] = STATE(1366), + [sym__concat] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(5242), + [sym_comment] = ACTIONS(55), }, [2092] = { - [anon_sym_EQ] = ACTIONS(5207), - [anon_sym_PLUS_EQ] = ACTIONS(5207), - [sym_comment] = ACTIONS(53), + [aux_sym_concatenation_repeat1] = STATE(1366), + [sym__concat] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(5244), + [sym_comment] = ACTIONS(55), }, [2093] = { - [sym_variable_assignment] = STATE(2283), - [sym_subscript] = STATE(2092), - [sym_concatenation] = STATE(2283), - [sym_string] = STATE(2087), - [sym_simple_expansion] = STATE(2087), - [sym_string_expansion] = STATE(2087), - [sym_expansion] = STATE(2087), - [sym_command_substitution] = STATE(2087), - [sym_process_substitution] = STATE(2087), - [aux_sym_declaration_command_repeat1] = STATE(2283), - [sym_variable_name] = ACTIONS(4827), - [anon_sym_SEMI] = ACTIONS(689), - [anon_sym_esac] = ACTIONS(689), - [anon_sym_PIPE] = ACTIONS(689), - [anon_sym_SEMI_SEMI] = ACTIONS(687), - [anon_sym_PIPE_AMP] = ACTIONS(687), - [anon_sym_AMP_AMP] = ACTIONS(687), - [anon_sym_PIPE_PIPE] = ACTIONS(687), - [sym__special_characters] = ACTIONS(4829), - [anon_sym_DQUOTE] = ACTIONS(4831), - [anon_sym_DOLLAR] = ACTIONS(4833), - [sym_raw_string] = ACTIONS(4835), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4837), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4839), - [anon_sym_BQUOTE] = ACTIONS(4841), - [anon_sym_LT_LPAREN] = ACTIONS(4843), - [anon_sym_GT_LPAREN] = ACTIONS(4843), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5233), - [sym_word] = ACTIONS(4847), - [anon_sym_LF] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(689), + [anon_sym_RBRACE] = ACTIONS(5244), + [sym_comment] = ACTIONS(55), }, [2094] = { - [aux_sym_concatenation_repeat1] = STATE(2285), - [sym__concat] = ACTIONS(5235), - [anon_sym_SEMI] = ACTIONS(697), - [anon_sym_esac] = ACTIONS(697), - [anon_sym_PIPE] = ACTIONS(697), - [anon_sym_SEMI_SEMI] = ACTIONS(695), - [anon_sym_PIPE_AMP] = ACTIONS(695), - [anon_sym_AMP_AMP] = ACTIONS(695), - [anon_sym_PIPE_PIPE] = ACTIONS(695), - [sym__special_characters] = ACTIONS(695), - [anon_sym_DQUOTE] = ACTIONS(695), - [anon_sym_DOLLAR] = ACTIONS(697), - [sym_raw_string] = ACTIONS(695), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(695), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(695), - [anon_sym_BQUOTE] = ACTIONS(695), - [anon_sym_LT_LPAREN] = ACTIONS(695), - [anon_sym_GT_LPAREN] = ACTIONS(695), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(697), - [sym_word] = ACTIONS(697), - [anon_sym_LF] = ACTIONS(695), - [anon_sym_AMP] = ACTIONS(697), + [sym_concatenation] = STATE(2285), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2285), + [anon_sym_RBRACE] = ACTIONS(5246), + [anon_sym_EQ] = ACTIONS(5248), + [anon_sym_DASH] = ACTIONS(5248), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(5250), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(5248), + [anon_sym_COLON_QMARK] = ACTIONS(5248), + [anon_sym_COLON_DASH] = ACTIONS(5248), + [anon_sym_PERCENT] = ACTIONS(5248), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2095] = { - [sym_simple_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [sym_command_substitution] = STATE(141), - [aux_sym_string_repeat1] = STATE(2288), - [anon_sym_DQUOTE] = ACTIONS(5237), - [anon_sym_DOLLAR] = ACTIONS(5239), - [sym__string_content] = ACTIONS(257), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(261), - [anon_sym_BQUOTE] = ACTIONS(263), - [sym_comment] = ACTIONS(265), + [sym__concat] = ACTIONS(3998), + [anon_sym_RPAREN] = ACTIONS(3998), + [sym__special_characters] = ACTIONS(3998), + [anon_sym_DQUOTE] = ACTIONS(3998), + [anon_sym_DOLLAR] = ACTIONS(4000), + [sym_raw_string] = ACTIONS(3998), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3998), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3998), + [anon_sym_BQUOTE] = ACTIONS(3998), + [anon_sym_LT_LPAREN] = ACTIONS(3998), + [anon_sym_GT_LPAREN] = ACTIONS(3998), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(3998), }, [2096] = { - [sym_string] = STATE(2290), - [anon_sym_DQUOTE] = ACTIONS(4851), - [anon_sym_DOLLAR] = ACTIONS(5241), - [sym_raw_string] = ACTIONS(5243), - [anon_sym_POUND] = ACTIONS(5241), - [anon_sym_DASH] = ACTIONS(5241), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5245), - [anon_sym_STAR] = ACTIONS(5247), - [anon_sym_AT] = ACTIONS(5247), - [anon_sym_QMARK] = ACTIONS(5247), - [anon_sym_0] = ACTIONS(5245), - [anon_sym__] = ACTIONS(5245), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(5246), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2097] = { - [aux_sym_concatenation_repeat1] = STATE(2285), - [sym__concat] = ACTIONS(5235), - [anon_sym_SEMI] = ACTIONS(713), - [anon_sym_esac] = ACTIONS(713), - [anon_sym_PIPE] = ACTIONS(713), - [anon_sym_SEMI_SEMI] = ACTIONS(711), - [anon_sym_PIPE_AMP] = ACTIONS(711), - [anon_sym_AMP_AMP] = ACTIONS(711), - [anon_sym_PIPE_PIPE] = ACTIONS(711), - [sym__special_characters] = ACTIONS(711), - [anon_sym_DQUOTE] = ACTIONS(711), - [anon_sym_DOLLAR] = ACTIONS(713), - [sym_raw_string] = ACTIONS(711), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(711), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(711), - [anon_sym_BQUOTE] = ACTIONS(711), - [anon_sym_LT_LPAREN] = ACTIONS(711), - [anon_sym_GT_LPAREN] = ACTIONS(711), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(713), - [sym_word] = ACTIONS(713), - [anon_sym_LF] = ACTIONS(711), - [anon_sym_AMP] = ACTIONS(713), + [sym_concatenation] = STATE(2286), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2286), + [anon_sym_RBRACE] = ACTIONS(5244), + [anon_sym_EQ] = ACTIONS(5252), + [anon_sym_DASH] = ACTIONS(5252), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(5254), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(5252), + [anon_sym_COLON_QMARK] = ACTIONS(5252), + [anon_sym_COLON_DASH] = ACTIONS(5252), + [anon_sym_PERCENT] = ACTIONS(5252), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2098] = { - [sym_subscript] = STATE(2295), - [sym_variable_name] = ACTIONS(5249), - [anon_sym_BANG] = ACTIONS(5251), - [anon_sym_DOLLAR] = ACTIONS(5253), - [anon_sym_POUND] = ACTIONS(5251), - [anon_sym_DASH] = ACTIONS(5253), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5255), - [anon_sym_STAR] = ACTIONS(5257), - [anon_sym_AT] = ACTIONS(5257), - [anon_sym_QMARK] = ACTIONS(5257), - [anon_sym_0] = ACTIONS(5255), - [anon_sym__] = ACTIONS(5255), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(5244), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2099] = { - [sym__terminated_statement] = STATE(2298), - [sym_for_statement] = STATE(2296), - [sym_c_style_for_statement] = STATE(2296), - [sym_while_statement] = STATE(2296), - [sym_if_statement] = STATE(2296), - [sym_case_statement] = STATE(2296), - [sym_function_definition] = STATE(2296), - [sym_subshell] = STATE(2296), - [sym_pipeline] = STATE(2296), - [sym_list] = STATE(2296), - [sym_negated_command] = STATE(2296), - [sym_test_command] = STATE(2296), - [sym_declaration_command] = STATE(2296), - [sym_unset_command] = STATE(2296), - [sym_command] = STATE(2296), - [sym_command_name] = STATE(78), - [sym_variable_assignment] = STATE(2297), - [sym_subscript] = STATE(80), - [sym_file_redirect] = STATE(82), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(75), - [sym_simple_expansion] = STATE(75), - [sym_string_expansion] = STATE(75), - [sym_expansion] = STATE(75), - [sym_command_substitution] = STATE(75), - [sym_process_substitution] = STATE(75), - [aux_sym__statements_repeat1] = STATE(2298), - [aux_sym_command_repeat1] = STATE(82), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(111), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(119), - [anon_sym_declare] = ACTIONS(121), - [anon_sym_typeset] = ACTIONS(121), - [anon_sym_export] = ACTIONS(121), - [anon_sym_readonly] = ACTIONS(121), - [anon_sym_local] = ACTIONS(121), - [anon_sym_unset] = ACTIONS(123), - [anon_sym_unsetenv] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), + [sym__concat] = ACTIONS(4043), + [anon_sym_RPAREN] = ACTIONS(4043), + [sym__special_characters] = ACTIONS(4043), + [anon_sym_DQUOTE] = ACTIONS(4043), + [anon_sym_DOLLAR] = ACTIONS(4045), + [sym_raw_string] = ACTIONS(4043), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4043), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4043), + [anon_sym_BQUOTE] = ACTIONS(4043), + [anon_sym_LT_LPAREN] = ACTIONS(4043), + [anon_sym_GT_LPAREN] = ACTIONS(4043), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(4043), }, [2100] = { - [sym__terminated_statement] = STATE(2301), - [sym_for_statement] = STATE(2299), - [sym_c_style_for_statement] = STATE(2299), - [sym_while_statement] = STATE(2299), - [sym_if_statement] = STATE(2299), - [sym_case_statement] = STATE(2299), - [sym_function_definition] = STATE(2299), - [sym_subshell] = STATE(2299), - [sym_pipeline] = STATE(2299), - [sym_list] = STATE(2299), - [sym_negated_command] = STATE(2299), - [sym_test_command] = STATE(2299), - [sym_declaration_command] = STATE(2299), - [sym_unset_command] = STATE(2299), - [sym_command] = STATE(2299), - [sym_command_name] = STATE(165), - [sym_variable_assignment] = STATE(2300), - [sym_subscript] = STATE(53), - [sym_file_redirect] = STATE(168), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(47), - [sym_simple_expansion] = STATE(47), - [sym_string_expansion] = STATE(47), - [sym_expansion] = STATE(47), - [sym_command_substitution] = STATE(47), - [sym_process_substitution] = STATE(47), - [aux_sym__statements_repeat1] = STATE(2301), - [aux_sym_command_repeat1] = STATE(168), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(69), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(289), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(291), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(293), - [anon_sym_LBRACK] = ACTIONS(295), - [anon_sym_LBRACK_LBRACK] = ACTIONS(297), - [anon_sym_declare] = ACTIONS(299), - [anon_sym_typeset] = ACTIONS(299), - [anon_sym_export] = ACTIONS(299), - [anon_sym_readonly] = ACTIONS(299), - [anon_sym_local] = ACTIONS(299), - [anon_sym_unset] = ACTIONS(301), - [anon_sym_unsetenv] = ACTIONS(301), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(87), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(303), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(5256), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2101] = { - [sym__terminated_statement] = STATE(2304), - [sym_for_statement] = STATE(2302), - [sym_c_style_for_statement] = STATE(2302), - [sym_while_statement] = STATE(2302), - [sym_if_statement] = STATE(2302), - [sym_case_statement] = STATE(2302), - [sym_function_definition] = STATE(2302), - [sym_subshell] = STATE(2302), - [sym_pipeline] = STATE(2302), - [sym_list] = STATE(2302), - [sym_negated_command] = STATE(2302), - [sym_test_command] = STATE(2302), - [sym_declaration_command] = STATE(2302), - [sym_unset_command] = STATE(2302), - [sym_command] = STATE(2302), - [sym_command_name] = STATE(78), - [sym_variable_assignment] = STATE(2303), - [sym_subscript] = STATE(80), - [sym_file_redirect] = STATE(82), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(75), - [sym_simple_expansion] = STATE(75), - [sym_string_expansion] = STATE(75), - [sym_expansion] = STATE(75), - [sym_command_substitution] = STATE(75), - [sym_process_substitution] = STATE(75), - [aux_sym__statements_repeat1] = STATE(2304), - [aux_sym_command_repeat1] = STATE(82), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(111), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(119), - [anon_sym_declare] = ACTIONS(121), - [anon_sym_typeset] = ACTIONS(121), - [anon_sym_export] = ACTIONS(121), - [anon_sym_readonly] = ACTIONS(121), - [anon_sym_local] = ACTIONS(121), - [anon_sym_unset] = ACTIONS(123), - [anon_sym_unsetenv] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), + [sym__concat] = ACTIONS(4065), + [anon_sym_RPAREN] = ACTIONS(4065), + [sym__special_characters] = ACTIONS(4065), + [anon_sym_DQUOTE] = ACTIONS(4065), + [anon_sym_DOLLAR] = ACTIONS(4067), + [sym_raw_string] = ACTIONS(4065), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4065), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4065), + [anon_sym_BQUOTE] = ACTIONS(4065), + [anon_sym_LT_LPAREN] = ACTIONS(4065), + [anon_sym_GT_LPAREN] = ACTIONS(4065), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(4065), }, [2102] = { - [sym_concatenation] = STATE(2305), - [sym_string] = STATE(2097), - [sym_simple_expansion] = STATE(2097), - [sym_string_expansion] = STATE(2097), - [sym_expansion] = STATE(2097), - [sym_command_substitution] = STATE(2097), - [sym_process_substitution] = STATE(2097), - [aux_sym_unset_command_repeat1] = STATE(2305), - [anon_sym_SEMI] = ACTIONS(727), - [anon_sym_esac] = ACTIONS(727), - [anon_sym_PIPE] = ACTIONS(727), - [anon_sym_SEMI_SEMI] = ACTIONS(725), - [anon_sym_PIPE_AMP] = ACTIONS(725), - [anon_sym_AMP_AMP] = ACTIONS(725), - [anon_sym_PIPE_PIPE] = ACTIONS(725), - [sym__special_characters] = ACTIONS(4849), - [anon_sym_DQUOTE] = ACTIONS(4851), - [anon_sym_DOLLAR] = ACTIONS(4853), - [sym_raw_string] = ACTIONS(4855), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4857), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4859), - [anon_sym_BQUOTE] = ACTIONS(4861), - [anon_sym_LT_LPAREN] = ACTIONS(4863), - [anon_sym_GT_LPAREN] = ACTIONS(4863), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5259), - [sym_word] = ACTIONS(4867), - [anon_sym_LF] = ACTIONS(725), - [anon_sym_AMP] = ACTIONS(727), + [sym__concat] = ACTIONS(4089), + [anon_sym_RPAREN] = ACTIONS(4089), + [sym__special_characters] = ACTIONS(4089), + [anon_sym_DQUOTE] = ACTIONS(4089), + [anon_sym_DOLLAR] = ACTIONS(4091), + [sym_raw_string] = ACTIONS(4089), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4089), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4089), + [anon_sym_BQUOTE] = ACTIONS(4089), + [anon_sym_LT_LPAREN] = ACTIONS(4089), + [anon_sym_GT_LPAREN] = ACTIONS(4089), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(4089), }, [2103] = { - [sym_string] = STATE(2306), - [sym_simple_expansion] = STATE(2306), - [sym_string_expansion] = STATE(2306), - [sym_expansion] = STATE(2306), - [sym_command_substitution] = STATE(2306), - [sym_process_substitution] = STATE(2306), - [sym__special_characters] = ACTIONS(5261), - [anon_sym_DQUOTE] = ACTIONS(4267), - [anon_sym_DOLLAR] = ACTIONS(4269), - [sym_raw_string] = ACTIONS(5261), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4273), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4275), - [anon_sym_BQUOTE] = ACTIONS(4277), - [anon_sym_LT_LPAREN] = ACTIONS(4279), - [anon_sym_GT_LPAREN] = ACTIONS(4279), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5261), + [sym_file_descriptor] = ACTIONS(4710), + [sym__concat] = ACTIONS(4710), + [sym_variable_name] = ACTIONS(4710), + [ts_builtin_sym_end] = ACTIONS(4710), + [anon_sym_SEMI] = ACTIONS(4712), + [anon_sym_PIPE] = ACTIONS(4712), + [anon_sym_RPAREN] = ACTIONS(4710), + [anon_sym_SEMI_SEMI] = ACTIONS(4710), + [anon_sym_PIPE_AMP] = ACTIONS(4710), + [anon_sym_AMP_AMP] = ACTIONS(4710), + [anon_sym_PIPE_PIPE] = ACTIONS(4710), + [anon_sym_LT] = ACTIONS(4712), + [anon_sym_GT] = ACTIONS(4712), + [anon_sym_GT_GT] = ACTIONS(4710), + [anon_sym_AMP_GT] = ACTIONS(4712), + [anon_sym_AMP_GT_GT] = ACTIONS(4710), + [anon_sym_LT_AMP] = ACTIONS(4710), + [anon_sym_GT_AMP] = ACTIONS(4710), + [sym__special_characters] = ACTIONS(4710), + [anon_sym_DQUOTE] = ACTIONS(4710), + [anon_sym_DOLLAR] = ACTIONS(4712), + [sym_raw_string] = ACTIONS(4710), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4710), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4710), + [anon_sym_BQUOTE] = ACTIONS(4710), + [anon_sym_LT_LPAREN] = ACTIONS(4710), + [anon_sym_GT_LPAREN] = ACTIONS(4710), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(4712), + [anon_sym_LF] = ACTIONS(4710), + [anon_sym_AMP] = ACTIONS(4712), }, [2104] = { - [aux_sym_concatenation_repeat1] = STATE(2307), - [sym__simple_heredoc_body] = ACTIONS(765), - [sym__heredoc_body_beginning] = ACTIONS(765), - [sym_file_descriptor] = ACTIONS(765), - [sym__concat] = ACTIONS(4869), - [anon_sym_SEMI] = ACTIONS(767), - [anon_sym_esac] = ACTIONS(767), - [anon_sym_PIPE] = ACTIONS(767), - [anon_sym_SEMI_SEMI] = ACTIONS(765), - [anon_sym_PIPE_AMP] = ACTIONS(765), - [anon_sym_AMP_AMP] = ACTIONS(765), - [anon_sym_PIPE_PIPE] = ACTIONS(765), - [anon_sym_EQ_TILDE] = ACTIONS(767), - [anon_sym_EQ_EQ] = ACTIONS(767), - [anon_sym_LT] = ACTIONS(767), - [anon_sym_GT] = ACTIONS(767), - [anon_sym_GT_GT] = ACTIONS(765), - [anon_sym_AMP_GT] = ACTIONS(767), - [anon_sym_AMP_GT_GT] = ACTIONS(765), - [anon_sym_LT_AMP] = ACTIONS(765), - [anon_sym_GT_AMP] = ACTIONS(765), - [anon_sym_LT_LT] = ACTIONS(767), - [anon_sym_LT_LT_DASH] = ACTIONS(765), - [anon_sym_LT_LT_LT] = ACTIONS(765), - [sym__special_characters] = ACTIONS(765), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_DOLLAR] = ACTIONS(767), - [sym_raw_string] = ACTIONS(765), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(765), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(765), - [anon_sym_BQUOTE] = ACTIONS(765), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(767), - [anon_sym_LF] = ACTIONS(765), - [anon_sym_AMP] = ACTIONS(767), + [sym_file_descriptor] = ACTIONS(4714), + [sym__concat] = ACTIONS(4714), + [sym_variable_name] = ACTIONS(4714), + [ts_builtin_sym_end] = ACTIONS(4714), + [anon_sym_SEMI] = ACTIONS(4716), + [anon_sym_PIPE] = ACTIONS(4716), + [anon_sym_RPAREN] = ACTIONS(4714), + [anon_sym_SEMI_SEMI] = ACTIONS(4714), + [anon_sym_PIPE_AMP] = ACTIONS(4714), + [anon_sym_AMP_AMP] = ACTIONS(4714), + [anon_sym_PIPE_PIPE] = ACTIONS(4714), + [anon_sym_LT] = ACTIONS(4716), + [anon_sym_GT] = ACTIONS(4716), + [anon_sym_GT_GT] = ACTIONS(4714), + [anon_sym_AMP_GT] = ACTIONS(4716), + [anon_sym_AMP_GT_GT] = ACTIONS(4714), + [anon_sym_LT_AMP] = ACTIONS(4714), + [anon_sym_GT_AMP] = ACTIONS(4714), + [sym__special_characters] = ACTIONS(4714), + [anon_sym_DQUOTE] = ACTIONS(4714), + [anon_sym_DOLLAR] = ACTIONS(4716), + [sym_raw_string] = ACTIONS(4714), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4714), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4714), + [anon_sym_BQUOTE] = ACTIONS(4714), + [anon_sym_LT_LPAREN] = ACTIONS(4714), + [anon_sym_GT_LPAREN] = ACTIONS(4714), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(4716), + [anon_sym_LF] = ACTIONS(4714), + [anon_sym_AMP] = ACTIONS(4716), }, [2105] = { - [sym__simple_heredoc_body] = ACTIONS(769), - [sym__heredoc_body_beginning] = ACTIONS(769), - [sym_file_descriptor] = ACTIONS(769), - [sym__concat] = ACTIONS(769), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_esac] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_SEMI_SEMI] = ACTIONS(769), - [anon_sym_PIPE_AMP] = ACTIONS(769), - [anon_sym_AMP_AMP] = ACTIONS(769), - [anon_sym_PIPE_PIPE] = ACTIONS(769), - [anon_sym_EQ_TILDE] = ACTIONS(771), - [anon_sym_EQ_EQ] = ACTIONS(771), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_GT] = ACTIONS(769), - [anon_sym_AMP_GT] = ACTIONS(771), - [anon_sym_AMP_GT_GT] = ACTIONS(769), - [anon_sym_LT_AMP] = ACTIONS(769), - [anon_sym_GT_AMP] = ACTIONS(769), - [anon_sym_LT_LT] = ACTIONS(771), - [anon_sym_LT_LT_DASH] = ACTIONS(769), - [anon_sym_LT_LT_LT] = ACTIONS(769), - [sym__special_characters] = ACTIONS(769), - [anon_sym_DQUOTE] = ACTIONS(769), - [anon_sym_DOLLAR] = ACTIONS(771), - [sym_raw_string] = ACTIONS(769), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(769), - [anon_sym_BQUOTE] = ACTIONS(769), - [anon_sym_LT_LPAREN] = ACTIONS(769), - [anon_sym_GT_LPAREN] = ACTIONS(769), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(771), - [anon_sym_LF] = ACTIONS(769), - [anon_sym_AMP] = ACTIONS(771), + [sym_file_descriptor] = ACTIONS(4718), + [sym__concat] = ACTIONS(4718), + [sym_variable_name] = ACTIONS(4718), + [ts_builtin_sym_end] = ACTIONS(4718), + [anon_sym_SEMI] = ACTIONS(4720), + [anon_sym_PIPE] = ACTIONS(4720), + [anon_sym_RPAREN] = ACTIONS(4718), + [anon_sym_SEMI_SEMI] = ACTIONS(4718), + [anon_sym_PIPE_AMP] = ACTIONS(4718), + [anon_sym_AMP_AMP] = ACTIONS(4718), + [anon_sym_PIPE_PIPE] = ACTIONS(4718), + [anon_sym_LT] = ACTIONS(4720), + [anon_sym_GT] = ACTIONS(4720), + [anon_sym_GT_GT] = ACTIONS(4718), + [anon_sym_AMP_GT] = ACTIONS(4720), + [anon_sym_AMP_GT_GT] = ACTIONS(4718), + [anon_sym_LT_AMP] = ACTIONS(4718), + [anon_sym_GT_AMP] = ACTIONS(4718), + [sym__special_characters] = ACTIONS(4718), + [anon_sym_DQUOTE] = ACTIONS(4718), + [anon_sym_DOLLAR] = ACTIONS(4720), + [sym_raw_string] = ACTIONS(4718), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4718), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4718), + [anon_sym_BQUOTE] = ACTIONS(4718), + [anon_sym_LT_LPAREN] = ACTIONS(4718), + [anon_sym_GT_LPAREN] = ACTIONS(4718), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(4720), + [anon_sym_LF] = ACTIONS(4718), + [anon_sym_AMP] = ACTIONS(4720), }, [2106] = { - [anon_sym_DQUOTE] = ACTIONS(5263), - [anon_sym_DOLLAR] = ACTIONS(775), - [sym__string_content] = ACTIONS(777), - [anon_sym_POUND] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(781), - [anon_sym_STAR] = ACTIONS(783), - [anon_sym_AT] = ACTIONS(783), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_0] = ACTIONS(781), - [anon_sym__] = ACTIONS(781), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(5258), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2107] = { - [sym_simple_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [sym_command_substitution] = STATE(141), - [aux_sym_string_repeat1] = STATE(450), - [anon_sym_DQUOTE] = ACTIONS(5263), - [anon_sym_DOLLAR] = ACTIONS(5265), - [sym__string_content] = ACTIONS(257), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(261), - [anon_sym_BQUOTE] = ACTIONS(263), - [sym_comment] = ACTIONS(265), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(5260), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2108] = { - [sym__simple_heredoc_body] = ACTIONS(803), - [sym__heredoc_body_beginning] = ACTIONS(803), - [sym_file_descriptor] = ACTIONS(803), - [sym__concat] = ACTIONS(803), - [anon_sym_SEMI] = ACTIONS(805), - [anon_sym_esac] = ACTIONS(805), - [anon_sym_PIPE] = ACTIONS(805), - [anon_sym_SEMI_SEMI] = ACTIONS(803), - [anon_sym_PIPE_AMP] = ACTIONS(803), - [anon_sym_AMP_AMP] = ACTIONS(803), - [anon_sym_PIPE_PIPE] = ACTIONS(803), - [anon_sym_EQ_TILDE] = ACTIONS(805), - [anon_sym_EQ_EQ] = ACTIONS(805), - [anon_sym_LT] = ACTIONS(805), - [anon_sym_GT] = ACTIONS(805), - [anon_sym_GT_GT] = ACTIONS(803), - [anon_sym_AMP_GT] = ACTIONS(805), - [anon_sym_AMP_GT_GT] = ACTIONS(803), - [anon_sym_LT_AMP] = ACTIONS(803), - [anon_sym_GT_AMP] = ACTIONS(803), - [anon_sym_LT_LT] = ACTIONS(805), - [anon_sym_LT_LT_DASH] = ACTIONS(803), - [anon_sym_LT_LT_LT] = ACTIONS(803), - [sym__special_characters] = ACTIONS(803), - [anon_sym_DQUOTE] = ACTIONS(803), - [anon_sym_DOLLAR] = ACTIONS(805), - [sym_raw_string] = ACTIONS(803), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(803), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(803), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(803), - [anon_sym_GT_LPAREN] = ACTIONS(803), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(805), - [anon_sym_LF] = ACTIONS(803), - [anon_sym_AMP] = ACTIONS(805), + [sym_file_descriptor] = ACTIONS(4754), + [sym__concat] = ACTIONS(4754), + [sym_variable_name] = ACTIONS(4754), + [ts_builtin_sym_end] = ACTIONS(4754), + [anon_sym_SEMI] = ACTIONS(4756), + [anon_sym_PIPE] = ACTIONS(4756), + [anon_sym_RPAREN] = ACTIONS(4754), + [anon_sym_SEMI_SEMI] = ACTIONS(4754), + [anon_sym_PIPE_AMP] = ACTIONS(4754), + [anon_sym_AMP_AMP] = ACTIONS(4754), + [anon_sym_PIPE_PIPE] = ACTIONS(4754), + [anon_sym_LT] = ACTIONS(4756), + [anon_sym_GT] = ACTIONS(4756), + [anon_sym_GT_GT] = ACTIONS(4754), + [anon_sym_AMP_GT] = ACTIONS(4756), + [anon_sym_AMP_GT_GT] = ACTIONS(4754), + [anon_sym_LT_AMP] = ACTIONS(4754), + [anon_sym_GT_AMP] = ACTIONS(4754), + [sym__special_characters] = ACTIONS(4754), + [anon_sym_DQUOTE] = ACTIONS(4754), + [anon_sym_DOLLAR] = ACTIONS(4756), + [sym_raw_string] = ACTIONS(4754), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4754), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4754), + [anon_sym_BQUOTE] = ACTIONS(4754), + [anon_sym_LT_LPAREN] = ACTIONS(4754), + [anon_sym_GT_LPAREN] = ACTIONS(4754), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(4756), + [anon_sym_LF] = ACTIONS(4754), + [anon_sym_AMP] = ACTIONS(4756), }, [2109] = { + [ts_builtin_sym_end] = ACTIONS(3724), + [anon_sym_SEMI] = ACTIONS(3726), + [anon_sym_esac] = ACTIONS(3724), + [anon_sym_PIPE] = ACTIONS(3726), + [anon_sym_RPAREN] = ACTIONS(3724), + [anon_sym_SEMI_SEMI] = ACTIONS(3724), + [anon_sym_PIPE_AMP] = ACTIONS(3724), + [anon_sym_AMP_AMP] = ACTIONS(3724), + [anon_sym_PIPE_PIPE] = ACTIONS(3724), + [anon_sym_BQUOTE] = ACTIONS(3724), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(3724), + [anon_sym_AMP] = ACTIONS(3726), + }, + [2110] = { + [ts_builtin_sym_end] = ACTIONS(5262), + [anon_sym_SEMI] = ACTIONS(5264), + [anon_sym_esac] = ACTIONS(5262), + [anon_sym_PIPE] = ACTIONS(5264), + [anon_sym_RPAREN] = ACTIONS(5262), + [anon_sym_SEMI_SEMI] = ACTIONS(5262), + [anon_sym_PIPE_AMP] = ACTIONS(5262), + [anon_sym_AMP_AMP] = ACTIONS(5262), + [anon_sym_PIPE_PIPE] = ACTIONS(5262), + [anon_sym_BQUOTE] = ACTIONS(5262), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5264), + }, + [2111] = { + [sym_do_group] = STATE(2290), + [sym_compound_statement] = STATE(2290), + [anon_sym_do] = ACTIONS(1212), + [anon_sym_LBRACE] = ACTIONS(3350), + [sym_comment] = ACTIONS(55), + }, + [2112] = { + [sym__concat] = ACTIONS(4710), + [anon_sym_SEMI] = ACTIONS(4712), + [anon_sym_esac] = ACTIONS(4710), + [anon_sym_PIPE] = ACTIONS(4712), + [anon_sym_SEMI_SEMI] = ACTIONS(4710), + [anon_sym_PIPE_AMP] = ACTIONS(4710), + [anon_sym_AMP_AMP] = ACTIONS(4710), + [anon_sym_PIPE_PIPE] = ACTIONS(4710), + [anon_sym_EQ_TILDE] = ACTIONS(4710), + [anon_sym_EQ_EQ] = ACTIONS(4710), + [anon_sym_EQ] = ACTIONS(4712), + [anon_sym_PLUS_EQ] = ACTIONS(4710), + [anon_sym_LT] = ACTIONS(4712), + [anon_sym_GT] = ACTIONS(4712), + [anon_sym_BANG_EQ] = ACTIONS(4710), + [anon_sym_PLUS] = ACTIONS(4712), + [anon_sym_DASH] = ACTIONS(4712), + [anon_sym_DASH_EQ] = ACTIONS(4710), + [anon_sym_LT_EQ] = ACTIONS(4710), + [anon_sym_GT_EQ] = ACTIONS(4710), + [anon_sym_PLUS_PLUS] = ACTIONS(4710), + [anon_sym_DASH_DASH] = ACTIONS(4710), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(4710), + [anon_sym_LF] = ACTIONS(4710), + [anon_sym_AMP] = ACTIONS(4712), + }, + [2113] = { + [sym__concat] = ACTIONS(4714), + [anon_sym_SEMI] = ACTIONS(4716), + [anon_sym_esac] = ACTIONS(4714), + [anon_sym_PIPE] = ACTIONS(4716), + [anon_sym_SEMI_SEMI] = ACTIONS(4714), + [anon_sym_PIPE_AMP] = ACTIONS(4714), + [anon_sym_AMP_AMP] = ACTIONS(4714), + [anon_sym_PIPE_PIPE] = ACTIONS(4714), + [anon_sym_EQ_TILDE] = ACTIONS(4714), + [anon_sym_EQ_EQ] = ACTIONS(4714), + [anon_sym_EQ] = ACTIONS(4716), + [anon_sym_PLUS_EQ] = ACTIONS(4714), + [anon_sym_LT] = ACTIONS(4716), + [anon_sym_GT] = ACTIONS(4716), + [anon_sym_BANG_EQ] = ACTIONS(4714), + [anon_sym_PLUS] = ACTIONS(4716), + [anon_sym_DASH] = ACTIONS(4716), + [anon_sym_DASH_EQ] = ACTIONS(4714), + [anon_sym_LT_EQ] = ACTIONS(4714), + [anon_sym_GT_EQ] = ACTIONS(4714), + [anon_sym_PLUS_PLUS] = ACTIONS(4714), + [anon_sym_DASH_DASH] = ACTIONS(4714), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(4714), + [anon_sym_LF] = ACTIONS(4714), + [anon_sym_AMP] = ACTIONS(4716), + }, + [2114] = { + [sym__concat] = ACTIONS(4718), + [anon_sym_SEMI] = ACTIONS(4720), + [anon_sym_esac] = ACTIONS(4718), + [anon_sym_PIPE] = ACTIONS(4720), + [anon_sym_SEMI_SEMI] = ACTIONS(4718), + [anon_sym_PIPE_AMP] = ACTIONS(4718), + [anon_sym_AMP_AMP] = ACTIONS(4718), + [anon_sym_PIPE_PIPE] = ACTIONS(4718), + [anon_sym_EQ_TILDE] = ACTIONS(4718), + [anon_sym_EQ_EQ] = ACTIONS(4718), + [anon_sym_EQ] = ACTIONS(4720), + [anon_sym_PLUS_EQ] = ACTIONS(4718), + [anon_sym_LT] = ACTIONS(4720), + [anon_sym_GT] = ACTIONS(4720), + [anon_sym_BANG_EQ] = ACTIONS(4718), + [anon_sym_PLUS] = ACTIONS(4720), + [anon_sym_DASH] = ACTIONS(4720), + [anon_sym_DASH_EQ] = ACTIONS(4718), + [anon_sym_LT_EQ] = ACTIONS(4718), + [anon_sym_GT_EQ] = ACTIONS(4718), + [anon_sym_PLUS_PLUS] = ACTIONS(4718), + [anon_sym_DASH_DASH] = ACTIONS(4718), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(4718), + [anon_sym_LF] = ACTIONS(4718), + [anon_sym_AMP] = ACTIONS(4720), + }, + [2115] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(5266), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [2116] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(5268), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [2117] = { + [sym__concat] = ACTIONS(4754), + [anon_sym_SEMI] = ACTIONS(4756), + [anon_sym_esac] = ACTIONS(4754), + [anon_sym_PIPE] = ACTIONS(4756), + [anon_sym_SEMI_SEMI] = ACTIONS(4754), + [anon_sym_PIPE_AMP] = ACTIONS(4754), + [anon_sym_AMP_AMP] = ACTIONS(4754), + [anon_sym_PIPE_PIPE] = ACTIONS(4754), + [anon_sym_EQ_TILDE] = ACTIONS(4754), + [anon_sym_EQ_EQ] = ACTIONS(4754), + [anon_sym_EQ] = ACTIONS(4756), + [anon_sym_PLUS_EQ] = ACTIONS(4754), + [anon_sym_LT] = ACTIONS(4756), + [anon_sym_GT] = ACTIONS(4756), + [anon_sym_BANG_EQ] = ACTIONS(4754), + [anon_sym_PLUS] = ACTIONS(4756), + [anon_sym_DASH] = ACTIONS(4756), + [anon_sym_DASH_EQ] = ACTIONS(4754), + [anon_sym_LT_EQ] = ACTIONS(4754), + [anon_sym_GT_EQ] = ACTIONS(4754), + [anon_sym_PLUS_PLUS] = ACTIONS(4754), + [anon_sym_DASH_DASH] = ACTIONS(4754), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(4754), + [anon_sym_LF] = ACTIONS(4754), + [anon_sym_AMP] = ACTIONS(4756), + }, + [2118] = { + [sym_do_group] = STATE(2290), + [sym_compound_statement] = STATE(2290), + [anon_sym_SEMI] = ACTIONS(5270), + [anon_sym_do] = ACTIONS(1212), + [anon_sym_LBRACE] = ACTIONS(3350), + [sym_comment] = ACTIONS(55), + }, + [2119] = { + [sym__concat] = ACTIONS(3934), + [anon_sym_SEMI] = ACTIONS(3936), + [anon_sym_SEMI_SEMI] = ACTIONS(3934), + [sym__special_characters] = ACTIONS(3934), + [anon_sym_DQUOTE] = ACTIONS(3934), + [anon_sym_DOLLAR] = ACTIONS(3936), + [sym_raw_string] = ACTIONS(3934), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3934), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3934), + [anon_sym_BQUOTE] = ACTIONS(3934), + [anon_sym_LT_LPAREN] = ACTIONS(3934), + [anon_sym_GT_LPAREN] = ACTIONS(3934), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(3936), + [anon_sym_LF] = ACTIONS(3934), + [anon_sym_AMP] = ACTIONS(3934), + }, + [2120] = { + [sym__concat] = ACTIONS(3942), + [anon_sym_SEMI] = ACTIONS(3944), + [anon_sym_SEMI_SEMI] = ACTIONS(3942), + [sym__special_characters] = ACTIONS(3942), + [anon_sym_DQUOTE] = ACTIONS(3942), + [anon_sym_DOLLAR] = ACTIONS(3944), + [sym_raw_string] = ACTIONS(3942), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3942), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3942), + [anon_sym_BQUOTE] = ACTIONS(3942), + [anon_sym_LT_LPAREN] = ACTIONS(3942), + [anon_sym_GT_LPAREN] = ACTIONS(3942), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(3944), + [anon_sym_LF] = ACTIONS(3942), + [anon_sym_AMP] = ACTIONS(3942), + }, + [2121] = { + [aux_sym_concatenation_repeat1] = STATE(1366), + [sym__concat] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(5272), + [sym_comment] = ACTIONS(55), + }, + [2122] = { + [aux_sym_concatenation_repeat1] = STATE(1366), + [sym__concat] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(5274), + [sym_comment] = ACTIONS(55), + }, + [2123] = { + [anon_sym_RBRACE] = ACTIONS(5274), + [sym_comment] = ACTIONS(55), + }, + [2124] = { + [sym_concatenation] = STATE(2297), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2297), + [anon_sym_RBRACE] = ACTIONS(5276), + [anon_sym_EQ] = ACTIONS(5278), + [anon_sym_DASH] = ACTIONS(5278), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(5280), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(5278), + [anon_sym_COLON_QMARK] = ACTIONS(5278), + [anon_sym_COLON_DASH] = ACTIONS(5278), + [anon_sym_PERCENT] = ACTIONS(5278), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [2125] = { + [sym__concat] = ACTIONS(3998), + [anon_sym_SEMI] = ACTIONS(4000), + [anon_sym_SEMI_SEMI] = ACTIONS(3998), + [sym__special_characters] = ACTIONS(3998), + [anon_sym_DQUOTE] = ACTIONS(3998), + [anon_sym_DOLLAR] = ACTIONS(4000), + [sym_raw_string] = ACTIONS(3998), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3998), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3998), + [anon_sym_BQUOTE] = ACTIONS(3998), + [anon_sym_LT_LPAREN] = ACTIONS(3998), + [anon_sym_GT_LPAREN] = ACTIONS(3998), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(4000), + [anon_sym_LF] = ACTIONS(3998), + [anon_sym_AMP] = ACTIONS(3998), + }, + [2126] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(5276), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [2127] = { + [sym_concatenation] = STATE(2298), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2298), + [anon_sym_RBRACE] = ACTIONS(5274), + [anon_sym_EQ] = ACTIONS(5282), + [anon_sym_DASH] = ACTIONS(5282), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(5284), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(5282), + [anon_sym_COLON_QMARK] = ACTIONS(5282), + [anon_sym_COLON_DASH] = ACTIONS(5282), + [anon_sym_PERCENT] = ACTIONS(5282), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [2128] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(5274), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [2129] = { + [sym__concat] = ACTIONS(4043), + [anon_sym_SEMI] = ACTIONS(4045), + [anon_sym_SEMI_SEMI] = ACTIONS(4043), + [sym__special_characters] = ACTIONS(4043), + [anon_sym_DQUOTE] = ACTIONS(4043), + [anon_sym_DOLLAR] = ACTIONS(4045), + [sym_raw_string] = ACTIONS(4043), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4043), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4043), + [anon_sym_BQUOTE] = ACTIONS(4043), + [anon_sym_LT_LPAREN] = ACTIONS(4043), + [anon_sym_GT_LPAREN] = ACTIONS(4043), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(4045), + [anon_sym_LF] = ACTIONS(4043), + [anon_sym_AMP] = ACTIONS(4043), + }, + [2130] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(5286), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [2131] = { + [sym__concat] = ACTIONS(4065), + [anon_sym_SEMI] = ACTIONS(4067), + [anon_sym_SEMI_SEMI] = ACTIONS(4065), + [sym__special_characters] = ACTIONS(4065), + [anon_sym_DQUOTE] = ACTIONS(4065), + [anon_sym_DOLLAR] = ACTIONS(4067), + [sym_raw_string] = ACTIONS(4065), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4065), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4065), + [anon_sym_BQUOTE] = ACTIONS(4065), + [anon_sym_LT_LPAREN] = ACTIONS(4065), + [anon_sym_GT_LPAREN] = ACTIONS(4065), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(4067), + [anon_sym_LF] = ACTIONS(4065), + [anon_sym_AMP] = ACTIONS(4065), + }, + [2132] = { + [sym__concat] = ACTIONS(4089), + [anon_sym_SEMI] = ACTIONS(4091), + [anon_sym_SEMI_SEMI] = ACTIONS(4089), + [sym__special_characters] = ACTIONS(4089), + [anon_sym_DQUOTE] = ACTIONS(4089), + [anon_sym_DOLLAR] = ACTIONS(4091), + [sym_raw_string] = ACTIONS(4089), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4089), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4089), + [anon_sym_BQUOTE] = ACTIONS(4089), + [anon_sym_LT_LPAREN] = ACTIONS(4089), + [anon_sym_GT_LPAREN] = ACTIONS(4089), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(4091), + [anon_sym_LF] = ACTIONS(4089), + [anon_sym_AMP] = ACTIONS(4089), + }, + [2133] = { + [sym__concat] = ACTIONS(4710), + [anon_sym_PIPE] = ACTIONS(4712), + [anon_sym_RPAREN] = ACTIONS(4710), + [anon_sym_AMP_AMP] = ACTIONS(4710), + [anon_sym_PIPE_PIPE] = ACTIONS(4710), + [anon_sym_EQ_TILDE] = ACTIONS(4710), + [anon_sym_EQ_EQ] = ACTIONS(4710), + [anon_sym_EQ] = ACTIONS(4712), + [anon_sym_PLUS_EQ] = ACTIONS(4710), + [anon_sym_LT] = ACTIONS(4712), + [anon_sym_GT] = ACTIONS(4712), + [anon_sym_BANG_EQ] = ACTIONS(4710), + [anon_sym_PLUS] = ACTIONS(4712), + [anon_sym_DASH] = ACTIONS(4712), + [anon_sym_DASH_EQ] = ACTIONS(4710), + [anon_sym_LT_EQ] = ACTIONS(4710), + [anon_sym_GT_EQ] = ACTIONS(4710), + [anon_sym_PLUS_PLUS] = ACTIONS(4710), + [anon_sym_DASH_DASH] = ACTIONS(4710), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(4710), + }, + [2134] = { + [sym__concat] = ACTIONS(4714), + [anon_sym_PIPE] = ACTIONS(4716), + [anon_sym_RPAREN] = ACTIONS(4714), + [anon_sym_AMP_AMP] = ACTIONS(4714), + [anon_sym_PIPE_PIPE] = ACTIONS(4714), + [anon_sym_EQ_TILDE] = ACTIONS(4714), + [anon_sym_EQ_EQ] = ACTIONS(4714), + [anon_sym_EQ] = ACTIONS(4716), + [anon_sym_PLUS_EQ] = ACTIONS(4714), + [anon_sym_LT] = ACTIONS(4716), + [anon_sym_GT] = ACTIONS(4716), + [anon_sym_BANG_EQ] = ACTIONS(4714), + [anon_sym_PLUS] = ACTIONS(4716), + [anon_sym_DASH] = ACTIONS(4716), + [anon_sym_DASH_EQ] = ACTIONS(4714), + [anon_sym_LT_EQ] = ACTIONS(4714), + [anon_sym_GT_EQ] = ACTIONS(4714), + [anon_sym_PLUS_PLUS] = ACTIONS(4714), + [anon_sym_DASH_DASH] = ACTIONS(4714), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(4714), + }, + [2135] = { + [sym__concat] = ACTIONS(4718), + [anon_sym_PIPE] = ACTIONS(4720), + [anon_sym_RPAREN] = ACTIONS(4718), + [anon_sym_AMP_AMP] = ACTIONS(4718), + [anon_sym_PIPE_PIPE] = ACTIONS(4718), + [anon_sym_EQ_TILDE] = ACTIONS(4718), + [anon_sym_EQ_EQ] = ACTIONS(4718), + [anon_sym_EQ] = ACTIONS(4720), + [anon_sym_PLUS_EQ] = ACTIONS(4718), + [anon_sym_LT] = ACTIONS(4720), + [anon_sym_GT] = ACTIONS(4720), + [anon_sym_BANG_EQ] = ACTIONS(4718), + [anon_sym_PLUS] = ACTIONS(4720), + [anon_sym_DASH] = ACTIONS(4720), + [anon_sym_DASH_EQ] = ACTIONS(4718), + [anon_sym_LT_EQ] = ACTIONS(4718), + [anon_sym_GT_EQ] = ACTIONS(4718), + [anon_sym_PLUS_PLUS] = ACTIONS(4718), + [anon_sym_DASH_DASH] = ACTIONS(4718), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(4718), + }, + [2136] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(5288), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [2137] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(5290), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [2138] = { + [sym__concat] = ACTIONS(4754), + [anon_sym_PIPE] = ACTIONS(4756), + [anon_sym_RPAREN] = ACTIONS(4754), + [anon_sym_AMP_AMP] = ACTIONS(4754), + [anon_sym_PIPE_PIPE] = ACTIONS(4754), + [anon_sym_EQ_TILDE] = ACTIONS(4754), + [anon_sym_EQ_EQ] = ACTIONS(4754), + [anon_sym_EQ] = ACTIONS(4756), + [anon_sym_PLUS_EQ] = ACTIONS(4754), + [anon_sym_LT] = ACTIONS(4756), + [anon_sym_GT] = ACTIONS(4756), + [anon_sym_BANG_EQ] = ACTIONS(4754), + [anon_sym_PLUS] = ACTIONS(4756), + [anon_sym_DASH] = ACTIONS(4756), + [anon_sym_DASH_EQ] = ACTIONS(4754), + [anon_sym_LT_EQ] = ACTIONS(4754), + [anon_sym_GT_EQ] = ACTIONS(4754), + [anon_sym_PLUS_PLUS] = ACTIONS(4754), + [anon_sym_DASH_DASH] = ACTIONS(4754), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(4754), + }, + [2139] = { + [sym__concat] = ACTIONS(5202), + [anon_sym_RPAREN_RPAREN] = ACTIONS(5202), + [anon_sym_AMP_AMP] = ACTIONS(5202), + [anon_sym_PIPE_PIPE] = ACTIONS(5202), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5202), + [anon_sym_EQ_TILDE] = ACTIONS(5202), + [anon_sym_EQ_EQ] = ACTIONS(5202), + [anon_sym_EQ] = ACTIONS(5204), + [anon_sym_PLUS_EQ] = ACTIONS(5202), + [anon_sym_LT] = ACTIONS(5204), + [anon_sym_GT] = ACTIONS(5204), + [anon_sym_BANG_EQ] = ACTIONS(5202), + [anon_sym_PLUS] = ACTIONS(5204), + [anon_sym_DASH] = ACTIONS(5204), + [anon_sym_DASH_EQ] = ACTIONS(5202), + [anon_sym_LT_EQ] = ACTIONS(5202), + [anon_sym_GT_EQ] = ACTIONS(5202), + [anon_sym_PLUS_PLUS] = ACTIONS(5202), + [anon_sym_DASH_DASH] = ACTIONS(5202), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(5202), + }, + [2140] = { + [sym__concat] = ACTIONS(5206), + [anon_sym_RPAREN_RPAREN] = ACTIONS(5206), + [anon_sym_AMP_AMP] = ACTIONS(5206), + [anon_sym_PIPE_PIPE] = ACTIONS(5206), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5206), + [anon_sym_EQ_TILDE] = ACTIONS(5206), + [anon_sym_EQ_EQ] = ACTIONS(5206), + [anon_sym_EQ] = ACTIONS(5208), + [anon_sym_PLUS_EQ] = ACTIONS(5206), + [anon_sym_LT] = ACTIONS(5208), + [anon_sym_GT] = ACTIONS(5208), + [anon_sym_BANG_EQ] = ACTIONS(5206), + [anon_sym_PLUS] = ACTIONS(5208), + [anon_sym_DASH] = ACTIONS(5208), + [anon_sym_DASH_EQ] = ACTIONS(5206), + [anon_sym_LT_EQ] = ACTIONS(5206), + [anon_sym_GT_EQ] = ACTIONS(5206), + [anon_sym_PLUS_PLUS] = ACTIONS(5206), + [anon_sym_DASH_DASH] = ACTIONS(5206), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(5206), + }, + [2141] = { + [sym_file_descriptor] = ACTIONS(2959), + [sym__concat] = ACTIONS(2959), + [ts_builtin_sym_end] = ACTIONS(2959), + [anon_sym_SEMI] = ACTIONS(2961), + [anon_sym_esac] = ACTIONS(2959), + [anon_sym_PIPE] = ACTIONS(2961), + [anon_sym_RPAREN] = ACTIONS(2959), + [anon_sym_SEMI_SEMI] = ACTIONS(2959), + [anon_sym_PIPE_AMP] = ACTIONS(2959), + [anon_sym_AMP_AMP] = ACTIONS(2959), + [anon_sym_PIPE_PIPE] = ACTIONS(2959), + [anon_sym_LT] = ACTIONS(2961), + [anon_sym_GT] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(2959), + [anon_sym_AMP_GT] = ACTIONS(2961), + [anon_sym_AMP_GT_GT] = ACTIONS(2959), + [anon_sym_LT_AMP] = ACTIONS(2959), + [anon_sym_GT_AMP] = ACTIONS(2959), + [anon_sym_LT_LT] = ACTIONS(2961), + [anon_sym_LT_LT_DASH] = ACTIONS(2959), + [anon_sym_LT_LT_LT] = ACTIONS(2959), + [anon_sym_BQUOTE] = ACTIONS(2959), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2959), + [anon_sym_AMP] = ACTIONS(2961), + }, + [2142] = { + [sym_file_descriptor] = ACTIONS(2973), + [sym__concat] = ACTIONS(2973), + [ts_builtin_sym_end] = ACTIONS(2973), + [anon_sym_SEMI] = ACTIONS(2975), + [anon_sym_esac] = ACTIONS(2973), + [anon_sym_PIPE] = ACTIONS(2975), + [anon_sym_RPAREN] = ACTIONS(2973), + [anon_sym_SEMI_SEMI] = ACTIONS(2973), + [anon_sym_PIPE_AMP] = ACTIONS(2973), + [anon_sym_AMP_AMP] = ACTIONS(2973), + [anon_sym_PIPE_PIPE] = ACTIONS(2973), + [anon_sym_LT] = ACTIONS(2975), + [anon_sym_GT] = ACTIONS(2975), + [anon_sym_GT_GT] = ACTIONS(2973), + [anon_sym_AMP_GT] = ACTIONS(2975), + [anon_sym_AMP_GT_GT] = ACTIONS(2973), + [anon_sym_LT_AMP] = ACTIONS(2973), + [anon_sym_GT_AMP] = ACTIONS(2973), + [anon_sym_LT_LT] = ACTIONS(2975), + [anon_sym_LT_LT_DASH] = ACTIONS(2973), + [anon_sym_LT_LT_LT] = ACTIONS(2973), + [anon_sym_BQUOTE] = ACTIONS(2973), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2973), + [anon_sym_AMP] = ACTIONS(2975), + }, + [2143] = { + [aux_sym_concatenation_repeat1] = STATE(1366), + [sym__concat] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(5292), + [sym_comment] = ACTIONS(55), + }, + [2144] = { + [aux_sym_concatenation_repeat1] = STATE(1366), + [sym__concat] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(5294), + [sym_comment] = ACTIONS(55), + }, + [2145] = { + [anon_sym_RBRACE] = ACTIONS(5294), + [sym_comment] = ACTIONS(55), + }, + [2146] = { + [sym_concatenation] = STATE(2306), + [sym_string] = STATE(2305), + [sym_simple_expansion] = STATE(2305), + [sym_string_expansion] = STATE(2305), + [sym_expansion] = STATE(2305), + [sym_command_substitution] = STATE(2305), + [sym_process_substitution] = STATE(2305), + [anon_sym_RBRACE] = ACTIONS(5294), + [sym__special_characters] = ACTIONS(5296), + [anon_sym_DQUOTE] = ACTIONS(1841), + [anon_sym_DOLLAR] = ACTIONS(1843), + [sym_raw_string] = ACTIONS(5298), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1849), + [anon_sym_BQUOTE] = ACTIONS(1851), + [anon_sym_LT_LPAREN] = ACTIONS(1853), + [anon_sym_GT_LPAREN] = ACTIONS(1853), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(5298), + }, + [2147] = { + [sym_file_descriptor] = ACTIONS(3009), + [sym__concat] = ACTIONS(3009), + [ts_builtin_sym_end] = ACTIONS(3009), + [anon_sym_SEMI] = ACTIONS(3011), + [anon_sym_esac] = ACTIONS(3009), + [anon_sym_PIPE] = ACTIONS(3011), + [anon_sym_RPAREN] = ACTIONS(3009), + [anon_sym_SEMI_SEMI] = ACTIONS(3009), + [anon_sym_PIPE_AMP] = ACTIONS(3009), + [anon_sym_AMP_AMP] = ACTIONS(3009), + [anon_sym_PIPE_PIPE] = ACTIONS(3009), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_GT] = ACTIONS(3011), + [anon_sym_GT_GT] = ACTIONS(3009), + [anon_sym_AMP_GT] = ACTIONS(3011), + [anon_sym_AMP_GT_GT] = ACTIONS(3009), + [anon_sym_LT_AMP] = ACTIONS(3009), + [anon_sym_GT_AMP] = ACTIONS(3009), + [anon_sym_LT_LT] = ACTIONS(3011), + [anon_sym_LT_LT_DASH] = ACTIONS(3009), + [anon_sym_LT_LT_LT] = ACTIONS(3009), + [anon_sym_BQUOTE] = ACTIONS(3009), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(3009), + [anon_sym_AMP] = ACTIONS(3011), + }, + [2148] = { + [sym_concatenation] = STATE(2309), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2309), + [sym_regex] = ACTIONS(5300), + [anon_sym_RBRACE] = ACTIONS(5302), + [anon_sym_EQ] = ACTIONS(5304), + [anon_sym_DASH] = ACTIONS(5304), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(5306), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(5304), + [anon_sym_COLON_QMARK] = ACTIONS(5304), + [anon_sym_COLON_DASH] = ACTIONS(5304), + [anon_sym_PERCENT] = ACTIONS(5304), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [2149] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(5302), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [2150] = { + [sym_concatenation] = STATE(2311), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2311), + [sym_regex] = ACTIONS(5308), + [anon_sym_RBRACE] = ACTIONS(5294), + [anon_sym_EQ] = ACTIONS(5310), + [anon_sym_DASH] = ACTIONS(5310), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(5312), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(5310), + [anon_sym_COLON_QMARK] = ACTIONS(5310), + [anon_sym_COLON_DASH] = ACTIONS(5310), + [anon_sym_PERCENT] = ACTIONS(5310), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [2151] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(5294), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [2152] = { + [sym_concatenation] = STATE(2313), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2313), + [anon_sym_RBRACE] = ACTIONS(5314), + [anon_sym_EQ] = ACTIONS(5316), + [anon_sym_DASH] = ACTIONS(5316), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(5318), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(5316), + [anon_sym_COLON_QMARK] = ACTIONS(5316), + [anon_sym_COLON_DASH] = ACTIONS(5316), + [anon_sym_PERCENT] = ACTIONS(5316), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [2153] = { + [sym_file_descriptor] = ACTIONS(3065), + [sym__concat] = ACTIONS(3065), + [ts_builtin_sym_end] = ACTIONS(3065), + [anon_sym_SEMI] = ACTIONS(3067), + [anon_sym_esac] = ACTIONS(3065), + [anon_sym_PIPE] = ACTIONS(3067), + [anon_sym_RPAREN] = ACTIONS(3065), + [anon_sym_SEMI_SEMI] = ACTIONS(3065), + [anon_sym_PIPE_AMP] = ACTIONS(3065), + [anon_sym_AMP_AMP] = ACTIONS(3065), + [anon_sym_PIPE_PIPE] = ACTIONS(3065), + [anon_sym_LT] = ACTIONS(3067), + [anon_sym_GT] = ACTIONS(3067), + [anon_sym_GT_GT] = ACTIONS(3065), + [anon_sym_AMP_GT] = ACTIONS(3067), + [anon_sym_AMP_GT_GT] = ACTIONS(3065), + [anon_sym_LT_AMP] = ACTIONS(3065), + [anon_sym_GT_AMP] = ACTIONS(3065), + [anon_sym_LT_LT] = ACTIONS(3067), + [anon_sym_LT_LT_DASH] = ACTIONS(3065), + [anon_sym_LT_LT_LT] = ACTIONS(3065), + [anon_sym_BQUOTE] = ACTIONS(3065), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(3065), + [anon_sym_AMP] = ACTIONS(3067), + }, + [2154] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(5314), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [2155] = { + [sym_concatenation] = STATE(2311), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2311), + [anon_sym_RBRACE] = ACTIONS(5294), + [anon_sym_EQ] = ACTIONS(5310), + [anon_sym_DASH] = ACTIONS(5310), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(5312), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(5310), + [anon_sym_COLON_QMARK] = ACTIONS(5310), + [anon_sym_COLON_DASH] = ACTIONS(5310), + [anon_sym_PERCENT] = ACTIONS(5310), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [2156] = { + [sym_file_descriptor] = ACTIONS(3120), + [sym__concat] = ACTIONS(3120), + [ts_builtin_sym_end] = ACTIONS(3120), + [anon_sym_SEMI] = ACTIONS(3122), + [anon_sym_esac] = ACTIONS(3120), + [anon_sym_PIPE] = ACTIONS(3122), + [anon_sym_RPAREN] = ACTIONS(3120), + [anon_sym_SEMI_SEMI] = ACTIONS(3120), + [anon_sym_PIPE_AMP] = ACTIONS(3120), + [anon_sym_AMP_AMP] = ACTIONS(3120), + [anon_sym_PIPE_PIPE] = ACTIONS(3120), + [anon_sym_LT] = ACTIONS(3122), + [anon_sym_GT] = ACTIONS(3122), + [anon_sym_GT_GT] = ACTIONS(3120), + [anon_sym_AMP_GT] = ACTIONS(3122), + [anon_sym_AMP_GT_GT] = ACTIONS(3120), + [anon_sym_LT_AMP] = ACTIONS(3120), + [anon_sym_GT_AMP] = ACTIONS(3120), + [anon_sym_LT_LT] = ACTIONS(3122), + [anon_sym_LT_LT_DASH] = ACTIONS(3120), + [anon_sym_LT_LT_LT] = ACTIONS(3120), + [anon_sym_BQUOTE] = ACTIONS(3120), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(3120), + [anon_sym_AMP] = ACTIONS(3122), + }, + [2157] = { + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(5320), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), + }, + [2158] = { + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(5320), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), + }, + [2159] = { + [sym_file_descriptor] = ACTIONS(3158), + [sym__concat] = ACTIONS(3158), + [ts_builtin_sym_end] = ACTIONS(3158), + [anon_sym_SEMI] = ACTIONS(3160), + [anon_sym_esac] = ACTIONS(3158), + [anon_sym_PIPE] = ACTIONS(3160), + [anon_sym_RPAREN] = ACTIONS(3158), + [anon_sym_SEMI_SEMI] = ACTIONS(3158), + [anon_sym_PIPE_AMP] = ACTIONS(3158), + [anon_sym_AMP_AMP] = ACTIONS(3158), + [anon_sym_PIPE_PIPE] = ACTIONS(3158), + [anon_sym_LT] = ACTIONS(3160), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_GT_GT] = ACTIONS(3158), + [anon_sym_AMP_GT] = ACTIONS(3160), + [anon_sym_AMP_GT_GT] = ACTIONS(3158), + [anon_sym_LT_AMP] = ACTIONS(3158), + [anon_sym_GT_AMP] = ACTIONS(3158), + [anon_sym_LT_LT] = ACTIONS(3160), + [anon_sym_LT_LT_DASH] = ACTIONS(3158), + [anon_sym_LT_LT_LT] = ACTIONS(3158), + [anon_sym_BQUOTE] = ACTIONS(3158), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(3158), + [anon_sym_AMP] = ACTIONS(3160), + }, + [2160] = { + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(5322), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), + }, + [2161] = { + [aux_sym_concatenation_repeat1] = STATE(2161), + [sym_file_descriptor] = ACTIONS(1763), + [sym__concat] = ACTIONS(4936), + [anon_sym_SEMI] = ACTIONS(1765), + [anon_sym_PIPE] = ACTIONS(1765), + [anon_sym_SEMI_SEMI] = ACTIONS(1763), + [anon_sym_PIPE_AMP] = ACTIONS(1763), + [anon_sym_AMP_AMP] = ACTIONS(1763), + [anon_sym_PIPE_PIPE] = ACTIONS(1763), + [anon_sym_LT] = ACTIONS(1765), + [anon_sym_GT] = ACTIONS(1765), + [anon_sym_GT_GT] = ACTIONS(1763), + [anon_sym_AMP_GT] = ACTIONS(1765), + [anon_sym_AMP_GT_GT] = ACTIONS(1763), + [anon_sym_LT_AMP] = ACTIONS(1763), + [anon_sym_GT_AMP] = ACTIONS(1763), + [anon_sym_LT_LT] = ACTIONS(1765), + [anon_sym_LT_LT_DASH] = ACTIONS(1763), + [anon_sym_LT_LT_LT] = ACTIONS(1763), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1763), + [anon_sym_AMP] = ACTIONS(1765), + }, + [2162] = { + [aux_sym_concatenation_repeat1] = STATE(2162), + [sym__concat] = ACTIONS(2807), + [anon_sym_SEMI] = ACTIONS(1765), + [anon_sym_PIPE] = ACTIONS(1765), + [anon_sym_SEMI_SEMI] = ACTIONS(1763), + [anon_sym_PIPE_AMP] = ACTIONS(1763), + [anon_sym_AMP_AMP] = ACTIONS(1763), + [anon_sym_PIPE_PIPE] = ACTIONS(1763), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1763), + [anon_sym_AMP] = ACTIONS(1765), + }, + [2163] = { + [sym_concatenation] = STATE(2316), + [sym_string] = STATE(2321), + [sym_array] = STATE(2316), + [sym_simple_expansion] = STATE(2321), + [sym_string_expansion] = STATE(2321), + [sym_expansion] = STATE(2321), + [sym_command_substitution] = STATE(2321), + [sym_process_substitution] = STATE(2321), + [sym__empty_value] = ACTIONS(5324), + [anon_sym_LPAREN] = ACTIONS(5326), + [sym__special_characters] = ACTIONS(5328), + [anon_sym_DQUOTE] = ACTIONS(5330), + [anon_sym_DOLLAR] = ACTIONS(5332), + [sym_raw_string] = ACTIONS(5334), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5336), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5338), + [anon_sym_BQUOTE] = ACTIONS(5340), + [anon_sym_LT_LPAREN] = ACTIONS(5342), + [anon_sym_GT_LPAREN] = ACTIONS(5342), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(5334), + }, + [2164] = { + [anon_sym_RPAREN_RPAREN] = ACTIONS(5344), + [anon_sym_AMP_AMP] = ACTIONS(493), + [anon_sym_PIPE_PIPE] = ACTIONS(493), + [anon_sym_EQ_TILDE] = ACTIONS(495), + [anon_sym_EQ_EQ] = ACTIONS(495), + [anon_sym_EQ] = ACTIONS(497), + [anon_sym_PLUS_EQ] = ACTIONS(493), + [anon_sym_LT] = ACTIONS(497), + [anon_sym_GT] = ACTIONS(497), + [anon_sym_BANG_EQ] = ACTIONS(493), + [anon_sym_PLUS] = ACTIONS(497), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_DASH_EQ] = ACTIONS(493), + [anon_sym_LT_EQ] = ACTIONS(493), + [anon_sym_GT_EQ] = ACTIONS(493), + [anon_sym_PLUS_PLUS] = ACTIONS(499), + [anon_sym_DASH_DASH] = ACTIONS(499), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(493), + }, + [2165] = { + [sym_do_group] = STATE(2327), + [anon_sym_do] = ACTIONS(525), + [sym_comment] = ACTIONS(55), + }, + [2166] = { + [sym_compound_statement] = STATE(2329), + [anon_sym_LPAREN] = ACTIONS(5346), + [anon_sym_LBRACE] = ACTIONS(595), + [sym_comment] = ACTIONS(55), + }, + [2167] = { + [anon_sym_AMP_AMP] = ACTIONS(681), + [anon_sym_PIPE_PIPE] = ACTIONS(681), + [anon_sym_RBRACK] = ACTIONS(5344), + [anon_sym_EQ_TILDE] = ACTIONS(683), + [anon_sym_EQ_EQ] = ACTIONS(683), + [anon_sym_EQ] = ACTIONS(685), + [anon_sym_PLUS_EQ] = ACTIONS(681), + [anon_sym_LT] = ACTIONS(685), + [anon_sym_GT] = ACTIONS(685), + [anon_sym_BANG_EQ] = ACTIONS(681), + [anon_sym_PLUS] = ACTIONS(685), + [anon_sym_DASH] = ACTIONS(685), + [anon_sym_DASH_EQ] = ACTIONS(681), + [anon_sym_LT_EQ] = ACTIONS(681), + [anon_sym_GT_EQ] = ACTIONS(681), + [anon_sym_PLUS_PLUS] = ACTIONS(687), + [anon_sym_DASH_DASH] = ACTIONS(687), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(681), + }, + [2168] = { + [anon_sym_AMP_AMP] = ACTIONS(689), + [anon_sym_PIPE_PIPE] = ACTIONS(689), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5344), + [anon_sym_EQ_TILDE] = ACTIONS(691), + [anon_sym_EQ_EQ] = ACTIONS(691), + [anon_sym_EQ] = ACTIONS(693), + [anon_sym_PLUS_EQ] = ACTIONS(689), + [anon_sym_LT] = ACTIONS(693), + [anon_sym_GT] = ACTIONS(693), + [anon_sym_BANG_EQ] = ACTIONS(689), + [anon_sym_PLUS] = ACTIONS(693), + [anon_sym_DASH] = ACTIONS(693), + [anon_sym_DASH_EQ] = ACTIONS(689), + [anon_sym_LT_EQ] = ACTIONS(689), + [anon_sym_GT_EQ] = ACTIONS(689), + [anon_sym_PLUS_PLUS] = ACTIONS(499), + [anon_sym_DASH_DASH] = ACTIONS(499), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(689), + }, + [2169] = { + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_EQ] = ACTIONS(5348), + [anon_sym_PLUS_EQ] = ACTIONS(5348), + [sym_comment] = ACTIONS(55), + }, + [2170] = { + [aux_sym_concatenation_repeat1] = STATE(2332), + [sym__concat] = ACTIONS(5350), + [sym_variable_name] = ACTIONS(699), + [anon_sym_SEMI] = ACTIONS(701), + [anon_sym_esac] = ACTIONS(701), + [anon_sym_PIPE] = ACTIONS(701), + [anon_sym_SEMI_SEMI] = ACTIONS(699), + [anon_sym_PIPE_AMP] = ACTIONS(699), + [anon_sym_AMP_AMP] = ACTIONS(699), + [anon_sym_PIPE_PIPE] = ACTIONS(699), + [sym__special_characters] = ACTIONS(699), + [anon_sym_DQUOTE] = ACTIONS(699), + [anon_sym_DOLLAR] = ACTIONS(701), + [sym_raw_string] = ACTIONS(699), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(699), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(699), + [anon_sym_BQUOTE] = ACTIONS(699), + [anon_sym_LT_LPAREN] = ACTIONS(699), + [anon_sym_GT_LPAREN] = ACTIONS(699), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(701), + [sym_word] = ACTIONS(701), + [anon_sym_LF] = ACTIONS(699), + [anon_sym_AMP] = ACTIONS(701), + }, + [2171] = { + [sym_simple_expansion] = STATE(148), + [sym_expansion] = STATE(148), + [sym_command_substitution] = STATE(148), + [aux_sym_string_repeat1] = STATE(2335), + [anon_sym_DQUOTE] = ACTIONS(5352), + [anon_sym_DOLLAR] = ACTIONS(5354), + [sym__string_content] = ACTIONS(273), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(277), + [anon_sym_BQUOTE] = ACTIONS(279), + [sym_comment] = ACTIONS(281), + }, + [2172] = { + [sym_string] = STATE(2337), + [anon_sym_DASH] = ACTIONS(5356), + [anon_sym_DQUOTE] = ACTIONS(5013), + [anon_sym_DOLLAR] = ACTIONS(5356), + [sym_raw_string] = ACTIONS(5358), + [anon_sym_POUND] = ACTIONS(5356), + [sym_comment] = ACTIONS(281), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5360), + [anon_sym_STAR] = ACTIONS(5362), + [anon_sym_AT] = ACTIONS(5362), + [anon_sym_QMARK] = ACTIONS(5362), + [anon_sym_0] = ACTIONS(5360), + [anon_sym__] = ACTIONS(5360), + }, + [2173] = { + [aux_sym_concatenation_repeat1] = STATE(2332), + [sym__concat] = ACTIONS(5350), + [sym_variable_name] = ACTIONS(715), + [anon_sym_SEMI] = ACTIONS(717), + [anon_sym_esac] = ACTIONS(717), + [anon_sym_PIPE] = ACTIONS(717), + [anon_sym_SEMI_SEMI] = ACTIONS(715), + [anon_sym_PIPE_AMP] = ACTIONS(715), + [anon_sym_AMP_AMP] = ACTIONS(715), + [anon_sym_PIPE_PIPE] = ACTIONS(715), + [sym__special_characters] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(715), + [anon_sym_DOLLAR] = ACTIONS(717), + [sym_raw_string] = ACTIONS(715), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(715), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(715), + [anon_sym_BQUOTE] = ACTIONS(715), + [anon_sym_LT_LPAREN] = ACTIONS(715), + [anon_sym_GT_LPAREN] = ACTIONS(715), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(717), + [sym_word] = ACTIONS(717), + [anon_sym_LF] = ACTIONS(715), + [anon_sym_AMP] = ACTIONS(717), + }, + [2174] = { + [sym_subscript] = STATE(2342), + [sym_variable_name] = ACTIONS(5364), + [anon_sym_BANG] = ACTIONS(5366), + [anon_sym_DASH] = ACTIONS(5368), + [anon_sym_DOLLAR] = ACTIONS(5368), + [anon_sym_POUND] = ACTIONS(5366), + [sym_comment] = ACTIONS(281), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5370), + [anon_sym_STAR] = ACTIONS(5372), + [anon_sym_AT] = ACTIONS(5372), + [anon_sym_QMARK] = ACTIONS(5372), + [anon_sym_0] = ACTIONS(5370), + [anon_sym__] = ACTIONS(5370), + }, + [2175] = { + [sym__terminated_statement] = STATE(2345), + [sym_for_statement] = STATE(2343), + [sym_c_style_for_statement] = STATE(2343), + [sym_while_statement] = STATE(2343), + [sym_if_statement] = STATE(2343), + [sym_case_statement] = STATE(2343), + [sym_function_definition] = STATE(2343), + [sym_subshell] = STATE(2343), + [sym_pipeline] = STATE(2343), + [sym_list] = STATE(2343), + [sym_negated_command] = STATE(2343), + [sym_test_command] = STATE(2343), + [sym_declaration_command] = STATE(2343), + [sym_unset_command] = STATE(2343), + [sym_command] = STATE(2343), + [sym_command_name] = STATE(92), + [sym_variable_assignment] = STATE(2344), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(96), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), + [aux_sym__statements_repeat1] = STATE(2345), + [aux_sym_command_repeat1] = STATE(96), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(137), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(149), + [anon_sym_declare] = ACTIONS(151), + [anon_sym_typeset] = ACTIONS(151), + [anon_sym_export] = ACTIONS(151), + [anon_sym_readonly] = ACTIONS(151), + [anon_sym_local] = ACTIONS(151), + [anon_sym_unset] = ACTIONS(153), + [anon_sym_unsetenv] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(159), + }, + [2176] = { + [sym__terminated_statement] = STATE(2348), + [sym_for_statement] = STATE(2346), + [sym_c_style_for_statement] = STATE(2346), + [sym_while_statement] = STATE(2346), + [sym_if_statement] = STATE(2346), + [sym_case_statement] = STATE(2346), + [sym_function_definition] = STATE(2346), + [sym_subshell] = STATE(2346), + [sym_pipeline] = STATE(2346), + [sym_list] = STATE(2346), + [sym_negated_command] = STATE(2346), + [sym_test_command] = STATE(2346), + [sym_declaration_command] = STATE(2346), + [sym_unset_command] = STATE(2346), + [sym_command] = STATE(2346), + [sym_command_name] = STATE(173), + [sym_variable_assignment] = STATE(2347), + [sym_subscript] = STATE(66), + [sym_file_redirect] = STATE(176), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(60), + [sym_simple_expansion] = STATE(60), + [sym_string_expansion] = STATE(60), + [sym_expansion] = STATE(60), + [sym_command_substitution] = STATE(60), + [sym_process_substitution] = STATE(60), + [aux_sym__statements_repeat1] = STATE(2348), + [aux_sym_command_repeat1] = STATE(176), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(95), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(305), + [anon_sym_while] = ACTIONS(307), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(311), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(315), + [anon_sym_declare] = ACTIONS(317), + [anon_sym_typeset] = ACTIONS(317), + [anon_sym_export] = ACTIONS(317), + [anon_sym_readonly] = ACTIONS(317), + [anon_sym_local] = ACTIONS(317), + [anon_sym_unset] = ACTIONS(319), + [anon_sym_unsetenv] = ACTIONS(319), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(115), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(321), + }, + [2177] = { + [sym__terminated_statement] = STATE(2351), + [sym_for_statement] = STATE(2349), + [sym_c_style_for_statement] = STATE(2349), + [sym_while_statement] = STATE(2349), + [sym_if_statement] = STATE(2349), + [sym_case_statement] = STATE(2349), + [sym_function_definition] = STATE(2349), + [sym_subshell] = STATE(2349), + [sym_pipeline] = STATE(2349), + [sym_list] = STATE(2349), + [sym_negated_command] = STATE(2349), + [sym_test_command] = STATE(2349), + [sym_declaration_command] = STATE(2349), + [sym_unset_command] = STATE(2349), + [sym_command] = STATE(2349), + [sym_command_name] = STATE(92), + [sym_variable_assignment] = STATE(2350), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(96), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), + [aux_sym__statements_repeat1] = STATE(2351), + [aux_sym_command_repeat1] = STATE(96), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(137), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(149), + [anon_sym_declare] = ACTIONS(151), + [anon_sym_typeset] = ACTIONS(151), + [anon_sym_export] = ACTIONS(151), + [anon_sym_readonly] = ACTIONS(151), + [anon_sym_local] = ACTIONS(151), + [anon_sym_unset] = ACTIONS(153), + [anon_sym_unsetenv] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(159), + }, + [2178] = { + [anon_sym_EQ] = ACTIONS(5348), + [anon_sym_PLUS_EQ] = ACTIONS(5348), + [sym_comment] = ACTIONS(55), + }, + [2179] = { + [sym_variable_assignment] = STATE(2352), + [sym_subscript] = STATE(2178), + [sym_concatenation] = STATE(2352), + [sym_string] = STATE(2173), + [sym_simple_expansion] = STATE(2173), + [sym_string_expansion] = STATE(2173), + [sym_expansion] = STATE(2173), + [sym_command_substitution] = STATE(2173), + [sym_process_substitution] = STATE(2173), + [aux_sym_declaration_command_repeat1] = STATE(2352), + [sym_variable_name] = ACTIONS(5009), + [anon_sym_SEMI] = ACTIONS(731), + [anon_sym_esac] = ACTIONS(731), + [anon_sym_PIPE] = ACTIONS(731), + [anon_sym_SEMI_SEMI] = ACTIONS(729), + [anon_sym_PIPE_AMP] = ACTIONS(729), + [anon_sym_AMP_AMP] = ACTIONS(729), + [anon_sym_PIPE_PIPE] = ACTIONS(729), + [sym__special_characters] = ACTIONS(5011), + [anon_sym_DQUOTE] = ACTIONS(5013), + [anon_sym_DOLLAR] = ACTIONS(5015), + [sym_raw_string] = ACTIONS(5017), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5019), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5021), + [anon_sym_BQUOTE] = ACTIONS(5023), + [anon_sym_LT_LPAREN] = ACTIONS(5025), + [anon_sym_GT_LPAREN] = ACTIONS(5025), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5374), + [sym_word] = ACTIONS(5029), + [anon_sym_LF] = ACTIONS(729), + [anon_sym_AMP] = ACTIONS(731), + }, + [2180] = { + [aux_sym_concatenation_repeat1] = STATE(2354), + [sym__concat] = ACTIONS(5376), + [anon_sym_SEMI] = ACTIONS(739), + [anon_sym_esac] = ACTIONS(739), + [anon_sym_PIPE] = ACTIONS(739), + [anon_sym_SEMI_SEMI] = ACTIONS(737), + [anon_sym_PIPE_AMP] = ACTIONS(737), + [anon_sym_AMP_AMP] = ACTIONS(737), + [anon_sym_PIPE_PIPE] = ACTIONS(737), + [sym__special_characters] = ACTIONS(737), + [anon_sym_DQUOTE] = ACTIONS(737), + [anon_sym_DOLLAR] = ACTIONS(739), + [sym_raw_string] = ACTIONS(737), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(737), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(737), + [anon_sym_BQUOTE] = ACTIONS(737), + [anon_sym_LT_LPAREN] = ACTIONS(737), + [anon_sym_GT_LPAREN] = ACTIONS(737), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(739), + [sym_word] = ACTIONS(739), + [anon_sym_LF] = ACTIONS(737), + [anon_sym_AMP] = ACTIONS(739), + }, + [2181] = { + [sym_simple_expansion] = STATE(148), + [sym_expansion] = STATE(148), + [sym_command_substitution] = STATE(148), + [aux_sym_string_repeat1] = STATE(2357), + [anon_sym_DQUOTE] = ACTIONS(5378), + [anon_sym_DOLLAR] = ACTIONS(5380), + [sym__string_content] = ACTIONS(273), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(277), + [anon_sym_BQUOTE] = ACTIONS(279), + [sym_comment] = ACTIONS(281), + }, + [2182] = { + [sym_string] = STATE(2359), + [anon_sym_DASH] = ACTIONS(5382), + [anon_sym_DQUOTE] = ACTIONS(5033), + [anon_sym_DOLLAR] = ACTIONS(5382), + [sym_raw_string] = ACTIONS(5384), + [anon_sym_POUND] = ACTIONS(5382), + [sym_comment] = ACTIONS(281), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5386), + [anon_sym_STAR] = ACTIONS(5388), + [anon_sym_AT] = ACTIONS(5388), + [anon_sym_QMARK] = ACTIONS(5388), + [anon_sym_0] = ACTIONS(5386), + [anon_sym__] = ACTIONS(5386), + }, + [2183] = { + [aux_sym_concatenation_repeat1] = STATE(2354), + [sym__concat] = ACTIONS(5376), + [anon_sym_SEMI] = ACTIONS(755), + [anon_sym_esac] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_SEMI_SEMI] = ACTIONS(753), + [anon_sym_PIPE_AMP] = ACTIONS(753), + [anon_sym_AMP_AMP] = ACTIONS(753), + [anon_sym_PIPE_PIPE] = ACTIONS(753), + [sym__special_characters] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(753), + [anon_sym_DOLLAR] = ACTIONS(755), + [sym_raw_string] = ACTIONS(753), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(753), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(753), + [anon_sym_LT_LPAREN] = ACTIONS(753), + [anon_sym_GT_LPAREN] = ACTIONS(753), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(755), + [sym_word] = ACTIONS(755), + [anon_sym_LF] = ACTIONS(753), + [anon_sym_AMP] = ACTIONS(755), + }, + [2184] = { + [sym_subscript] = STATE(2364), + [sym_variable_name] = ACTIONS(5390), + [anon_sym_BANG] = ACTIONS(5392), + [anon_sym_DASH] = ACTIONS(5394), + [anon_sym_DOLLAR] = ACTIONS(5394), + [anon_sym_POUND] = ACTIONS(5392), + [sym_comment] = ACTIONS(281), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5396), + [anon_sym_STAR] = ACTIONS(5398), + [anon_sym_AT] = ACTIONS(5398), + [anon_sym_QMARK] = ACTIONS(5398), + [anon_sym_0] = ACTIONS(5396), + [anon_sym__] = ACTIONS(5396), + }, + [2185] = { + [sym__terminated_statement] = STATE(2367), + [sym_for_statement] = STATE(2365), + [sym_c_style_for_statement] = STATE(2365), + [sym_while_statement] = STATE(2365), + [sym_if_statement] = STATE(2365), + [sym_case_statement] = STATE(2365), + [sym_function_definition] = STATE(2365), + [sym_subshell] = STATE(2365), + [sym_pipeline] = STATE(2365), + [sym_list] = STATE(2365), + [sym_negated_command] = STATE(2365), + [sym_test_command] = STATE(2365), + [sym_declaration_command] = STATE(2365), + [sym_unset_command] = STATE(2365), + [sym_command] = STATE(2365), + [sym_command_name] = STATE(92), + [sym_variable_assignment] = STATE(2366), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(96), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), + [aux_sym__statements_repeat1] = STATE(2367), + [aux_sym_command_repeat1] = STATE(96), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(137), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(149), + [anon_sym_declare] = ACTIONS(151), + [anon_sym_typeset] = ACTIONS(151), + [anon_sym_export] = ACTIONS(151), + [anon_sym_readonly] = ACTIONS(151), + [anon_sym_local] = ACTIONS(151), + [anon_sym_unset] = ACTIONS(153), + [anon_sym_unsetenv] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(159), + }, + [2186] = { + [sym__terminated_statement] = STATE(2370), + [sym_for_statement] = STATE(2368), + [sym_c_style_for_statement] = STATE(2368), + [sym_while_statement] = STATE(2368), + [sym_if_statement] = STATE(2368), + [sym_case_statement] = STATE(2368), + [sym_function_definition] = STATE(2368), + [sym_subshell] = STATE(2368), + [sym_pipeline] = STATE(2368), + [sym_list] = STATE(2368), + [sym_negated_command] = STATE(2368), + [sym_test_command] = STATE(2368), + [sym_declaration_command] = STATE(2368), + [sym_unset_command] = STATE(2368), + [sym_command] = STATE(2368), + [sym_command_name] = STATE(173), + [sym_variable_assignment] = STATE(2369), + [sym_subscript] = STATE(66), + [sym_file_redirect] = STATE(176), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(60), + [sym_simple_expansion] = STATE(60), + [sym_string_expansion] = STATE(60), + [sym_expansion] = STATE(60), + [sym_command_substitution] = STATE(60), + [sym_process_substitution] = STATE(60), + [aux_sym__statements_repeat1] = STATE(2370), + [aux_sym_command_repeat1] = STATE(176), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(95), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(305), + [anon_sym_while] = ACTIONS(307), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(311), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(315), + [anon_sym_declare] = ACTIONS(317), + [anon_sym_typeset] = ACTIONS(317), + [anon_sym_export] = ACTIONS(317), + [anon_sym_readonly] = ACTIONS(317), + [anon_sym_local] = ACTIONS(317), + [anon_sym_unset] = ACTIONS(319), + [anon_sym_unsetenv] = ACTIONS(319), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(115), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(321), + }, + [2187] = { + [sym__terminated_statement] = STATE(2373), + [sym_for_statement] = STATE(2371), + [sym_c_style_for_statement] = STATE(2371), + [sym_while_statement] = STATE(2371), + [sym_if_statement] = STATE(2371), + [sym_case_statement] = STATE(2371), + [sym_function_definition] = STATE(2371), + [sym_subshell] = STATE(2371), + [sym_pipeline] = STATE(2371), + [sym_list] = STATE(2371), + [sym_negated_command] = STATE(2371), + [sym_test_command] = STATE(2371), + [sym_declaration_command] = STATE(2371), + [sym_unset_command] = STATE(2371), + [sym_command] = STATE(2371), + [sym_command_name] = STATE(92), + [sym_variable_assignment] = STATE(2372), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(96), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), + [aux_sym__statements_repeat1] = STATE(2373), + [aux_sym_command_repeat1] = STATE(96), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(137), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(149), + [anon_sym_declare] = ACTIONS(151), + [anon_sym_typeset] = ACTIONS(151), + [anon_sym_export] = ACTIONS(151), + [anon_sym_readonly] = ACTIONS(151), + [anon_sym_local] = ACTIONS(151), + [anon_sym_unset] = ACTIONS(153), + [anon_sym_unsetenv] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(159), + }, + [2188] = { + [sym_concatenation] = STATE(2374), + [sym_string] = STATE(2183), + [sym_simple_expansion] = STATE(2183), + [sym_string_expansion] = STATE(2183), + [sym_expansion] = STATE(2183), + [sym_command_substitution] = STATE(2183), + [sym_process_substitution] = STATE(2183), + [aux_sym_unset_command_repeat1] = STATE(2374), + [anon_sym_SEMI] = ACTIONS(769), + [anon_sym_esac] = ACTIONS(769), + [anon_sym_PIPE] = ACTIONS(769), + [anon_sym_SEMI_SEMI] = ACTIONS(767), + [anon_sym_PIPE_AMP] = ACTIONS(767), + [anon_sym_AMP_AMP] = ACTIONS(767), + [anon_sym_PIPE_PIPE] = ACTIONS(767), + [sym__special_characters] = ACTIONS(5031), + [anon_sym_DQUOTE] = ACTIONS(5033), + [anon_sym_DOLLAR] = ACTIONS(5035), + [sym_raw_string] = ACTIONS(5037), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5039), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5041), + [anon_sym_BQUOTE] = ACTIONS(5043), + [anon_sym_LT_LPAREN] = ACTIONS(5045), + [anon_sym_GT_LPAREN] = ACTIONS(5045), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5400), + [sym_word] = ACTIONS(5049), + [anon_sym_LF] = ACTIONS(767), + [anon_sym_AMP] = ACTIONS(769), + }, + [2189] = { + [sym_string] = STATE(2375), + [sym_simple_expansion] = STATE(2375), + [sym_string_expansion] = STATE(2375), + [sym_expansion] = STATE(2375), + [sym_command_substitution] = STATE(2375), + [sym_process_substitution] = STATE(2375), + [sym__special_characters] = ACTIONS(5402), + [anon_sym_DQUOTE] = ACTIONS(4469), + [anon_sym_DOLLAR] = ACTIONS(4471), + [sym_raw_string] = ACTIONS(5402), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4475), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4477), + [anon_sym_BQUOTE] = ACTIONS(4479), + [anon_sym_LT_LPAREN] = ACTIONS(4481), + [anon_sym_GT_LPAREN] = ACTIONS(4481), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(5402), + }, + [2190] = { + [aux_sym_concatenation_repeat1] = STATE(2376), [sym__simple_heredoc_body] = ACTIONS(807), [sym__heredoc_body_beginning] = ACTIONS(807), [sym_file_descriptor] = ACTIONS(807), - [sym__concat] = ACTIONS(807), + [sym__concat] = ACTIONS(5051), [anon_sym_SEMI] = ACTIONS(809), [anon_sym_esac] = ACTIONS(809), [anon_sym_PIPE] = ACTIONS(809), @@ -59061,12 +64113,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(807), [anon_sym_LT_LPAREN] = ACTIONS(807), [anon_sym_GT_LPAREN] = ACTIONS(807), - [sym_comment] = ACTIONS(53), + [sym_comment] = ACTIONS(55), [sym_word] = ACTIONS(809), [anon_sym_LF] = ACTIONS(807), [anon_sym_AMP] = ACTIONS(809), }, - [2110] = { + [2191] = { [sym__simple_heredoc_body] = ACTIONS(811), [sym__heredoc_body_beginning] = ACTIONS(811), [sym_file_descriptor] = ACTIONS(811), @@ -59099,3778 +64151,3576 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(811), [anon_sym_LT_LPAREN] = ACTIONS(811), [anon_sym_GT_LPAREN] = ACTIONS(811), - [sym_comment] = ACTIONS(53), + [sym_comment] = ACTIONS(55), [sym_word] = ACTIONS(813), [anon_sym_LF] = ACTIONS(811), [anon_sym_AMP] = ACTIONS(813), }, - [2111] = { - [anon_sym_LBRACK] = ACTIONS(815), - [anon_sym_EQ] = ACTIONS(5267), - [sym_comment] = ACTIONS(53), - }, - [2112] = { - [sym_subscript] = STATE(2313), - [sym_variable_name] = ACTIONS(5269), - [anon_sym_DOLLAR] = ACTIONS(5271), - [anon_sym_DASH] = ACTIONS(5271), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5273), - [anon_sym_STAR] = ACTIONS(5275), - [anon_sym_AT] = ACTIONS(5275), - [anon_sym_QMARK] = ACTIONS(5275), - [anon_sym_0] = ACTIONS(5273), - [anon_sym__] = ACTIONS(5273), - }, - [2113] = { - [sym_concatenation] = STATE(2316), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(2316), - [anon_sym_RBRACE] = ACTIONS(5277), - [anon_sym_EQ] = ACTIONS(5279), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(5281), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(5283), - [anon_sym_COLON] = ACTIONS(5279), - [anon_sym_COLON_QMARK] = ACTIONS(5279), - [anon_sym_COLON_DASH] = ACTIONS(5279), - [anon_sym_PERCENT] = ACTIONS(5279), - [anon_sym_DASH] = ACTIONS(5279), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [2114] = { - [sym_concatenation] = STATE(2319), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(2319), - [anon_sym_RBRACE] = ACTIONS(5285), - [anon_sym_EQ] = ACTIONS(5287), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(5289), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(5291), - [anon_sym_COLON] = ACTIONS(5287), - [anon_sym_COLON_QMARK] = ACTIONS(5287), - [anon_sym_COLON_DASH] = ACTIONS(5287), - [anon_sym_PERCENT] = ACTIONS(5287), - [anon_sym_DASH] = ACTIONS(5287), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [2115] = { - [anon_sym_SEMI] = ACTIONS(5293), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(5295), - [anon_sym_SEMI_SEMI] = ACTIONS(5297), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(5297), - [anon_sym_AMP] = ACTIONS(5293), - }, - [2116] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(5293), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(5295), - [anon_sym_SEMI_SEMI] = ACTIONS(5297), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(5297), - [anon_sym_AMP] = ACTIONS(5293), - }, - [2117] = { - [sym__terminated_statement] = STATE(190), - [sym_for_statement] = STATE(2322), - [sym_c_style_for_statement] = STATE(2322), - [sym_while_statement] = STATE(2322), - [sym_if_statement] = STATE(2322), - [sym_case_statement] = STATE(2322), - [sym_function_definition] = STATE(2322), - [sym_subshell] = STATE(2322), - [sym_pipeline] = STATE(2322), - [sym_list] = STATE(2322), - [sym_negated_command] = STATE(2322), - [sym_test_command] = STATE(2322), - [sym_declaration_command] = STATE(2322), - [sym_unset_command] = STATE(2322), - [sym_command] = STATE(2322), - [sym_command_name] = STATE(78), - [sym_variable_assignment] = STATE(2323), - [sym_subscript] = STATE(80), - [sym_file_redirect] = STATE(82), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(75), - [sym_simple_expansion] = STATE(75), - [sym_string_expansion] = STATE(75), - [sym_expansion] = STATE(75), - [sym_command_substitution] = STATE(75), - [sym_process_substitution] = STATE(75), - [aux_sym__statements_repeat1] = STATE(190), - [aux_sym_command_repeat1] = STATE(82), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(111), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(119), - [anon_sym_declare] = ACTIONS(121), - [anon_sym_typeset] = ACTIONS(121), - [anon_sym_export] = ACTIONS(121), - [anon_sym_readonly] = ACTIONS(121), - [anon_sym_local] = ACTIONS(121), - [anon_sym_unset] = ACTIONS(123), - [anon_sym_unsetenv] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), - }, - [2118] = { - [anon_sym_SEMI] = ACTIONS(5299), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_SEMI_SEMI] = ACTIONS(5301), - [anon_sym_PIPE_AMP] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(883), - [anon_sym_PIPE_PIPE] = ACTIONS(883), - [anon_sym_BQUOTE] = ACTIONS(5295), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(5301), - [anon_sym_AMP] = ACTIONS(5299), - }, - [2119] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(5299), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_SEMI_SEMI] = ACTIONS(5301), - [anon_sym_PIPE_AMP] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(883), - [anon_sym_PIPE_PIPE] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(5295), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(5301), - [anon_sym_AMP] = ACTIONS(5299), - }, - [2120] = { - [sym__terminated_statement] = STATE(190), - [sym_for_statement] = STATE(2325), - [sym_c_style_for_statement] = STATE(2325), - [sym_while_statement] = STATE(2325), - [sym_if_statement] = STATE(2325), - [sym_case_statement] = STATE(2325), - [sym_function_definition] = STATE(2325), - [sym_subshell] = STATE(2325), - [sym_pipeline] = STATE(2325), - [sym_list] = STATE(2325), - [sym_negated_command] = STATE(2325), - [sym_test_command] = STATE(2325), - [sym_declaration_command] = STATE(2325), - [sym_unset_command] = STATE(2325), - [sym_command] = STATE(2325), - [sym_command_name] = STATE(165), - [sym_variable_assignment] = STATE(2326), - [sym_subscript] = STATE(53), - [sym_file_redirect] = STATE(168), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(47), - [sym_simple_expansion] = STATE(47), - [sym_string_expansion] = STATE(47), - [sym_expansion] = STATE(47), - [sym_command_substitution] = STATE(47), - [sym_process_substitution] = STATE(47), - [aux_sym__statements_repeat1] = STATE(190), - [aux_sym_command_repeat1] = STATE(168), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(69), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(289), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(291), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(293), - [anon_sym_LBRACK] = ACTIONS(295), - [anon_sym_LBRACK_LBRACK] = ACTIONS(297), - [anon_sym_declare] = ACTIONS(299), - [anon_sym_typeset] = ACTIONS(299), - [anon_sym_export] = ACTIONS(299), - [anon_sym_readonly] = ACTIONS(299), - [anon_sym_local] = ACTIONS(299), - [anon_sym_unset] = ACTIONS(301), - [anon_sym_unsetenv] = ACTIONS(301), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(87), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(303), - }, - [2121] = { - [anon_sym_SEMI] = ACTIONS(5303), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(5305), - [anon_sym_SEMI_SEMI] = ACTIONS(5307), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(5307), - [anon_sym_AMP] = ACTIONS(5303), - }, - [2122] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(5303), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(5305), - [anon_sym_SEMI_SEMI] = ACTIONS(5307), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(5307), - [anon_sym_AMP] = ACTIONS(5303), - }, - [2123] = { - [sym__terminated_statement] = STATE(190), - [sym_for_statement] = STATE(2329), - [sym_c_style_for_statement] = STATE(2329), - [sym_while_statement] = STATE(2329), - [sym_if_statement] = STATE(2329), - [sym_case_statement] = STATE(2329), - [sym_function_definition] = STATE(2329), - [sym_subshell] = STATE(2329), - [sym_pipeline] = STATE(2329), - [sym_list] = STATE(2329), - [sym_negated_command] = STATE(2329), - [sym_test_command] = STATE(2329), - [sym_declaration_command] = STATE(2329), - [sym_unset_command] = STATE(2329), - [sym_command] = STATE(2329), - [sym_command_name] = STATE(78), - [sym_variable_assignment] = STATE(2330), - [sym_subscript] = STATE(80), - [sym_file_redirect] = STATE(82), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(75), - [sym_simple_expansion] = STATE(75), - [sym_string_expansion] = STATE(75), - [sym_expansion] = STATE(75), - [sym_command_substitution] = STATE(75), - [sym_process_substitution] = STATE(75), - [aux_sym__statements_repeat1] = STATE(190), - [aux_sym_command_repeat1] = STATE(82), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(111), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(119), - [anon_sym_declare] = ACTIONS(121), - [anon_sym_typeset] = ACTIONS(121), - [anon_sym_export] = ACTIONS(121), - [anon_sym_readonly] = ACTIONS(121), - [anon_sym_local] = ACTIONS(121), - [anon_sym_unset] = ACTIONS(123), - [anon_sym_unsetenv] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), - }, - [2124] = { - [anon_sym_RPAREN] = ACTIONS(5309), - [sym_comment] = ACTIONS(53), - }, - [2125] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_esac] = ACTIONS(905), - [anon_sym_SEMI_SEMI] = ACTIONS(901), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(901), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), - }, - [2126] = { - [sym_for_statement] = STATE(497), - [sym_c_style_for_statement] = STATE(497), - [sym_while_statement] = STATE(497), - [sym_if_statement] = STATE(497), - [sym_case_statement] = STATE(497), - [sym_function_definition] = STATE(497), - [sym_subshell] = STATE(497), - [sym_pipeline] = STATE(497), - [sym_list] = STATE(497), - [sym_negated_command] = STATE(497), - [sym_test_command] = STATE(497), - [sym_declaration_command] = STATE(497), - [sym_unset_command] = STATE(497), - [sym_command] = STATE(497), - [sym_command_name] = STATE(1867), - [sym_variable_assignment] = STATE(2332), - [sym_subscript] = STATE(1869), - [sym_file_redirect] = STATE(1872), - [sym_concatenation] = STATE(1870), - [sym_string] = STATE(1860), - [sym_simple_expansion] = STATE(1860), - [sym_string_expansion] = STATE(1860), - [sym_expansion] = STATE(1860), - [sym_command_substitution] = STATE(1860), - [sym_process_substitution] = STATE(1860), - [aux_sym_command_repeat1] = STATE(1872), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(4245), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(4247), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(4253), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(4255), - [anon_sym_LBRACK] = ACTIONS(4257), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4259), - [anon_sym_declare] = ACTIONS(4261), - [anon_sym_typeset] = ACTIONS(4261), - [anon_sym_export] = ACTIONS(4261), - [anon_sym_readonly] = ACTIONS(4261), - [anon_sym_local] = ACTIONS(4261), - [anon_sym_unset] = ACTIONS(4263), - [anon_sym_unsetenv] = ACTIONS(4263), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(4265), - [anon_sym_DQUOTE] = ACTIONS(4267), - [anon_sym_DOLLAR] = ACTIONS(4269), - [sym_raw_string] = ACTIONS(4271), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4273), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4275), - [anon_sym_BQUOTE] = ACTIONS(4277), - [anon_sym_LT_LPAREN] = ACTIONS(4279), - [anon_sym_GT_LPAREN] = ACTIONS(4279), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4281), - }, - [2127] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_esac] = ACTIONS(5311), - [anon_sym_SEMI_SEMI] = ACTIONS(901), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(5313), - [anon_sym_DQUOTE] = ACTIONS(5315), - [anon_sym_DOLLAR] = ACTIONS(5313), - [sym_raw_string] = ACTIONS(5315), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5315), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5315), - [anon_sym_BQUOTE] = ACTIONS(5315), - [anon_sym_LT_LPAREN] = ACTIONS(5315), - [anon_sym_GT_LPAREN] = ACTIONS(5315), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5313), - }, - [2128] = { - [sym_for_statement] = STATE(2333), - [sym_c_style_for_statement] = STATE(2333), - [sym_while_statement] = STATE(2333), - [sym_if_statement] = STATE(2333), - [sym_case_statement] = STATE(2333), - [sym_function_definition] = STATE(2333), - [sym_subshell] = STATE(2333), - [sym_pipeline] = STATE(2333), - [sym_list] = STATE(2333), - [sym_negated_command] = STATE(2333), - [sym_test_command] = STATE(2333), - [sym_declaration_command] = STATE(2333), - [sym_unset_command] = STATE(2333), - [sym_command] = STATE(2333), - [sym_command_name] = STATE(1867), - [sym_variable_assignment] = STATE(2334), - [sym_subscript] = STATE(1869), - [sym_file_redirect] = STATE(1872), - [sym_concatenation] = STATE(1870), - [sym_string] = STATE(1860), - [sym_simple_expansion] = STATE(1860), - [sym_string_expansion] = STATE(1860), - [sym_expansion] = STATE(1860), - [sym_command_substitution] = STATE(1860), - [sym_process_substitution] = STATE(1860), - [aux_sym_command_repeat1] = STATE(1872), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(4245), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(4247), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(4253), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(4255), - [anon_sym_LBRACK] = ACTIONS(4257), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4259), - [anon_sym_declare] = ACTIONS(4261), - [anon_sym_typeset] = ACTIONS(4261), - [anon_sym_export] = ACTIONS(4261), - [anon_sym_readonly] = ACTIONS(4261), - [anon_sym_local] = ACTIONS(4261), - [anon_sym_unset] = ACTIONS(4263), - [anon_sym_unsetenv] = ACTIONS(4263), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(4265), - [anon_sym_DQUOTE] = ACTIONS(4267), - [anon_sym_DOLLAR] = ACTIONS(4269), - [sym_raw_string] = ACTIONS(4271), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4273), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4275), - [anon_sym_BQUOTE] = ACTIONS(4277), - [anon_sym_LT_LPAREN] = ACTIONS(4279), - [anon_sym_GT_LPAREN] = ACTIONS(4279), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4281), - }, - [2129] = { - [anon_sym_LT] = ACTIONS(5317), - [anon_sym_GT] = ACTIONS(5317), - [anon_sym_GT_GT] = ACTIONS(5319), - [anon_sym_AMP_GT] = ACTIONS(5317), - [anon_sym_AMP_GT_GT] = ACTIONS(5319), - [anon_sym_LT_AMP] = ACTIONS(5319), - [anon_sym_GT_AMP] = ACTIONS(5319), - [sym_comment] = ACTIONS(53), - }, - [2130] = { - [sym_concatenation] = STATE(2338), - [sym_string] = STATE(2337), - [sym_simple_expansion] = STATE(2337), - [sym_string_expansion] = STATE(2337), - [sym_expansion] = STATE(2337), - [sym_command_substitution] = STATE(2337), - [sym_process_substitution] = STATE(2337), - [sym__special_characters] = ACTIONS(5321), - [anon_sym_DQUOTE] = ACTIONS(5323), - [anon_sym_DOLLAR] = ACTIONS(4269), - [sym_raw_string] = ACTIONS(5325), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5327), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5329), - [anon_sym_BQUOTE] = ACTIONS(5331), - [anon_sym_LT_LPAREN] = ACTIONS(5333), - [anon_sym_GT_LPAREN] = ACTIONS(5333), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(5325), - [sym_regex] = ACTIONS(5335), - }, - [2131] = { - [sym_concatenation] = STATE(511), - [sym_string] = STATE(2342), - [sym_simple_expansion] = STATE(2342), - [sym_string_expansion] = STATE(2342), - [sym_expansion] = STATE(2342), - [sym_command_substitution] = STATE(2342), - [sym_process_substitution] = STATE(2342), - [sym__special_characters] = ACTIONS(5337), - [anon_sym_DQUOTE] = ACTIONS(5339), - [anon_sym_DOLLAR] = ACTIONS(5341), - [sym_raw_string] = ACTIONS(5343), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5345), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5347), - [anon_sym_BQUOTE] = ACTIONS(5349), - [anon_sym_LT_LPAREN] = ACTIONS(5351), - [anon_sym_GT_LPAREN] = ACTIONS(5351), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5343), - }, - [2132] = { - [sym_concatenation] = STATE(515), - [sym_string] = STATE(2348), - [sym_simple_expansion] = STATE(2348), - [sym_string_expansion] = STATE(2348), - [sym_expansion] = STATE(2348), - [sym_command_substitution] = STATE(2348), - [sym_process_substitution] = STATE(2348), - [sym__special_characters] = ACTIONS(5353), - [anon_sym_DQUOTE] = ACTIONS(5339), - [anon_sym_DOLLAR] = ACTIONS(5341), - [sym_raw_string] = ACTIONS(5355), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5345), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5347), - [anon_sym_BQUOTE] = ACTIONS(5349), - [anon_sym_LT_LPAREN] = ACTIONS(5351), - [anon_sym_GT_LPAREN] = ACTIONS(5351), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5355), - }, - [2133] = { - [aux_sym_concatenation_repeat1] = STATE(2104), - [sym__simple_heredoc_body] = ACTIONS(949), - [sym__heredoc_body_beginning] = ACTIONS(949), - [sym_file_descriptor] = ACTIONS(949), - [sym__concat] = ACTIONS(4869), - [anon_sym_SEMI] = ACTIONS(951), - [anon_sym_esac] = ACTIONS(951), - [anon_sym_PIPE] = ACTIONS(951), - [anon_sym_SEMI_SEMI] = ACTIONS(949), - [anon_sym_PIPE_AMP] = ACTIONS(949), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_PIPE_PIPE] = ACTIONS(949), - [anon_sym_EQ_TILDE] = ACTIONS(951), - [anon_sym_EQ_EQ] = ACTIONS(951), - [anon_sym_LT] = ACTIONS(951), - [anon_sym_GT] = ACTIONS(951), - [anon_sym_GT_GT] = ACTIONS(949), - [anon_sym_AMP_GT] = ACTIONS(951), - [anon_sym_AMP_GT_GT] = ACTIONS(949), - [anon_sym_LT_AMP] = ACTIONS(949), - [anon_sym_GT_AMP] = ACTIONS(949), - [anon_sym_LT_LT] = ACTIONS(951), - [anon_sym_LT_LT_DASH] = ACTIONS(949), - [anon_sym_LT_LT_LT] = ACTIONS(949), - [sym__special_characters] = ACTIONS(949), - [anon_sym_DQUOTE] = ACTIONS(949), - [anon_sym_DOLLAR] = ACTIONS(951), - [sym_raw_string] = ACTIONS(949), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(949), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(949), - [anon_sym_BQUOTE] = ACTIONS(949), - [anon_sym_LT_LPAREN] = ACTIONS(949), - [anon_sym_GT_LPAREN] = ACTIONS(949), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(951), - [anon_sym_LF] = ACTIONS(949), - [anon_sym_AMP] = ACTIONS(951), - }, - [2134] = { - [aux_sym_concatenation_repeat1] = STATE(2104), - [sym__simple_heredoc_body] = ACTIONS(953), - [sym__heredoc_body_beginning] = ACTIONS(953), - [sym_file_descriptor] = ACTIONS(953), - [sym__concat] = ACTIONS(4869), - [anon_sym_SEMI] = ACTIONS(955), - [anon_sym_esac] = ACTIONS(955), - [anon_sym_PIPE] = ACTIONS(955), - [anon_sym_SEMI_SEMI] = ACTIONS(953), - [anon_sym_PIPE_AMP] = ACTIONS(953), - [anon_sym_AMP_AMP] = ACTIONS(953), - [anon_sym_PIPE_PIPE] = ACTIONS(953), - [anon_sym_EQ_TILDE] = ACTIONS(955), - [anon_sym_EQ_EQ] = ACTIONS(955), - [anon_sym_LT] = ACTIONS(955), - [anon_sym_GT] = ACTIONS(955), - [anon_sym_GT_GT] = ACTIONS(953), - [anon_sym_AMP_GT] = ACTIONS(955), - [anon_sym_AMP_GT_GT] = ACTIONS(953), - [anon_sym_LT_AMP] = ACTIONS(953), - [anon_sym_GT_AMP] = ACTIONS(953), - [anon_sym_LT_LT] = ACTIONS(955), - [anon_sym_LT_LT_DASH] = ACTIONS(953), - [anon_sym_LT_LT_LT] = ACTIONS(953), - [sym__special_characters] = ACTIONS(953), - [anon_sym_DQUOTE] = ACTIONS(953), - [anon_sym_DOLLAR] = ACTIONS(955), - [sym_raw_string] = ACTIONS(953), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(953), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(953), - [anon_sym_BQUOTE] = ACTIONS(953), - [anon_sym_LT_LPAREN] = ACTIONS(953), - [anon_sym_GT_LPAREN] = ACTIONS(953), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(955), - [anon_sym_LF] = ACTIONS(953), - [anon_sym_AMP] = ACTIONS(955), - }, - [2135] = { - [sym_file_redirect] = STATE(2349), - [sym_heredoc_redirect] = STATE(2349), - [sym_heredoc_body] = STATE(516), - [sym_herestring_redirect] = STATE(2349), - [aux_sym_while_statement_repeat1] = STATE(2349), - [sym__simple_heredoc_body] = ACTIONS(321), - [sym__heredoc_body_beginning] = ACTIONS(323), - [sym_file_descriptor] = ACTIONS(4909), - [anon_sym_SEMI] = ACTIONS(959), - [anon_sym_esac] = ACTIONS(957), - [anon_sym_PIPE] = ACTIONS(959), - [anon_sym_SEMI_SEMI] = ACTIONS(957), - [anon_sym_PIPE_AMP] = ACTIONS(957), - [anon_sym_AMP_AMP] = ACTIONS(957), - [anon_sym_PIPE_PIPE] = ACTIONS(957), - [anon_sym_LT] = ACTIONS(4913), - [anon_sym_GT] = ACTIONS(4913), - [anon_sym_GT_GT] = ACTIONS(4915), - [anon_sym_AMP_GT] = ACTIONS(4913), - [anon_sym_AMP_GT_GT] = ACTIONS(4915), - [anon_sym_LT_AMP] = ACTIONS(4915), - [anon_sym_GT_AMP] = ACTIONS(4915), - [anon_sym_LT_LT] = ACTIONS(337), - [anon_sym_LT_LT_DASH] = ACTIONS(339), - [anon_sym_LT_LT_LT] = ACTIONS(4917), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(957), - [anon_sym_AMP] = ACTIONS(959), - }, - [2136] = { - [sym_file_redirect] = STATE(2350), - [sym_heredoc_redirect] = STATE(2350), - [sym_heredoc_body] = STATE(516), - [sym_herestring_redirect] = STATE(2350), - [sym_concatenation] = STATE(2351), - [sym_string] = STATE(2134), - [sym_simple_expansion] = STATE(2134), - [sym_string_expansion] = STATE(2134), - [sym_expansion] = STATE(2134), - [sym_command_substitution] = STATE(2134), - [sym_process_substitution] = STATE(2134), - [aux_sym_while_statement_repeat1] = STATE(2350), - [aux_sym_command_repeat2] = STATE(2351), - [sym__simple_heredoc_body] = ACTIONS(321), - [sym__heredoc_body_beginning] = ACTIONS(323), - [sym_file_descriptor] = ACTIONS(4909), - [anon_sym_SEMI] = ACTIONS(959), - [anon_sym_esac] = ACTIONS(959), - [anon_sym_PIPE] = ACTIONS(959), - [anon_sym_SEMI_SEMI] = ACTIONS(957), - [anon_sym_PIPE_AMP] = ACTIONS(957), - [anon_sym_AMP_AMP] = ACTIONS(957), - [anon_sym_PIPE_PIPE] = ACTIONS(957), - [anon_sym_EQ_TILDE] = ACTIONS(4911), - [anon_sym_EQ_EQ] = ACTIONS(4911), - [anon_sym_LT] = ACTIONS(4913), - [anon_sym_GT] = ACTIONS(4913), - [anon_sym_GT_GT] = ACTIONS(4915), - [anon_sym_AMP_GT] = ACTIONS(4913), - [anon_sym_AMP_GT_GT] = ACTIONS(4915), - [anon_sym_LT_AMP] = ACTIONS(4915), - [anon_sym_GT_AMP] = ACTIONS(4915), - [anon_sym_LT_LT] = ACTIONS(337), - [anon_sym_LT_LT_DASH] = ACTIONS(339), - [anon_sym_LT_LT_LT] = ACTIONS(4917), - [sym__special_characters] = ACTIONS(4919), - [anon_sym_DQUOTE] = ACTIONS(4267), - [anon_sym_DOLLAR] = ACTIONS(4269), - [sym_raw_string] = ACTIONS(4921), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4273), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4275), - [anon_sym_BQUOTE] = ACTIONS(4277), - [anon_sym_LT_LPAREN] = ACTIONS(4279), - [anon_sym_GT_LPAREN] = ACTIONS(4279), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4923), - [anon_sym_LF] = ACTIONS(957), - [anon_sym_AMP] = ACTIONS(959), - }, - [2137] = { - [anon_sym_esac] = ACTIONS(5311), - [sym__special_characters] = ACTIONS(5315), - [anon_sym_DQUOTE] = ACTIONS(5315), - [anon_sym_DOLLAR] = ACTIONS(5313), - [sym_raw_string] = ACTIONS(5315), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5315), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5315), - [anon_sym_BQUOTE] = ACTIONS(5315), - [anon_sym_LT_LPAREN] = ACTIONS(5315), - [anon_sym_GT_LPAREN] = ACTIONS(5315), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5313), - }, - [2138] = { - [anon_sym_SEMI] = ACTIONS(4895), - [anon_sym_esac] = ACTIONS(5357), - [anon_sym_PIPE] = ACTIONS(4899), - [anon_sym_SEMI_SEMI] = ACTIONS(5359), - [anon_sym_PIPE_AMP] = ACTIONS(4903), - [anon_sym_AMP_AMP] = ACTIONS(4905), - [anon_sym_PIPE_PIPE] = ACTIONS(4905), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(4907), - [anon_sym_AMP] = ACTIONS(4895), - }, - [2139] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(4895), - [anon_sym_esac] = ACTIONS(5311), - [anon_sym_PIPE] = ACTIONS(4899), - [anon_sym_SEMI_SEMI] = ACTIONS(5359), - [anon_sym_PIPE_AMP] = ACTIONS(4903), - [anon_sym_AMP_AMP] = ACTIONS(4905), - [anon_sym_PIPE_PIPE] = ACTIONS(4905), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(4907), - [anon_sym_AMP] = ACTIONS(4895), - }, - [2140] = { - [sym__terminated_statement] = STATE(2140), - [sym_for_statement] = STATE(2353), - [sym_c_style_for_statement] = STATE(2353), - [sym_while_statement] = STATE(2353), - [sym_if_statement] = STATE(2353), - [sym_case_statement] = STATE(2353), - [sym_function_definition] = STATE(2353), - [sym_subshell] = STATE(2353), - [sym_pipeline] = STATE(2353), - [sym_list] = STATE(2353), - [sym_negated_command] = STATE(2353), - [sym_test_command] = STATE(2353), - [sym_declaration_command] = STATE(2353), - [sym_unset_command] = STATE(2353), - [sym_command] = STATE(2353), - [sym_command_name] = STATE(51), - [sym_variable_assignment] = STATE(2354), - [sym_subscript] = STATE(53), - [sym_file_redirect] = STATE(54), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(47), - [sym_simple_expansion] = STATE(47), - [sym_string_expansion] = STATE(47), - [sym_expansion] = STATE(47), - [sym_command_substitution] = STATE(47), - [sym_process_substitution] = STATE(47), - [aux_sym__statements_repeat1] = STATE(2140), - [aux_sym_command_repeat1] = STATE(54), - [sym_file_descriptor] = ACTIONS(965), - [sym_variable_name] = ACTIONS(968), - [anon_sym_for] = ACTIONS(971), - [anon_sym_while] = ACTIONS(974), - [anon_sym_if] = ACTIONS(977), - [anon_sym_case] = ACTIONS(980), - [anon_sym_esac] = ACTIONS(3449), - [anon_sym_SEMI_SEMI] = ACTIONS(3528), - [anon_sym_function] = ACTIONS(983), - [anon_sym_LPAREN] = ACTIONS(986), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_LBRACK] = ACTIONS(992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(995), - [anon_sym_declare] = ACTIONS(998), - [anon_sym_typeset] = ACTIONS(998), - [anon_sym_export] = ACTIONS(998), - [anon_sym_readonly] = ACTIONS(998), - [anon_sym_local] = ACTIONS(998), - [anon_sym_unset] = ACTIONS(1001), - [anon_sym_unsetenv] = ACTIONS(1001), - [anon_sym_LT] = ACTIONS(1004), - [anon_sym_GT] = ACTIONS(1004), - [anon_sym_GT_GT] = ACTIONS(1007), - [anon_sym_AMP_GT] = ACTIONS(1004), - [anon_sym_AMP_GT_GT] = ACTIONS(1007), - [anon_sym_LT_AMP] = ACTIONS(1007), - [anon_sym_GT_AMP] = ACTIONS(1007), - [sym__special_characters] = ACTIONS(1010), - [anon_sym_DQUOTE] = ACTIONS(1013), - [anon_sym_DOLLAR] = ACTIONS(1016), - [sym_raw_string] = ACTIONS(1019), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1022), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1025), - [anon_sym_BQUOTE] = ACTIONS(1028), - [anon_sym_LT_LPAREN] = ACTIONS(1031), - [anon_sym_GT_LPAREN] = ACTIONS(1031), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1034), - }, - [2141] = { - [sym_file_redirect] = STATE(2350), - [sym_heredoc_redirect] = STATE(2350), - [sym_heredoc_body] = STATE(516), - [sym_herestring_redirect] = STATE(2350), - [sym_concatenation] = STATE(2355), - [sym_string] = STATE(2134), - [sym_simple_expansion] = STATE(2134), - [sym_string_expansion] = STATE(2134), - [sym_expansion] = STATE(2134), - [sym_command_substitution] = STATE(2134), - [sym_process_substitution] = STATE(2134), - [aux_sym_while_statement_repeat1] = STATE(2350), - [aux_sym_command_repeat2] = STATE(2355), - [sym__simple_heredoc_body] = ACTIONS(321), - [sym__heredoc_body_beginning] = ACTIONS(323), - [sym_file_descriptor] = ACTIONS(4909), - [anon_sym_SEMI] = ACTIONS(959), - [anon_sym_esac] = ACTIONS(959), - [anon_sym_PIPE] = ACTIONS(959), - [anon_sym_SEMI_SEMI] = ACTIONS(957), - [anon_sym_PIPE_AMP] = ACTIONS(957), - [anon_sym_AMP_AMP] = ACTIONS(957), - [anon_sym_PIPE_PIPE] = ACTIONS(957), - [anon_sym_EQ_TILDE] = ACTIONS(4911), - [anon_sym_EQ_EQ] = ACTIONS(4911), - [anon_sym_LT] = ACTIONS(4913), - [anon_sym_GT] = ACTIONS(4913), - [anon_sym_GT_GT] = ACTIONS(4915), - [anon_sym_AMP_GT] = ACTIONS(4913), - [anon_sym_AMP_GT_GT] = ACTIONS(4915), - [anon_sym_LT_AMP] = ACTIONS(4915), - [anon_sym_GT_AMP] = ACTIONS(4915), - [anon_sym_LT_LT] = ACTIONS(337), - [anon_sym_LT_LT_DASH] = ACTIONS(339), - [anon_sym_LT_LT_LT] = ACTIONS(4917), - [sym__special_characters] = ACTIONS(4919), - [anon_sym_DQUOTE] = ACTIONS(4267), - [anon_sym_DOLLAR] = ACTIONS(4269), - [sym_raw_string] = ACTIONS(4921), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4273), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4275), - [anon_sym_BQUOTE] = ACTIONS(4277), - [anon_sym_LT_LPAREN] = ACTIONS(4279), - [anon_sym_GT_LPAREN] = ACTIONS(4279), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4923), - [anon_sym_LF] = ACTIONS(957), - [anon_sym_AMP] = ACTIONS(959), - }, - [2142] = { - [sym__terminated_statement] = STATE(2140), - [sym_for_statement] = STATE(2357), - [sym_c_style_for_statement] = STATE(2357), - [sym_while_statement] = STATE(2357), - [sym_if_statement] = STATE(2357), - [sym_case_statement] = STATE(2357), - [sym_function_definition] = STATE(2357), - [sym_subshell] = STATE(2357), - [sym_pipeline] = STATE(2357), - [sym_list] = STATE(2357), - [sym_negated_command] = STATE(2357), - [sym_test_command] = STATE(2357), - [sym_declaration_command] = STATE(2357), - [sym_unset_command] = STATE(2357), - [sym_command] = STATE(2357), - [sym_command_name] = STATE(1867), - [sym_variable_assignment] = STATE(2358), - [sym_subscript] = STATE(1869), - [sym_file_redirect] = STATE(1872), - [sym_concatenation] = STATE(1870), - [sym_string] = STATE(1860), - [sym_simple_expansion] = STATE(1860), - [sym_string_expansion] = STATE(1860), - [sym_expansion] = STATE(1860), - [sym_command_substitution] = STATE(1860), - [sym_process_substitution] = STATE(1860), - [aux_sym__statements_repeat1] = STATE(2140), - [aux_sym_command_repeat1] = STATE(1872), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(4245), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(4247), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_esac] = ACTIONS(5311), - [anon_sym_SEMI_SEMI] = ACTIONS(5361), - [anon_sym_function] = ACTIONS(4253), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(4255), - [anon_sym_LBRACK] = ACTIONS(4257), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4259), - [anon_sym_declare] = ACTIONS(4261), - [anon_sym_typeset] = ACTIONS(4261), - [anon_sym_export] = ACTIONS(4261), - [anon_sym_readonly] = ACTIONS(4261), - [anon_sym_local] = ACTIONS(4261), - [anon_sym_unset] = ACTIONS(4263), - [anon_sym_unsetenv] = ACTIONS(4263), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(4265), - [anon_sym_DQUOTE] = ACTIONS(4267), - [anon_sym_DOLLAR] = ACTIONS(4269), - [sym_raw_string] = ACTIONS(4271), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4273), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4275), - [anon_sym_BQUOTE] = ACTIONS(4277), - [anon_sym_LT_LPAREN] = ACTIONS(4279), - [anon_sym_GT_LPAREN] = ACTIONS(4279), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4281), - }, - [2143] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_esac] = ACTIONS(5363), - [anon_sym_SEMI_SEMI] = ACTIONS(901), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(5365), - [anon_sym_DQUOTE] = ACTIONS(5367), - [anon_sym_DOLLAR] = ACTIONS(5365), - [sym_raw_string] = ACTIONS(5367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5367), - [anon_sym_BQUOTE] = ACTIONS(5367), - [anon_sym_LT_LPAREN] = ACTIONS(5367), - [anon_sym_GT_LPAREN] = ACTIONS(5367), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5365), - }, - [2144] = { - [anon_sym_esac] = ACTIONS(5363), - [sym__special_characters] = ACTIONS(5367), - [anon_sym_DQUOTE] = ACTIONS(5367), - [anon_sym_DOLLAR] = ACTIONS(5365), - [sym_raw_string] = ACTIONS(5367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5367), - [anon_sym_BQUOTE] = ACTIONS(5367), - [anon_sym_LT_LPAREN] = ACTIONS(5367), - [anon_sym_GT_LPAREN] = ACTIONS(5367), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5365), - }, - [2145] = { - [anon_sym_SEMI] = ACTIONS(4895), - [anon_sym_esac] = ACTIONS(5369), - [anon_sym_PIPE] = ACTIONS(4899), - [anon_sym_SEMI_SEMI] = ACTIONS(5371), - [anon_sym_PIPE_AMP] = ACTIONS(4903), - [anon_sym_AMP_AMP] = ACTIONS(4905), - [anon_sym_PIPE_PIPE] = ACTIONS(4905), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(4907), - [anon_sym_AMP] = ACTIONS(4895), - }, - [2146] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(4895), - [anon_sym_esac] = ACTIONS(5363), - [anon_sym_PIPE] = ACTIONS(4899), - [anon_sym_SEMI_SEMI] = ACTIONS(5371), - [anon_sym_PIPE_AMP] = ACTIONS(4903), - [anon_sym_AMP_AMP] = ACTIONS(4905), - [anon_sym_PIPE_PIPE] = ACTIONS(4905), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(4907), - [anon_sym_AMP] = ACTIONS(4895), - }, - [2147] = { - [sym__terminated_statement] = STATE(2140), - [sym_for_statement] = STATE(2361), - [sym_c_style_for_statement] = STATE(2361), - [sym_while_statement] = STATE(2361), - [sym_if_statement] = STATE(2361), - [sym_case_statement] = STATE(2361), - [sym_function_definition] = STATE(2361), - [sym_subshell] = STATE(2361), - [sym_pipeline] = STATE(2361), - [sym_list] = STATE(2361), - [sym_negated_command] = STATE(2361), - [sym_test_command] = STATE(2361), - [sym_declaration_command] = STATE(2361), - [sym_unset_command] = STATE(2361), - [sym_command] = STATE(2361), - [sym_command_name] = STATE(1867), - [sym_variable_assignment] = STATE(2362), - [sym_subscript] = STATE(1869), - [sym_file_redirect] = STATE(1872), - [sym_concatenation] = STATE(1870), - [sym_string] = STATE(1860), - [sym_simple_expansion] = STATE(1860), - [sym_string_expansion] = STATE(1860), - [sym_expansion] = STATE(1860), - [sym_command_substitution] = STATE(1860), - [sym_process_substitution] = STATE(1860), - [aux_sym__statements_repeat1] = STATE(2140), - [aux_sym_command_repeat1] = STATE(1872), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(4245), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(4247), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_esac] = ACTIONS(5363), - [anon_sym_SEMI_SEMI] = ACTIONS(5373), - [anon_sym_function] = ACTIONS(4253), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(4255), - [anon_sym_LBRACK] = ACTIONS(4257), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4259), - [anon_sym_declare] = ACTIONS(4261), - [anon_sym_typeset] = ACTIONS(4261), - [anon_sym_export] = ACTIONS(4261), - [anon_sym_readonly] = ACTIONS(4261), - [anon_sym_local] = ACTIONS(4261), - [anon_sym_unset] = ACTIONS(4263), - [anon_sym_unsetenv] = ACTIONS(4263), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(4265), - [anon_sym_DQUOTE] = ACTIONS(4267), - [anon_sym_DOLLAR] = ACTIONS(4269), - [sym_raw_string] = ACTIONS(4271), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4273), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4275), - [anon_sym_BQUOTE] = ACTIONS(4277), - [anon_sym_LT_LPAREN] = ACTIONS(4279), - [anon_sym_GT_LPAREN] = ACTIONS(4279), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4281), - }, - [2148] = { - [sym__terminated_statement] = STATE(2366), - [sym_for_statement] = STATE(2364), - [sym_c_style_for_statement] = STATE(2364), - [sym_while_statement] = STATE(2364), - [sym_if_statement] = STATE(2364), - [sym_case_statement] = STATE(2364), - [sym_function_definition] = STATE(2364), - [sym_subshell] = STATE(2364), - [sym_pipeline] = STATE(2364), - [sym_list] = STATE(2364), - [sym_negated_command] = STATE(2364), - [sym_test_command] = STATE(2364), - [sym_declaration_command] = STATE(2364), - [sym_unset_command] = STATE(2364), - [sym_command] = STATE(2364), - [sym_command_name] = STATE(51), - [sym_variable_assignment] = STATE(2365), - [sym_subscript] = STATE(53), - [sym_file_redirect] = STATE(54), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(47), - [sym_simple_expansion] = STATE(47), - [sym_string_expansion] = STATE(47), - [sym_expansion] = STATE(47), - [sym_command_substitution] = STATE(47), - [sym_process_substitution] = STATE(47), - [aux_sym__statements_repeat1] = STATE(2366), - [aux_sym_command_repeat1] = STATE(54), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(69), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(71), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_SEMI_SEMI] = ACTIONS(5375), - [anon_sym_function] = ACTIONS(73), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(75), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_LBRACK_LBRACK] = ACTIONS(79), - [anon_sym_declare] = ACTIONS(81), - [anon_sym_typeset] = ACTIONS(81), - [anon_sym_export] = ACTIONS(81), - [anon_sym_readonly] = ACTIONS(81), - [anon_sym_local] = ACTIONS(81), - [anon_sym_unset] = ACTIONS(83), - [anon_sym_unsetenv] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(87), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(89), - }, - [2149] = { - [aux_sym_case_item_repeat1] = STATE(1874), - [anon_sym_PIPE] = ACTIONS(3474), - [anon_sym_RPAREN] = ACTIONS(5377), - [sym_comment] = ACTIONS(53), - }, - [2150] = { - [sym__terminated_statement] = STATE(2371), - [sym_for_statement] = STATE(2369), - [sym_c_style_for_statement] = STATE(2369), - [sym_while_statement] = STATE(2369), - [sym_if_statement] = STATE(2369), - [sym_case_statement] = STATE(2369), - [sym_function_definition] = STATE(2369), - [sym_subshell] = STATE(2369), - [sym_pipeline] = STATE(2369), - [sym_list] = STATE(2369), - [sym_negated_command] = STATE(2369), - [sym_test_command] = STATE(2369), - [sym_declaration_command] = STATE(2369), - [sym_unset_command] = STATE(2369), - [sym_command] = STATE(2369), - [sym_command_name] = STATE(51), - [sym_variable_assignment] = STATE(2370), - [sym_subscript] = STATE(53), - [sym_file_redirect] = STATE(54), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(47), - [sym_simple_expansion] = STATE(47), - [sym_string_expansion] = STATE(47), - [sym_expansion] = STATE(47), - [sym_command_substitution] = STATE(47), - [sym_process_substitution] = STATE(47), - [aux_sym__statements_repeat1] = STATE(2371), - [aux_sym_command_repeat1] = STATE(54), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(69), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(71), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_SEMI_SEMI] = ACTIONS(5379), - [anon_sym_function] = ACTIONS(73), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(75), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_LBRACK_LBRACK] = ACTIONS(79), - [anon_sym_declare] = ACTIONS(81), - [anon_sym_typeset] = ACTIONS(81), - [anon_sym_export] = ACTIONS(81), - [anon_sym_readonly] = ACTIONS(81), - [anon_sym_local] = ACTIONS(81), - [anon_sym_unset] = ACTIONS(83), - [anon_sym_unsetenv] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(87), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(89), - }, - [2151] = { - [aux_sym_case_item_repeat1] = STATE(1874), - [anon_sym_PIPE] = ACTIONS(3474), - [anon_sym_RPAREN] = ACTIONS(5381), - [sym_comment] = ACTIONS(53), - }, - [2152] = { - [ts_builtin_sym_end] = ACTIONS(5383), - [anon_sym_SEMI] = ACTIONS(5385), - [anon_sym_esac] = ACTIONS(5383), - [anon_sym_PIPE] = ACTIONS(5385), - [anon_sym_RPAREN] = ACTIONS(5383), - [anon_sym_SEMI_SEMI] = ACTIONS(5383), - [anon_sym_PIPE_AMP] = ACTIONS(5383), - [anon_sym_AMP_AMP] = ACTIONS(5383), - [anon_sym_PIPE_PIPE] = ACTIONS(5383), - [anon_sym_BQUOTE] = ACTIONS(5383), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(5383), - [anon_sym_AMP] = ACTIONS(5385), - }, - [2153] = { - [ts_builtin_sym_end] = ACTIONS(5387), - [anon_sym_SEMI] = ACTIONS(5389), - [anon_sym_esac] = ACTIONS(5387), - [anon_sym_PIPE] = ACTIONS(5389), - [anon_sym_RPAREN] = ACTIONS(5387), - [anon_sym_SEMI_SEMI] = ACTIONS(5387), - [anon_sym_PIPE_AMP] = ACTIONS(5387), - [anon_sym_AMP_AMP] = ACTIONS(5387), - [anon_sym_PIPE_PIPE] = ACTIONS(5387), - [anon_sym_BQUOTE] = ACTIONS(5387), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(5387), - [anon_sym_AMP] = ACTIONS(5389), - }, - [2154] = { - [sym__concat] = ACTIONS(5069), - [anon_sym_in] = ACTIONS(5069), - [anon_sym_SEMI] = ACTIONS(5071), - [anon_sym_SEMI_SEMI] = ACTIONS(5069), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(5069), - [anon_sym_AMP] = ACTIONS(5069), - }, - [2155] = { - [sym__concat] = ACTIONS(5073), - [anon_sym_in] = ACTIONS(5073), - [anon_sym_SEMI] = ACTIONS(5075), - [anon_sym_SEMI_SEMI] = ACTIONS(5073), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(5073), - [anon_sym_AMP] = ACTIONS(5073), - }, - [2156] = { - [aux_sym_concatenation_repeat1] = STATE(2156), - [sym__concat] = ACTIONS(2736), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(1726), - [anon_sym_RPAREN] = ACTIONS(1724), - [anon_sym_SEMI_SEMI] = ACTIONS(1724), - [anon_sym_PIPE_AMP] = ACTIONS(1724), - [anon_sym_AMP_AMP] = ACTIONS(1724), - [anon_sym_PIPE_PIPE] = ACTIONS(1724), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1726), - }, - [2157] = { - [aux_sym_concatenation_repeat1] = STATE(2157), - [sym_file_descriptor] = ACTIONS(1724), - [sym__concat] = ACTIONS(4968), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(1726), - [anon_sym_RPAREN] = ACTIONS(1724), - [anon_sym_SEMI_SEMI] = ACTIONS(1724), - [anon_sym_PIPE_AMP] = ACTIONS(1724), - [anon_sym_AMP_AMP] = ACTIONS(1724), - [anon_sym_PIPE_PIPE] = ACTIONS(1724), - [anon_sym_LT] = ACTIONS(1726), - [anon_sym_GT] = ACTIONS(1726), - [anon_sym_GT_GT] = ACTIONS(1724), - [anon_sym_AMP_GT] = ACTIONS(1726), - [anon_sym_AMP_GT_GT] = ACTIONS(1724), - [anon_sym_LT_AMP] = ACTIONS(1724), - [anon_sym_GT_AMP] = ACTIONS(1724), - [anon_sym_LT_LT] = ACTIONS(1726), - [anon_sym_LT_LT_DASH] = ACTIONS(1724), - [anon_sym_LT_LT_LT] = ACTIONS(1724), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1726), - }, - [2158] = { - [sym__concat] = ACTIONS(5069), - [anon_sym_AMP_AMP] = ACTIONS(5069), - [anon_sym_PIPE_PIPE] = ACTIONS(5069), - [anon_sym_RBRACK] = ACTIONS(5069), - [anon_sym_EQ_TILDE] = ACTIONS(5069), - [anon_sym_EQ_EQ] = ACTIONS(5069), - [anon_sym_EQ] = ACTIONS(5071), - [anon_sym_LT] = ACTIONS(5069), - [anon_sym_GT] = ACTIONS(5069), - [anon_sym_BANG_EQ] = ACTIONS(5069), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(5069), - }, - [2159] = { - [sym__concat] = ACTIONS(5073), - [anon_sym_AMP_AMP] = ACTIONS(5073), - [anon_sym_PIPE_PIPE] = ACTIONS(5073), - [anon_sym_RBRACK] = ACTIONS(5073), - [anon_sym_EQ_TILDE] = ACTIONS(5073), - [anon_sym_EQ_EQ] = ACTIONS(5073), - [anon_sym_EQ] = ACTIONS(5075), - [anon_sym_LT] = ACTIONS(5073), - [anon_sym_GT] = ACTIONS(5073), - [anon_sym_BANG_EQ] = ACTIONS(5073), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(5073), - }, - [2160] = { - [sym_file_descriptor] = ACTIONS(2876), - [sym__concat] = ACTIONS(2876), - [ts_builtin_sym_end] = ACTIONS(2876), - [anon_sym_SEMI] = ACTIONS(2878), - [anon_sym_esac] = ACTIONS(2876), - [anon_sym_PIPE] = ACTIONS(2878), - [anon_sym_RPAREN] = ACTIONS(2876), - [anon_sym_SEMI_SEMI] = ACTIONS(2876), - [anon_sym_PIPE_AMP] = ACTIONS(2876), - [anon_sym_AMP_AMP] = ACTIONS(2876), - [anon_sym_PIPE_PIPE] = ACTIONS(2876), - [anon_sym_LT] = ACTIONS(2878), - [anon_sym_GT] = ACTIONS(2878), - [anon_sym_GT_GT] = ACTIONS(2876), - [anon_sym_AMP_GT] = ACTIONS(2878), - [anon_sym_AMP_GT_GT] = ACTIONS(2876), - [anon_sym_LT_AMP] = ACTIONS(2876), - [anon_sym_GT_AMP] = ACTIONS(2876), - [anon_sym_LT_LT] = ACTIONS(2878), - [anon_sym_LT_LT_DASH] = ACTIONS(2876), - [anon_sym_LT_LT_LT] = ACTIONS(2876), - [anon_sym_BQUOTE] = ACTIONS(2876), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(2876), - [anon_sym_AMP] = ACTIONS(2878), - }, - [2161] = { - [sym_file_descriptor] = ACTIONS(2890), - [sym__concat] = ACTIONS(2890), - [ts_builtin_sym_end] = ACTIONS(2890), - [anon_sym_SEMI] = ACTIONS(2892), - [anon_sym_esac] = ACTIONS(2890), - [anon_sym_PIPE] = ACTIONS(2892), - [anon_sym_RPAREN] = ACTIONS(2890), - [anon_sym_SEMI_SEMI] = ACTIONS(2890), - [anon_sym_PIPE_AMP] = ACTIONS(2890), - [anon_sym_AMP_AMP] = ACTIONS(2890), - [anon_sym_PIPE_PIPE] = ACTIONS(2890), - [anon_sym_LT] = ACTIONS(2892), - [anon_sym_GT] = ACTIONS(2892), - [anon_sym_GT_GT] = ACTIONS(2890), - [anon_sym_AMP_GT] = ACTIONS(2892), - [anon_sym_AMP_GT_GT] = ACTIONS(2890), - [anon_sym_LT_AMP] = ACTIONS(2890), - [anon_sym_GT_AMP] = ACTIONS(2890), - [anon_sym_LT_LT] = ACTIONS(2892), - [anon_sym_LT_LT_DASH] = ACTIONS(2890), - [anon_sym_LT_LT_LT] = ACTIONS(2890), - [anon_sym_BQUOTE] = ACTIONS(2890), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(2890), - [anon_sym_AMP] = ACTIONS(2892), - }, - [2162] = { - [aux_sym_concatenation_repeat1] = STATE(1293), - [sym__concat] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(5391), - [sym_comment] = ACTIONS(53), - }, - [2163] = { - [aux_sym_concatenation_repeat1] = STATE(1293), - [sym__concat] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(5393), - [sym_comment] = ACTIONS(53), - }, - [2164] = { - [anon_sym_RBRACE] = ACTIONS(5393), - [sym_comment] = ACTIONS(53), - }, - [2165] = { - [sym_concatenation] = STATE(2377), - [sym_string] = STATE(2376), - [sym_simple_expansion] = STATE(2376), - [sym_string_expansion] = STATE(2376), - [sym_expansion] = STATE(2376), - [sym_command_substitution] = STATE(2376), - [sym_process_substitution] = STATE(2376), - [anon_sym_RBRACE] = ACTIONS(5393), - [sym__special_characters] = ACTIONS(5395), - [anon_sym_DQUOTE] = ACTIONS(1802), - [anon_sym_DOLLAR] = ACTIONS(1804), - [sym_raw_string] = ACTIONS(5397), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1808), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1810), - [anon_sym_BQUOTE] = ACTIONS(1812), - [anon_sym_LT_LPAREN] = ACTIONS(1814), - [anon_sym_GT_LPAREN] = ACTIONS(1814), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5397), - }, - [2166] = { - [sym_file_descriptor] = ACTIONS(2926), - [sym__concat] = ACTIONS(2926), - [ts_builtin_sym_end] = ACTIONS(2926), - [anon_sym_SEMI] = ACTIONS(2928), - [anon_sym_esac] = ACTIONS(2926), - [anon_sym_PIPE] = ACTIONS(2928), - [anon_sym_RPAREN] = ACTIONS(2926), - [anon_sym_SEMI_SEMI] = ACTIONS(2926), - [anon_sym_PIPE_AMP] = ACTIONS(2926), - [anon_sym_AMP_AMP] = ACTIONS(2926), - [anon_sym_PIPE_PIPE] = ACTIONS(2926), - [anon_sym_LT] = ACTIONS(2928), - [anon_sym_GT] = ACTIONS(2928), - [anon_sym_GT_GT] = ACTIONS(2926), - [anon_sym_AMP_GT] = ACTIONS(2928), - [anon_sym_AMP_GT_GT] = ACTIONS(2926), - [anon_sym_LT_AMP] = ACTIONS(2926), - [anon_sym_GT_AMP] = ACTIONS(2926), - [anon_sym_LT_LT] = ACTIONS(2928), - [anon_sym_LT_LT_DASH] = ACTIONS(2926), - [anon_sym_LT_LT_LT] = ACTIONS(2926), - [anon_sym_BQUOTE] = ACTIONS(2926), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(2926), - [anon_sym_AMP] = ACTIONS(2928), - }, - [2167] = { - [sym_comment] = ACTIONS(265), - [sym_regex_without_right_brace] = ACTIONS(5399), - }, - [2168] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(5401), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [2169] = { - [sym_comment] = ACTIONS(265), - [sym_regex_without_right_brace] = ACTIONS(5403), - }, - [2170] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(5393), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [2171] = { - [sym_concatenation] = STATE(2382), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(2382), - [anon_sym_RBRACE] = ACTIONS(5405), - [anon_sym_EQ] = ACTIONS(5407), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(5409), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(5407), - [anon_sym_COLON_QMARK] = ACTIONS(5407), - [anon_sym_COLON_DASH] = ACTIONS(5407), - [anon_sym_PERCENT] = ACTIONS(5407), - [anon_sym_DASH] = ACTIONS(5407), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [2172] = { - [sym_file_descriptor] = ACTIONS(2990), - [sym__concat] = ACTIONS(2990), - [ts_builtin_sym_end] = ACTIONS(2990), - [anon_sym_SEMI] = ACTIONS(2992), - [anon_sym_esac] = ACTIONS(2990), - [anon_sym_PIPE] = ACTIONS(2992), - [anon_sym_RPAREN] = ACTIONS(2990), - [anon_sym_SEMI_SEMI] = ACTIONS(2990), - [anon_sym_PIPE_AMP] = ACTIONS(2990), - [anon_sym_AMP_AMP] = ACTIONS(2990), - [anon_sym_PIPE_PIPE] = ACTIONS(2990), - [anon_sym_LT] = ACTIONS(2992), - [anon_sym_GT] = ACTIONS(2992), - [anon_sym_GT_GT] = ACTIONS(2990), - [anon_sym_AMP_GT] = ACTIONS(2992), - [anon_sym_AMP_GT_GT] = ACTIONS(2990), - [anon_sym_LT_AMP] = ACTIONS(2990), - [anon_sym_GT_AMP] = ACTIONS(2990), - [anon_sym_LT_LT] = ACTIONS(2992), - [anon_sym_LT_LT_DASH] = ACTIONS(2990), - [anon_sym_LT_LT_LT] = ACTIONS(2990), - [anon_sym_BQUOTE] = ACTIONS(2990), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(2990), - [anon_sym_AMP] = ACTIONS(2992), - }, - [2173] = { - [sym_concatenation] = STATE(2383), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(2383), - [anon_sym_RBRACE] = ACTIONS(5393), - [anon_sym_EQ] = ACTIONS(5411), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(5413), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(5411), - [anon_sym_COLON_QMARK] = ACTIONS(5411), - [anon_sym_COLON_DASH] = ACTIONS(5411), - [anon_sym_PERCENT] = ACTIONS(5411), - [anon_sym_DASH] = ACTIONS(5411), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [2174] = { - [sym_file_descriptor] = ACTIONS(3033), - [sym__concat] = ACTIONS(3033), - [ts_builtin_sym_end] = ACTIONS(3033), - [anon_sym_SEMI] = ACTIONS(3035), - [anon_sym_esac] = ACTIONS(3033), - [anon_sym_PIPE] = ACTIONS(3035), - [anon_sym_RPAREN] = ACTIONS(3033), - [anon_sym_SEMI_SEMI] = ACTIONS(3033), - [anon_sym_PIPE_AMP] = ACTIONS(3033), - [anon_sym_AMP_AMP] = ACTIONS(3033), - [anon_sym_PIPE_PIPE] = ACTIONS(3033), - [anon_sym_LT] = ACTIONS(3035), - [anon_sym_GT] = ACTIONS(3035), - [anon_sym_GT_GT] = ACTIONS(3033), - [anon_sym_AMP_GT] = ACTIONS(3035), - [anon_sym_AMP_GT_GT] = ACTIONS(3033), - [anon_sym_LT_AMP] = ACTIONS(3033), - [anon_sym_GT_AMP] = ACTIONS(3033), - [anon_sym_LT_LT] = ACTIONS(3035), - [anon_sym_LT_LT_DASH] = ACTIONS(3033), - [anon_sym_LT_LT_LT] = ACTIONS(3033), - [anon_sym_BQUOTE] = ACTIONS(3033), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(3033), - [anon_sym_AMP] = ACTIONS(3035), - }, - [2175] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(5415), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(901), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), - }, - [2176] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(5415), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), - }, - [2177] = { - [sym_file_descriptor] = ACTIONS(3071), - [sym__concat] = ACTIONS(3071), - [ts_builtin_sym_end] = ACTIONS(3071), - [anon_sym_SEMI] = ACTIONS(3073), - [anon_sym_esac] = ACTIONS(3071), - [anon_sym_PIPE] = ACTIONS(3073), - [anon_sym_RPAREN] = ACTIONS(3071), - [anon_sym_SEMI_SEMI] = ACTIONS(3071), - [anon_sym_PIPE_AMP] = ACTIONS(3071), - [anon_sym_AMP_AMP] = ACTIONS(3071), - [anon_sym_PIPE_PIPE] = ACTIONS(3071), - [anon_sym_LT] = ACTIONS(3073), - [anon_sym_GT] = ACTIONS(3073), - [anon_sym_GT_GT] = ACTIONS(3071), - [anon_sym_AMP_GT] = ACTIONS(3073), - [anon_sym_AMP_GT_GT] = ACTIONS(3071), - [anon_sym_LT_AMP] = ACTIONS(3071), - [anon_sym_GT_AMP] = ACTIONS(3071), - [anon_sym_LT_LT] = ACTIONS(3073), - [anon_sym_LT_LT_DASH] = ACTIONS(3071), - [anon_sym_LT_LT_LT] = ACTIONS(3071), - [anon_sym_BQUOTE] = ACTIONS(3071), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(3071), - [anon_sym_AMP] = ACTIONS(3073), - }, - [2178] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(5417), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(901), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), - }, - [2179] = { - [sym__concat] = ACTIONS(5069), - [anon_sym_PIPE] = ACTIONS(5071), - [anon_sym_RPAREN] = ACTIONS(5069), - [anon_sym_AMP_AMP] = ACTIONS(5069), - [anon_sym_PIPE_PIPE] = ACTIONS(5069), - [anon_sym_RBRACK_RBRACK] = ACTIONS(5069), - [anon_sym_EQ_TILDE] = ACTIONS(5069), - [anon_sym_EQ_EQ] = ACTIONS(5069), - [anon_sym_EQ] = ACTIONS(5071), - [anon_sym_LT] = ACTIONS(5069), - [anon_sym_GT] = ACTIONS(5069), - [anon_sym_BANG_EQ] = ACTIONS(5069), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(5069), - }, - [2180] = { - [sym__concat] = ACTIONS(5073), - [anon_sym_PIPE] = ACTIONS(5075), - [anon_sym_RPAREN] = ACTIONS(5073), - [anon_sym_AMP_AMP] = ACTIONS(5073), - [anon_sym_PIPE_PIPE] = ACTIONS(5073), - [anon_sym_RBRACK_RBRACK] = ACTIONS(5073), - [anon_sym_EQ_TILDE] = ACTIONS(5073), - [anon_sym_EQ_EQ] = ACTIONS(5073), - [anon_sym_EQ] = ACTIONS(5075), - [anon_sym_LT] = ACTIONS(5073), - [anon_sym_GT] = ACTIONS(5073), - [anon_sym_BANG_EQ] = ACTIONS(5073), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(5073), - }, - [2181] = { - [sym__concat] = ACTIONS(5069), - [sym_variable_name] = ACTIONS(5069), - [ts_builtin_sym_end] = ACTIONS(5069), - [anon_sym_SEMI] = ACTIONS(5071), - [anon_sym_PIPE] = ACTIONS(5071), - [anon_sym_RPAREN] = ACTIONS(5069), - [anon_sym_SEMI_SEMI] = ACTIONS(5069), - [anon_sym_PIPE_AMP] = ACTIONS(5069), - [anon_sym_AMP_AMP] = ACTIONS(5069), - [anon_sym_PIPE_PIPE] = ACTIONS(5069), - [sym__special_characters] = ACTIONS(5069), - [anon_sym_DQUOTE] = ACTIONS(5069), - [anon_sym_DOLLAR] = ACTIONS(5071), - [sym_raw_string] = ACTIONS(5069), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5069), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5069), - [anon_sym_BQUOTE] = ACTIONS(5069), - [anon_sym_LT_LPAREN] = ACTIONS(5069), - [anon_sym_GT_LPAREN] = ACTIONS(5069), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5071), - [sym_word] = ACTIONS(5071), - [anon_sym_LF] = ACTIONS(5069), - [anon_sym_AMP] = ACTIONS(5071), - }, - [2182] = { - [sym__concat] = ACTIONS(5073), - [sym_variable_name] = ACTIONS(5073), - [ts_builtin_sym_end] = ACTIONS(5073), - [anon_sym_SEMI] = ACTIONS(5075), - [anon_sym_PIPE] = ACTIONS(5075), - [anon_sym_RPAREN] = ACTIONS(5073), - [anon_sym_SEMI_SEMI] = ACTIONS(5073), - [anon_sym_PIPE_AMP] = ACTIONS(5073), - [anon_sym_AMP_AMP] = ACTIONS(5073), - [anon_sym_PIPE_PIPE] = ACTIONS(5073), - [sym__special_characters] = ACTIONS(5073), - [anon_sym_DQUOTE] = ACTIONS(5073), - [anon_sym_DOLLAR] = ACTIONS(5075), - [sym_raw_string] = ACTIONS(5073), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5073), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5073), - [anon_sym_BQUOTE] = ACTIONS(5073), - [anon_sym_LT_LPAREN] = ACTIONS(5073), - [anon_sym_GT_LPAREN] = ACTIONS(5073), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5075), - [sym_word] = ACTIONS(5075), - [anon_sym_LF] = ACTIONS(5073), - [anon_sym_AMP] = ACTIONS(5075), - }, - [2183] = { - [sym__concat] = ACTIONS(5069), - [ts_builtin_sym_end] = ACTIONS(5069), - [anon_sym_SEMI] = ACTIONS(5071), - [anon_sym_PIPE] = ACTIONS(5071), - [anon_sym_RPAREN] = ACTIONS(5069), - [anon_sym_SEMI_SEMI] = ACTIONS(5069), - [anon_sym_PIPE_AMP] = ACTIONS(5069), - [anon_sym_AMP_AMP] = ACTIONS(5069), - [anon_sym_PIPE_PIPE] = ACTIONS(5069), - [sym__special_characters] = ACTIONS(5069), - [anon_sym_DQUOTE] = ACTIONS(5069), - [anon_sym_DOLLAR] = ACTIONS(5071), - [sym_raw_string] = ACTIONS(5069), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5069), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5069), - [anon_sym_BQUOTE] = ACTIONS(5069), - [anon_sym_LT_LPAREN] = ACTIONS(5069), - [anon_sym_GT_LPAREN] = ACTIONS(5069), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5071), - [sym_word] = ACTIONS(5071), - [anon_sym_LF] = ACTIONS(5069), - [anon_sym_AMP] = ACTIONS(5071), - }, - [2184] = { - [sym__concat] = ACTIONS(5073), - [ts_builtin_sym_end] = ACTIONS(5073), - [anon_sym_SEMI] = ACTIONS(5075), - [anon_sym_PIPE] = ACTIONS(5075), - [anon_sym_RPAREN] = ACTIONS(5073), - [anon_sym_SEMI_SEMI] = ACTIONS(5073), - [anon_sym_PIPE_AMP] = ACTIONS(5073), - [anon_sym_AMP_AMP] = ACTIONS(5073), - [anon_sym_PIPE_PIPE] = ACTIONS(5073), - [sym__special_characters] = ACTIONS(5073), - [anon_sym_DQUOTE] = ACTIONS(5073), - [anon_sym_DOLLAR] = ACTIONS(5075), - [sym_raw_string] = ACTIONS(5073), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5073), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5073), - [anon_sym_BQUOTE] = ACTIONS(5073), - [anon_sym_LT_LPAREN] = ACTIONS(5073), - [anon_sym_GT_LPAREN] = ACTIONS(5073), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5075), - [sym_word] = ACTIONS(5075), - [anon_sym_LF] = ACTIONS(5073), - [anon_sym_AMP] = ACTIONS(5075), - }, - [2185] = { - [sym_file_descriptor] = ACTIONS(5069), - [sym__concat] = ACTIONS(5069), - [sym_variable_name] = ACTIONS(5069), - [anon_sym_LT] = ACTIONS(5071), - [anon_sym_GT] = ACTIONS(5071), - [anon_sym_GT_GT] = ACTIONS(5069), - [anon_sym_AMP_GT] = ACTIONS(5071), - [anon_sym_AMP_GT_GT] = ACTIONS(5069), - [anon_sym_LT_AMP] = ACTIONS(5069), - [anon_sym_GT_AMP] = ACTIONS(5069), - [sym__special_characters] = ACTIONS(5069), - [anon_sym_DQUOTE] = ACTIONS(5069), - [anon_sym_DOLLAR] = ACTIONS(5071), - [sym_raw_string] = ACTIONS(5069), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5069), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5069), - [anon_sym_BQUOTE] = ACTIONS(5069), - [anon_sym_LT_LPAREN] = ACTIONS(5069), - [anon_sym_GT_LPAREN] = ACTIONS(5069), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5069), - }, - [2186] = { - [sym_file_descriptor] = ACTIONS(5073), - [sym__concat] = ACTIONS(5073), - [sym_variable_name] = ACTIONS(5073), - [anon_sym_LT] = ACTIONS(5075), - [anon_sym_GT] = ACTIONS(5075), - [anon_sym_GT_GT] = ACTIONS(5073), - [anon_sym_AMP_GT] = ACTIONS(5075), - [anon_sym_AMP_GT_GT] = ACTIONS(5073), - [anon_sym_LT_AMP] = ACTIONS(5073), - [anon_sym_GT_AMP] = ACTIONS(5073), - [sym__special_characters] = ACTIONS(5073), - [anon_sym_DQUOTE] = ACTIONS(5073), - [anon_sym_DOLLAR] = ACTIONS(5075), - [sym_raw_string] = ACTIONS(5073), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5073), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5073), - [anon_sym_BQUOTE] = ACTIONS(5073), - [anon_sym_LT_LPAREN] = ACTIONS(5073), - [anon_sym_GT_LPAREN] = ACTIONS(5073), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5073), - }, - [2187] = { - [sym__concat] = ACTIONS(5069), - [anon_sym_DQUOTE] = ACTIONS(5071), - [anon_sym_DOLLAR] = ACTIONS(5071), - [sym__string_content] = ACTIONS(5069), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5071), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5071), - [anon_sym_BQUOTE] = ACTIONS(5071), - [sym_comment] = ACTIONS(265), - }, - [2188] = { - [sym__concat] = ACTIONS(5073), - [anon_sym_DQUOTE] = ACTIONS(5075), - [anon_sym_DOLLAR] = ACTIONS(5075), - [sym__string_content] = ACTIONS(5073), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5075), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5075), - [anon_sym_BQUOTE] = ACTIONS(5075), - [sym_comment] = ACTIONS(265), - }, - [2189] = { - [sym__concat] = ACTIONS(3788), - [anon_sym_RBRACE] = ACTIONS(3788), - [sym_comment] = ACTIONS(53), - }, - [2190] = { - [sym__concat] = ACTIONS(3796), - [anon_sym_RBRACE] = ACTIONS(3796), - [sym_comment] = ACTIONS(53), - }, - [2191] = { - [aux_sym_concatenation_repeat1] = STATE(1293), - [sym__concat] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(5419), - [sym_comment] = ACTIONS(53), - }, [2192] = { - [aux_sym_concatenation_repeat1] = STATE(1293), - [sym__concat] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(5421), - [sym_comment] = ACTIONS(53), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_DQUOTE] = ACTIONS(5404), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym__string_content] = ACTIONS(821), + [anon_sym_POUND] = ACTIONS(815), + [sym_comment] = ACTIONS(281), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(823), + [anon_sym_STAR] = ACTIONS(825), + [anon_sym_AT] = ACTIONS(825), + [anon_sym_QMARK] = ACTIONS(825), + [anon_sym_0] = ACTIONS(823), + [anon_sym__] = ACTIONS(823), }, [2193] = { - [anon_sym_RBRACE] = ACTIONS(5421), - [sym_comment] = ACTIONS(53), + [sym_simple_expansion] = STATE(148), + [sym_expansion] = STATE(148), + [sym_command_substitution] = STATE(148), + [aux_sym_string_repeat1] = STATE(473), + [anon_sym_DQUOTE] = ACTIONS(5404), + [anon_sym_DOLLAR] = ACTIONS(5406), + [sym__string_content] = ACTIONS(273), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(277), + [anon_sym_BQUOTE] = ACTIONS(279), + [sym_comment] = ACTIONS(281), }, [2194] = { - [sym_concatenation] = STATE(2389), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(2389), - [anon_sym_RBRACE] = ACTIONS(5423), - [anon_sym_EQ] = ACTIONS(5425), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(5427), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(5425), - [anon_sym_COLON_QMARK] = ACTIONS(5425), - [anon_sym_COLON_DASH] = ACTIONS(5425), - [anon_sym_PERCENT] = ACTIONS(5425), - [anon_sym_DASH] = ACTIONS(5425), + [sym__simple_heredoc_body] = ACTIONS(845), + [sym__heredoc_body_beginning] = ACTIONS(845), + [sym_file_descriptor] = ACTIONS(845), + [sym__concat] = ACTIONS(845), + [anon_sym_SEMI] = ACTIONS(847), + [anon_sym_esac] = ACTIONS(847), + [anon_sym_PIPE] = ACTIONS(847), + [anon_sym_SEMI_SEMI] = ACTIONS(845), + [anon_sym_PIPE_AMP] = ACTIONS(845), + [anon_sym_AMP_AMP] = ACTIONS(845), + [anon_sym_PIPE_PIPE] = ACTIONS(845), + [anon_sym_EQ_TILDE] = ACTIONS(847), + [anon_sym_EQ_EQ] = ACTIONS(847), + [anon_sym_LT] = ACTIONS(847), + [anon_sym_GT] = ACTIONS(847), + [anon_sym_GT_GT] = ACTIONS(845), + [anon_sym_AMP_GT] = ACTIONS(847), + [anon_sym_AMP_GT_GT] = ACTIONS(845), + [anon_sym_LT_AMP] = ACTIONS(845), + [anon_sym_GT_AMP] = ACTIONS(845), + [anon_sym_LT_LT] = ACTIONS(847), + [anon_sym_LT_LT_DASH] = ACTIONS(845), + [anon_sym_LT_LT_LT] = ACTIONS(845), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(845), + [anon_sym_DOLLAR] = ACTIONS(847), + [sym_raw_string] = ACTIONS(845), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(845), [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [anon_sym_BQUOTE] = ACTIONS(845), + [anon_sym_LT_LPAREN] = ACTIONS(845), + [anon_sym_GT_LPAREN] = ACTIONS(845), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(847), + [anon_sym_LF] = ACTIONS(845), + [anon_sym_AMP] = ACTIONS(847), }, [2195] = { - [sym__concat] = ACTIONS(3852), - [anon_sym_RBRACE] = ACTIONS(3852), - [sym_comment] = ACTIONS(53), + [sym__simple_heredoc_body] = ACTIONS(849), + [sym__heredoc_body_beginning] = ACTIONS(849), + [sym_file_descriptor] = ACTIONS(849), + [sym__concat] = ACTIONS(849), + [anon_sym_SEMI] = ACTIONS(851), + [anon_sym_esac] = ACTIONS(851), + [anon_sym_PIPE] = ACTIONS(851), + [anon_sym_SEMI_SEMI] = ACTIONS(849), + [anon_sym_PIPE_AMP] = ACTIONS(849), + [anon_sym_AMP_AMP] = ACTIONS(849), + [anon_sym_PIPE_PIPE] = ACTIONS(849), + [anon_sym_EQ_TILDE] = ACTIONS(851), + [anon_sym_EQ_EQ] = ACTIONS(851), + [anon_sym_LT] = ACTIONS(851), + [anon_sym_GT] = ACTIONS(851), + [anon_sym_GT_GT] = ACTIONS(849), + [anon_sym_AMP_GT] = ACTIONS(851), + [anon_sym_AMP_GT_GT] = ACTIONS(849), + [anon_sym_LT_AMP] = ACTIONS(849), + [anon_sym_GT_AMP] = ACTIONS(849), + [anon_sym_LT_LT] = ACTIONS(851), + [anon_sym_LT_LT_DASH] = ACTIONS(849), + [anon_sym_LT_LT_LT] = ACTIONS(849), + [sym__special_characters] = ACTIONS(849), + [anon_sym_DQUOTE] = ACTIONS(849), + [anon_sym_DOLLAR] = ACTIONS(851), + [sym_raw_string] = ACTIONS(849), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(849), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(849), + [anon_sym_BQUOTE] = ACTIONS(849), + [anon_sym_LT_LPAREN] = ACTIONS(849), + [anon_sym_GT_LPAREN] = ACTIONS(849), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(851), + [anon_sym_LF] = ACTIONS(849), + [anon_sym_AMP] = ACTIONS(851), }, [2196] = { - [sym_concatenation] = STATE(2390), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(2390), - [anon_sym_RBRACE] = ACTIONS(5421), - [anon_sym_EQ] = ACTIONS(5429), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(5431), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(5429), - [anon_sym_COLON_QMARK] = ACTIONS(5429), - [anon_sym_COLON_DASH] = ACTIONS(5429), - [anon_sym_PERCENT] = ACTIONS(5429), - [anon_sym_DASH] = ACTIONS(5429), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym__simple_heredoc_body] = ACTIONS(853), + [sym__heredoc_body_beginning] = ACTIONS(853), + [sym_file_descriptor] = ACTIONS(853), + [sym__concat] = ACTIONS(853), + [anon_sym_SEMI] = ACTIONS(855), + [anon_sym_esac] = ACTIONS(855), + [anon_sym_PIPE] = ACTIONS(855), + [anon_sym_SEMI_SEMI] = ACTIONS(853), + [anon_sym_PIPE_AMP] = ACTIONS(853), + [anon_sym_AMP_AMP] = ACTIONS(853), + [anon_sym_PIPE_PIPE] = ACTIONS(853), + [anon_sym_EQ_TILDE] = ACTIONS(855), + [anon_sym_EQ_EQ] = ACTIONS(855), + [anon_sym_LT] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_GT_GT] = ACTIONS(853), + [anon_sym_AMP_GT] = ACTIONS(855), + [anon_sym_AMP_GT_GT] = ACTIONS(853), + [anon_sym_LT_AMP] = ACTIONS(853), + [anon_sym_GT_AMP] = ACTIONS(853), + [anon_sym_LT_LT] = ACTIONS(855), + [anon_sym_LT_LT_DASH] = ACTIONS(853), + [anon_sym_LT_LT_LT] = ACTIONS(853), + [sym__special_characters] = ACTIONS(853), + [anon_sym_DQUOTE] = ACTIONS(853), + [anon_sym_DOLLAR] = ACTIONS(855), + [sym_raw_string] = ACTIONS(853), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(853), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(853), + [anon_sym_BQUOTE] = ACTIONS(853), + [anon_sym_LT_LPAREN] = ACTIONS(853), + [anon_sym_GT_LPAREN] = ACTIONS(853), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(855), + [anon_sym_LF] = ACTIONS(853), + [anon_sym_AMP] = ACTIONS(855), }, [2197] = { - [sym__concat] = ACTIONS(3893), - [anon_sym_RBRACE] = ACTIONS(3893), - [sym_comment] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(857), + [anon_sym_EQ] = ACTIONS(5408), + [sym_comment] = ACTIONS(55), }, [2198] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(5433), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_subscript] = STATE(2382), + [sym_variable_name] = ACTIONS(5410), + [anon_sym_DASH] = ACTIONS(5412), + [anon_sym_DOLLAR] = ACTIONS(5412), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5414), + [anon_sym_STAR] = ACTIONS(5416), + [anon_sym_AT] = ACTIONS(5416), + [anon_sym_QMARK] = ACTIONS(5416), + [anon_sym_0] = ACTIONS(5414), + [anon_sym__] = ACTIONS(5414), }, [2199] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(5421), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_concatenation] = STATE(2385), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2385), + [anon_sym_RBRACE] = ACTIONS(5418), + [anon_sym_EQ] = ACTIONS(5420), + [anon_sym_DASH] = ACTIONS(5420), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(5422), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(5424), + [anon_sym_COLON] = ACTIONS(5420), + [anon_sym_COLON_QMARK] = ACTIONS(5420), + [anon_sym_COLON_DASH] = ACTIONS(5420), + [anon_sym_PERCENT] = ACTIONS(5420), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2200] = { - [sym__concat] = ACTIONS(3915), - [anon_sym_RBRACE] = ACTIONS(3915), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(2388), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2388), + [anon_sym_RBRACE] = ACTIONS(5426), + [anon_sym_EQ] = ACTIONS(5428), + [anon_sym_DASH] = ACTIONS(5428), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(5430), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(5432), + [anon_sym_COLON] = ACTIONS(5428), + [anon_sym_COLON_QMARK] = ACTIONS(5428), + [anon_sym_COLON_DASH] = ACTIONS(5428), + [anon_sym_PERCENT] = ACTIONS(5428), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2201] = { - [sym__concat] = ACTIONS(3939), - [anon_sym_RBRACE] = ACTIONS(3939), - [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(5434), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(5436), + [anon_sym_SEMI_SEMI] = ACTIONS(5438), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(5438), + [anon_sym_AMP] = ACTIONS(5434), }, [2202] = { - [sym__concat] = ACTIONS(4568), - [anon_sym_RBRACE] = ACTIONS(4568), - [anon_sym_EQ] = ACTIONS(4570), - [sym__special_characters] = ACTIONS(4570), - [anon_sym_DQUOTE] = ACTIONS(4568), - [anon_sym_DOLLAR] = ACTIONS(4570), - [sym_raw_string] = ACTIONS(4568), - [anon_sym_POUND] = ACTIONS(4568), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4568), - [anon_sym_COLON] = ACTIONS(4570), - [anon_sym_COLON_QMARK] = ACTIONS(4570), - [anon_sym_COLON_DASH] = ACTIONS(4570), - [anon_sym_PERCENT] = ACTIONS(4570), - [anon_sym_DASH] = ACTIONS(4570), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4568), - [anon_sym_BQUOTE] = ACTIONS(4568), - [anon_sym_LT_LPAREN] = ACTIONS(4568), - [anon_sym_GT_LPAREN] = ACTIONS(4568), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(4570), + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(5434), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(5436), + [anon_sym_SEMI_SEMI] = ACTIONS(5438), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(5438), + [anon_sym_AMP] = ACTIONS(5434), }, [2203] = { - [sym__concat] = ACTIONS(4572), - [anon_sym_RBRACE] = ACTIONS(4572), - [anon_sym_EQ] = ACTIONS(4574), - [sym__special_characters] = ACTIONS(4574), - [anon_sym_DQUOTE] = ACTIONS(4572), - [anon_sym_DOLLAR] = ACTIONS(4574), - [sym_raw_string] = ACTIONS(4572), - [anon_sym_POUND] = ACTIONS(4572), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4572), - [anon_sym_COLON] = ACTIONS(4574), - [anon_sym_COLON_QMARK] = ACTIONS(4574), - [anon_sym_COLON_DASH] = ACTIONS(4574), - [anon_sym_PERCENT] = ACTIONS(4574), - [anon_sym_DASH] = ACTIONS(4574), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4572), - [anon_sym_BQUOTE] = ACTIONS(4572), - [anon_sym_LT_LPAREN] = ACTIONS(4572), - [anon_sym_GT_LPAREN] = ACTIONS(4572), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(4574), + [sym__terminated_statement] = STATE(198), + [sym_for_statement] = STATE(2391), + [sym_c_style_for_statement] = STATE(2391), + [sym_while_statement] = STATE(2391), + [sym_if_statement] = STATE(2391), + [sym_case_statement] = STATE(2391), + [sym_function_definition] = STATE(2391), + [sym_subshell] = STATE(2391), + [sym_pipeline] = STATE(2391), + [sym_list] = STATE(2391), + [sym_negated_command] = STATE(2391), + [sym_test_command] = STATE(2391), + [sym_declaration_command] = STATE(2391), + [sym_unset_command] = STATE(2391), + [sym_command] = STATE(2391), + [sym_command_name] = STATE(92), + [sym_variable_assignment] = STATE(2392), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(96), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), + [aux_sym__statements_repeat1] = STATE(198), + [aux_sym_command_repeat1] = STATE(96), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(137), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(149), + [anon_sym_declare] = ACTIONS(151), + [anon_sym_typeset] = ACTIONS(151), + [anon_sym_export] = ACTIONS(151), + [anon_sym_readonly] = ACTIONS(151), + [anon_sym_local] = ACTIONS(151), + [anon_sym_unset] = ACTIONS(153), + [anon_sym_unsetenv] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(159), }, [2204] = { - [sym__concat] = ACTIONS(4576), - [anon_sym_RBRACE] = ACTIONS(4576), - [anon_sym_EQ] = ACTIONS(4578), - [sym__special_characters] = ACTIONS(4578), - [anon_sym_DQUOTE] = ACTIONS(4576), - [anon_sym_DOLLAR] = ACTIONS(4578), - [sym_raw_string] = ACTIONS(4576), - [anon_sym_POUND] = ACTIONS(4576), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4576), - [anon_sym_COLON] = ACTIONS(4578), - [anon_sym_COLON_QMARK] = ACTIONS(4578), - [anon_sym_COLON_DASH] = ACTIONS(4578), - [anon_sym_PERCENT] = ACTIONS(4578), - [anon_sym_DASH] = ACTIONS(4578), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4576), - [anon_sym_BQUOTE] = ACTIONS(4576), - [anon_sym_LT_LPAREN] = ACTIONS(4576), - [anon_sym_GT_LPAREN] = ACTIONS(4576), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(4578), + [anon_sym_SEMI] = ACTIONS(5440), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_SEMI_SEMI] = ACTIONS(5442), + [anon_sym_PIPE_AMP] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_BQUOTE] = ACTIONS(5436), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(5442), + [anon_sym_AMP] = ACTIONS(5440), }, [2205] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(5435), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(5440), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_SEMI_SEMI] = ACTIONS(5442), + [anon_sym_PIPE_AMP] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(5436), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(5442), + [anon_sym_AMP] = ACTIONS(5440), }, [2206] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(5437), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym__terminated_statement] = STATE(198), + [sym_for_statement] = STATE(2394), + [sym_c_style_for_statement] = STATE(2394), + [sym_while_statement] = STATE(2394), + [sym_if_statement] = STATE(2394), + [sym_case_statement] = STATE(2394), + [sym_function_definition] = STATE(2394), + [sym_subshell] = STATE(2394), + [sym_pipeline] = STATE(2394), + [sym_list] = STATE(2394), + [sym_negated_command] = STATE(2394), + [sym_test_command] = STATE(2394), + [sym_declaration_command] = STATE(2394), + [sym_unset_command] = STATE(2394), + [sym_command] = STATE(2394), + [sym_command_name] = STATE(173), + [sym_variable_assignment] = STATE(2395), + [sym_subscript] = STATE(66), + [sym_file_redirect] = STATE(176), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(60), + [sym_simple_expansion] = STATE(60), + [sym_string_expansion] = STATE(60), + [sym_expansion] = STATE(60), + [sym_command_substitution] = STATE(60), + [sym_process_substitution] = STATE(60), + [aux_sym__statements_repeat1] = STATE(198), + [aux_sym_command_repeat1] = STATE(176), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(95), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(305), + [anon_sym_while] = ACTIONS(307), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(311), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(315), + [anon_sym_declare] = ACTIONS(317), + [anon_sym_typeset] = ACTIONS(317), + [anon_sym_export] = ACTIONS(317), + [anon_sym_readonly] = ACTIONS(317), + [anon_sym_local] = ACTIONS(317), + [anon_sym_unset] = ACTIONS(319), + [anon_sym_unsetenv] = ACTIONS(319), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(115), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(321), }, [2207] = { - [sym__concat] = ACTIONS(4608), - [anon_sym_RBRACE] = ACTIONS(4608), - [anon_sym_EQ] = ACTIONS(4610), - [sym__special_characters] = ACTIONS(4610), - [anon_sym_DQUOTE] = ACTIONS(4608), - [anon_sym_DOLLAR] = ACTIONS(4610), - [sym_raw_string] = ACTIONS(4608), - [anon_sym_POUND] = ACTIONS(4608), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4608), - [anon_sym_COLON] = ACTIONS(4610), - [anon_sym_COLON_QMARK] = ACTIONS(4610), - [anon_sym_COLON_DASH] = ACTIONS(4610), - [anon_sym_PERCENT] = ACTIONS(4610), - [anon_sym_DASH] = ACTIONS(4610), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4608), - [anon_sym_BQUOTE] = ACTIONS(4608), - [anon_sym_LT_LPAREN] = ACTIONS(4608), - [anon_sym_GT_LPAREN] = ACTIONS(4608), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(4610), + [anon_sym_SEMI] = ACTIONS(5444), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(5446), + [anon_sym_SEMI_SEMI] = ACTIONS(5448), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(5448), + [anon_sym_AMP] = ACTIONS(5444), }, [2208] = { - [aux_sym_concatenation_repeat1] = STATE(2208), - [sym__concat] = ACTIONS(2736), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(1726), - [anon_sym_SEMI_SEMI] = ACTIONS(1724), - [anon_sym_PIPE_AMP] = ACTIONS(1724), - [anon_sym_AMP_AMP] = ACTIONS(1724), - [anon_sym_PIPE_PIPE] = ACTIONS(1724), - [anon_sym_BQUOTE] = ACTIONS(1724), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1726), + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(5444), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(5446), + [anon_sym_SEMI_SEMI] = ACTIONS(5448), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(5448), + [anon_sym_AMP] = ACTIONS(5444), }, [2209] = { - [aux_sym_concatenation_repeat1] = STATE(2209), - [sym_file_descriptor] = ACTIONS(1724), - [sym__concat] = ACTIONS(4968), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(1726), - [anon_sym_SEMI_SEMI] = ACTIONS(1724), - [anon_sym_PIPE_AMP] = ACTIONS(1724), - [anon_sym_AMP_AMP] = ACTIONS(1724), - [anon_sym_PIPE_PIPE] = ACTIONS(1724), - [anon_sym_LT] = ACTIONS(1726), - [anon_sym_GT] = ACTIONS(1726), - [anon_sym_GT_GT] = ACTIONS(1724), - [anon_sym_AMP_GT] = ACTIONS(1726), - [anon_sym_AMP_GT_GT] = ACTIONS(1724), - [anon_sym_LT_AMP] = ACTIONS(1724), - [anon_sym_GT_AMP] = ACTIONS(1724), - [anon_sym_LT_LT] = ACTIONS(1726), - [anon_sym_LT_LT_DASH] = ACTIONS(1724), - [anon_sym_LT_LT_LT] = ACTIONS(1724), - [anon_sym_BQUOTE] = ACTIONS(1724), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1726), + [sym__terminated_statement] = STATE(198), + [sym_for_statement] = STATE(2398), + [sym_c_style_for_statement] = STATE(2398), + [sym_while_statement] = STATE(2398), + [sym_if_statement] = STATE(2398), + [sym_case_statement] = STATE(2398), + [sym_function_definition] = STATE(2398), + [sym_subshell] = STATE(2398), + [sym_pipeline] = STATE(2398), + [sym_list] = STATE(2398), + [sym_negated_command] = STATE(2398), + [sym_test_command] = STATE(2398), + [sym_declaration_command] = STATE(2398), + [sym_unset_command] = STATE(2398), + [sym_command] = STATE(2398), + [sym_command_name] = STATE(92), + [sym_variable_assignment] = STATE(2399), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(96), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), + [aux_sym__statements_repeat1] = STATE(198), + [aux_sym_command_repeat1] = STATE(96), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(137), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(149), + [anon_sym_declare] = ACTIONS(151), + [anon_sym_typeset] = ACTIONS(151), + [anon_sym_export] = ACTIONS(151), + [anon_sym_readonly] = ACTIONS(151), + [anon_sym_local] = ACTIONS(151), + [anon_sym_unset] = ACTIONS(153), + [anon_sym_unsetenv] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(159), }, [2210] = { - [sym__heredoc_body_middle] = ACTIONS(4568), - [sym__heredoc_body_end] = ACTIONS(4568), - [anon_sym_DOLLAR] = ACTIONS(4570), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4568), - [sym_comment] = ACTIONS(53), + [anon_sym_RPAREN] = ACTIONS(5450), + [sym_comment] = ACTIONS(55), }, [2211] = { - [sym__heredoc_body_middle] = ACTIONS(4572), - [sym__heredoc_body_end] = ACTIONS(4572), - [anon_sym_DOLLAR] = ACTIONS(4574), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4572), - [sym_comment] = ACTIONS(53), + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_esac] = ACTIONS(947), + [anon_sym_SEMI_SEMI] = ACTIONS(943), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), }, [2212] = { - [sym__heredoc_body_middle] = ACTIONS(4576), - [sym__heredoc_body_end] = ACTIONS(4576), - [anon_sym_DOLLAR] = ACTIONS(4578), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4576), - [sym_comment] = ACTIONS(53), + [sym_for_statement] = STATE(521), + [sym_c_style_for_statement] = STATE(521), + [sym_while_statement] = STATE(521), + [sym_if_statement] = STATE(521), + [sym_case_statement] = STATE(521), + [sym_function_definition] = STATE(521), + [sym_subshell] = STATE(521), + [sym_pipeline] = STATE(521), + [sym_list] = STATE(521), + [sym_negated_command] = STATE(521), + [sym_test_command] = STATE(521), + [sym_declaration_command] = STATE(521), + [sym_unset_command] = STATE(521), + [sym_command] = STATE(521), + [sym_command_name] = STATE(1969), + [sym_variable_assignment] = STATE(2401), + [sym_subscript] = STATE(1971), + [sym_file_redirect] = STATE(1974), + [sym_concatenation] = STATE(1972), + [sym_string] = STATE(1962), + [sym_simple_expansion] = STATE(1962), + [sym_string_expansion] = STATE(1962), + [sym_expansion] = STATE(1962), + [sym_command_substitution] = STATE(1962), + [sym_process_substitution] = STATE(1962), + [aux_sym_command_repeat1] = STATE(1974), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(4445), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(4447), + [anon_sym_while] = ACTIONS(4449), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(4455), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(4457), + [anon_sym_LBRACK] = ACTIONS(4459), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4461), + [anon_sym_declare] = ACTIONS(4463), + [anon_sym_typeset] = ACTIONS(4463), + [anon_sym_export] = ACTIONS(4463), + [anon_sym_readonly] = ACTIONS(4463), + [anon_sym_local] = ACTIONS(4463), + [anon_sym_unset] = ACTIONS(4465), + [anon_sym_unsetenv] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(4467), + [anon_sym_DQUOTE] = ACTIONS(4469), + [anon_sym_DOLLAR] = ACTIONS(4471), + [sym_raw_string] = ACTIONS(4473), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4475), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4477), + [anon_sym_BQUOTE] = ACTIONS(4479), + [anon_sym_LT_LPAREN] = ACTIONS(4481), + [anon_sym_GT_LPAREN] = ACTIONS(4481), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(4483), }, [2213] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(5439), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_esac] = ACTIONS(5452), + [anon_sym_SEMI_SEMI] = ACTIONS(943), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(5454), + [anon_sym_DQUOTE] = ACTIONS(5456), + [anon_sym_DOLLAR] = ACTIONS(5454), + [sym_raw_string] = ACTIONS(5456), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5456), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5456), + [anon_sym_BQUOTE] = ACTIONS(5456), + [anon_sym_LT_LPAREN] = ACTIONS(5456), + [anon_sym_GT_LPAREN] = ACTIONS(5456), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(5454), }, [2214] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(5441), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_for_statement] = STATE(2402), + [sym_c_style_for_statement] = STATE(2402), + [sym_while_statement] = STATE(2402), + [sym_if_statement] = STATE(2402), + [sym_case_statement] = STATE(2402), + [sym_function_definition] = STATE(2402), + [sym_subshell] = STATE(2402), + [sym_pipeline] = STATE(2402), + [sym_list] = STATE(2402), + [sym_negated_command] = STATE(2402), + [sym_test_command] = STATE(2402), + [sym_declaration_command] = STATE(2402), + [sym_unset_command] = STATE(2402), + [sym_command] = STATE(2402), + [sym_command_name] = STATE(1969), + [sym_variable_assignment] = STATE(2403), + [sym_subscript] = STATE(1971), + [sym_file_redirect] = STATE(1974), + [sym_concatenation] = STATE(1972), + [sym_string] = STATE(1962), + [sym_simple_expansion] = STATE(1962), + [sym_string_expansion] = STATE(1962), + [sym_expansion] = STATE(1962), + [sym_command_substitution] = STATE(1962), + [sym_process_substitution] = STATE(1962), + [aux_sym_command_repeat1] = STATE(1974), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(4445), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(4447), + [anon_sym_while] = ACTIONS(4449), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(4455), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(4457), + [anon_sym_LBRACK] = ACTIONS(4459), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4461), + [anon_sym_declare] = ACTIONS(4463), + [anon_sym_typeset] = ACTIONS(4463), + [anon_sym_export] = ACTIONS(4463), + [anon_sym_readonly] = ACTIONS(4463), + [anon_sym_local] = ACTIONS(4463), + [anon_sym_unset] = ACTIONS(4465), + [anon_sym_unsetenv] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(4467), + [anon_sym_DQUOTE] = ACTIONS(4469), + [anon_sym_DOLLAR] = ACTIONS(4471), + [sym_raw_string] = ACTIONS(4473), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4475), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4477), + [anon_sym_BQUOTE] = ACTIONS(4479), + [anon_sym_LT_LPAREN] = ACTIONS(4481), + [anon_sym_GT_LPAREN] = ACTIONS(4481), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(4483), }, [2215] = { - [sym__heredoc_body_middle] = ACTIONS(4608), - [sym__heredoc_body_end] = ACTIONS(4608), - [anon_sym_DOLLAR] = ACTIONS(4610), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4608), - [sym_comment] = ACTIONS(53), + [anon_sym_LT] = ACTIONS(5458), + [anon_sym_GT] = ACTIONS(5458), + [anon_sym_GT_GT] = ACTIONS(5460), + [anon_sym_AMP_GT] = ACTIONS(5458), + [anon_sym_AMP_GT_GT] = ACTIONS(5460), + [anon_sym_LT_AMP] = ACTIONS(5460), + [anon_sym_GT_AMP] = ACTIONS(5460), + [sym_comment] = ACTIONS(55), }, [2216] = { - [sym__concat] = ACTIONS(4568), - [anon_sym_RPAREN] = ACTIONS(4568), - [sym__special_characters] = ACTIONS(4568), - [anon_sym_DQUOTE] = ACTIONS(4568), - [anon_sym_DOLLAR] = ACTIONS(4570), - [sym_raw_string] = ACTIONS(4568), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4568), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4568), - [anon_sym_BQUOTE] = ACTIONS(4568), - [anon_sym_LT_LPAREN] = ACTIONS(4568), - [anon_sym_GT_LPAREN] = ACTIONS(4568), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4568), + [sym_concatenation] = STATE(2405), + [sym_string] = STATE(2407), + [sym_simple_expansion] = STATE(2407), + [sym_string_expansion] = STATE(2407), + [sym_expansion] = STATE(2407), + [sym_command_substitution] = STATE(2407), + [sym_process_substitution] = STATE(2407), + [sym_regex] = ACTIONS(5462), + [sym__special_characters] = ACTIONS(5464), + [anon_sym_DQUOTE] = ACTIONS(4469), + [anon_sym_DOLLAR] = ACTIONS(4471), + [sym_raw_string] = ACTIONS(5466), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4475), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4477), + [anon_sym_BQUOTE] = ACTIONS(4479), + [anon_sym_LT_LPAREN] = ACTIONS(4481), + [anon_sym_GT_LPAREN] = ACTIONS(4481), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(5466), }, [2217] = { - [sym__concat] = ACTIONS(4572), - [anon_sym_RPAREN] = ACTIONS(4572), - [sym__special_characters] = ACTIONS(4572), - [anon_sym_DQUOTE] = ACTIONS(4572), - [anon_sym_DOLLAR] = ACTIONS(4574), - [sym_raw_string] = ACTIONS(4572), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4572), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4572), - [anon_sym_BQUOTE] = ACTIONS(4572), - [anon_sym_LT_LPAREN] = ACTIONS(4572), - [anon_sym_GT_LPAREN] = ACTIONS(4572), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4572), + [sym_concatenation] = STATE(535), + [sym_string] = STATE(2411), + [sym_simple_expansion] = STATE(2411), + [sym_string_expansion] = STATE(2411), + [sym_expansion] = STATE(2411), + [sym_command_substitution] = STATE(2411), + [sym_process_substitution] = STATE(2411), + [sym__special_characters] = ACTIONS(5468), + [anon_sym_DQUOTE] = ACTIONS(5470), + [anon_sym_DOLLAR] = ACTIONS(5472), + [sym_raw_string] = ACTIONS(5474), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5476), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5478), + [anon_sym_BQUOTE] = ACTIONS(5480), + [anon_sym_LT_LPAREN] = ACTIONS(5482), + [anon_sym_GT_LPAREN] = ACTIONS(5482), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(5474), }, [2218] = { - [sym__concat] = ACTIONS(4576), - [anon_sym_RPAREN] = ACTIONS(4576), - [sym__special_characters] = ACTIONS(4576), - [anon_sym_DQUOTE] = ACTIONS(4576), - [anon_sym_DOLLAR] = ACTIONS(4578), - [sym_raw_string] = ACTIONS(4576), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4576), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4576), - [anon_sym_BQUOTE] = ACTIONS(4576), - [anon_sym_LT_LPAREN] = ACTIONS(4576), - [anon_sym_GT_LPAREN] = ACTIONS(4576), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4576), + [sym_concatenation] = STATE(539), + [sym_string] = STATE(2417), + [sym_simple_expansion] = STATE(2417), + [sym_string_expansion] = STATE(2417), + [sym_expansion] = STATE(2417), + [sym_command_substitution] = STATE(2417), + [sym_process_substitution] = STATE(2417), + [sym__special_characters] = ACTIONS(5484), + [anon_sym_DQUOTE] = ACTIONS(5470), + [anon_sym_DOLLAR] = ACTIONS(5472), + [sym_raw_string] = ACTIONS(5486), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5476), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5478), + [anon_sym_BQUOTE] = ACTIONS(5480), + [anon_sym_LT_LPAREN] = ACTIONS(5482), + [anon_sym_GT_LPAREN] = ACTIONS(5482), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(5486), }, [2219] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(5443), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [aux_sym_concatenation_repeat1] = STATE(2190), + [sym__simple_heredoc_body] = ACTIONS(981), + [sym__heredoc_body_beginning] = ACTIONS(981), + [sym_file_descriptor] = ACTIONS(981), + [sym__concat] = ACTIONS(5051), + [anon_sym_SEMI] = ACTIONS(983), + [anon_sym_esac] = ACTIONS(983), + [anon_sym_PIPE] = ACTIONS(983), + [anon_sym_SEMI_SEMI] = ACTIONS(981), + [anon_sym_PIPE_AMP] = ACTIONS(981), + [anon_sym_AMP_AMP] = ACTIONS(981), + [anon_sym_PIPE_PIPE] = ACTIONS(981), + [anon_sym_EQ_TILDE] = ACTIONS(983), + [anon_sym_EQ_EQ] = ACTIONS(983), + [anon_sym_LT] = ACTIONS(983), + [anon_sym_GT] = ACTIONS(983), + [anon_sym_GT_GT] = ACTIONS(981), + [anon_sym_AMP_GT] = ACTIONS(983), + [anon_sym_AMP_GT_GT] = ACTIONS(981), + [anon_sym_LT_AMP] = ACTIONS(981), + [anon_sym_GT_AMP] = ACTIONS(981), + [anon_sym_LT_LT] = ACTIONS(983), + [anon_sym_LT_LT_DASH] = ACTIONS(981), + [anon_sym_LT_LT_LT] = ACTIONS(981), + [sym__special_characters] = ACTIONS(981), + [anon_sym_DQUOTE] = ACTIONS(981), + [anon_sym_DOLLAR] = ACTIONS(983), + [sym_raw_string] = ACTIONS(981), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(981), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(981), + [anon_sym_BQUOTE] = ACTIONS(981), + [anon_sym_LT_LPAREN] = ACTIONS(981), + [anon_sym_GT_LPAREN] = ACTIONS(981), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(983), + [anon_sym_LF] = ACTIONS(981), + [anon_sym_AMP] = ACTIONS(983), }, [2220] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(5445), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [aux_sym_concatenation_repeat1] = STATE(2190), + [sym__simple_heredoc_body] = ACTIONS(985), + [sym__heredoc_body_beginning] = ACTIONS(985), + [sym_file_descriptor] = ACTIONS(985), + [sym__concat] = ACTIONS(5051), + [anon_sym_SEMI] = ACTIONS(987), + [anon_sym_esac] = ACTIONS(987), + [anon_sym_PIPE] = ACTIONS(987), + [anon_sym_SEMI_SEMI] = ACTIONS(985), + [anon_sym_PIPE_AMP] = ACTIONS(985), + [anon_sym_AMP_AMP] = ACTIONS(985), + [anon_sym_PIPE_PIPE] = ACTIONS(985), + [anon_sym_EQ_TILDE] = ACTIONS(987), + [anon_sym_EQ_EQ] = ACTIONS(987), + [anon_sym_LT] = ACTIONS(987), + [anon_sym_GT] = ACTIONS(987), + [anon_sym_GT_GT] = ACTIONS(985), + [anon_sym_AMP_GT] = ACTIONS(987), + [anon_sym_AMP_GT_GT] = ACTIONS(985), + [anon_sym_LT_AMP] = ACTIONS(985), + [anon_sym_GT_AMP] = ACTIONS(985), + [anon_sym_LT_LT] = ACTIONS(987), + [anon_sym_LT_LT_DASH] = ACTIONS(985), + [anon_sym_LT_LT_LT] = ACTIONS(985), + [sym__special_characters] = ACTIONS(985), + [anon_sym_DQUOTE] = ACTIONS(985), + [anon_sym_DOLLAR] = ACTIONS(987), + [sym_raw_string] = ACTIONS(985), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(985), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(985), + [anon_sym_BQUOTE] = ACTIONS(985), + [anon_sym_LT_LPAREN] = ACTIONS(985), + [anon_sym_GT_LPAREN] = ACTIONS(985), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(987), + [anon_sym_LF] = ACTIONS(985), + [anon_sym_AMP] = ACTIONS(987), }, [2221] = { - [sym__concat] = ACTIONS(4608), - [anon_sym_RPAREN] = ACTIONS(4608), - [sym__special_characters] = ACTIONS(4608), - [anon_sym_DQUOTE] = ACTIONS(4608), - [anon_sym_DOLLAR] = ACTIONS(4610), - [sym_raw_string] = ACTIONS(4608), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4608), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4608), - [anon_sym_BQUOTE] = ACTIONS(4608), - [anon_sym_LT_LPAREN] = ACTIONS(4608), - [anon_sym_GT_LPAREN] = ACTIONS(4608), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4608), + [sym_file_redirect] = STATE(2418), + [sym_heredoc_redirect] = STATE(2418), + [sym_heredoc_body] = STATE(540), + [sym_herestring_redirect] = STATE(2418), + [aux_sym_while_statement_repeat1] = STATE(2418), + [sym__simple_heredoc_body] = ACTIONS(339), + [sym__heredoc_body_beginning] = ACTIONS(341), + [sym_file_descriptor] = ACTIONS(5091), + [anon_sym_SEMI] = ACTIONS(991), + [anon_sym_esac] = ACTIONS(989), + [anon_sym_PIPE] = ACTIONS(991), + [anon_sym_SEMI_SEMI] = ACTIONS(989), + [anon_sym_PIPE_AMP] = ACTIONS(989), + [anon_sym_AMP_AMP] = ACTIONS(989), + [anon_sym_PIPE_PIPE] = ACTIONS(989), + [anon_sym_LT] = ACTIONS(5095), + [anon_sym_GT] = ACTIONS(5095), + [anon_sym_GT_GT] = ACTIONS(5097), + [anon_sym_AMP_GT] = ACTIONS(5095), + [anon_sym_AMP_GT_GT] = ACTIONS(5097), + [anon_sym_LT_AMP] = ACTIONS(5097), + [anon_sym_GT_AMP] = ACTIONS(5097), + [anon_sym_LT_LT] = ACTIONS(355), + [anon_sym_LT_LT_DASH] = ACTIONS(357), + [anon_sym_LT_LT_LT] = ACTIONS(5099), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(991), }, [2222] = { - [sym_file_descriptor] = ACTIONS(5069), - [sym__concat] = ACTIONS(5069), - [sym_variable_name] = ACTIONS(5069), - [ts_builtin_sym_end] = ACTIONS(5069), - [anon_sym_SEMI] = ACTIONS(5071), - [anon_sym_PIPE] = ACTIONS(5071), - [anon_sym_RPAREN] = ACTIONS(5069), - [anon_sym_SEMI_SEMI] = ACTIONS(5069), - [anon_sym_PIPE_AMP] = ACTIONS(5069), - [anon_sym_AMP_AMP] = ACTIONS(5069), - [anon_sym_PIPE_PIPE] = ACTIONS(5069), - [anon_sym_LT] = ACTIONS(5071), - [anon_sym_GT] = ACTIONS(5071), - [anon_sym_GT_GT] = ACTIONS(5069), - [anon_sym_AMP_GT] = ACTIONS(5071), - [anon_sym_AMP_GT_GT] = ACTIONS(5069), - [anon_sym_LT_AMP] = ACTIONS(5069), - [anon_sym_GT_AMP] = ACTIONS(5069), - [sym__special_characters] = ACTIONS(5069), - [anon_sym_DQUOTE] = ACTIONS(5069), - [anon_sym_DOLLAR] = ACTIONS(5071), - [sym_raw_string] = ACTIONS(5069), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5069), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5069), - [anon_sym_BQUOTE] = ACTIONS(5069), - [anon_sym_LT_LPAREN] = ACTIONS(5069), - [anon_sym_GT_LPAREN] = ACTIONS(5069), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5071), - [anon_sym_LF] = ACTIONS(5069), - [anon_sym_AMP] = ACTIONS(5071), + [sym_file_redirect] = STATE(2419), + [sym_heredoc_redirect] = STATE(2419), + [sym_heredoc_body] = STATE(540), + [sym_herestring_redirect] = STATE(2419), + [sym_concatenation] = STATE(2420), + [sym_string] = STATE(2220), + [sym_simple_expansion] = STATE(2220), + [sym_string_expansion] = STATE(2220), + [sym_expansion] = STATE(2220), + [sym_command_substitution] = STATE(2220), + [sym_process_substitution] = STATE(2220), + [aux_sym_while_statement_repeat1] = STATE(2419), + [aux_sym_command_repeat2] = STATE(2420), + [sym__simple_heredoc_body] = ACTIONS(339), + [sym__heredoc_body_beginning] = ACTIONS(341), + [sym_file_descriptor] = ACTIONS(5091), + [anon_sym_SEMI] = ACTIONS(991), + [anon_sym_esac] = ACTIONS(991), + [anon_sym_PIPE] = ACTIONS(991), + [anon_sym_SEMI_SEMI] = ACTIONS(989), + [anon_sym_PIPE_AMP] = ACTIONS(989), + [anon_sym_AMP_AMP] = ACTIONS(989), + [anon_sym_PIPE_PIPE] = ACTIONS(989), + [anon_sym_EQ_TILDE] = ACTIONS(5093), + [anon_sym_EQ_EQ] = ACTIONS(5093), + [anon_sym_LT] = ACTIONS(5095), + [anon_sym_GT] = ACTIONS(5095), + [anon_sym_GT_GT] = ACTIONS(5097), + [anon_sym_AMP_GT] = ACTIONS(5095), + [anon_sym_AMP_GT_GT] = ACTIONS(5097), + [anon_sym_LT_AMP] = ACTIONS(5097), + [anon_sym_GT_AMP] = ACTIONS(5097), + [anon_sym_LT_LT] = ACTIONS(355), + [anon_sym_LT_LT_DASH] = ACTIONS(357), + [anon_sym_LT_LT_LT] = ACTIONS(5099), + [sym__special_characters] = ACTIONS(5101), + [anon_sym_DQUOTE] = ACTIONS(4469), + [anon_sym_DOLLAR] = ACTIONS(4471), + [sym_raw_string] = ACTIONS(5103), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4475), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4477), + [anon_sym_BQUOTE] = ACTIONS(4479), + [anon_sym_LT_LPAREN] = ACTIONS(4481), + [anon_sym_GT_LPAREN] = ACTIONS(4481), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(5105), + [anon_sym_LF] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(991), }, [2223] = { - [sym_file_descriptor] = ACTIONS(5073), - [sym__concat] = ACTIONS(5073), - [sym_variable_name] = ACTIONS(5073), - [ts_builtin_sym_end] = ACTIONS(5073), - [anon_sym_SEMI] = ACTIONS(5075), - [anon_sym_PIPE] = ACTIONS(5075), - [anon_sym_RPAREN] = ACTIONS(5073), - [anon_sym_SEMI_SEMI] = ACTIONS(5073), - [anon_sym_PIPE_AMP] = ACTIONS(5073), - [anon_sym_AMP_AMP] = ACTIONS(5073), - [anon_sym_PIPE_PIPE] = ACTIONS(5073), - [anon_sym_LT] = ACTIONS(5075), - [anon_sym_GT] = ACTIONS(5075), - [anon_sym_GT_GT] = ACTIONS(5073), - [anon_sym_AMP_GT] = ACTIONS(5075), - [anon_sym_AMP_GT_GT] = ACTIONS(5073), - [anon_sym_LT_AMP] = ACTIONS(5073), - [anon_sym_GT_AMP] = ACTIONS(5073), - [sym__special_characters] = ACTIONS(5073), - [anon_sym_DQUOTE] = ACTIONS(5073), - [anon_sym_DOLLAR] = ACTIONS(5075), - [sym_raw_string] = ACTIONS(5073), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5073), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5073), - [anon_sym_BQUOTE] = ACTIONS(5073), - [anon_sym_LT_LPAREN] = ACTIONS(5073), - [anon_sym_GT_LPAREN] = ACTIONS(5073), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5075), - [anon_sym_LF] = ACTIONS(5073), - [anon_sym_AMP] = ACTIONS(5075), + [anon_sym_esac] = ACTIONS(5452), + [sym__special_characters] = ACTIONS(5456), + [anon_sym_DQUOTE] = ACTIONS(5456), + [anon_sym_DOLLAR] = ACTIONS(5454), + [sym_raw_string] = ACTIONS(5456), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5456), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5456), + [anon_sym_BQUOTE] = ACTIONS(5456), + [anon_sym_LT_LPAREN] = ACTIONS(5456), + [anon_sym_GT_LPAREN] = ACTIONS(5456), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(5454), }, [2224] = { - [sym__concat] = ACTIONS(3788), - [anon_sym_RPAREN_RPAREN] = ACTIONS(3788), - [anon_sym_AMP_AMP] = ACTIONS(3788), - [anon_sym_PIPE_PIPE] = ACTIONS(3788), - [anon_sym_EQ_TILDE] = ACTIONS(3788), - [anon_sym_EQ_EQ] = ACTIONS(3788), - [anon_sym_EQ] = ACTIONS(3790), - [anon_sym_LT] = ACTIONS(3788), - [anon_sym_GT] = ACTIONS(3788), - [anon_sym_BANG_EQ] = ACTIONS(3788), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(3788), + [anon_sym_SEMI] = ACTIONS(5077), + [anon_sym_esac] = ACTIONS(5488), + [anon_sym_PIPE] = ACTIONS(5081), + [anon_sym_SEMI_SEMI] = ACTIONS(5490), + [anon_sym_PIPE_AMP] = ACTIONS(5085), + [anon_sym_AMP_AMP] = ACTIONS(5087), + [anon_sym_PIPE_PIPE] = ACTIONS(5087), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(5089), + [anon_sym_AMP] = ACTIONS(5077), }, [2225] = { - [sym__concat] = ACTIONS(3796), - [anon_sym_RPAREN_RPAREN] = ACTIONS(3796), - [anon_sym_AMP_AMP] = ACTIONS(3796), - [anon_sym_PIPE_PIPE] = ACTIONS(3796), - [anon_sym_EQ_TILDE] = ACTIONS(3796), - [anon_sym_EQ_EQ] = ACTIONS(3796), - [anon_sym_EQ] = ACTIONS(3798), - [anon_sym_LT] = ACTIONS(3796), - [anon_sym_GT] = ACTIONS(3796), - [anon_sym_BANG_EQ] = ACTIONS(3796), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(3796), + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(5077), + [anon_sym_esac] = ACTIONS(5452), + [anon_sym_PIPE] = ACTIONS(5081), + [anon_sym_SEMI_SEMI] = ACTIONS(5490), + [anon_sym_PIPE_AMP] = ACTIONS(5085), + [anon_sym_AMP_AMP] = ACTIONS(5087), + [anon_sym_PIPE_PIPE] = ACTIONS(5087), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(5089), + [anon_sym_AMP] = ACTIONS(5077), }, [2226] = { - [aux_sym_concatenation_repeat1] = STATE(1293), - [sym__concat] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(5447), - [sym_comment] = ACTIONS(53), + [sym__terminated_statement] = STATE(2226), + [sym_for_statement] = STATE(2422), + [sym_c_style_for_statement] = STATE(2422), + [sym_while_statement] = STATE(2422), + [sym_if_statement] = STATE(2422), + [sym_case_statement] = STATE(2422), + [sym_function_definition] = STATE(2422), + [sym_subshell] = STATE(2422), + [sym_pipeline] = STATE(2422), + [sym_list] = STATE(2422), + [sym_negated_command] = STATE(2422), + [sym_test_command] = STATE(2422), + [sym_declaration_command] = STATE(2422), + [sym_unset_command] = STATE(2422), + [sym_command] = STATE(2422), + [sym_command_name] = STATE(64), + [sym_variable_assignment] = STATE(2423), + [sym_subscript] = STATE(66), + [sym_file_redirect] = STATE(67), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(60), + [sym_simple_expansion] = STATE(60), + [sym_string_expansion] = STATE(60), + [sym_expansion] = STATE(60), + [sym_command_substitution] = STATE(60), + [sym_process_substitution] = STATE(60), + [aux_sym__statements_repeat1] = STATE(2226), + [aux_sym_command_repeat1] = STATE(67), + [sym_file_descriptor] = ACTIONS(997), + [sym_variable_name] = ACTIONS(1000), + [anon_sym_for] = ACTIONS(1003), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1006), + [anon_sym_while] = ACTIONS(1009), + [anon_sym_if] = ACTIONS(1012), + [anon_sym_case] = ACTIONS(1015), + [anon_sym_esac] = ACTIONS(3645), + [anon_sym_SEMI_SEMI] = ACTIONS(3728), + [anon_sym_function] = ACTIONS(1018), + [anon_sym_LPAREN] = ACTIONS(1021), + [anon_sym_BANG] = ACTIONS(1024), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1030), + [anon_sym_declare] = ACTIONS(1033), + [anon_sym_typeset] = ACTIONS(1033), + [anon_sym_export] = ACTIONS(1033), + [anon_sym_readonly] = ACTIONS(1033), + [anon_sym_local] = ACTIONS(1033), + [anon_sym_unset] = ACTIONS(1036), + [anon_sym_unsetenv] = ACTIONS(1036), + [anon_sym_LT] = ACTIONS(1039), + [anon_sym_GT] = ACTIONS(1039), + [anon_sym_GT_GT] = ACTIONS(1042), + [anon_sym_AMP_GT] = ACTIONS(1039), + [anon_sym_AMP_GT_GT] = ACTIONS(1042), + [anon_sym_LT_AMP] = ACTIONS(1042), + [anon_sym_GT_AMP] = ACTIONS(1042), + [sym__special_characters] = ACTIONS(1045), + [anon_sym_DQUOTE] = ACTIONS(1048), + [anon_sym_DOLLAR] = ACTIONS(1051), + [sym_raw_string] = ACTIONS(1054), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1057), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1060), + [anon_sym_BQUOTE] = ACTIONS(1063), + [anon_sym_LT_LPAREN] = ACTIONS(1066), + [anon_sym_GT_LPAREN] = ACTIONS(1066), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1069), }, [2227] = { - [aux_sym_concatenation_repeat1] = STATE(1293), - [sym__concat] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(5449), - [sym_comment] = ACTIONS(53), + [sym_file_redirect] = STATE(2419), + [sym_heredoc_redirect] = STATE(2419), + [sym_heredoc_body] = STATE(540), + [sym_herestring_redirect] = STATE(2419), + [sym_concatenation] = STATE(2424), + [sym_string] = STATE(2220), + [sym_simple_expansion] = STATE(2220), + [sym_string_expansion] = STATE(2220), + [sym_expansion] = STATE(2220), + [sym_command_substitution] = STATE(2220), + [sym_process_substitution] = STATE(2220), + [aux_sym_while_statement_repeat1] = STATE(2419), + [aux_sym_command_repeat2] = STATE(2424), + [sym__simple_heredoc_body] = ACTIONS(339), + [sym__heredoc_body_beginning] = ACTIONS(341), + [sym_file_descriptor] = ACTIONS(5091), + [anon_sym_SEMI] = ACTIONS(991), + [anon_sym_esac] = ACTIONS(991), + [anon_sym_PIPE] = ACTIONS(991), + [anon_sym_SEMI_SEMI] = ACTIONS(989), + [anon_sym_PIPE_AMP] = ACTIONS(989), + [anon_sym_AMP_AMP] = ACTIONS(989), + [anon_sym_PIPE_PIPE] = ACTIONS(989), + [anon_sym_EQ_TILDE] = ACTIONS(5093), + [anon_sym_EQ_EQ] = ACTIONS(5093), + [anon_sym_LT] = ACTIONS(5095), + [anon_sym_GT] = ACTIONS(5095), + [anon_sym_GT_GT] = ACTIONS(5097), + [anon_sym_AMP_GT] = ACTIONS(5095), + [anon_sym_AMP_GT_GT] = ACTIONS(5097), + [anon_sym_LT_AMP] = ACTIONS(5097), + [anon_sym_GT_AMP] = ACTIONS(5097), + [anon_sym_LT_LT] = ACTIONS(355), + [anon_sym_LT_LT_DASH] = ACTIONS(357), + [anon_sym_LT_LT_LT] = ACTIONS(5099), + [sym__special_characters] = ACTIONS(5101), + [anon_sym_DQUOTE] = ACTIONS(4469), + [anon_sym_DOLLAR] = ACTIONS(4471), + [sym_raw_string] = ACTIONS(5103), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4475), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4477), + [anon_sym_BQUOTE] = ACTIONS(4479), + [anon_sym_LT_LPAREN] = ACTIONS(4481), + [anon_sym_GT_LPAREN] = ACTIONS(4481), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(5105), + [anon_sym_LF] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(991), }, [2228] = { - [anon_sym_RBRACE] = ACTIONS(5449), - [sym_comment] = ACTIONS(53), + [sym__terminated_statement] = STATE(2226), + [sym_for_statement] = STATE(2426), + [sym_c_style_for_statement] = STATE(2426), + [sym_while_statement] = STATE(2426), + [sym_if_statement] = STATE(2426), + [sym_case_statement] = STATE(2426), + [sym_function_definition] = STATE(2426), + [sym_subshell] = STATE(2426), + [sym_pipeline] = STATE(2426), + [sym_list] = STATE(2426), + [sym_negated_command] = STATE(2426), + [sym_test_command] = STATE(2426), + [sym_declaration_command] = STATE(2426), + [sym_unset_command] = STATE(2426), + [sym_command] = STATE(2426), + [sym_command_name] = STATE(1969), + [sym_variable_assignment] = STATE(2427), + [sym_subscript] = STATE(1971), + [sym_file_redirect] = STATE(1974), + [sym_concatenation] = STATE(1972), + [sym_string] = STATE(1962), + [sym_simple_expansion] = STATE(1962), + [sym_string_expansion] = STATE(1962), + [sym_expansion] = STATE(1962), + [sym_command_substitution] = STATE(1962), + [sym_process_substitution] = STATE(1962), + [aux_sym__statements_repeat1] = STATE(2226), + [aux_sym_command_repeat1] = STATE(1974), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(4445), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(4447), + [anon_sym_while] = ACTIONS(4449), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_esac] = ACTIONS(5452), + [anon_sym_SEMI_SEMI] = ACTIONS(5492), + [anon_sym_function] = ACTIONS(4455), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(4457), + [anon_sym_LBRACK] = ACTIONS(4459), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4461), + [anon_sym_declare] = ACTIONS(4463), + [anon_sym_typeset] = ACTIONS(4463), + [anon_sym_export] = ACTIONS(4463), + [anon_sym_readonly] = ACTIONS(4463), + [anon_sym_local] = ACTIONS(4463), + [anon_sym_unset] = ACTIONS(4465), + [anon_sym_unsetenv] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(4467), + [anon_sym_DQUOTE] = ACTIONS(4469), + [anon_sym_DOLLAR] = ACTIONS(4471), + [sym_raw_string] = ACTIONS(4473), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4475), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4477), + [anon_sym_BQUOTE] = ACTIONS(4479), + [anon_sym_LT_LPAREN] = ACTIONS(4481), + [anon_sym_GT_LPAREN] = ACTIONS(4481), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(4483), }, [2229] = { - [sym_concatenation] = STATE(2401), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(2401), - [anon_sym_RBRACE] = ACTIONS(5451), - [anon_sym_EQ] = ACTIONS(5453), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(5455), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(5453), - [anon_sym_COLON_QMARK] = ACTIONS(5453), - [anon_sym_COLON_DASH] = ACTIONS(5453), - [anon_sym_PERCENT] = ACTIONS(5453), - [anon_sym_DASH] = ACTIONS(5453), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_esac] = ACTIONS(5494), + [anon_sym_SEMI_SEMI] = ACTIONS(943), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(5496), + [anon_sym_DQUOTE] = ACTIONS(5498), + [anon_sym_DOLLAR] = ACTIONS(5496), + [sym_raw_string] = ACTIONS(5498), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5498), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5498), + [anon_sym_BQUOTE] = ACTIONS(5498), + [anon_sym_LT_LPAREN] = ACTIONS(5498), + [anon_sym_GT_LPAREN] = ACTIONS(5498), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(5496), }, [2230] = { - [sym__concat] = ACTIONS(3852), - [anon_sym_RPAREN_RPAREN] = ACTIONS(3852), - [anon_sym_AMP_AMP] = ACTIONS(3852), - [anon_sym_PIPE_PIPE] = ACTIONS(3852), - [anon_sym_EQ_TILDE] = ACTIONS(3852), - [anon_sym_EQ_EQ] = ACTIONS(3852), - [anon_sym_EQ] = ACTIONS(3854), - [anon_sym_LT] = ACTIONS(3852), - [anon_sym_GT] = ACTIONS(3852), - [anon_sym_BANG_EQ] = ACTIONS(3852), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(3852), + [anon_sym_esac] = ACTIONS(5494), + [sym__special_characters] = ACTIONS(5498), + [anon_sym_DQUOTE] = ACTIONS(5498), + [anon_sym_DOLLAR] = ACTIONS(5496), + [sym_raw_string] = ACTIONS(5498), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5498), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5498), + [anon_sym_BQUOTE] = ACTIONS(5498), + [anon_sym_LT_LPAREN] = ACTIONS(5498), + [anon_sym_GT_LPAREN] = ACTIONS(5498), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(5496), }, [2231] = { - [sym_concatenation] = STATE(2402), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(2402), - [anon_sym_RBRACE] = ACTIONS(5449), - [anon_sym_EQ] = ACTIONS(5457), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(5459), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(5457), - [anon_sym_COLON_QMARK] = ACTIONS(5457), - [anon_sym_COLON_DASH] = ACTIONS(5457), - [anon_sym_PERCENT] = ACTIONS(5457), - [anon_sym_DASH] = ACTIONS(5457), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [anon_sym_SEMI] = ACTIONS(5077), + [anon_sym_esac] = ACTIONS(5500), + [anon_sym_PIPE] = ACTIONS(5081), + [anon_sym_SEMI_SEMI] = ACTIONS(5502), + [anon_sym_PIPE_AMP] = ACTIONS(5085), + [anon_sym_AMP_AMP] = ACTIONS(5087), + [anon_sym_PIPE_PIPE] = ACTIONS(5087), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(5089), + [anon_sym_AMP] = ACTIONS(5077), }, [2232] = { - [sym__concat] = ACTIONS(3893), - [anon_sym_RPAREN_RPAREN] = ACTIONS(3893), - [anon_sym_AMP_AMP] = ACTIONS(3893), - [anon_sym_PIPE_PIPE] = ACTIONS(3893), - [anon_sym_EQ_TILDE] = ACTIONS(3893), - [anon_sym_EQ_EQ] = ACTIONS(3893), - [anon_sym_EQ] = ACTIONS(3895), - [anon_sym_LT] = ACTIONS(3893), - [anon_sym_GT] = ACTIONS(3893), - [anon_sym_BANG_EQ] = ACTIONS(3893), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(3893), + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(5077), + [anon_sym_esac] = ACTIONS(5494), + [anon_sym_PIPE] = ACTIONS(5081), + [anon_sym_SEMI_SEMI] = ACTIONS(5502), + [anon_sym_PIPE_AMP] = ACTIONS(5085), + [anon_sym_AMP_AMP] = ACTIONS(5087), + [anon_sym_PIPE_PIPE] = ACTIONS(5087), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(5089), + [anon_sym_AMP] = ACTIONS(5077), }, [2233] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(5461), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym__terminated_statement] = STATE(2226), + [sym_for_statement] = STATE(2430), + [sym_c_style_for_statement] = STATE(2430), + [sym_while_statement] = STATE(2430), + [sym_if_statement] = STATE(2430), + [sym_case_statement] = STATE(2430), + [sym_function_definition] = STATE(2430), + [sym_subshell] = STATE(2430), + [sym_pipeline] = STATE(2430), + [sym_list] = STATE(2430), + [sym_negated_command] = STATE(2430), + [sym_test_command] = STATE(2430), + [sym_declaration_command] = STATE(2430), + [sym_unset_command] = STATE(2430), + [sym_command] = STATE(2430), + [sym_command_name] = STATE(1969), + [sym_variable_assignment] = STATE(2431), + [sym_subscript] = STATE(1971), + [sym_file_redirect] = STATE(1974), + [sym_concatenation] = STATE(1972), + [sym_string] = STATE(1962), + [sym_simple_expansion] = STATE(1962), + [sym_string_expansion] = STATE(1962), + [sym_expansion] = STATE(1962), + [sym_command_substitution] = STATE(1962), + [sym_process_substitution] = STATE(1962), + [aux_sym__statements_repeat1] = STATE(2226), + [aux_sym_command_repeat1] = STATE(1974), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(4445), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(4447), + [anon_sym_while] = ACTIONS(4449), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_esac] = ACTIONS(5494), + [anon_sym_SEMI_SEMI] = ACTIONS(5504), + [anon_sym_function] = ACTIONS(4455), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(4457), + [anon_sym_LBRACK] = ACTIONS(4459), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4461), + [anon_sym_declare] = ACTIONS(4463), + [anon_sym_typeset] = ACTIONS(4463), + [anon_sym_export] = ACTIONS(4463), + [anon_sym_readonly] = ACTIONS(4463), + [anon_sym_local] = ACTIONS(4463), + [anon_sym_unset] = ACTIONS(4465), + [anon_sym_unsetenv] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(4467), + [anon_sym_DQUOTE] = ACTIONS(4469), + [anon_sym_DOLLAR] = ACTIONS(4471), + [sym_raw_string] = ACTIONS(4473), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4475), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4477), + [anon_sym_BQUOTE] = ACTIONS(4479), + [anon_sym_LT_LPAREN] = ACTIONS(4481), + [anon_sym_GT_LPAREN] = ACTIONS(4481), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(4483), }, [2234] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(5449), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym__terminated_statement] = STATE(2435), + [sym_for_statement] = STATE(2433), + [sym_c_style_for_statement] = STATE(2433), + [sym_while_statement] = STATE(2433), + [sym_if_statement] = STATE(2433), + [sym_case_statement] = STATE(2433), + [sym_function_definition] = STATE(2433), + [sym_subshell] = STATE(2433), + [sym_pipeline] = STATE(2433), + [sym_list] = STATE(2433), + [sym_negated_command] = STATE(2433), + [sym_test_command] = STATE(2433), + [sym_declaration_command] = STATE(2433), + [sym_unset_command] = STATE(2433), + [sym_command] = STATE(2433), + [sym_command_name] = STATE(64), + [sym_variable_assignment] = STATE(2434), + [sym_subscript] = STATE(66), + [sym_file_redirect] = STATE(67), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(60), + [sym_simple_expansion] = STATE(60), + [sym_string_expansion] = STATE(60), + [sym_expansion] = STATE(60), + [sym_command_substitution] = STATE(60), + [sym_process_substitution] = STATE(60), + [aux_sym__statements_repeat1] = STATE(2435), + [aux_sym_command_repeat1] = STATE(67), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(95), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(97), + [anon_sym_while] = ACTIONS(99), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_SEMI_SEMI] = ACTIONS(5506), + [anon_sym_function] = ACTIONS(101), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_LBRACK] = ACTIONS(107), + [anon_sym_declare] = ACTIONS(109), + [anon_sym_typeset] = ACTIONS(109), + [anon_sym_export] = ACTIONS(109), + [anon_sym_readonly] = ACTIONS(109), + [anon_sym_local] = ACTIONS(109), + [anon_sym_unset] = ACTIONS(111), + [anon_sym_unsetenv] = ACTIONS(111), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(115), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(117), }, [2235] = { - [sym__concat] = ACTIONS(3915), - [anon_sym_RPAREN_RPAREN] = ACTIONS(3915), - [anon_sym_AMP_AMP] = ACTIONS(3915), - [anon_sym_PIPE_PIPE] = ACTIONS(3915), - [anon_sym_EQ_TILDE] = ACTIONS(3915), - [anon_sym_EQ_EQ] = ACTIONS(3915), - [anon_sym_EQ] = ACTIONS(3917), - [anon_sym_LT] = ACTIONS(3915), - [anon_sym_GT] = ACTIONS(3915), - [anon_sym_BANG_EQ] = ACTIONS(3915), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(3915), + [aux_sym_case_item_repeat1] = STATE(1976), + [anon_sym_PIPE] = ACTIONS(3670), + [anon_sym_RPAREN] = ACTIONS(5508), + [sym_comment] = ACTIONS(55), }, [2236] = { - [sym__concat] = ACTIONS(3939), - [anon_sym_RPAREN_RPAREN] = ACTIONS(3939), - [anon_sym_AMP_AMP] = ACTIONS(3939), - [anon_sym_PIPE_PIPE] = ACTIONS(3939), - [anon_sym_EQ_TILDE] = ACTIONS(3939), - [anon_sym_EQ_EQ] = ACTIONS(3939), - [anon_sym_EQ] = ACTIONS(3941), - [anon_sym_LT] = ACTIONS(3939), - [anon_sym_GT] = ACTIONS(3939), - [anon_sym_BANG_EQ] = ACTIONS(3939), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(3939), + [sym__terminated_statement] = STATE(2440), + [sym_for_statement] = STATE(2438), + [sym_c_style_for_statement] = STATE(2438), + [sym_while_statement] = STATE(2438), + [sym_if_statement] = STATE(2438), + [sym_case_statement] = STATE(2438), + [sym_function_definition] = STATE(2438), + [sym_subshell] = STATE(2438), + [sym_pipeline] = STATE(2438), + [sym_list] = STATE(2438), + [sym_negated_command] = STATE(2438), + [sym_test_command] = STATE(2438), + [sym_declaration_command] = STATE(2438), + [sym_unset_command] = STATE(2438), + [sym_command] = STATE(2438), + [sym_command_name] = STATE(64), + [sym_variable_assignment] = STATE(2439), + [sym_subscript] = STATE(66), + [sym_file_redirect] = STATE(67), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(60), + [sym_simple_expansion] = STATE(60), + [sym_string_expansion] = STATE(60), + [sym_expansion] = STATE(60), + [sym_command_substitution] = STATE(60), + [sym_process_substitution] = STATE(60), + [aux_sym__statements_repeat1] = STATE(2440), + [aux_sym_command_repeat1] = STATE(67), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(95), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(97), + [anon_sym_while] = ACTIONS(99), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_SEMI_SEMI] = ACTIONS(5510), + [anon_sym_function] = ACTIONS(101), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_LBRACK] = ACTIONS(107), + [anon_sym_declare] = ACTIONS(109), + [anon_sym_typeset] = ACTIONS(109), + [anon_sym_export] = ACTIONS(109), + [anon_sym_readonly] = ACTIONS(109), + [anon_sym_local] = ACTIONS(109), + [anon_sym_unset] = ACTIONS(111), + [anon_sym_unsetenv] = ACTIONS(111), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(115), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(117), }, [2237] = { - [ts_builtin_sym_end] = ACTIONS(5463), - [anon_sym_SEMI] = ACTIONS(5465), - [anon_sym_esac] = ACTIONS(5463), - [anon_sym_PIPE] = ACTIONS(5465), - [anon_sym_RPAREN] = ACTIONS(5463), - [anon_sym_SEMI_SEMI] = ACTIONS(5463), - [anon_sym_PIPE_AMP] = ACTIONS(5463), - [anon_sym_AMP_AMP] = ACTIONS(5463), - [anon_sym_PIPE_PIPE] = ACTIONS(5463), - [anon_sym_BQUOTE] = ACTIONS(5463), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(5463), - [anon_sym_AMP] = ACTIONS(5465), + [aux_sym_case_item_repeat1] = STATE(1976), + [anon_sym_PIPE] = ACTIONS(3670), + [anon_sym_RPAREN] = ACTIONS(5512), + [sym_comment] = ACTIONS(55), }, [2238] = { - [sym__concat] = ACTIONS(5069), - [anon_sym_SEMI] = ACTIONS(5071), - [anon_sym_esac] = ACTIONS(5069), - [anon_sym_PIPE] = ACTIONS(5071), - [anon_sym_SEMI_SEMI] = ACTIONS(5069), - [anon_sym_PIPE_AMP] = ACTIONS(5069), - [anon_sym_AMP_AMP] = ACTIONS(5069), - [anon_sym_PIPE_PIPE] = ACTIONS(5069), - [anon_sym_EQ_TILDE] = ACTIONS(5069), - [anon_sym_EQ_EQ] = ACTIONS(5069), - [anon_sym_EQ] = ACTIONS(5071), - [anon_sym_LT] = ACTIONS(5069), - [anon_sym_GT] = ACTIONS(5069), - [anon_sym_BANG_EQ] = ACTIONS(5069), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(5069), - [anon_sym_LF] = ACTIONS(5069), - [anon_sym_AMP] = ACTIONS(5071), + [ts_builtin_sym_end] = ACTIONS(5514), + [anon_sym_SEMI] = ACTIONS(5516), + [anon_sym_esac] = ACTIONS(5514), + [anon_sym_PIPE] = ACTIONS(5516), + [anon_sym_RPAREN] = ACTIONS(5514), + [anon_sym_SEMI_SEMI] = ACTIONS(5514), + [anon_sym_PIPE_AMP] = ACTIONS(5514), + [anon_sym_AMP_AMP] = ACTIONS(5514), + [anon_sym_PIPE_PIPE] = ACTIONS(5514), + [anon_sym_BQUOTE] = ACTIONS(5514), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(5514), + [anon_sym_AMP] = ACTIONS(5516), }, [2239] = { - [sym__concat] = ACTIONS(5073), - [anon_sym_SEMI] = ACTIONS(5075), - [anon_sym_esac] = ACTIONS(5073), - [anon_sym_PIPE] = ACTIONS(5075), - [anon_sym_SEMI_SEMI] = ACTIONS(5073), - [anon_sym_PIPE_AMP] = ACTIONS(5073), - [anon_sym_AMP_AMP] = ACTIONS(5073), - [anon_sym_PIPE_PIPE] = ACTIONS(5073), - [anon_sym_EQ_TILDE] = ACTIONS(5073), - [anon_sym_EQ_EQ] = ACTIONS(5073), - [anon_sym_EQ] = ACTIONS(5075), - [anon_sym_LT] = ACTIONS(5073), - [anon_sym_GT] = ACTIONS(5073), - [anon_sym_BANG_EQ] = ACTIONS(5073), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(5073), - [anon_sym_LF] = ACTIONS(5073), - [anon_sym_AMP] = ACTIONS(5075), + [ts_builtin_sym_end] = ACTIONS(5518), + [anon_sym_SEMI] = ACTIONS(5520), + [anon_sym_esac] = ACTIONS(5518), + [anon_sym_PIPE] = ACTIONS(5520), + [anon_sym_RPAREN] = ACTIONS(5518), + [anon_sym_SEMI_SEMI] = ACTIONS(5518), + [anon_sym_PIPE_AMP] = ACTIONS(5518), + [anon_sym_AMP_AMP] = ACTIONS(5518), + [anon_sym_PIPE_PIPE] = ACTIONS(5518), + [anon_sym_BQUOTE] = ACTIONS(5518), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(5518), + [anon_sym_AMP] = ACTIONS(5520), }, [2240] = { - [sym_do_group] = STATE(2404), - [sym_compound_statement] = STATE(2404), - [anon_sym_do] = ACTIONS(1175), - [anon_sym_LBRACE] = ACTIONS(3259), - [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(5202), + [anon_sym_in] = ACTIONS(5202), + [anon_sym_SEMI] = ACTIONS(5204), + [anon_sym_SEMI_SEMI] = ACTIONS(5202), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(5202), + [anon_sym_AMP] = ACTIONS(5202), }, [2241] = { - [sym__concat] = ACTIONS(4568), - [anon_sym_SEMI] = ACTIONS(4570), - [anon_sym_SEMI_SEMI] = ACTIONS(4568), - [sym__special_characters] = ACTIONS(4568), - [anon_sym_DQUOTE] = ACTIONS(4568), - [anon_sym_DOLLAR] = ACTIONS(4570), - [sym_raw_string] = ACTIONS(4568), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4568), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4568), - [anon_sym_BQUOTE] = ACTIONS(4568), - [anon_sym_LT_LPAREN] = ACTIONS(4568), - [anon_sym_GT_LPAREN] = ACTIONS(4568), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4570), - [anon_sym_LF] = ACTIONS(4568), - [anon_sym_AMP] = ACTIONS(4568), + [sym__concat] = ACTIONS(5206), + [anon_sym_in] = ACTIONS(5206), + [anon_sym_SEMI] = ACTIONS(5208), + [anon_sym_SEMI_SEMI] = ACTIONS(5206), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(5206), + [anon_sym_AMP] = ACTIONS(5206), }, [2242] = { - [sym__concat] = ACTIONS(4572), - [anon_sym_SEMI] = ACTIONS(4574), - [anon_sym_SEMI_SEMI] = ACTIONS(4572), - [sym__special_characters] = ACTIONS(4572), - [anon_sym_DQUOTE] = ACTIONS(4572), - [anon_sym_DOLLAR] = ACTIONS(4574), - [sym_raw_string] = ACTIONS(4572), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4572), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4572), - [anon_sym_BQUOTE] = ACTIONS(4572), - [anon_sym_LT_LPAREN] = ACTIONS(4572), - [anon_sym_GT_LPAREN] = ACTIONS(4572), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4574), - [anon_sym_LF] = ACTIONS(4572), - [anon_sym_AMP] = ACTIONS(4572), + [aux_sym_concatenation_repeat1] = STATE(2242), + [sym_file_descriptor] = ACTIONS(1763), + [sym__concat] = ACTIONS(4936), + [anon_sym_SEMI] = ACTIONS(1765), + [anon_sym_PIPE] = ACTIONS(1765), + [anon_sym_RPAREN] = ACTIONS(1763), + [anon_sym_SEMI_SEMI] = ACTIONS(1763), + [anon_sym_PIPE_AMP] = ACTIONS(1763), + [anon_sym_AMP_AMP] = ACTIONS(1763), + [anon_sym_PIPE_PIPE] = ACTIONS(1763), + [anon_sym_LT] = ACTIONS(1765), + [anon_sym_GT] = ACTIONS(1765), + [anon_sym_GT_GT] = ACTIONS(1763), + [anon_sym_AMP_GT] = ACTIONS(1765), + [anon_sym_AMP_GT_GT] = ACTIONS(1763), + [anon_sym_LT_AMP] = ACTIONS(1763), + [anon_sym_GT_AMP] = ACTIONS(1763), + [anon_sym_LT_LT] = ACTIONS(1765), + [anon_sym_LT_LT_DASH] = ACTIONS(1763), + [anon_sym_LT_LT_LT] = ACTIONS(1763), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1763), + [anon_sym_AMP] = ACTIONS(1765), }, [2243] = { - [sym__concat] = ACTIONS(4576), - [anon_sym_SEMI] = ACTIONS(4578), - [anon_sym_SEMI_SEMI] = ACTIONS(4576), - [sym__special_characters] = ACTIONS(4576), - [anon_sym_DQUOTE] = ACTIONS(4576), - [anon_sym_DOLLAR] = ACTIONS(4578), - [sym_raw_string] = ACTIONS(4576), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4576), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4576), - [anon_sym_BQUOTE] = ACTIONS(4576), - [anon_sym_LT_LPAREN] = ACTIONS(4576), - [anon_sym_GT_LPAREN] = ACTIONS(4576), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4578), - [anon_sym_LF] = ACTIONS(4576), - [anon_sym_AMP] = ACTIONS(4576), + [aux_sym_concatenation_repeat1] = STATE(2243), + [sym__concat] = ACTIONS(2807), + [anon_sym_SEMI] = ACTIONS(1765), + [anon_sym_PIPE] = ACTIONS(1765), + [anon_sym_RPAREN] = ACTIONS(1763), + [anon_sym_SEMI_SEMI] = ACTIONS(1763), + [anon_sym_PIPE_AMP] = ACTIONS(1763), + [anon_sym_AMP_AMP] = ACTIONS(1763), + [anon_sym_PIPE_PIPE] = ACTIONS(1763), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1763), + [anon_sym_AMP] = ACTIONS(1765), }, [2244] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(5467), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym__concat] = ACTIONS(5202), + [anon_sym_AMP_AMP] = ACTIONS(5202), + [anon_sym_PIPE_PIPE] = ACTIONS(5202), + [anon_sym_RBRACK] = ACTIONS(5202), + [anon_sym_EQ_TILDE] = ACTIONS(5202), + [anon_sym_EQ_EQ] = ACTIONS(5202), + [anon_sym_EQ] = ACTIONS(5204), + [anon_sym_PLUS_EQ] = ACTIONS(5202), + [anon_sym_LT] = ACTIONS(5204), + [anon_sym_GT] = ACTIONS(5204), + [anon_sym_BANG_EQ] = ACTIONS(5202), + [anon_sym_PLUS] = ACTIONS(5204), + [anon_sym_DASH] = ACTIONS(5204), + [anon_sym_DASH_EQ] = ACTIONS(5202), + [anon_sym_LT_EQ] = ACTIONS(5202), + [anon_sym_GT_EQ] = ACTIONS(5202), + [anon_sym_PLUS_PLUS] = ACTIONS(5202), + [anon_sym_DASH_DASH] = ACTIONS(5202), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(5202), }, [2245] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(5469), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym__concat] = ACTIONS(5206), + [anon_sym_AMP_AMP] = ACTIONS(5206), + [anon_sym_PIPE_PIPE] = ACTIONS(5206), + [anon_sym_RBRACK] = ACTIONS(5206), + [anon_sym_EQ_TILDE] = ACTIONS(5206), + [anon_sym_EQ_EQ] = ACTIONS(5206), + [anon_sym_EQ] = ACTIONS(5208), + [anon_sym_PLUS_EQ] = ACTIONS(5206), + [anon_sym_LT] = ACTIONS(5208), + [anon_sym_GT] = ACTIONS(5208), + [anon_sym_BANG_EQ] = ACTIONS(5206), + [anon_sym_PLUS] = ACTIONS(5208), + [anon_sym_DASH] = ACTIONS(5208), + [anon_sym_DASH_EQ] = ACTIONS(5206), + [anon_sym_LT_EQ] = ACTIONS(5206), + [anon_sym_GT_EQ] = ACTIONS(5206), + [anon_sym_PLUS_PLUS] = ACTIONS(5206), + [anon_sym_DASH_DASH] = ACTIONS(5206), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(5206), }, [2246] = { - [sym__concat] = ACTIONS(4608), - [anon_sym_SEMI] = ACTIONS(4610), - [anon_sym_SEMI_SEMI] = ACTIONS(4608), - [sym__special_characters] = ACTIONS(4608), - [anon_sym_DQUOTE] = ACTIONS(4608), - [anon_sym_DOLLAR] = ACTIONS(4610), - [sym_raw_string] = ACTIONS(4608), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4608), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4608), - [anon_sym_BQUOTE] = ACTIONS(4608), - [anon_sym_LT_LPAREN] = ACTIONS(4608), - [anon_sym_GT_LPAREN] = ACTIONS(4608), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4610), - [anon_sym_LF] = ACTIONS(4608), - [anon_sym_AMP] = ACTIONS(4608), + [sym__concat] = ACTIONS(5202), + [sym_variable_name] = ACTIONS(5202), + [ts_builtin_sym_end] = ACTIONS(5202), + [anon_sym_SEMI] = ACTIONS(5204), + [anon_sym_PIPE] = ACTIONS(5204), + [anon_sym_RPAREN] = ACTIONS(5202), + [anon_sym_SEMI_SEMI] = ACTIONS(5202), + [anon_sym_PIPE_AMP] = ACTIONS(5202), + [anon_sym_AMP_AMP] = ACTIONS(5202), + [anon_sym_PIPE_PIPE] = ACTIONS(5202), + [sym__special_characters] = ACTIONS(5202), + [anon_sym_DQUOTE] = ACTIONS(5202), + [anon_sym_DOLLAR] = ACTIONS(5204), + [sym_raw_string] = ACTIONS(5202), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5202), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5202), + [anon_sym_BQUOTE] = ACTIONS(5202), + [anon_sym_LT_LPAREN] = ACTIONS(5202), + [anon_sym_GT_LPAREN] = ACTIONS(5202), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5204), + [sym_word] = ACTIONS(5204), + [anon_sym_LF] = ACTIONS(5202), + [anon_sym_AMP] = ACTIONS(5204), }, [2247] = { - [sym_file_descriptor] = ACTIONS(1071), - [sym_variable_name] = ACTIONS(1071), - [anon_sym_SEMI] = ACTIONS(1073), - [anon_sym_esac] = ACTIONS(1073), - [anon_sym_PIPE] = ACTIONS(1073), - [anon_sym_SEMI_SEMI] = ACTIONS(1071), - [anon_sym_PIPE_AMP] = ACTIONS(1071), - [anon_sym_AMP_AMP] = ACTIONS(1071), - [anon_sym_PIPE_PIPE] = ACTIONS(1071), - [anon_sym_LT] = ACTIONS(1073), - [anon_sym_GT] = ACTIONS(1073), - [anon_sym_GT_GT] = ACTIONS(1071), - [anon_sym_AMP_GT] = ACTIONS(1073), - [anon_sym_AMP_GT_GT] = ACTIONS(1071), - [anon_sym_LT_AMP] = ACTIONS(1071), - [anon_sym_GT_AMP] = ACTIONS(1071), - [sym__special_characters] = ACTIONS(1071), - [anon_sym_DQUOTE] = ACTIONS(1071), - [anon_sym_DOLLAR] = ACTIONS(1073), - [sym_raw_string] = ACTIONS(1071), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1071), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1071), - [anon_sym_BQUOTE] = ACTIONS(1071), - [anon_sym_LT_LPAREN] = ACTIONS(1071), - [anon_sym_GT_LPAREN] = ACTIONS(1071), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1073), - [anon_sym_LF] = ACTIONS(1071), - [anon_sym_AMP] = ACTIONS(1073), + [sym__concat] = ACTIONS(5206), + [sym_variable_name] = ACTIONS(5206), + [ts_builtin_sym_end] = ACTIONS(5206), + [anon_sym_SEMI] = ACTIONS(5208), + [anon_sym_PIPE] = ACTIONS(5208), + [anon_sym_RPAREN] = ACTIONS(5206), + [anon_sym_SEMI_SEMI] = ACTIONS(5206), + [anon_sym_PIPE_AMP] = ACTIONS(5206), + [anon_sym_AMP_AMP] = ACTIONS(5206), + [anon_sym_PIPE_PIPE] = ACTIONS(5206), + [sym__special_characters] = ACTIONS(5206), + [anon_sym_DQUOTE] = ACTIONS(5206), + [anon_sym_DOLLAR] = ACTIONS(5208), + [sym_raw_string] = ACTIONS(5206), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5206), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5206), + [anon_sym_BQUOTE] = ACTIONS(5206), + [anon_sym_LT_LPAREN] = ACTIONS(5206), + [anon_sym_GT_LPAREN] = ACTIONS(5206), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5208), + [sym_word] = ACTIONS(5208), + [anon_sym_LF] = ACTIONS(5206), + [anon_sym_AMP] = ACTIONS(5208), }, [2248] = { - [sym_concatenation] = STATE(2408), - [sym_string] = STATE(534), - [sym_simple_expansion] = STATE(534), - [sym_string_expansion] = STATE(534), - [sym_expansion] = STATE(534), - [sym_command_substitution] = STATE(534), - [sym_process_substitution] = STATE(534), - [aux_sym_for_statement_repeat1] = STATE(2408), - [anon_sym_RPAREN] = ACTIONS(5471), - [sym__special_characters] = ACTIONS(1077), - [anon_sym_DQUOTE] = ACTIONS(1079), - [anon_sym_DOLLAR] = ACTIONS(1081), - [sym_raw_string] = ACTIONS(1083), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1085), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1087), - [anon_sym_BQUOTE] = ACTIONS(1089), - [anon_sym_LT_LPAREN] = ACTIONS(1091), - [anon_sym_GT_LPAREN] = ACTIONS(1091), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1083), + [sym__concat] = ACTIONS(5202), + [ts_builtin_sym_end] = ACTIONS(5202), + [anon_sym_SEMI] = ACTIONS(5204), + [anon_sym_PIPE] = ACTIONS(5204), + [anon_sym_RPAREN] = ACTIONS(5202), + [anon_sym_SEMI_SEMI] = ACTIONS(5202), + [anon_sym_PIPE_AMP] = ACTIONS(5202), + [anon_sym_AMP_AMP] = ACTIONS(5202), + [anon_sym_PIPE_PIPE] = ACTIONS(5202), + [sym__special_characters] = ACTIONS(5202), + [anon_sym_DQUOTE] = ACTIONS(5202), + [anon_sym_DOLLAR] = ACTIONS(5204), + [sym_raw_string] = ACTIONS(5202), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5202), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5202), + [anon_sym_BQUOTE] = ACTIONS(5202), + [anon_sym_LT_LPAREN] = ACTIONS(5202), + [anon_sym_GT_LPAREN] = ACTIONS(5202), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5204), + [sym_word] = ACTIONS(5204), + [anon_sym_LF] = ACTIONS(5202), + [anon_sym_AMP] = ACTIONS(5204), }, [2249] = { - [aux_sym_concatenation_repeat1] = STATE(2410), - [sym_file_descriptor] = ACTIONS(1093), - [sym__concat] = ACTIONS(5473), - [sym_variable_name] = ACTIONS(1093), - [anon_sym_SEMI] = ACTIONS(1097), - [anon_sym_esac] = ACTIONS(1097), - [anon_sym_PIPE] = ACTIONS(1097), - [anon_sym_SEMI_SEMI] = ACTIONS(1093), - [anon_sym_PIPE_AMP] = ACTIONS(1093), - [anon_sym_AMP_AMP] = ACTIONS(1093), - [anon_sym_PIPE_PIPE] = ACTIONS(1093), - [anon_sym_LT] = ACTIONS(1097), - [anon_sym_GT] = ACTIONS(1097), - [anon_sym_GT_GT] = ACTIONS(1093), - [anon_sym_AMP_GT] = ACTIONS(1097), - [anon_sym_AMP_GT_GT] = ACTIONS(1093), - [anon_sym_LT_AMP] = ACTIONS(1093), - [anon_sym_GT_AMP] = ACTIONS(1093), - [sym__special_characters] = ACTIONS(1093), - [anon_sym_DQUOTE] = ACTIONS(1093), - [anon_sym_DOLLAR] = ACTIONS(1097), - [sym_raw_string] = ACTIONS(1093), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1093), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1093), - [anon_sym_BQUOTE] = ACTIONS(1093), - [anon_sym_LT_LPAREN] = ACTIONS(1093), - [anon_sym_GT_LPAREN] = ACTIONS(1093), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1097), - [anon_sym_LF] = ACTIONS(1093), - [anon_sym_AMP] = ACTIONS(1097), + [sym__concat] = ACTIONS(5206), + [ts_builtin_sym_end] = ACTIONS(5206), + [anon_sym_SEMI] = ACTIONS(5208), + [anon_sym_PIPE] = ACTIONS(5208), + [anon_sym_RPAREN] = ACTIONS(5206), + [anon_sym_SEMI_SEMI] = ACTIONS(5206), + [anon_sym_PIPE_AMP] = ACTIONS(5206), + [anon_sym_AMP_AMP] = ACTIONS(5206), + [anon_sym_PIPE_PIPE] = ACTIONS(5206), + [sym__special_characters] = ACTIONS(5206), + [anon_sym_DQUOTE] = ACTIONS(5206), + [anon_sym_DOLLAR] = ACTIONS(5208), + [sym_raw_string] = ACTIONS(5206), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5206), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5206), + [anon_sym_BQUOTE] = ACTIONS(5206), + [anon_sym_LT_LPAREN] = ACTIONS(5206), + [anon_sym_GT_LPAREN] = ACTIONS(5206), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5208), + [sym_word] = ACTIONS(5208), + [anon_sym_LF] = ACTIONS(5206), + [anon_sym_AMP] = ACTIONS(5208), }, [2250] = { - [sym_simple_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [sym_command_substitution] = STATE(141), - [aux_sym_string_repeat1] = STATE(2413), - [anon_sym_DQUOTE] = ACTIONS(5475), - [anon_sym_DOLLAR] = ACTIONS(5477), - [sym__string_content] = ACTIONS(257), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(261), - [anon_sym_BQUOTE] = ACTIONS(263), - [sym_comment] = ACTIONS(265), + [sym_file_descriptor] = ACTIONS(5202), + [sym__concat] = ACTIONS(5202), + [sym_variable_name] = ACTIONS(5202), + [anon_sym_LT] = ACTIONS(5204), + [anon_sym_GT] = ACTIONS(5204), + [anon_sym_GT_GT] = ACTIONS(5202), + [anon_sym_AMP_GT] = ACTIONS(5204), + [anon_sym_AMP_GT_GT] = ACTIONS(5202), + [anon_sym_LT_AMP] = ACTIONS(5202), + [anon_sym_GT_AMP] = ACTIONS(5202), + [sym__special_characters] = ACTIONS(5202), + [anon_sym_DQUOTE] = ACTIONS(5202), + [anon_sym_DOLLAR] = ACTIONS(5204), + [sym_raw_string] = ACTIONS(5202), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5202), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5202), + [anon_sym_BQUOTE] = ACTIONS(5202), + [anon_sym_LT_LPAREN] = ACTIONS(5202), + [anon_sym_GT_LPAREN] = ACTIONS(5202), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(5202), }, [2251] = { - [sym_string] = STATE(2415), - [anon_sym_DQUOTE] = ACTIONS(5189), - [anon_sym_DOLLAR] = ACTIONS(5479), - [sym_raw_string] = ACTIONS(5481), - [anon_sym_POUND] = ACTIONS(5479), - [anon_sym_DASH] = ACTIONS(5479), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5483), - [anon_sym_STAR] = ACTIONS(5485), - [anon_sym_AT] = ACTIONS(5485), - [anon_sym_QMARK] = ACTIONS(5485), - [anon_sym_0] = ACTIONS(5483), - [anon_sym__] = ACTIONS(5483), + [sym_file_descriptor] = ACTIONS(5206), + [sym__concat] = ACTIONS(5206), + [sym_variable_name] = ACTIONS(5206), + [anon_sym_LT] = ACTIONS(5208), + [anon_sym_GT] = ACTIONS(5208), + [anon_sym_GT_GT] = ACTIONS(5206), + [anon_sym_AMP_GT] = ACTIONS(5208), + [anon_sym_AMP_GT_GT] = ACTIONS(5206), + [anon_sym_LT_AMP] = ACTIONS(5206), + [anon_sym_GT_AMP] = ACTIONS(5206), + [sym__special_characters] = ACTIONS(5206), + [anon_sym_DQUOTE] = ACTIONS(5206), + [anon_sym_DOLLAR] = ACTIONS(5208), + [sym_raw_string] = ACTIONS(5206), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5206), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5206), + [anon_sym_BQUOTE] = ACTIONS(5206), + [anon_sym_LT_LPAREN] = ACTIONS(5206), + [anon_sym_GT_LPAREN] = ACTIONS(5206), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(5206), }, [2252] = { - [aux_sym_concatenation_repeat1] = STATE(2410), - [sym_file_descriptor] = ACTIONS(1071), - [sym__concat] = ACTIONS(5473), - [sym_variable_name] = ACTIONS(1071), - [anon_sym_SEMI] = ACTIONS(1073), - [anon_sym_esac] = ACTIONS(1073), - [anon_sym_PIPE] = ACTIONS(1073), - [anon_sym_SEMI_SEMI] = ACTIONS(1071), - [anon_sym_PIPE_AMP] = ACTIONS(1071), - [anon_sym_AMP_AMP] = ACTIONS(1071), - [anon_sym_PIPE_PIPE] = ACTIONS(1071), - [anon_sym_LT] = ACTIONS(1073), - [anon_sym_GT] = ACTIONS(1073), - [anon_sym_GT_GT] = ACTIONS(1071), - [anon_sym_AMP_GT] = ACTIONS(1073), - [anon_sym_AMP_GT_GT] = ACTIONS(1071), - [anon_sym_LT_AMP] = ACTIONS(1071), - [anon_sym_GT_AMP] = ACTIONS(1071), - [sym__special_characters] = ACTIONS(1071), - [anon_sym_DQUOTE] = ACTIONS(1071), - [anon_sym_DOLLAR] = ACTIONS(1073), - [sym_raw_string] = ACTIONS(1071), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1071), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1071), - [anon_sym_BQUOTE] = ACTIONS(1071), - [anon_sym_LT_LPAREN] = ACTIONS(1071), - [anon_sym_GT_LPAREN] = ACTIONS(1071), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1073), - [anon_sym_LF] = ACTIONS(1071), - [anon_sym_AMP] = ACTIONS(1073), + [sym__concat] = ACTIONS(5202), + [anon_sym_DQUOTE] = ACTIONS(5204), + [anon_sym_DOLLAR] = ACTIONS(5204), + [sym__string_content] = ACTIONS(5202), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5204), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5204), + [anon_sym_BQUOTE] = ACTIONS(5204), + [sym_comment] = ACTIONS(281), }, [2253] = { - [sym_subscript] = STATE(2420), - [sym_variable_name] = ACTIONS(5487), - [anon_sym_BANG] = ACTIONS(5489), - [anon_sym_DOLLAR] = ACTIONS(5491), - [anon_sym_POUND] = ACTIONS(5489), - [anon_sym_DASH] = ACTIONS(5491), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5493), - [anon_sym_STAR] = ACTIONS(5495), - [anon_sym_AT] = ACTIONS(5495), - [anon_sym_QMARK] = ACTIONS(5495), - [anon_sym_0] = ACTIONS(5493), - [anon_sym__] = ACTIONS(5493), + [sym__concat] = ACTIONS(5206), + [anon_sym_DQUOTE] = ACTIONS(5208), + [anon_sym_DOLLAR] = ACTIONS(5208), + [sym__string_content] = ACTIONS(5206), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5208), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5208), + [anon_sym_BQUOTE] = ACTIONS(5208), + [sym_comment] = ACTIONS(281), }, [2254] = { - [sym__terminated_statement] = STATE(2423), - [sym_for_statement] = STATE(2421), - [sym_c_style_for_statement] = STATE(2421), - [sym_while_statement] = STATE(2421), - [sym_if_statement] = STATE(2421), - [sym_case_statement] = STATE(2421), - [sym_function_definition] = STATE(2421), - [sym_subshell] = STATE(2421), - [sym_pipeline] = STATE(2421), - [sym_list] = STATE(2421), - [sym_negated_command] = STATE(2421), - [sym_test_command] = STATE(2421), - [sym_declaration_command] = STATE(2421), - [sym_unset_command] = STATE(2421), - [sym_command] = STATE(2421), - [sym_command_name] = STATE(78), - [sym_variable_assignment] = STATE(2422), - [sym_subscript] = STATE(80), - [sym_file_redirect] = STATE(82), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(75), - [sym_simple_expansion] = STATE(75), - [sym_string_expansion] = STATE(75), - [sym_expansion] = STATE(75), - [sym_command_substitution] = STATE(75), - [sym_process_substitution] = STATE(75), - [aux_sym__statements_repeat1] = STATE(2423), - [aux_sym_command_repeat1] = STATE(82), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(111), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(119), - [anon_sym_declare] = ACTIONS(121), - [anon_sym_typeset] = ACTIONS(121), - [anon_sym_export] = ACTIONS(121), - [anon_sym_readonly] = ACTIONS(121), - [anon_sym_local] = ACTIONS(121), - [anon_sym_unset] = ACTIONS(123), - [anon_sym_unsetenv] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), + [sym__concat] = ACTIONS(3934), + [anon_sym_RBRACE] = ACTIONS(3934), + [sym_comment] = ACTIONS(55), }, [2255] = { - [sym__terminated_statement] = STATE(2426), - [sym_for_statement] = STATE(2424), - [sym_c_style_for_statement] = STATE(2424), - [sym_while_statement] = STATE(2424), - [sym_if_statement] = STATE(2424), - [sym_case_statement] = STATE(2424), - [sym_function_definition] = STATE(2424), - [sym_subshell] = STATE(2424), - [sym_pipeline] = STATE(2424), - [sym_list] = STATE(2424), - [sym_negated_command] = STATE(2424), - [sym_test_command] = STATE(2424), - [sym_declaration_command] = STATE(2424), - [sym_unset_command] = STATE(2424), - [sym_command] = STATE(2424), - [sym_command_name] = STATE(165), - [sym_variable_assignment] = STATE(2425), - [sym_subscript] = STATE(53), - [sym_file_redirect] = STATE(168), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(47), - [sym_simple_expansion] = STATE(47), - [sym_string_expansion] = STATE(47), - [sym_expansion] = STATE(47), - [sym_command_substitution] = STATE(47), - [sym_process_substitution] = STATE(47), - [aux_sym__statements_repeat1] = STATE(2426), - [aux_sym_command_repeat1] = STATE(168), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(69), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(289), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(291), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(293), - [anon_sym_LBRACK] = ACTIONS(295), - [anon_sym_LBRACK_LBRACK] = ACTIONS(297), - [anon_sym_declare] = ACTIONS(299), - [anon_sym_typeset] = ACTIONS(299), - [anon_sym_export] = ACTIONS(299), - [anon_sym_readonly] = ACTIONS(299), - [anon_sym_local] = ACTIONS(299), - [anon_sym_unset] = ACTIONS(301), - [anon_sym_unsetenv] = ACTIONS(301), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(87), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(303), + [sym__concat] = ACTIONS(3942), + [anon_sym_RBRACE] = ACTIONS(3942), + [sym_comment] = ACTIONS(55), }, [2256] = { - [sym__terminated_statement] = STATE(2429), - [sym_for_statement] = STATE(2427), - [sym_c_style_for_statement] = STATE(2427), - [sym_while_statement] = STATE(2427), - [sym_if_statement] = STATE(2427), - [sym_case_statement] = STATE(2427), - [sym_function_definition] = STATE(2427), - [sym_subshell] = STATE(2427), - [sym_pipeline] = STATE(2427), - [sym_list] = STATE(2427), - [sym_negated_command] = STATE(2427), - [sym_test_command] = STATE(2427), - [sym_declaration_command] = STATE(2427), - [sym_unset_command] = STATE(2427), - [sym_command] = STATE(2427), - [sym_command_name] = STATE(78), - [sym_variable_assignment] = STATE(2428), - [sym_subscript] = STATE(80), - [sym_file_redirect] = STATE(82), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(75), - [sym_simple_expansion] = STATE(75), - [sym_string_expansion] = STATE(75), - [sym_expansion] = STATE(75), - [sym_command_substitution] = STATE(75), - [sym_process_substitution] = STATE(75), - [aux_sym__statements_repeat1] = STATE(2429), - [aux_sym_command_repeat1] = STATE(82), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(111), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(119), - [anon_sym_declare] = ACTIONS(121), - [anon_sym_typeset] = ACTIONS(121), - [anon_sym_export] = ACTIONS(121), - [anon_sym_readonly] = ACTIONS(121), - [anon_sym_local] = ACTIONS(121), - [anon_sym_unset] = ACTIONS(123), - [anon_sym_unsetenv] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), + [aux_sym_concatenation_repeat1] = STATE(1366), + [sym__concat] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(5522), + [sym_comment] = ACTIONS(55), }, [2257] = { - [sym_file_redirect] = STATE(2430), - [sym_heredoc_redirect] = STATE(2430), - [sym_heredoc_body] = STATE(615), - [sym_herestring_redirect] = STATE(2430), - [aux_sym_while_statement_repeat1] = STATE(2430), - [sym__simple_heredoc_body] = ACTIONS(321), - [sym__heredoc_body_beginning] = ACTIONS(323), - [sym_file_descriptor] = ACTIONS(4909), - [anon_sym_SEMI] = ACTIONS(1197), - [anon_sym_esac] = ACTIONS(1195), - [anon_sym_PIPE] = ACTIONS(1197), - [anon_sym_SEMI_SEMI] = ACTIONS(1195), - [anon_sym_PIPE_AMP] = ACTIONS(1195), - [anon_sym_AMP_AMP] = ACTIONS(1195), - [anon_sym_PIPE_PIPE] = ACTIONS(1195), - [anon_sym_LT] = ACTIONS(4913), - [anon_sym_GT] = ACTIONS(4913), - [anon_sym_GT_GT] = ACTIONS(4915), - [anon_sym_AMP_GT] = ACTIONS(4913), - [anon_sym_AMP_GT_GT] = ACTIONS(4915), - [anon_sym_LT_AMP] = ACTIONS(4915), - [anon_sym_GT_AMP] = ACTIONS(4915), - [anon_sym_LT_LT] = ACTIONS(337), - [anon_sym_LT_LT_DASH] = ACTIONS(339), - [anon_sym_LT_LT_LT] = ACTIONS(4917), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1195), - [anon_sym_AMP] = ACTIONS(1197), + [aux_sym_concatenation_repeat1] = STATE(1366), + [sym__concat] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(5524), + [sym_comment] = ACTIONS(55), }, [2258] = { - [anon_sym_RPAREN] = ACTIONS(5497), - [sym_comment] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(5524), + [sym_comment] = ACTIONS(55), }, [2259] = { - [sym_file_redirect] = STATE(672), - [sym_file_descriptor] = ACTIONS(5499), - [anon_sym_SEMI] = ACTIONS(1289), - [anon_sym_esac] = ACTIONS(1287), - [anon_sym_PIPE] = ACTIONS(1289), - [anon_sym_SEMI_SEMI] = ACTIONS(1287), - [anon_sym_PIPE_AMP] = ACTIONS(1287), - [anon_sym_AMP_AMP] = ACTIONS(1287), - [anon_sym_PIPE_PIPE] = ACTIONS(1287), - [anon_sym_LT] = ACTIONS(5501), - [anon_sym_GT] = ACTIONS(5501), - [anon_sym_GT_GT] = ACTIONS(5503), - [anon_sym_AMP_GT] = ACTIONS(5501), - [anon_sym_AMP_GT_GT] = ACTIONS(5503), - [anon_sym_LT_AMP] = ACTIONS(5503), - [anon_sym_GT_AMP] = ACTIONS(5503), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1287), - [anon_sym_AMP] = ACTIONS(1289), + [sym_concatenation] = STATE(2445), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2445), + [anon_sym_RBRACE] = ACTIONS(5526), + [anon_sym_EQ] = ACTIONS(5528), + [anon_sym_DASH] = ACTIONS(5528), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(5530), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(5528), + [anon_sym_COLON_QMARK] = ACTIONS(5528), + [anon_sym_COLON_DASH] = ACTIONS(5528), + [anon_sym_PERCENT] = ACTIONS(5528), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2260] = { - [sym_file_redirect] = STATE(2437), - [sym_heredoc_redirect] = STATE(2437), - [sym_herestring_redirect] = STATE(2437), - [aux_sym_while_statement_repeat1] = STATE(2437), - [sym_file_descriptor] = ACTIONS(5505), - [anon_sym_SEMI] = ACTIONS(1407), - [anon_sym_esac] = ACTIONS(1405), - [anon_sym_PIPE] = ACTIONS(1407), - [anon_sym_SEMI_SEMI] = ACTIONS(1405), - [anon_sym_PIPE_AMP] = ACTIONS(1405), - [anon_sym_AMP_AMP] = ACTIONS(1405), - [anon_sym_PIPE_PIPE] = ACTIONS(1405), - [anon_sym_LT] = ACTIONS(5507), - [anon_sym_GT] = ACTIONS(5507), - [anon_sym_GT_GT] = ACTIONS(5509), - [anon_sym_AMP_GT] = ACTIONS(5507), - [anon_sym_AMP_GT_GT] = ACTIONS(5509), - [anon_sym_LT_AMP] = ACTIONS(5509), - [anon_sym_GT_AMP] = ACTIONS(5509), - [anon_sym_LT_LT] = ACTIONS(1413), - [anon_sym_LT_LT_DASH] = ACTIONS(1415), - [anon_sym_LT_LT_LT] = ACTIONS(5511), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1405), - [anon_sym_AMP] = ACTIONS(1407), + [sym__concat] = ACTIONS(3998), + [anon_sym_RBRACE] = ACTIONS(3998), + [sym_comment] = ACTIONS(55), }, [2261] = { - [sym_concatenation] = STATE(2438), - [sym_string] = STATE(2441), - [sym_array] = STATE(2438), - [sym_simple_expansion] = STATE(2441), - [sym_string_expansion] = STATE(2441), - [sym_expansion] = STATE(2441), - [sym_command_substitution] = STATE(2441), - [sym_process_substitution] = STATE(2441), - [sym__empty_value] = ACTIONS(5513), - [anon_sym_LPAREN] = ACTIONS(5515), - [sym__special_characters] = ACTIONS(5517), - [anon_sym_DQUOTE] = ACTIONS(4831), - [anon_sym_DOLLAR] = ACTIONS(4833), - [sym_raw_string] = ACTIONS(5519), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4837), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4839), - [anon_sym_BQUOTE] = ACTIONS(4841), - [anon_sym_LT_LPAREN] = ACTIONS(4843), - [anon_sym_GT_LPAREN] = ACTIONS(4843), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5519), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(5526), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2262] = { - [sym_string] = STATE(2442), - [sym_simple_expansion] = STATE(2442), - [sym_string_expansion] = STATE(2442), - [sym_expansion] = STATE(2442), - [sym_command_substitution] = STATE(2442), - [sym_process_substitution] = STATE(2442), - [sym__special_characters] = ACTIONS(5521), - [anon_sym_DQUOTE] = ACTIONS(4831), - [anon_sym_DOLLAR] = ACTIONS(4833), - [sym_raw_string] = ACTIONS(5521), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4837), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4839), - [anon_sym_BQUOTE] = ACTIONS(4841), - [anon_sym_LT_LPAREN] = ACTIONS(4843), - [anon_sym_GT_LPAREN] = ACTIONS(4843), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5521), + [sym_concatenation] = STATE(2446), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2446), + [anon_sym_RBRACE] = ACTIONS(5524), + [anon_sym_EQ] = ACTIONS(5532), + [anon_sym_DASH] = ACTIONS(5532), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(5534), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(5532), + [anon_sym_COLON_QMARK] = ACTIONS(5532), + [anon_sym_COLON_DASH] = ACTIONS(5532), + [anon_sym_PERCENT] = ACTIONS(5532), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2263] = { - [aux_sym_concatenation_repeat1] = STATE(2443), - [sym__concat] = ACTIONS(5209), - [sym_variable_name] = ACTIONS(765), - [anon_sym_SEMI] = ACTIONS(767), - [anon_sym_esac] = ACTIONS(767), - [anon_sym_PIPE] = ACTIONS(767), - [anon_sym_SEMI_SEMI] = ACTIONS(765), - [anon_sym_PIPE_AMP] = ACTIONS(765), - [anon_sym_AMP_AMP] = ACTIONS(765), - [anon_sym_PIPE_PIPE] = ACTIONS(765), - [sym__special_characters] = ACTIONS(765), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_DOLLAR] = ACTIONS(767), - [sym_raw_string] = ACTIONS(765), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(765), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(765), - [anon_sym_BQUOTE] = ACTIONS(765), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(767), - [sym_word] = ACTIONS(767), - [anon_sym_LF] = ACTIONS(765), - [anon_sym_AMP] = ACTIONS(767), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(5524), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2264] = { - [sym__concat] = ACTIONS(769), - [sym_variable_name] = ACTIONS(769), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_esac] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_SEMI_SEMI] = ACTIONS(769), - [anon_sym_PIPE_AMP] = ACTIONS(769), - [anon_sym_AMP_AMP] = ACTIONS(769), - [anon_sym_PIPE_PIPE] = ACTIONS(769), - [sym__special_characters] = ACTIONS(769), - [anon_sym_DQUOTE] = ACTIONS(769), - [anon_sym_DOLLAR] = ACTIONS(771), - [sym_raw_string] = ACTIONS(769), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(769), - [anon_sym_BQUOTE] = ACTIONS(769), - [anon_sym_LT_LPAREN] = ACTIONS(769), - [anon_sym_GT_LPAREN] = ACTIONS(769), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(771), - [sym_word] = ACTIONS(771), - [anon_sym_LF] = ACTIONS(769), - [anon_sym_AMP] = ACTIONS(771), + [sym__concat] = ACTIONS(4043), + [anon_sym_RBRACE] = ACTIONS(4043), + [sym_comment] = ACTIONS(55), }, [2265] = { - [anon_sym_DQUOTE] = ACTIONS(5523), - [anon_sym_DOLLAR] = ACTIONS(775), - [sym__string_content] = ACTIONS(777), - [anon_sym_POUND] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(781), - [anon_sym_STAR] = ACTIONS(783), - [anon_sym_AT] = ACTIONS(783), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_0] = ACTIONS(781), - [anon_sym__] = ACTIONS(781), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(5536), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2266] = { - [sym_simple_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [sym_command_substitution] = STATE(141), - [aux_sym_string_repeat1] = STATE(450), - [anon_sym_DQUOTE] = ACTIONS(5523), - [anon_sym_DOLLAR] = ACTIONS(5525), - [sym__string_content] = ACTIONS(257), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(261), - [anon_sym_BQUOTE] = ACTIONS(263), - [sym_comment] = ACTIONS(265), + [sym__concat] = ACTIONS(4065), + [anon_sym_RBRACE] = ACTIONS(4065), + [sym_comment] = ACTIONS(55), }, [2267] = { - [sym__concat] = ACTIONS(803), - [sym_variable_name] = ACTIONS(803), - [anon_sym_SEMI] = ACTIONS(805), - [anon_sym_esac] = ACTIONS(805), - [anon_sym_PIPE] = ACTIONS(805), - [anon_sym_SEMI_SEMI] = ACTIONS(803), - [anon_sym_PIPE_AMP] = ACTIONS(803), - [anon_sym_AMP_AMP] = ACTIONS(803), - [anon_sym_PIPE_PIPE] = ACTIONS(803), - [sym__special_characters] = ACTIONS(803), - [anon_sym_DQUOTE] = ACTIONS(803), - [anon_sym_DOLLAR] = ACTIONS(805), - [sym_raw_string] = ACTIONS(803), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(803), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(803), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(803), - [anon_sym_GT_LPAREN] = ACTIONS(803), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(805), - [sym_word] = ACTIONS(805), - [anon_sym_LF] = ACTIONS(803), - [anon_sym_AMP] = ACTIONS(805), + [sym__concat] = ACTIONS(4089), + [anon_sym_RBRACE] = ACTIONS(4089), + [sym_comment] = ACTIONS(55), }, [2268] = { - [sym__concat] = ACTIONS(807), + [sym__concat] = ACTIONS(4710), + [anon_sym_RBRACE] = ACTIONS(4710), + [anon_sym_EQ] = ACTIONS(4712), + [anon_sym_DASH] = ACTIONS(4712), + [sym__special_characters] = ACTIONS(4712), + [anon_sym_DQUOTE] = ACTIONS(4710), + [anon_sym_DOLLAR] = ACTIONS(4712), + [sym_raw_string] = ACTIONS(4710), + [anon_sym_POUND] = ACTIONS(4710), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4710), + [anon_sym_COLON] = ACTIONS(4712), + [anon_sym_COLON_QMARK] = ACTIONS(4712), + [anon_sym_COLON_DASH] = ACTIONS(4712), + [anon_sym_PERCENT] = ACTIONS(4712), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4710), + [anon_sym_BQUOTE] = ACTIONS(4710), + [anon_sym_LT_LPAREN] = ACTIONS(4710), + [anon_sym_GT_LPAREN] = ACTIONS(4710), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(4712), + }, + [2269] = { + [sym__concat] = ACTIONS(4714), + [anon_sym_RBRACE] = ACTIONS(4714), + [anon_sym_EQ] = ACTIONS(4716), + [anon_sym_DASH] = ACTIONS(4716), + [sym__special_characters] = ACTIONS(4716), + [anon_sym_DQUOTE] = ACTIONS(4714), + [anon_sym_DOLLAR] = ACTIONS(4716), + [sym_raw_string] = ACTIONS(4714), + [anon_sym_POUND] = ACTIONS(4714), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4714), + [anon_sym_COLON] = ACTIONS(4716), + [anon_sym_COLON_QMARK] = ACTIONS(4716), + [anon_sym_COLON_DASH] = ACTIONS(4716), + [anon_sym_PERCENT] = ACTIONS(4716), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4714), + [anon_sym_BQUOTE] = ACTIONS(4714), + [anon_sym_LT_LPAREN] = ACTIONS(4714), + [anon_sym_GT_LPAREN] = ACTIONS(4714), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(4716), + }, + [2270] = { + [sym__concat] = ACTIONS(4718), + [anon_sym_RBRACE] = ACTIONS(4718), + [anon_sym_EQ] = ACTIONS(4720), + [anon_sym_DASH] = ACTIONS(4720), + [sym__special_characters] = ACTIONS(4720), + [anon_sym_DQUOTE] = ACTIONS(4718), + [anon_sym_DOLLAR] = ACTIONS(4720), + [sym_raw_string] = ACTIONS(4718), + [anon_sym_POUND] = ACTIONS(4718), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4718), + [anon_sym_COLON] = ACTIONS(4720), + [anon_sym_COLON_QMARK] = ACTIONS(4720), + [anon_sym_COLON_DASH] = ACTIONS(4720), + [anon_sym_PERCENT] = ACTIONS(4720), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4718), + [anon_sym_BQUOTE] = ACTIONS(4718), + [anon_sym_LT_LPAREN] = ACTIONS(4718), + [anon_sym_GT_LPAREN] = ACTIONS(4718), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(4720), + }, + [2271] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(5538), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [2272] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(5540), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [2273] = { + [sym__concat] = ACTIONS(4754), + [anon_sym_RBRACE] = ACTIONS(4754), + [anon_sym_EQ] = ACTIONS(4756), + [anon_sym_DASH] = ACTIONS(4756), + [sym__special_characters] = ACTIONS(4756), + [anon_sym_DQUOTE] = ACTIONS(4754), + [anon_sym_DOLLAR] = ACTIONS(4756), + [sym_raw_string] = ACTIONS(4754), + [anon_sym_POUND] = ACTIONS(4754), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4754), + [anon_sym_COLON] = ACTIONS(4756), + [anon_sym_COLON_QMARK] = ACTIONS(4756), + [anon_sym_COLON_DASH] = ACTIONS(4756), + [anon_sym_PERCENT] = ACTIONS(4756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4754), + [anon_sym_BQUOTE] = ACTIONS(4754), + [anon_sym_LT_LPAREN] = ACTIONS(4754), + [anon_sym_GT_LPAREN] = ACTIONS(4754), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(4756), + }, + [2274] = { + [aux_sym_concatenation_repeat1] = STATE(2274), + [sym_file_descriptor] = ACTIONS(1763), + [sym__concat] = ACTIONS(4936), + [anon_sym_SEMI] = ACTIONS(1765), + [anon_sym_PIPE] = ACTIONS(1765), + [anon_sym_SEMI_SEMI] = ACTIONS(1763), + [anon_sym_PIPE_AMP] = ACTIONS(1763), + [anon_sym_AMP_AMP] = ACTIONS(1763), + [anon_sym_PIPE_PIPE] = ACTIONS(1763), + [anon_sym_LT] = ACTIONS(1765), + [anon_sym_GT] = ACTIONS(1765), + [anon_sym_GT_GT] = ACTIONS(1763), + [anon_sym_AMP_GT] = ACTIONS(1765), + [anon_sym_AMP_GT_GT] = ACTIONS(1763), + [anon_sym_LT_AMP] = ACTIONS(1763), + [anon_sym_GT_AMP] = ACTIONS(1763), + [anon_sym_LT_LT] = ACTIONS(1765), + [anon_sym_LT_LT_DASH] = ACTIONS(1763), + [anon_sym_LT_LT_LT] = ACTIONS(1763), + [anon_sym_BQUOTE] = ACTIONS(1763), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1763), + [anon_sym_AMP] = ACTIONS(1765), + }, + [2275] = { + [aux_sym_concatenation_repeat1] = STATE(2275), + [sym__concat] = ACTIONS(2807), + [anon_sym_SEMI] = ACTIONS(1765), + [anon_sym_PIPE] = ACTIONS(1765), + [anon_sym_SEMI_SEMI] = ACTIONS(1763), + [anon_sym_PIPE_AMP] = ACTIONS(1763), + [anon_sym_AMP_AMP] = ACTIONS(1763), + [anon_sym_PIPE_PIPE] = ACTIONS(1763), + [anon_sym_BQUOTE] = ACTIONS(1763), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1763), + [anon_sym_AMP] = ACTIONS(1765), + }, + [2276] = { + [sym__heredoc_body_middle] = ACTIONS(4710), + [sym__heredoc_body_end] = ACTIONS(4710), + [anon_sym_DOLLAR] = ACTIONS(4712), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4710), + [sym_comment] = ACTIONS(55), + }, + [2277] = { + [sym__heredoc_body_middle] = ACTIONS(4714), + [sym__heredoc_body_end] = ACTIONS(4714), + [anon_sym_DOLLAR] = ACTIONS(4716), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4714), + [sym_comment] = ACTIONS(55), + }, + [2278] = { + [sym__heredoc_body_middle] = ACTIONS(4718), + [sym__heredoc_body_end] = ACTIONS(4718), + [anon_sym_DOLLAR] = ACTIONS(4720), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4718), + [sym_comment] = ACTIONS(55), + }, + [2279] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(5542), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [2280] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(5544), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [2281] = { + [sym__heredoc_body_middle] = ACTIONS(4754), + [sym__heredoc_body_end] = ACTIONS(4754), + [anon_sym_DOLLAR] = ACTIONS(4756), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4754), + [sym_comment] = ACTIONS(55), + }, + [2282] = { + [sym__concat] = ACTIONS(4710), + [anon_sym_RPAREN] = ACTIONS(4710), + [sym__special_characters] = ACTIONS(4710), + [anon_sym_DQUOTE] = ACTIONS(4710), + [anon_sym_DOLLAR] = ACTIONS(4712), + [sym_raw_string] = ACTIONS(4710), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4710), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4710), + [anon_sym_BQUOTE] = ACTIONS(4710), + [anon_sym_LT_LPAREN] = ACTIONS(4710), + [anon_sym_GT_LPAREN] = ACTIONS(4710), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(4710), + }, + [2283] = { + [sym__concat] = ACTIONS(4714), + [anon_sym_RPAREN] = ACTIONS(4714), + [sym__special_characters] = ACTIONS(4714), + [anon_sym_DQUOTE] = ACTIONS(4714), + [anon_sym_DOLLAR] = ACTIONS(4716), + [sym_raw_string] = ACTIONS(4714), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4714), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4714), + [anon_sym_BQUOTE] = ACTIONS(4714), + [anon_sym_LT_LPAREN] = ACTIONS(4714), + [anon_sym_GT_LPAREN] = ACTIONS(4714), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(4714), + }, + [2284] = { + [sym__concat] = ACTIONS(4718), + [anon_sym_RPAREN] = ACTIONS(4718), + [sym__special_characters] = ACTIONS(4718), + [anon_sym_DQUOTE] = ACTIONS(4718), + [anon_sym_DOLLAR] = ACTIONS(4720), + [sym_raw_string] = ACTIONS(4718), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4718), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4718), + [anon_sym_BQUOTE] = ACTIONS(4718), + [anon_sym_LT_LPAREN] = ACTIONS(4718), + [anon_sym_GT_LPAREN] = ACTIONS(4718), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(4718), + }, + [2285] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(5546), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [2286] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(5548), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [2287] = { + [sym__concat] = ACTIONS(4754), + [anon_sym_RPAREN] = ACTIONS(4754), + [sym__special_characters] = ACTIONS(4754), + [anon_sym_DQUOTE] = ACTIONS(4754), + [anon_sym_DOLLAR] = ACTIONS(4756), + [sym_raw_string] = ACTIONS(4754), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4754), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4754), + [anon_sym_BQUOTE] = ACTIONS(4754), + [anon_sym_LT_LPAREN] = ACTIONS(4754), + [anon_sym_GT_LPAREN] = ACTIONS(4754), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(4754), + }, + [2288] = { + [sym_file_descriptor] = ACTIONS(5202), + [sym__concat] = ACTIONS(5202), + [sym_variable_name] = ACTIONS(5202), + [ts_builtin_sym_end] = ACTIONS(5202), + [anon_sym_SEMI] = ACTIONS(5204), + [anon_sym_PIPE] = ACTIONS(5204), + [anon_sym_RPAREN] = ACTIONS(5202), + [anon_sym_SEMI_SEMI] = ACTIONS(5202), + [anon_sym_PIPE_AMP] = ACTIONS(5202), + [anon_sym_AMP_AMP] = ACTIONS(5202), + [anon_sym_PIPE_PIPE] = ACTIONS(5202), + [anon_sym_LT] = ACTIONS(5204), + [anon_sym_GT] = ACTIONS(5204), + [anon_sym_GT_GT] = ACTIONS(5202), + [anon_sym_AMP_GT] = ACTIONS(5204), + [anon_sym_AMP_GT_GT] = ACTIONS(5202), + [anon_sym_LT_AMP] = ACTIONS(5202), + [anon_sym_GT_AMP] = ACTIONS(5202), + [sym__special_characters] = ACTIONS(5202), + [anon_sym_DQUOTE] = ACTIONS(5202), + [anon_sym_DOLLAR] = ACTIONS(5204), + [sym_raw_string] = ACTIONS(5202), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5202), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5202), + [anon_sym_BQUOTE] = ACTIONS(5202), + [anon_sym_LT_LPAREN] = ACTIONS(5202), + [anon_sym_GT_LPAREN] = ACTIONS(5202), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(5204), + [anon_sym_LF] = ACTIONS(5202), + [anon_sym_AMP] = ACTIONS(5204), + }, + [2289] = { + [sym_file_descriptor] = ACTIONS(5206), + [sym__concat] = ACTIONS(5206), + [sym_variable_name] = ACTIONS(5206), + [ts_builtin_sym_end] = ACTIONS(5206), + [anon_sym_SEMI] = ACTIONS(5208), + [anon_sym_PIPE] = ACTIONS(5208), + [anon_sym_RPAREN] = ACTIONS(5206), + [anon_sym_SEMI_SEMI] = ACTIONS(5206), + [anon_sym_PIPE_AMP] = ACTIONS(5206), + [anon_sym_AMP_AMP] = ACTIONS(5206), + [anon_sym_PIPE_PIPE] = ACTIONS(5206), + [anon_sym_LT] = ACTIONS(5208), + [anon_sym_GT] = ACTIONS(5208), + [anon_sym_GT_GT] = ACTIONS(5206), + [anon_sym_AMP_GT] = ACTIONS(5208), + [anon_sym_AMP_GT_GT] = ACTIONS(5206), + [anon_sym_LT_AMP] = ACTIONS(5206), + [anon_sym_GT_AMP] = ACTIONS(5206), + [sym__special_characters] = ACTIONS(5206), + [anon_sym_DQUOTE] = ACTIONS(5206), + [anon_sym_DOLLAR] = ACTIONS(5208), + [sym_raw_string] = ACTIONS(5206), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5206), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5206), + [anon_sym_BQUOTE] = ACTIONS(5206), + [anon_sym_LT_LPAREN] = ACTIONS(5206), + [anon_sym_GT_LPAREN] = ACTIONS(5206), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(5208), + [anon_sym_LF] = ACTIONS(5206), + [anon_sym_AMP] = ACTIONS(5208), + }, + [2290] = { + [ts_builtin_sym_end] = ACTIONS(5550), + [anon_sym_SEMI] = ACTIONS(5552), + [anon_sym_esac] = ACTIONS(5550), + [anon_sym_PIPE] = ACTIONS(5552), + [anon_sym_RPAREN] = ACTIONS(5550), + [anon_sym_SEMI_SEMI] = ACTIONS(5550), + [anon_sym_PIPE_AMP] = ACTIONS(5550), + [anon_sym_AMP_AMP] = ACTIONS(5550), + [anon_sym_PIPE_PIPE] = ACTIONS(5550), + [anon_sym_BQUOTE] = ACTIONS(5550), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(5550), + [anon_sym_AMP] = ACTIONS(5552), + }, + [2291] = { + [sym__concat] = ACTIONS(5202), + [anon_sym_SEMI] = ACTIONS(5204), + [anon_sym_esac] = ACTIONS(5202), + [anon_sym_PIPE] = ACTIONS(5204), + [anon_sym_SEMI_SEMI] = ACTIONS(5202), + [anon_sym_PIPE_AMP] = ACTIONS(5202), + [anon_sym_AMP_AMP] = ACTIONS(5202), + [anon_sym_PIPE_PIPE] = ACTIONS(5202), + [anon_sym_EQ_TILDE] = ACTIONS(5202), + [anon_sym_EQ_EQ] = ACTIONS(5202), + [anon_sym_EQ] = ACTIONS(5204), + [anon_sym_PLUS_EQ] = ACTIONS(5202), + [anon_sym_LT] = ACTIONS(5204), + [anon_sym_GT] = ACTIONS(5204), + [anon_sym_BANG_EQ] = ACTIONS(5202), + [anon_sym_PLUS] = ACTIONS(5204), + [anon_sym_DASH] = ACTIONS(5204), + [anon_sym_DASH_EQ] = ACTIONS(5202), + [anon_sym_LT_EQ] = ACTIONS(5202), + [anon_sym_GT_EQ] = ACTIONS(5202), + [anon_sym_PLUS_PLUS] = ACTIONS(5202), + [anon_sym_DASH_DASH] = ACTIONS(5202), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(5202), + [anon_sym_LF] = ACTIONS(5202), + [anon_sym_AMP] = ACTIONS(5204), + }, + [2292] = { + [sym__concat] = ACTIONS(5206), + [anon_sym_SEMI] = ACTIONS(5208), + [anon_sym_esac] = ACTIONS(5206), + [anon_sym_PIPE] = ACTIONS(5208), + [anon_sym_SEMI_SEMI] = ACTIONS(5206), + [anon_sym_PIPE_AMP] = ACTIONS(5206), + [anon_sym_AMP_AMP] = ACTIONS(5206), + [anon_sym_PIPE_PIPE] = ACTIONS(5206), + [anon_sym_EQ_TILDE] = ACTIONS(5206), + [anon_sym_EQ_EQ] = ACTIONS(5206), + [anon_sym_EQ] = ACTIONS(5208), + [anon_sym_PLUS_EQ] = ACTIONS(5206), + [anon_sym_LT] = ACTIONS(5208), + [anon_sym_GT] = ACTIONS(5208), + [anon_sym_BANG_EQ] = ACTIONS(5206), + [anon_sym_PLUS] = ACTIONS(5208), + [anon_sym_DASH] = ACTIONS(5208), + [anon_sym_DASH_EQ] = ACTIONS(5206), + [anon_sym_LT_EQ] = ACTIONS(5206), + [anon_sym_GT_EQ] = ACTIONS(5206), + [anon_sym_PLUS_PLUS] = ACTIONS(5206), + [anon_sym_DASH_DASH] = ACTIONS(5206), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(5206), + [anon_sym_LF] = ACTIONS(5206), + [anon_sym_AMP] = ACTIONS(5208), + }, + [2293] = { + [sym_do_group] = STATE(2454), + [sym_compound_statement] = STATE(2454), + [anon_sym_do] = ACTIONS(1212), + [anon_sym_LBRACE] = ACTIONS(3350), + [sym_comment] = ACTIONS(55), + }, + [2294] = { + [sym__concat] = ACTIONS(4710), + [anon_sym_SEMI] = ACTIONS(4712), + [anon_sym_SEMI_SEMI] = ACTIONS(4710), + [sym__special_characters] = ACTIONS(4710), + [anon_sym_DQUOTE] = ACTIONS(4710), + [anon_sym_DOLLAR] = ACTIONS(4712), + [sym_raw_string] = ACTIONS(4710), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4710), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4710), + [anon_sym_BQUOTE] = ACTIONS(4710), + [anon_sym_LT_LPAREN] = ACTIONS(4710), + [anon_sym_GT_LPAREN] = ACTIONS(4710), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(4712), + [anon_sym_LF] = ACTIONS(4710), + [anon_sym_AMP] = ACTIONS(4710), + }, + [2295] = { + [sym__concat] = ACTIONS(4714), + [anon_sym_SEMI] = ACTIONS(4716), + [anon_sym_SEMI_SEMI] = ACTIONS(4714), + [sym__special_characters] = ACTIONS(4714), + [anon_sym_DQUOTE] = ACTIONS(4714), + [anon_sym_DOLLAR] = ACTIONS(4716), + [sym_raw_string] = ACTIONS(4714), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4714), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4714), + [anon_sym_BQUOTE] = ACTIONS(4714), + [anon_sym_LT_LPAREN] = ACTIONS(4714), + [anon_sym_GT_LPAREN] = ACTIONS(4714), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(4716), + [anon_sym_LF] = ACTIONS(4714), + [anon_sym_AMP] = ACTIONS(4714), + }, + [2296] = { + [sym__concat] = ACTIONS(4718), + [anon_sym_SEMI] = ACTIONS(4720), + [anon_sym_SEMI_SEMI] = ACTIONS(4718), + [sym__special_characters] = ACTIONS(4718), + [anon_sym_DQUOTE] = ACTIONS(4718), + [anon_sym_DOLLAR] = ACTIONS(4720), + [sym_raw_string] = ACTIONS(4718), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4718), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4718), + [anon_sym_BQUOTE] = ACTIONS(4718), + [anon_sym_LT_LPAREN] = ACTIONS(4718), + [anon_sym_GT_LPAREN] = ACTIONS(4718), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(4720), + [anon_sym_LF] = ACTIONS(4718), + [anon_sym_AMP] = ACTIONS(4718), + }, + [2297] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(5554), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [2298] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(5556), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [2299] = { + [sym__concat] = ACTIONS(4754), + [anon_sym_SEMI] = ACTIONS(4756), + [anon_sym_SEMI_SEMI] = ACTIONS(4754), + [sym__special_characters] = ACTIONS(4754), + [anon_sym_DQUOTE] = ACTIONS(4754), + [anon_sym_DOLLAR] = ACTIONS(4756), + [sym_raw_string] = ACTIONS(4754), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4754), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4754), + [anon_sym_BQUOTE] = ACTIONS(4754), + [anon_sym_LT_LPAREN] = ACTIONS(4754), + [anon_sym_GT_LPAREN] = ACTIONS(4754), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(4756), + [anon_sym_LF] = ACTIONS(4754), + [anon_sym_AMP] = ACTIONS(4754), + }, + [2300] = { + [sym__concat] = ACTIONS(5202), + [anon_sym_PIPE] = ACTIONS(5204), + [anon_sym_RPAREN] = ACTIONS(5202), + [anon_sym_AMP_AMP] = ACTIONS(5202), + [anon_sym_PIPE_PIPE] = ACTIONS(5202), + [anon_sym_EQ_TILDE] = ACTIONS(5202), + [anon_sym_EQ_EQ] = ACTIONS(5202), + [anon_sym_EQ] = ACTIONS(5204), + [anon_sym_PLUS_EQ] = ACTIONS(5202), + [anon_sym_LT] = ACTIONS(5204), + [anon_sym_GT] = ACTIONS(5204), + [anon_sym_BANG_EQ] = ACTIONS(5202), + [anon_sym_PLUS] = ACTIONS(5204), + [anon_sym_DASH] = ACTIONS(5204), + [anon_sym_DASH_EQ] = ACTIONS(5202), + [anon_sym_LT_EQ] = ACTIONS(5202), + [anon_sym_GT_EQ] = ACTIONS(5202), + [anon_sym_PLUS_PLUS] = ACTIONS(5202), + [anon_sym_DASH_DASH] = ACTIONS(5202), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(5202), + }, + [2301] = { + [sym__concat] = ACTIONS(5206), + [anon_sym_PIPE] = ACTIONS(5208), + [anon_sym_RPAREN] = ACTIONS(5206), + [anon_sym_AMP_AMP] = ACTIONS(5206), + [anon_sym_PIPE_PIPE] = ACTIONS(5206), + [anon_sym_EQ_TILDE] = ACTIONS(5206), + [anon_sym_EQ_EQ] = ACTIONS(5206), + [anon_sym_EQ] = ACTIONS(5208), + [anon_sym_PLUS_EQ] = ACTIONS(5206), + [anon_sym_LT] = ACTIONS(5208), + [anon_sym_GT] = ACTIONS(5208), + [anon_sym_BANG_EQ] = ACTIONS(5206), + [anon_sym_PLUS] = ACTIONS(5208), + [anon_sym_DASH] = ACTIONS(5208), + [anon_sym_DASH_EQ] = ACTIONS(5206), + [anon_sym_LT_EQ] = ACTIONS(5206), + [anon_sym_GT_EQ] = ACTIONS(5206), + [anon_sym_PLUS_PLUS] = ACTIONS(5206), + [anon_sym_DASH_DASH] = ACTIONS(5206), + [sym_comment] = ACTIONS(55), + [sym_test_operator] = ACTIONS(5206), + }, + [2302] = { + [sym_file_descriptor] = ACTIONS(3934), + [sym__concat] = ACTIONS(3934), + [ts_builtin_sym_end] = ACTIONS(3934), + [anon_sym_SEMI] = ACTIONS(3936), + [anon_sym_esac] = ACTIONS(3934), + [anon_sym_PIPE] = ACTIONS(3936), + [anon_sym_RPAREN] = ACTIONS(3934), + [anon_sym_SEMI_SEMI] = ACTIONS(3934), + [anon_sym_PIPE_AMP] = ACTIONS(3934), + [anon_sym_AMP_AMP] = ACTIONS(3934), + [anon_sym_PIPE_PIPE] = ACTIONS(3934), + [anon_sym_LT] = ACTIONS(3936), + [anon_sym_GT] = ACTIONS(3936), + [anon_sym_GT_GT] = ACTIONS(3934), + [anon_sym_AMP_GT] = ACTIONS(3936), + [anon_sym_AMP_GT_GT] = ACTIONS(3934), + [anon_sym_LT_AMP] = ACTIONS(3934), + [anon_sym_GT_AMP] = ACTIONS(3934), + [anon_sym_LT_LT] = ACTIONS(3936), + [anon_sym_LT_LT_DASH] = ACTIONS(3934), + [anon_sym_LT_LT_LT] = ACTIONS(3934), + [anon_sym_BQUOTE] = ACTIONS(3934), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(3934), + [anon_sym_AMP] = ACTIONS(3936), + }, + [2303] = { + [sym_file_descriptor] = ACTIONS(3942), + [sym__concat] = ACTIONS(3942), + [ts_builtin_sym_end] = ACTIONS(3942), + [anon_sym_SEMI] = ACTIONS(3944), + [anon_sym_esac] = ACTIONS(3942), + [anon_sym_PIPE] = ACTIONS(3944), + [anon_sym_RPAREN] = ACTIONS(3942), + [anon_sym_SEMI_SEMI] = ACTIONS(3942), + [anon_sym_PIPE_AMP] = ACTIONS(3942), + [anon_sym_AMP_AMP] = ACTIONS(3942), + [anon_sym_PIPE_PIPE] = ACTIONS(3942), + [anon_sym_LT] = ACTIONS(3944), + [anon_sym_GT] = ACTIONS(3944), + [anon_sym_GT_GT] = ACTIONS(3942), + [anon_sym_AMP_GT] = ACTIONS(3944), + [anon_sym_AMP_GT_GT] = ACTIONS(3942), + [anon_sym_LT_AMP] = ACTIONS(3942), + [anon_sym_GT_AMP] = ACTIONS(3942), + [anon_sym_LT_LT] = ACTIONS(3944), + [anon_sym_LT_LT_DASH] = ACTIONS(3942), + [anon_sym_LT_LT_LT] = ACTIONS(3942), + [anon_sym_BQUOTE] = ACTIONS(3942), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(3942), + [anon_sym_AMP] = ACTIONS(3944), + }, + [2304] = { + [aux_sym_concatenation_repeat1] = STATE(1366), + [sym__concat] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(5558), + [sym_comment] = ACTIONS(55), + }, + [2305] = { + [aux_sym_concatenation_repeat1] = STATE(1366), + [sym__concat] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(5560), + [sym_comment] = ACTIONS(55), + }, + [2306] = { + [anon_sym_RBRACE] = ACTIONS(5560), + [sym_comment] = ACTIONS(55), + }, + [2307] = { + [sym_concatenation] = STATE(2460), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2460), + [anon_sym_RBRACE] = ACTIONS(5562), + [anon_sym_EQ] = ACTIONS(5564), + [anon_sym_DASH] = ACTIONS(5564), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(5566), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(5564), + [anon_sym_COLON_QMARK] = ACTIONS(5564), + [anon_sym_COLON_DASH] = ACTIONS(5564), + [anon_sym_PERCENT] = ACTIONS(5564), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [2308] = { + [sym_file_descriptor] = ACTIONS(3998), + [sym__concat] = ACTIONS(3998), + [ts_builtin_sym_end] = ACTIONS(3998), + [anon_sym_SEMI] = ACTIONS(4000), + [anon_sym_esac] = ACTIONS(3998), + [anon_sym_PIPE] = ACTIONS(4000), + [anon_sym_RPAREN] = ACTIONS(3998), + [anon_sym_SEMI_SEMI] = ACTIONS(3998), + [anon_sym_PIPE_AMP] = ACTIONS(3998), + [anon_sym_AMP_AMP] = ACTIONS(3998), + [anon_sym_PIPE_PIPE] = ACTIONS(3998), + [anon_sym_LT] = ACTIONS(4000), + [anon_sym_GT] = ACTIONS(4000), + [anon_sym_GT_GT] = ACTIONS(3998), + [anon_sym_AMP_GT] = ACTIONS(4000), + [anon_sym_AMP_GT_GT] = ACTIONS(3998), + [anon_sym_LT_AMP] = ACTIONS(3998), + [anon_sym_GT_AMP] = ACTIONS(3998), + [anon_sym_LT_LT] = ACTIONS(4000), + [anon_sym_LT_LT_DASH] = ACTIONS(3998), + [anon_sym_LT_LT_LT] = ACTIONS(3998), + [anon_sym_BQUOTE] = ACTIONS(3998), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(3998), + [anon_sym_AMP] = ACTIONS(4000), + }, + [2309] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(5562), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [2310] = { + [sym_concatenation] = STATE(2461), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2461), + [anon_sym_RBRACE] = ACTIONS(5560), + [anon_sym_EQ] = ACTIONS(5568), + [anon_sym_DASH] = ACTIONS(5568), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(5570), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(5568), + [anon_sym_COLON_QMARK] = ACTIONS(5568), + [anon_sym_COLON_DASH] = ACTIONS(5568), + [anon_sym_PERCENT] = ACTIONS(5568), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [2311] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(5560), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [2312] = { + [sym_file_descriptor] = ACTIONS(4043), + [sym__concat] = ACTIONS(4043), + [ts_builtin_sym_end] = ACTIONS(4043), + [anon_sym_SEMI] = ACTIONS(4045), + [anon_sym_esac] = ACTIONS(4043), + [anon_sym_PIPE] = ACTIONS(4045), + [anon_sym_RPAREN] = ACTIONS(4043), + [anon_sym_SEMI_SEMI] = ACTIONS(4043), + [anon_sym_PIPE_AMP] = ACTIONS(4043), + [anon_sym_AMP_AMP] = ACTIONS(4043), + [anon_sym_PIPE_PIPE] = ACTIONS(4043), + [anon_sym_LT] = ACTIONS(4045), + [anon_sym_GT] = ACTIONS(4045), + [anon_sym_GT_GT] = ACTIONS(4043), + [anon_sym_AMP_GT] = ACTIONS(4045), + [anon_sym_AMP_GT_GT] = ACTIONS(4043), + [anon_sym_LT_AMP] = ACTIONS(4043), + [anon_sym_GT_AMP] = ACTIONS(4043), + [anon_sym_LT_LT] = ACTIONS(4045), + [anon_sym_LT_LT_DASH] = ACTIONS(4043), + [anon_sym_LT_LT_LT] = ACTIONS(4043), + [anon_sym_BQUOTE] = ACTIONS(4043), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(4043), + [anon_sym_AMP] = ACTIONS(4045), + }, + [2313] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(5572), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [2314] = { + [sym_file_descriptor] = ACTIONS(4065), + [sym__concat] = ACTIONS(4065), + [ts_builtin_sym_end] = ACTIONS(4065), + [anon_sym_SEMI] = ACTIONS(4067), + [anon_sym_esac] = ACTIONS(4065), + [anon_sym_PIPE] = ACTIONS(4067), + [anon_sym_RPAREN] = ACTIONS(4065), + [anon_sym_SEMI_SEMI] = ACTIONS(4065), + [anon_sym_PIPE_AMP] = ACTIONS(4065), + [anon_sym_AMP_AMP] = ACTIONS(4065), + [anon_sym_PIPE_PIPE] = ACTIONS(4065), + [anon_sym_LT] = ACTIONS(4067), + [anon_sym_GT] = ACTIONS(4067), + [anon_sym_GT_GT] = ACTIONS(4065), + [anon_sym_AMP_GT] = ACTIONS(4067), + [anon_sym_AMP_GT_GT] = ACTIONS(4065), + [anon_sym_LT_AMP] = ACTIONS(4065), + [anon_sym_GT_AMP] = ACTIONS(4065), + [anon_sym_LT_LT] = ACTIONS(4067), + [anon_sym_LT_LT_DASH] = ACTIONS(4065), + [anon_sym_LT_LT_LT] = ACTIONS(4065), + [anon_sym_BQUOTE] = ACTIONS(4065), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(4065), + [anon_sym_AMP] = ACTIONS(4067), + }, + [2315] = { + [sym_file_descriptor] = ACTIONS(4089), + [sym__concat] = ACTIONS(4089), + [ts_builtin_sym_end] = ACTIONS(4089), + [anon_sym_SEMI] = ACTIONS(4091), + [anon_sym_esac] = ACTIONS(4089), + [anon_sym_PIPE] = ACTIONS(4091), + [anon_sym_RPAREN] = ACTIONS(4089), + [anon_sym_SEMI_SEMI] = ACTIONS(4089), + [anon_sym_PIPE_AMP] = ACTIONS(4089), + [anon_sym_AMP_AMP] = ACTIONS(4089), + [anon_sym_PIPE_PIPE] = ACTIONS(4089), + [anon_sym_LT] = ACTIONS(4091), + [anon_sym_GT] = ACTIONS(4091), + [anon_sym_GT_GT] = ACTIONS(4089), + [anon_sym_AMP_GT] = ACTIONS(4091), + [anon_sym_AMP_GT_GT] = ACTIONS(4089), + [anon_sym_LT_AMP] = ACTIONS(4089), + [anon_sym_GT_AMP] = ACTIONS(4089), + [anon_sym_LT_LT] = ACTIONS(4091), + [anon_sym_LT_LT_DASH] = ACTIONS(4089), + [anon_sym_LT_LT_LT] = ACTIONS(4089), + [anon_sym_BQUOTE] = ACTIONS(4089), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(4089), + [anon_sym_AMP] = ACTIONS(4091), + }, + [2316] = { + [sym_file_descriptor] = ACTIONS(1106), + [sym_variable_name] = ACTIONS(1106), + [anon_sym_SEMI] = ACTIONS(1108), + [anon_sym_esac] = ACTIONS(1108), + [anon_sym_PIPE] = ACTIONS(1108), + [anon_sym_SEMI_SEMI] = ACTIONS(1106), + [anon_sym_PIPE_AMP] = ACTIONS(1106), + [anon_sym_AMP_AMP] = ACTIONS(1106), + [anon_sym_PIPE_PIPE] = ACTIONS(1106), + [anon_sym_LT] = ACTIONS(1108), + [anon_sym_GT] = ACTIONS(1108), + [anon_sym_GT_GT] = ACTIONS(1106), + [anon_sym_AMP_GT] = ACTIONS(1108), + [anon_sym_AMP_GT_GT] = ACTIONS(1106), + [anon_sym_LT_AMP] = ACTIONS(1106), + [anon_sym_GT_AMP] = ACTIONS(1106), + [sym__special_characters] = ACTIONS(1106), + [anon_sym_DQUOTE] = ACTIONS(1106), + [anon_sym_DOLLAR] = ACTIONS(1108), + [sym_raw_string] = ACTIONS(1106), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1106), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1106), + [anon_sym_BQUOTE] = ACTIONS(1106), + [anon_sym_LT_LPAREN] = ACTIONS(1106), + [anon_sym_GT_LPAREN] = ACTIONS(1106), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1108), + [anon_sym_LF] = ACTIONS(1106), + [anon_sym_AMP] = ACTIONS(1108), + }, + [2317] = { + [sym_concatenation] = STATE(2464), + [sym_string] = STATE(558), + [sym_simple_expansion] = STATE(558), + [sym_string_expansion] = STATE(558), + [sym_expansion] = STATE(558), + [sym_command_substitution] = STATE(558), + [sym_process_substitution] = STATE(558), + [aux_sym_for_statement_repeat1] = STATE(2464), + [anon_sym_RPAREN] = ACTIONS(5574), + [sym__special_characters] = ACTIONS(1112), + [anon_sym_DQUOTE] = ACTIONS(1114), + [anon_sym_DOLLAR] = ACTIONS(1116), + [sym_raw_string] = ACTIONS(1118), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1120), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1122), + [anon_sym_BQUOTE] = ACTIONS(1124), + [anon_sym_LT_LPAREN] = ACTIONS(1126), + [anon_sym_GT_LPAREN] = ACTIONS(1126), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1118), + }, + [2318] = { + [aux_sym_concatenation_repeat1] = STATE(2466), + [sym_file_descriptor] = ACTIONS(1128), + [sym__concat] = ACTIONS(5576), + [sym_variable_name] = ACTIONS(1128), + [anon_sym_SEMI] = ACTIONS(1132), + [anon_sym_esac] = ACTIONS(1132), + [anon_sym_PIPE] = ACTIONS(1132), + [anon_sym_SEMI_SEMI] = ACTIONS(1128), + [anon_sym_PIPE_AMP] = ACTIONS(1128), + [anon_sym_AMP_AMP] = ACTIONS(1128), + [anon_sym_PIPE_PIPE] = ACTIONS(1128), + [anon_sym_LT] = ACTIONS(1132), + [anon_sym_GT] = ACTIONS(1132), + [anon_sym_GT_GT] = ACTIONS(1128), + [anon_sym_AMP_GT] = ACTIONS(1132), + [anon_sym_AMP_GT_GT] = ACTIONS(1128), + [anon_sym_LT_AMP] = ACTIONS(1128), + [anon_sym_GT_AMP] = ACTIONS(1128), + [sym__special_characters] = ACTIONS(1128), + [anon_sym_DQUOTE] = ACTIONS(1128), + [anon_sym_DOLLAR] = ACTIONS(1132), + [sym_raw_string] = ACTIONS(1128), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1128), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1128), + [anon_sym_BQUOTE] = ACTIONS(1128), + [anon_sym_LT_LPAREN] = ACTIONS(1128), + [anon_sym_GT_LPAREN] = ACTIONS(1128), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1132), + [anon_sym_LF] = ACTIONS(1128), + [anon_sym_AMP] = ACTIONS(1132), + }, + [2319] = { + [sym_simple_expansion] = STATE(148), + [sym_expansion] = STATE(148), + [sym_command_substitution] = STATE(148), + [aux_sym_string_repeat1] = STATE(2469), + [anon_sym_DQUOTE] = ACTIONS(5578), + [anon_sym_DOLLAR] = ACTIONS(5580), + [sym__string_content] = ACTIONS(273), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(277), + [anon_sym_BQUOTE] = ACTIONS(279), + [sym_comment] = ACTIONS(281), + }, + [2320] = { + [sym_string] = STATE(2471), + [anon_sym_DASH] = ACTIONS(5582), + [anon_sym_DQUOTE] = ACTIONS(5330), + [anon_sym_DOLLAR] = ACTIONS(5582), + [sym_raw_string] = ACTIONS(5584), + [anon_sym_POUND] = ACTIONS(5582), + [sym_comment] = ACTIONS(281), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5586), + [anon_sym_STAR] = ACTIONS(5588), + [anon_sym_AT] = ACTIONS(5588), + [anon_sym_QMARK] = ACTIONS(5588), + [anon_sym_0] = ACTIONS(5586), + [anon_sym__] = ACTIONS(5586), + }, + [2321] = { + [aux_sym_concatenation_repeat1] = STATE(2466), + [sym_file_descriptor] = ACTIONS(1106), + [sym__concat] = ACTIONS(5576), + [sym_variable_name] = ACTIONS(1106), + [anon_sym_SEMI] = ACTIONS(1108), + [anon_sym_esac] = ACTIONS(1108), + [anon_sym_PIPE] = ACTIONS(1108), + [anon_sym_SEMI_SEMI] = ACTIONS(1106), + [anon_sym_PIPE_AMP] = ACTIONS(1106), + [anon_sym_AMP_AMP] = ACTIONS(1106), + [anon_sym_PIPE_PIPE] = ACTIONS(1106), + [anon_sym_LT] = ACTIONS(1108), + [anon_sym_GT] = ACTIONS(1108), + [anon_sym_GT_GT] = ACTIONS(1106), + [anon_sym_AMP_GT] = ACTIONS(1108), + [anon_sym_AMP_GT_GT] = ACTIONS(1106), + [anon_sym_LT_AMP] = ACTIONS(1106), + [anon_sym_GT_AMP] = ACTIONS(1106), + [sym__special_characters] = ACTIONS(1106), + [anon_sym_DQUOTE] = ACTIONS(1106), + [anon_sym_DOLLAR] = ACTIONS(1108), + [sym_raw_string] = ACTIONS(1106), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1106), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1106), + [anon_sym_BQUOTE] = ACTIONS(1106), + [anon_sym_LT_LPAREN] = ACTIONS(1106), + [anon_sym_GT_LPAREN] = ACTIONS(1106), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1108), + [anon_sym_LF] = ACTIONS(1106), + [anon_sym_AMP] = ACTIONS(1108), + }, + [2322] = { + [sym_subscript] = STATE(2476), + [sym_variable_name] = ACTIONS(5590), + [anon_sym_BANG] = ACTIONS(5592), + [anon_sym_DASH] = ACTIONS(5594), + [anon_sym_DOLLAR] = ACTIONS(5594), + [anon_sym_POUND] = ACTIONS(5592), + [sym_comment] = ACTIONS(281), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5596), + [anon_sym_STAR] = ACTIONS(5598), + [anon_sym_AT] = ACTIONS(5598), + [anon_sym_QMARK] = ACTIONS(5598), + [anon_sym_0] = ACTIONS(5596), + [anon_sym__] = ACTIONS(5596), + }, + [2323] = { + [sym__terminated_statement] = STATE(2479), + [sym_for_statement] = STATE(2477), + [sym_c_style_for_statement] = STATE(2477), + [sym_while_statement] = STATE(2477), + [sym_if_statement] = STATE(2477), + [sym_case_statement] = STATE(2477), + [sym_function_definition] = STATE(2477), + [sym_subshell] = STATE(2477), + [sym_pipeline] = STATE(2477), + [sym_list] = STATE(2477), + [sym_negated_command] = STATE(2477), + [sym_test_command] = STATE(2477), + [sym_declaration_command] = STATE(2477), + [sym_unset_command] = STATE(2477), + [sym_command] = STATE(2477), + [sym_command_name] = STATE(92), + [sym_variable_assignment] = STATE(2478), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(96), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), + [aux_sym__statements_repeat1] = STATE(2479), + [aux_sym_command_repeat1] = STATE(96), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(137), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(149), + [anon_sym_declare] = ACTIONS(151), + [anon_sym_typeset] = ACTIONS(151), + [anon_sym_export] = ACTIONS(151), + [anon_sym_readonly] = ACTIONS(151), + [anon_sym_local] = ACTIONS(151), + [anon_sym_unset] = ACTIONS(153), + [anon_sym_unsetenv] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(159), + }, + [2324] = { + [sym__terminated_statement] = STATE(2482), + [sym_for_statement] = STATE(2480), + [sym_c_style_for_statement] = STATE(2480), + [sym_while_statement] = STATE(2480), + [sym_if_statement] = STATE(2480), + [sym_case_statement] = STATE(2480), + [sym_function_definition] = STATE(2480), + [sym_subshell] = STATE(2480), + [sym_pipeline] = STATE(2480), + [sym_list] = STATE(2480), + [sym_negated_command] = STATE(2480), + [sym_test_command] = STATE(2480), + [sym_declaration_command] = STATE(2480), + [sym_unset_command] = STATE(2480), + [sym_command] = STATE(2480), + [sym_command_name] = STATE(173), + [sym_variable_assignment] = STATE(2481), + [sym_subscript] = STATE(66), + [sym_file_redirect] = STATE(176), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(60), + [sym_simple_expansion] = STATE(60), + [sym_string_expansion] = STATE(60), + [sym_expansion] = STATE(60), + [sym_command_substitution] = STATE(60), + [sym_process_substitution] = STATE(60), + [aux_sym__statements_repeat1] = STATE(2482), + [aux_sym_command_repeat1] = STATE(176), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(95), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(305), + [anon_sym_while] = ACTIONS(307), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(311), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(315), + [anon_sym_declare] = ACTIONS(317), + [anon_sym_typeset] = ACTIONS(317), + [anon_sym_export] = ACTIONS(317), + [anon_sym_readonly] = ACTIONS(317), + [anon_sym_local] = ACTIONS(317), + [anon_sym_unset] = ACTIONS(319), + [anon_sym_unsetenv] = ACTIONS(319), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(115), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(321), + }, + [2325] = { + [sym__terminated_statement] = STATE(2485), + [sym_for_statement] = STATE(2483), + [sym_c_style_for_statement] = STATE(2483), + [sym_while_statement] = STATE(2483), + [sym_if_statement] = STATE(2483), + [sym_case_statement] = STATE(2483), + [sym_function_definition] = STATE(2483), + [sym_subshell] = STATE(2483), + [sym_pipeline] = STATE(2483), + [sym_list] = STATE(2483), + [sym_negated_command] = STATE(2483), + [sym_test_command] = STATE(2483), + [sym_declaration_command] = STATE(2483), + [sym_unset_command] = STATE(2483), + [sym_command] = STATE(2483), + [sym_command_name] = STATE(92), + [sym_variable_assignment] = STATE(2484), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(96), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), + [aux_sym__statements_repeat1] = STATE(2485), + [aux_sym_command_repeat1] = STATE(96), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(137), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(149), + [anon_sym_declare] = ACTIONS(151), + [anon_sym_typeset] = ACTIONS(151), + [anon_sym_export] = ACTIONS(151), + [anon_sym_readonly] = ACTIONS(151), + [anon_sym_local] = ACTIONS(151), + [anon_sym_unset] = ACTIONS(153), + [anon_sym_unsetenv] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(159), + }, + [2326] = { + [sym_file_redirect] = STATE(2489), + [sym_heredoc_redirect] = STATE(2489), + [sym_herestring_redirect] = STATE(2489), + [aux_sym_while_statement_repeat1] = STATE(2489), + [sym_file_descriptor] = ACTIONS(5600), + [anon_sym_SEMI] = ACTIONS(1302), + [anon_sym_esac] = ACTIONS(1300), + [anon_sym_PIPE] = ACTIONS(1302), + [anon_sym_SEMI_SEMI] = ACTIONS(1300), + [anon_sym_PIPE_AMP] = ACTIONS(1300), + [anon_sym_AMP_AMP] = ACTIONS(1300), + [anon_sym_PIPE_PIPE] = ACTIONS(1300), + [anon_sym_LT] = ACTIONS(5602), + [anon_sym_GT] = ACTIONS(5602), + [anon_sym_GT_GT] = ACTIONS(5604), + [anon_sym_AMP_GT] = ACTIONS(5602), + [anon_sym_AMP_GT_GT] = ACTIONS(5604), + [anon_sym_LT_AMP] = ACTIONS(5604), + [anon_sym_GT_AMP] = ACTIONS(5604), + [anon_sym_LT_LT] = ACTIONS(1308), + [anon_sym_LT_LT_DASH] = ACTIONS(1310), + [anon_sym_LT_LT_LT] = ACTIONS(5606), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1302), + }, + [2327] = { + [sym_file_redirect] = STATE(2490), + [sym_heredoc_redirect] = STATE(2490), + [sym_heredoc_body] = STATE(699), + [sym_herestring_redirect] = STATE(2490), + [aux_sym_while_statement_repeat1] = STATE(2490), + [sym__simple_heredoc_body] = ACTIONS(339), + [sym__heredoc_body_beginning] = ACTIONS(341), + [sym_file_descriptor] = ACTIONS(5091), + [anon_sym_SEMI] = ACTIONS(1340), + [anon_sym_esac] = ACTIONS(1338), + [anon_sym_PIPE] = ACTIONS(1340), + [anon_sym_SEMI_SEMI] = ACTIONS(1338), + [anon_sym_PIPE_AMP] = ACTIONS(1338), + [anon_sym_AMP_AMP] = ACTIONS(1338), + [anon_sym_PIPE_PIPE] = ACTIONS(1338), + [anon_sym_LT] = ACTIONS(5095), + [anon_sym_GT] = ACTIONS(5095), + [anon_sym_GT_GT] = ACTIONS(5097), + [anon_sym_AMP_GT] = ACTIONS(5095), + [anon_sym_AMP_GT_GT] = ACTIONS(5097), + [anon_sym_LT_AMP] = ACTIONS(5097), + [anon_sym_GT_AMP] = ACTIONS(5097), + [anon_sym_LT_LT] = ACTIONS(355), + [anon_sym_LT_LT_DASH] = ACTIONS(357), + [anon_sym_LT_LT_LT] = ACTIONS(5099), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1338), + [anon_sym_AMP] = ACTIONS(1340), + }, + [2328] = { + [anon_sym_RPAREN] = ACTIONS(5608), + [sym_comment] = ACTIONS(55), + }, + [2329] = { + [sym_file_redirect] = STATE(756), + [sym_file_descriptor] = ACTIONS(5610), + [anon_sym_SEMI] = ACTIONS(1432), + [anon_sym_esac] = ACTIONS(1430), + [anon_sym_PIPE] = ACTIONS(1432), + [anon_sym_SEMI_SEMI] = ACTIONS(1430), + [anon_sym_PIPE_AMP] = ACTIONS(1430), + [anon_sym_AMP_AMP] = ACTIONS(1430), + [anon_sym_PIPE_PIPE] = ACTIONS(1430), + [anon_sym_LT] = ACTIONS(5612), + [anon_sym_GT] = ACTIONS(5612), + [anon_sym_GT_GT] = ACTIONS(5614), + [anon_sym_AMP_GT] = ACTIONS(5612), + [anon_sym_AMP_GT_GT] = ACTIONS(5614), + [anon_sym_LT_AMP] = ACTIONS(5614), + [anon_sym_GT_AMP] = ACTIONS(5614), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1430), + [anon_sym_AMP] = ACTIONS(1432), + }, + [2330] = { + [sym_concatenation] = STATE(2494), + [sym_string] = STATE(2497), + [sym_array] = STATE(2494), + [sym_simple_expansion] = STATE(2497), + [sym_string_expansion] = STATE(2497), + [sym_expansion] = STATE(2497), + [sym_command_substitution] = STATE(2497), + [sym_process_substitution] = STATE(2497), + [sym__empty_value] = ACTIONS(5616), + [anon_sym_LPAREN] = ACTIONS(5618), + [sym__special_characters] = ACTIONS(5620), + [anon_sym_DQUOTE] = ACTIONS(5013), + [anon_sym_DOLLAR] = ACTIONS(5015), + [sym_raw_string] = ACTIONS(5622), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5019), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5021), + [anon_sym_BQUOTE] = ACTIONS(5023), + [anon_sym_LT_LPAREN] = ACTIONS(5025), + [anon_sym_GT_LPAREN] = ACTIONS(5025), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(5622), + }, + [2331] = { + [sym_string] = STATE(2498), + [sym_simple_expansion] = STATE(2498), + [sym_string_expansion] = STATE(2498), + [sym_expansion] = STATE(2498), + [sym_command_substitution] = STATE(2498), + [sym_process_substitution] = STATE(2498), + [sym__special_characters] = ACTIONS(5624), + [anon_sym_DQUOTE] = ACTIONS(5013), + [anon_sym_DOLLAR] = ACTIONS(5015), + [sym_raw_string] = ACTIONS(5624), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5019), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5021), + [anon_sym_BQUOTE] = ACTIONS(5023), + [anon_sym_LT_LPAREN] = ACTIONS(5025), + [anon_sym_GT_LPAREN] = ACTIONS(5025), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(5624), + }, + [2332] = { + [aux_sym_concatenation_repeat1] = STATE(2499), + [sym__concat] = ACTIONS(5350), [sym_variable_name] = ACTIONS(807), [anon_sym_SEMI] = ACTIONS(809), [anon_sym_esac] = ACTIONS(809), @@ -62888,13 +67738,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(807), [anon_sym_LT_LPAREN] = ACTIONS(807), [anon_sym_GT_LPAREN] = ACTIONS(807), - [sym_comment] = ACTIONS(53), + [sym_comment] = ACTIONS(55), [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(809), [sym_word] = ACTIONS(809), [anon_sym_LF] = ACTIONS(807), [anon_sym_AMP] = ACTIONS(809), }, - [2269] = { + [2333] = { [sym__concat] = ACTIONS(811), [sym_variable_name] = ACTIONS(811), [anon_sym_SEMI] = ACTIONS(813), @@ -62913,571 +67763,577 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(811), [anon_sym_LT_LPAREN] = ACTIONS(811), [anon_sym_GT_LPAREN] = ACTIONS(811), - [sym_comment] = ACTIONS(53), + [sym_comment] = ACTIONS(55), [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(813), [sym_word] = ACTIONS(813), [anon_sym_LF] = ACTIONS(811), [anon_sym_AMP] = ACTIONS(813), }, - [2270] = { - [anon_sym_LBRACK] = ACTIONS(815), - [anon_sym_EQ] = ACTIONS(5527), - [sym_comment] = ACTIONS(53), + [2334] = { + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_DQUOTE] = ACTIONS(5626), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym__string_content] = ACTIONS(821), + [anon_sym_POUND] = ACTIONS(815), + [sym_comment] = ACTIONS(281), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(823), + [anon_sym_STAR] = ACTIONS(825), + [anon_sym_AT] = ACTIONS(825), + [anon_sym_QMARK] = ACTIONS(825), + [anon_sym_0] = ACTIONS(823), + [anon_sym__] = ACTIONS(823), }, - [2271] = { - [sym_subscript] = STATE(2449), - [sym_variable_name] = ACTIONS(5529), - [anon_sym_DOLLAR] = ACTIONS(5531), - [anon_sym_DASH] = ACTIONS(5531), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5533), - [anon_sym_STAR] = ACTIONS(5535), - [anon_sym_AT] = ACTIONS(5535), - [anon_sym_QMARK] = ACTIONS(5535), - [anon_sym_0] = ACTIONS(5533), - [anon_sym__] = ACTIONS(5533), + [2335] = { + [sym_simple_expansion] = STATE(148), + [sym_expansion] = STATE(148), + [sym_command_substitution] = STATE(148), + [aux_sym_string_repeat1] = STATE(473), + [anon_sym_DQUOTE] = ACTIONS(5626), + [anon_sym_DOLLAR] = ACTIONS(5628), + [sym__string_content] = ACTIONS(273), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(277), + [anon_sym_BQUOTE] = ACTIONS(279), + [sym_comment] = ACTIONS(281), }, - [2272] = { - [sym_concatenation] = STATE(2452), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(2452), - [anon_sym_RBRACE] = ACTIONS(5537), - [anon_sym_EQ] = ACTIONS(5539), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(5541), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(5543), - [anon_sym_COLON] = ACTIONS(5539), - [anon_sym_COLON_QMARK] = ACTIONS(5539), - [anon_sym_COLON_DASH] = ACTIONS(5539), - [anon_sym_PERCENT] = ACTIONS(5539), - [anon_sym_DASH] = ACTIONS(5539), + [2336] = { + [sym__concat] = ACTIONS(845), + [sym_variable_name] = ACTIONS(845), + [anon_sym_SEMI] = ACTIONS(847), + [anon_sym_esac] = ACTIONS(847), + [anon_sym_PIPE] = ACTIONS(847), + [anon_sym_SEMI_SEMI] = ACTIONS(845), + [anon_sym_PIPE_AMP] = ACTIONS(845), + [anon_sym_AMP_AMP] = ACTIONS(845), + [anon_sym_PIPE_PIPE] = ACTIONS(845), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(845), + [anon_sym_DOLLAR] = ACTIONS(847), + [sym_raw_string] = ACTIONS(845), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(845), [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), + [anon_sym_BQUOTE] = ACTIONS(845), + [anon_sym_LT_LPAREN] = ACTIONS(845), + [anon_sym_GT_LPAREN] = ACTIONS(845), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(847), + [sym_word] = ACTIONS(847), + [anon_sym_LF] = ACTIONS(845), + [anon_sym_AMP] = ACTIONS(847), + }, + [2337] = { + [sym__concat] = ACTIONS(849), + [sym_variable_name] = ACTIONS(849), + [anon_sym_SEMI] = ACTIONS(851), + [anon_sym_esac] = ACTIONS(851), + [anon_sym_PIPE] = ACTIONS(851), + [anon_sym_SEMI_SEMI] = ACTIONS(849), + [anon_sym_PIPE_AMP] = ACTIONS(849), + [anon_sym_AMP_AMP] = ACTIONS(849), + [anon_sym_PIPE_PIPE] = ACTIONS(849), + [sym__special_characters] = ACTIONS(849), + [anon_sym_DQUOTE] = ACTIONS(849), + [anon_sym_DOLLAR] = ACTIONS(851), + [sym_raw_string] = ACTIONS(849), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(849), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(849), + [anon_sym_BQUOTE] = ACTIONS(849), [anon_sym_LT_LPAREN] = ACTIONS(849), [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(851), [sym_word] = ACTIONS(851), + [anon_sym_LF] = ACTIONS(849), + [anon_sym_AMP] = ACTIONS(851), }, - [2273] = { - [sym_concatenation] = STATE(2455), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(2455), - [anon_sym_RBRACE] = ACTIONS(5545), - [anon_sym_EQ] = ACTIONS(5547), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(5549), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(5551), - [anon_sym_COLON] = ACTIONS(5547), - [anon_sym_COLON_QMARK] = ACTIONS(5547), - [anon_sym_COLON_DASH] = ACTIONS(5547), - [anon_sym_PERCENT] = ACTIONS(5547), - [anon_sym_DASH] = ACTIONS(5547), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [2338] = { + [sym__concat] = ACTIONS(853), + [sym_variable_name] = ACTIONS(853), + [anon_sym_SEMI] = ACTIONS(855), + [anon_sym_esac] = ACTIONS(855), + [anon_sym_PIPE] = ACTIONS(855), + [anon_sym_SEMI_SEMI] = ACTIONS(853), + [anon_sym_PIPE_AMP] = ACTIONS(853), + [anon_sym_AMP_AMP] = ACTIONS(853), + [anon_sym_PIPE_PIPE] = ACTIONS(853), + [sym__special_characters] = ACTIONS(853), + [anon_sym_DQUOTE] = ACTIONS(853), + [anon_sym_DOLLAR] = ACTIONS(855), + [sym_raw_string] = ACTIONS(853), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(853), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(853), + [anon_sym_BQUOTE] = ACTIONS(853), + [anon_sym_LT_LPAREN] = ACTIONS(853), + [anon_sym_GT_LPAREN] = ACTIONS(853), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(855), + [sym_word] = ACTIONS(855), + [anon_sym_LF] = ACTIONS(853), + [anon_sym_AMP] = ACTIONS(855), }, - [2274] = { - [anon_sym_SEMI] = ACTIONS(5553), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(5555), - [anon_sym_SEMI_SEMI] = ACTIONS(5557), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(5557), - [anon_sym_AMP] = ACTIONS(5553), + [2339] = { + [anon_sym_LBRACK] = ACTIONS(857), + [anon_sym_EQ] = ACTIONS(5630), + [sym_comment] = ACTIONS(55), }, - [2275] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(5553), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(5555), - [anon_sym_SEMI_SEMI] = ACTIONS(5557), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(5557), - [anon_sym_AMP] = ACTIONS(5553), + [2340] = { + [sym_subscript] = STATE(2505), + [sym_variable_name] = ACTIONS(5632), + [anon_sym_DASH] = ACTIONS(5634), + [anon_sym_DOLLAR] = ACTIONS(5634), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5636), + [anon_sym_STAR] = ACTIONS(5638), + [anon_sym_AT] = ACTIONS(5638), + [anon_sym_QMARK] = ACTIONS(5638), + [anon_sym_0] = ACTIONS(5636), + [anon_sym__] = ACTIONS(5636), }, - [2276] = { - [sym__terminated_statement] = STATE(190), - [sym_for_statement] = STATE(2458), - [sym_c_style_for_statement] = STATE(2458), - [sym_while_statement] = STATE(2458), - [sym_if_statement] = STATE(2458), - [sym_case_statement] = STATE(2458), - [sym_function_definition] = STATE(2458), - [sym_subshell] = STATE(2458), - [sym_pipeline] = STATE(2458), - [sym_list] = STATE(2458), - [sym_negated_command] = STATE(2458), - [sym_test_command] = STATE(2458), - [sym_declaration_command] = STATE(2458), - [sym_unset_command] = STATE(2458), - [sym_command] = STATE(2458), - [sym_command_name] = STATE(78), - [sym_variable_assignment] = STATE(2459), - [sym_subscript] = STATE(80), - [sym_file_redirect] = STATE(82), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(75), - [sym_simple_expansion] = STATE(75), - [sym_string_expansion] = STATE(75), - [sym_expansion] = STATE(75), - [sym_command_substitution] = STATE(75), - [sym_process_substitution] = STATE(75), - [aux_sym__statements_repeat1] = STATE(190), - [aux_sym_command_repeat1] = STATE(82), + [2341] = { + [sym_concatenation] = STATE(2508), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2508), + [anon_sym_RBRACE] = ACTIONS(5640), + [anon_sym_EQ] = ACTIONS(5642), + [anon_sym_DASH] = ACTIONS(5642), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(5644), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(5646), + [anon_sym_COLON] = ACTIONS(5642), + [anon_sym_COLON_QMARK] = ACTIONS(5642), + [anon_sym_COLON_DASH] = ACTIONS(5642), + [anon_sym_PERCENT] = ACTIONS(5642), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [2342] = { + [sym_concatenation] = STATE(2511), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2511), + [anon_sym_RBRACE] = ACTIONS(5648), + [anon_sym_EQ] = ACTIONS(5650), + [anon_sym_DASH] = ACTIONS(5650), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(5652), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(5654), + [anon_sym_COLON] = ACTIONS(5650), + [anon_sym_COLON_QMARK] = ACTIONS(5650), + [anon_sym_COLON_DASH] = ACTIONS(5650), + [anon_sym_PERCENT] = ACTIONS(5650), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [2343] = { + [anon_sym_SEMI] = ACTIONS(5656), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(5658), + [anon_sym_SEMI_SEMI] = ACTIONS(5660), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(5660), + [anon_sym_AMP] = ACTIONS(5656), + }, + [2344] = { + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(5656), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(5658), + [anon_sym_SEMI_SEMI] = ACTIONS(5660), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(5660), + [anon_sym_AMP] = ACTIONS(5656), + }, + [2345] = { + [sym__terminated_statement] = STATE(198), + [sym_for_statement] = STATE(2514), + [sym_c_style_for_statement] = STATE(2514), + [sym_while_statement] = STATE(2514), + [sym_if_statement] = STATE(2514), + [sym_case_statement] = STATE(2514), + [sym_function_definition] = STATE(2514), + [sym_subshell] = STATE(2514), + [sym_pipeline] = STATE(2514), + [sym_list] = STATE(2514), + [sym_negated_command] = STATE(2514), + [sym_test_command] = STATE(2514), + [sym_declaration_command] = STATE(2514), + [sym_unset_command] = STATE(2514), + [sym_command] = STATE(2514), + [sym_command_name] = STATE(92), + [sym_variable_assignment] = STATE(2515), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(96), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), + [aux_sym__statements_repeat1] = STATE(198), + [aux_sym_command_repeat1] = STATE(96), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), + [sym_variable_name] = ACTIONS(137), [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(111), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(119), - [anon_sym_declare] = ACTIONS(121), - [anon_sym_typeset] = ACTIONS(121), - [anon_sym_export] = ACTIONS(121), - [anon_sym_readonly] = ACTIONS(121), - [anon_sym_local] = ACTIONS(121), - [anon_sym_unset] = ACTIONS(123), - [anon_sym_unsetenv] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), + [anon_sym_LPAREN_LPAREN] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(149), + [anon_sym_declare] = ACTIONS(151), + [anon_sym_typeset] = ACTIONS(151), + [anon_sym_export] = ACTIONS(151), + [anon_sym_readonly] = ACTIONS(151), + [anon_sym_local] = ACTIONS(151), + [anon_sym_unset] = ACTIONS(153), + [anon_sym_unsetenv] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(159), }, - [2277] = { - [anon_sym_SEMI] = ACTIONS(5559), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_SEMI_SEMI] = ACTIONS(5561), - [anon_sym_PIPE_AMP] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(883), - [anon_sym_PIPE_PIPE] = ACTIONS(883), - [anon_sym_BQUOTE] = ACTIONS(5555), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(5561), - [anon_sym_AMP] = ACTIONS(5559), + [2346] = { + [anon_sym_SEMI] = ACTIONS(5662), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_SEMI_SEMI] = ACTIONS(5664), + [anon_sym_PIPE_AMP] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_BQUOTE] = ACTIONS(5658), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(5664), + [anon_sym_AMP] = ACTIONS(5662), }, - [2278] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(5559), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_SEMI_SEMI] = ACTIONS(5561), - [anon_sym_PIPE_AMP] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(883), - [anon_sym_PIPE_PIPE] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(5555), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(5561), - [anon_sym_AMP] = ACTIONS(5559), + [2347] = { + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(5662), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_SEMI_SEMI] = ACTIONS(5664), + [anon_sym_PIPE_AMP] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(5658), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(5664), + [anon_sym_AMP] = ACTIONS(5662), }, - [2279] = { - [sym__terminated_statement] = STATE(190), - [sym_for_statement] = STATE(2461), - [sym_c_style_for_statement] = STATE(2461), - [sym_while_statement] = STATE(2461), - [sym_if_statement] = STATE(2461), - [sym_case_statement] = STATE(2461), - [sym_function_definition] = STATE(2461), - [sym_subshell] = STATE(2461), - [sym_pipeline] = STATE(2461), - [sym_list] = STATE(2461), - [sym_negated_command] = STATE(2461), - [sym_test_command] = STATE(2461), - [sym_declaration_command] = STATE(2461), - [sym_unset_command] = STATE(2461), - [sym_command] = STATE(2461), - [sym_command_name] = STATE(165), - [sym_variable_assignment] = STATE(2462), - [sym_subscript] = STATE(53), - [sym_file_redirect] = STATE(168), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(47), - [sym_simple_expansion] = STATE(47), - [sym_string_expansion] = STATE(47), - [sym_expansion] = STATE(47), - [sym_command_substitution] = STATE(47), - [sym_process_substitution] = STATE(47), - [aux_sym__statements_repeat1] = STATE(190), - [aux_sym_command_repeat1] = STATE(168), + [2348] = { + [sym__terminated_statement] = STATE(198), + [sym_for_statement] = STATE(2517), + [sym_c_style_for_statement] = STATE(2517), + [sym_while_statement] = STATE(2517), + [sym_if_statement] = STATE(2517), + [sym_case_statement] = STATE(2517), + [sym_function_definition] = STATE(2517), + [sym_subshell] = STATE(2517), + [sym_pipeline] = STATE(2517), + [sym_list] = STATE(2517), + [sym_negated_command] = STATE(2517), + [sym_test_command] = STATE(2517), + [sym_declaration_command] = STATE(2517), + [sym_unset_command] = STATE(2517), + [sym_command] = STATE(2517), + [sym_command_name] = STATE(173), + [sym_variable_assignment] = STATE(2518), + [sym_subscript] = STATE(66), + [sym_file_redirect] = STATE(176), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(60), + [sym_simple_expansion] = STATE(60), + [sym_string_expansion] = STATE(60), + [sym_expansion] = STATE(60), + [sym_command_substitution] = STATE(60), + [sym_process_substitution] = STATE(60), + [aux_sym__statements_repeat1] = STATE(198), + [aux_sym_command_repeat1] = STATE(176), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(69), + [sym_variable_name] = ACTIONS(95), [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(289), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(291), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(293), - [anon_sym_LBRACK] = ACTIONS(295), - [anon_sym_LBRACK_LBRACK] = ACTIONS(297), - [anon_sym_declare] = ACTIONS(299), - [anon_sym_typeset] = ACTIONS(299), - [anon_sym_export] = ACTIONS(299), - [anon_sym_readonly] = ACTIONS(299), - [anon_sym_local] = ACTIONS(299), - [anon_sym_unset] = ACTIONS(301), - [anon_sym_unsetenv] = ACTIONS(301), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(87), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(303), + [anon_sym_LPAREN_LPAREN] = ACTIONS(305), + [anon_sym_while] = ACTIONS(307), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(311), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(315), + [anon_sym_declare] = ACTIONS(317), + [anon_sym_typeset] = ACTIONS(317), + [anon_sym_export] = ACTIONS(317), + [anon_sym_readonly] = ACTIONS(317), + [anon_sym_local] = ACTIONS(317), + [anon_sym_unset] = ACTIONS(319), + [anon_sym_unsetenv] = ACTIONS(319), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(115), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(321), }, - [2280] = { - [anon_sym_SEMI] = ACTIONS(5563), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(5565), - [anon_sym_SEMI_SEMI] = ACTIONS(5567), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(5567), - [anon_sym_AMP] = ACTIONS(5563), + [2349] = { + [anon_sym_SEMI] = ACTIONS(5666), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(5668), + [anon_sym_SEMI_SEMI] = ACTIONS(5670), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(5670), + [anon_sym_AMP] = ACTIONS(5666), }, - [2281] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(5563), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(5565), - [anon_sym_SEMI_SEMI] = ACTIONS(5567), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(5567), - [anon_sym_AMP] = ACTIONS(5563), + [2350] = { + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(5666), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(5668), + [anon_sym_SEMI_SEMI] = ACTIONS(5670), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(5670), + [anon_sym_AMP] = ACTIONS(5666), }, - [2282] = { - [sym__terminated_statement] = STATE(190), - [sym_for_statement] = STATE(2465), - [sym_c_style_for_statement] = STATE(2465), - [sym_while_statement] = STATE(2465), - [sym_if_statement] = STATE(2465), - [sym_case_statement] = STATE(2465), - [sym_function_definition] = STATE(2465), - [sym_subshell] = STATE(2465), - [sym_pipeline] = STATE(2465), - [sym_list] = STATE(2465), - [sym_negated_command] = STATE(2465), - [sym_test_command] = STATE(2465), - [sym_declaration_command] = STATE(2465), - [sym_unset_command] = STATE(2465), - [sym_command] = STATE(2465), - [sym_command_name] = STATE(78), - [sym_variable_assignment] = STATE(2466), - [sym_subscript] = STATE(80), - [sym_file_redirect] = STATE(82), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(75), - [sym_simple_expansion] = STATE(75), - [sym_string_expansion] = STATE(75), - [sym_expansion] = STATE(75), - [sym_command_substitution] = STATE(75), - [sym_process_substitution] = STATE(75), - [aux_sym__statements_repeat1] = STATE(190), - [aux_sym_command_repeat1] = STATE(82), + [2351] = { + [sym__terminated_statement] = STATE(198), + [sym_for_statement] = STATE(2521), + [sym_c_style_for_statement] = STATE(2521), + [sym_while_statement] = STATE(2521), + [sym_if_statement] = STATE(2521), + [sym_case_statement] = STATE(2521), + [sym_function_definition] = STATE(2521), + [sym_subshell] = STATE(2521), + [sym_pipeline] = STATE(2521), + [sym_list] = STATE(2521), + [sym_negated_command] = STATE(2521), + [sym_test_command] = STATE(2521), + [sym_declaration_command] = STATE(2521), + [sym_unset_command] = STATE(2521), + [sym_command] = STATE(2521), + [sym_command_name] = STATE(92), + [sym_variable_assignment] = STATE(2522), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(96), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), + [aux_sym__statements_repeat1] = STATE(198), + [aux_sym_command_repeat1] = STATE(96), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), + [sym_variable_name] = ACTIONS(137), [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(111), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(119), - [anon_sym_declare] = ACTIONS(121), - [anon_sym_typeset] = ACTIONS(121), - [anon_sym_export] = ACTIONS(121), - [anon_sym_readonly] = ACTIONS(121), - [anon_sym_local] = ACTIONS(121), - [anon_sym_unset] = ACTIONS(123), - [anon_sym_unsetenv] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), + [anon_sym_LPAREN_LPAREN] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(149), + [anon_sym_declare] = ACTIONS(151), + [anon_sym_typeset] = ACTIONS(151), + [anon_sym_export] = ACTIONS(151), + [anon_sym_readonly] = ACTIONS(151), + [anon_sym_local] = ACTIONS(151), + [anon_sym_unset] = ACTIONS(153), + [anon_sym_unsetenv] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(159), }, - [2283] = { - [sym_variable_assignment] = STATE(2283), - [sym_subscript] = STATE(2092), - [sym_concatenation] = STATE(2283), - [sym_string] = STATE(2087), - [sym_simple_expansion] = STATE(2087), - [sym_string_expansion] = STATE(2087), - [sym_expansion] = STATE(2087), - [sym_command_substitution] = STATE(2087), - [sym_process_substitution] = STATE(2087), - [aux_sym_declaration_command_repeat1] = STATE(2283), - [sym_variable_name] = ACTIONS(5569), - [anon_sym_SEMI] = ACTIONS(1562), - [anon_sym_esac] = ACTIONS(1562), - [anon_sym_PIPE] = ACTIONS(1562), - [anon_sym_SEMI_SEMI] = ACTIONS(1560), - [anon_sym_PIPE_AMP] = ACTIONS(1560), - [anon_sym_AMP_AMP] = ACTIONS(1560), - [anon_sym_PIPE_PIPE] = ACTIONS(1560), - [sym__special_characters] = ACTIONS(5572), - [anon_sym_DQUOTE] = ACTIONS(5575), - [anon_sym_DOLLAR] = ACTIONS(5578), - [sym_raw_string] = ACTIONS(5581), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5584), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5587), - [anon_sym_BQUOTE] = ACTIONS(5590), - [anon_sym_LT_LPAREN] = ACTIONS(5593), - [anon_sym_GT_LPAREN] = ACTIONS(5593), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5596), - [sym_word] = ACTIONS(5599), - [anon_sym_LF] = ACTIONS(1560), - [anon_sym_AMP] = ACTIONS(1562), + [2352] = { + [sym_variable_assignment] = STATE(2352), + [sym_subscript] = STATE(2178), + [sym_concatenation] = STATE(2352), + [sym_string] = STATE(2173), + [sym_simple_expansion] = STATE(2173), + [sym_string_expansion] = STATE(2173), + [sym_expansion] = STATE(2173), + [sym_command_substitution] = STATE(2173), + [sym_process_substitution] = STATE(2173), + [aux_sym_declaration_command_repeat1] = STATE(2352), + [sym_variable_name] = ACTIONS(5672), + [anon_sym_SEMI] = ACTIONS(1601), + [anon_sym_esac] = ACTIONS(1601), + [anon_sym_PIPE] = ACTIONS(1601), + [anon_sym_SEMI_SEMI] = ACTIONS(1599), + [anon_sym_PIPE_AMP] = ACTIONS(1599), + [anon_sym_AMP_AMP] = ACTIONS(1599), + [anon_sym_PIPE_PIPE] = ACTIONS(1599), + [sym__special_characters] = ACTIONS(5675), + [anon_sym_DQUOTE] = ACTIONS(5678), + [anon_sym_DOLLAR] = ACTIONS(5681), + [sym_raw_string] = ACTIONS(5684), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5687), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5690), + [anon_sym_BQUOTE] = ACTIONS(5693), + [anon_sym_LT_LPAREN] = ACTIONS(5696), + [anon_sym_GT_LPAREN] = ACTIONS(5696), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5699), + [sym_word] = ACTIONS(5702), + [anon_sym_LF] = ACTIONS(1599), + [anon_sym_AMP] = ACTIONS(1601), }, - [2284] = { - [sym_string] = STATE(2467), - [sym_simple_expansion] = STATE(2467), - [sym_string_expansion] = STATE(2467), - [sym_expansion] = STATE(2467), - [sym_command_substitution] = STATE(2467), - [sym_process_substitution] = STATE(2467), - [sym__special_characters] = ACTIONS(5602), - [anon_sym_DQUOTE] = ACTIONS(4851), - [anon_sym_DOLLAR] = ACTIONS(4853), - [sym_raw_string] = ACTIONS(5602), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4857), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4859), - [anon_sym_BQUOTE] = ACTIONS(4861), - [anon_sym_LT_LPAREN] = ACTIONS(4863), - [anon_sym_GT_LPAREN] = ACTIONS(4863), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5602), + [2353] = { + [sym_string] = STATE(2523), + [sym_simple_expansion] = STATE(2523), + [sym_string_expansion] = STATE(2523), + [sym_expansion] = STATE(2523), + [sym_command_substitution] = STATE(2523), + [sym_process_substitution] = STATE(2523), + [sym__special_characters] = ACTIONS(5705), + [anon_sym_DQUOTE] = ACTIONS(5033), + [anon_sym_DOLLAR] = ACTIONS(5035), + [sym_raw_string] = ACTIONS(5705), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5039), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5041), + [anon_sym_BQUOTE] = ACTIONS(5043), + [anon_sym_LT_LPAREN] = ACTIONS(5045), + [anon_sym_GT_LPAREN] = ACTIONS(5045), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(5705), }, - [2285] = { - [aux_sym_concatenation_repeat1] = STATE(2468), - [sym__concat] = ACTIONS(5235), - [anon_sym_SEMI] = ACTIONS(767), - [anon_sym_esac] = ACTIONS(767), - [anon_sym_PIPE] = ACTIONS(767), - [anon_sym_SEMI_SEMI] = ACTIONS(765), - [anon_sym_PIPE_AMP] = ACTIONS(765), - [anon_sym_AMP_AMP] = ACTIONS(765), - [anon_sym_PIPE_PIPE] = ACTIONS(765), - [sym__special_characters] = ACTIONS(765), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_DOLLAR] = ACTIONS(767), - [sym_raw_string] = ACTIONS(765), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(765), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(765), - [anon_sym_BQUOTE] = ACTIONS(765), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(767), - [sym_word] = ACTIONS(767), - [anon_sym_LF] = ACTIONS(765), - [anon_sym_AMP] = ACTIONS(767), - }, - [2286] = { - [sym__concat] = ACTIONS(769), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_esac] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_SEMI_SEMI] = ACTIONS(769), - [anon_sym_PIPE_AMP] = ACTIONS(769), - [anon_sym_AMP_AMP] = ACTIONS(769), - [anon_sym_PIPE_PIPE] = ACTIONS(769), - [sym__special_characters] = ACTIONS(769), - [anon_sym_DQUOTE] = ACTIONS(769), - [anon_sym_DOLLAR] = ACTIONS(771), - [sym_raw_string] = ACTIONS(769), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(769), - [anon_sym_BQUOTE] = ACTIONS(769), - [anon_sym_LT_LPAREN] = ACTIONS(769), - [anon_sym_GT_LPAREN] = ACTIONS(769), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(771), - [sym_word] = ACTIONS(771), - [anon_sym_LF] = ACTIONS(769), - [anon_sym_AMP] = ACTIONS(771), - }, - [2287] = { - [anon_sym_DQUOTE] = ACTIONS(5604), - [anon_sym_DOLLAR] = ACTIONS(775), - [sym__string_content] = ACTIONS(777), - [anon_sym_POUND] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(781), - [anon_sym_STAR] = ACTIONS(783), - [anon_sym_AT] = ACTIONS(783), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_0] = ACTIONS(781), - [anon_sym__] = ACTIONS(781), - }, - [2288] = { - [sym_simple_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [sym_command_substitution] = STATE(141), - [aux_sym_string_repeat1] = STATE(450), - [anon_sym_DQUOTE] = ACTIONS(5604), - [anon_sym_DOLLAR] = ACTIONS(5606), - [sym__string_content] = ACTIONS(257), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(261), - [anon_sym_BQUOTE] = ACTIONS(263), - [sym_comment] = ACTIONS(265), - }, - [2289] = { - [sym__concat] = ACTIONS(803), - [anon_sym_SEMI] = ACTIONS(805), - [anon_sym_esac] = ACTIONS(805), - [anon_sym_PIPE] = ACTIONS(805), - [anon_sym_SEMI_SEMI] = ACTIONS(803), - [anon_sym_PIPE_AMP] = ACTIONS(803), - [anon_sym_AMP_AMP] = ACTIONS(803), - [anon_sym_PIPE_PIPE] = ACTIONS(803), - [sym__special_characters] = ACTIONS(803), - [anon_sym_DQUOTE] = ACTIONS(803), - [anon_sym_DOLLAR] = ACTIONS(805), - [sym_raw_string] = ACTIONS(803), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(803), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(803), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(803), - [anon_sym_GT_LPAREN] = ACTIONS(803), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(805), - [sym_word] = ACTIONS(805), - [anon_sym_LF] = ACTIONS(803), - [anon_sym_AMP] = ACTIONS(805), - }, - [2290] = { - [sym__concat] = ACTIONS(807), + [2354] = { + [aux_sym_concatenation_repeat1] = STATE(2524), + [sym__concat] = ACTIONS(5376), [anon_sym_SEMI] = ACTIONS(809), [anon_sym_esac] = ACTIONS(809), [anon_sym_PIPE] = ACTIONS(809), @@ -63494,13 +68350,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(807), [anon_sym_LT_LPAREN] = ACTIONS(807), [anon_sym_GT_LPAREN] = ACTIONS(807), - [sym_comment] = ACTIONS(53), + [sym_comment] = ACTIONS(55), [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(809), [sym_word] = ACTIONS(809), [anon_sym_LF] = ACTIONS(807), [anon_sym_AMP] = ACTIONS(809), }, - [2291] = { + [2355] = { [sym__concat] = ACTIONS(811), [anon_sym_SEMI] = ACTIONS(813), [anon_sym_esac] = ACTIONS(813), @@ -63518,2387 +68374,453 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(811), [anon_sym_LT_LPAREN] = ACTIONS(811), [anon_sym_GT_LPAREN] = ACTIONS(811), - [sym_comment] = ACTIONS(53), + [sym_comment] = ACTIONS(55), [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(813), [sym_word] = ACTIONS(813), [anon_sym_LF] = ACTIONS(811), [anon_sym_AMP] = ACTIONS(813), }, - [2292] = { - [anon_sym_LBRACK] = ACTIONS(815), - [anon_sym_EQ] = ACTIONS(5608), - [sym_comment] = ACTIONS(53), - }, - [2293] = { - [sym_subscript] = STATE(2474), - [sym_variable_name] = ACTIONS(5610), - [anon_sym_DOLLAR] = ACTIONS(5612), - [anon_sym_DASH] = ACTIONS(5612), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5614), - [anon_sym_STAR] = ACTIONS(5616), - [anon_sym_AT] = ACTIONS(5616), - [anon_sym_QMARK] = ACTIONS(5616), - [anon_sym_0] = ACTIONS(5614), - [anon_sym__] = ACTIONS(5614), - }, - [2294] = { - [sym_concatenation] = STATE(2477), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(2477), - [anon_sym_RBRACE] = ACTIONS(5618), - [anon_sym_EQ] = ACTIONS(5620), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(5622), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(5624), - [anon_sym_COLON] = ACTIONS(5620), - [anon_sym_COLON_QMARK] = ACTIONS(5620), - [anon_sym_COLON_DASH] = ACTIONS(5620), - [anon_sym_PERCENT] = ACTIONS(5620), - [anon_sym_DASH] = ACTIONS(5620), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [2295] = { - [sym_concatenation] = STATE(2480), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(2480), - [anon_sym_RBRACE] = ACTIONS(5626), - [anon_sym_EQ] = ACTIONS(5628), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(5630), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(5632), - [anon_sym_COLON] = ACTIONS(5628), - [anon_sym_COLON_QMARK] = ACTIONS(5628), - [anon_sym_COLON_DASH] = ACTIONS(5628), - [anon_sym_PERCENT] = ACTIONS(5628), - [anon_sym_DASH] = ACTIONS(5628), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [2296] = { - [anon_sym_SEMI] = ACTIONS(5634), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(5636), - [anon_sym_SEMI_SEMI] = ACTIONS(5638), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(5638), - [anon_sym_AMP] = ACTIONS(5634), - }, - [2297] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(5634), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(5636), - [anon_sym_SEMI_SEMI] = ACTIONS(5638), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(5638), - [anon_sym_AMP] = ACTIONS(5634), - }, - [2298] = { - [sym__terminated_statement] = STATE(190), - [sym_for_statement] = STATE(2483), - [sym_c_style_for_statement] = STATE(2483), - [sym_while_statement] = STATE(2483), - [sym_if_statement] = STATE(2483), - [sym_case_statement] = STATE(2483), - [sym_function_definition] = STATE(2483), - [sym_subshell] = STATE(2483), - [sym_pipeline] = STATE(2483), - [sym_list] = STATE(2483), - [sym_negated_command] = STATE(2483), - [sym_test_command] = STATE(2483), - [sym_declaration_command] = STATE(2483), - [sym_unset_command] = STATE(2483), - [sym_command] = STATE(2483), - [sym_command_name] = STATE(78), - [sym_variable_assignment] = STATE(2484), - [sym_subscript] = STATE(80), - [sym_file_redirect] = STATE(82), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(75), - [sym_simple_expansion] = STATE(75), - [sym_string_expansion] = STATE(75), - [sym_expansion] = STATE(75), - [sym_command_substitution] = STATE(75), - [sym_process_substitution] = STATE(75), - [aux_sym__statements_repeat1] = STATE(190), - [aux_sym_command_repeat1] = STATE(82), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(111), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(119), - [anon_sym_declare] = ACTIONS(121), - [anon_sym_typeset] = ACTIONS(121), - [anon_sym_export] = ACTIONS(121), - [anon_sym_readonly] = ACTIONS(121), - [anon_sym_local] = ACTIONS(121), - [anon_sym_unset] = ACTIONS(123), - [anon_sym_unsetenv] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), - }, - [2299] = { - [anon_sym_SEMI] = ACTIONS(5640), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_SEMI_SEMI] = ACTIONS(5642), - [anon_sym_PIPE_AMP] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(883), - [anon_sym_PIPE_PIPE] = ACTIONS(883), - [anon_sym_BQUOTE] = ACTIONS(5636), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(5642), - [anon_sym_AMP] = ACTIONS(5640), - }, - [2300] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(5640), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_SEMI_SEMI] = ACTIONS(5642), - [anon_sym_PIPE_AMP] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(883), - [anon_sym_PIPE_PIPE] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(5636), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(5642), - [anon_sym_AMP] = ACTIONS(5640), - }, - [2301] = { - [sym__terminated_statement] = STATE(190), - [sym_for_statement] = STATE(2486), - [sym_c_style_for_statement] = STATE(2486), - [sym_while_statement] = STATE(2486), - [sym_if_statement] = STATE(2486), - [sym_case_statement] = STATE(2486), - [sym_function_definition] = STATE(2486), - [sym_subshell] = STATE(2486), - [sym_pipeline] = STATE(2486), - [sym_list] = STATE(2486), - [sym_negated_command] = STATE(2486), - [sym_test_command] = STATE(2486), - [sym_declaration_command] = STATE(2486), - [sym_unset_command] = STATE(2486), - [sym_command] = STATE(2486), - [sym_command_name] = STATE(165), - [sym_variable_assignment] = STATE(2487), - [sym_subscript] = STATE(53), - [sym_file_redirect] = STATE(168), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(47), - [sym_simple_expansion] = STATE(47), - [sym_string_expansion] = STATE(47), - [sym_expansion] = STATE(47), - [sym_command_substitution] = STATE(47), - [sym_process_substitution] = STATE(47), - [aux_sym__statements_repeat1] = STATE(190), - [aux_sym_command_repeat1] = STATE(168), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(69), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(289), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(291), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(293), - [anon_sym_LBRACK] = ACTIONS(295), - [anon_sym_LBRACK_LBRACK] = ACTIONS(297), - [anon_sym_declare] = ACTIONS(299), - [anon_sym_typeset] = ACTIONS(299), - [anon_sym_export] = ACTIONS(299), - [anon_sym_readonly] = ACTIONS(299), - [anon_sym_local] = ACTIONS(299), - [anon_sym_unset] = ACTIONS(301), - [anon_sym_unsetenv] = ACTIONS(301), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(87), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(303), - }, - [2302] = { - [anon_sym_SEMI] = ACTIONS(5644), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(5646), - [anon_sym_SEMI_SEMI] = ACTIONS(5648), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(5648), - [anon_sym_AMP] = ACTIONS(5644), - }, - [2303] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(5644), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(5646), - [anon_sym_SEMI_SEMI] = ACTIONS(5648), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(5648), - [anon_sym_AMP] = ACTIONS(5644), - }, - [2304] = { - [sym__terminated_statement] = STATE(190), - [sym_for_statement] = STATE(2490), - [sym_c_style_for_statement] = STATE(2490), - [sym_while_statement] = STATE(2490), - [sym_if_statement] = STATE(2490), - [sym_case_statement] = STATE(2490), - [sym_function_definition] = STATE(2490), - [sym_subshell] = STATE(2490), - [sym_pipeline] = STATE(2490), - [sym_list] = STATE(2490), - [sym_negated_command] = STATE(2490), - [sym_test_command] = STATE(2490), - [sym_declaration_command] = STATE(2490), - [sym_unset_command] = STATE(2490), - [sym_command] = STATE(2490), - [sym_command_name] = STATE(78), - [sym_variable_assignment] = STATE(2491), - [sym_subscript] = STATE(80), - [sym_file_redirect] = STATE(82), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(75), - [sym_simple_expansion] = STATE(75), - [sym_string_expansion] = STATE(75), - [sym_expansion] = STATE(75), - [sym_command_substitution] = STATE(75), - [sym_process_substitution] = STATE(75), - [aux_sym__statements_repeat1] = STATE(190), - [aux_sym_command_repeat1] = STATE(82), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(111), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(119), - [anon_sym_declare] = ACTIONS(121), - [anon_sym_typeset] = ACTIONS(121), - [anon_sym_export] = ACTIONS(121), - [anon_sym_readonly] = ACTIONS(121), - [anon_sym_local] = ACTIONS(121), - [anon_sym_unset] = ACTIONS(123), - [anon_sym_unsetenv] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), - }, - [2305] = { - [sym_concatenation] = STATE(2305), - [sym_string] = STATE(2097), - [sym_simple_expansion] = STATE(2097), - [sym_string_expansion] = STATE(2097), - [sym_expansion] = STATE(2097), - [sym_command_substitution] = STATE(2097), - [sym_process_substitution] = STATE(2097), - [aux_sym_unset_command_repeat1] = STATE(2305), - [anon_sym_SEMI] = ACTIONS(1644), - [anon_sym_esac] = ACTIONS(1644), - [anon_sym_PIPE] = ACTIONS(1644), - [anon_sym_SEMI_SEMI] = ACTIONS(1642), - [anon_sym_PIPE_AMP] = ACTIONS(1642), - [anon_sym_AMP_AMP] = ACTIONS(1642), - [anon_sym_PIPE_PIPE] = ACTIONS(1642), - [sym__special_characters] = ACTIONS(5650), - [anon_sym_DQUOTE] = ACTIONS(5653), - [anon_sym_DOLLAR] = ACTIONS(5656), - [sym_raw_string] = ACTIONS(5659), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5662), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5665), - [anon_sym_BQUOTE] = ACTIONS(5668), - [anon_sym_LT_LPAREN] = ACTIONS(5671), - [anon_sym_GT_LPAREN] = ACTIONS(5671), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5674), - [sym_word] = ACTIONS(5677), - [anon_sym_LF] = ACTIONS(1642), - [anon_sym_AMP] = ACTIONS(1644), - }, - [2306] = { - [sym__simple_heredoc_body] = ACTIONS(1724), - [sym__heredoc_body_beginning] = ACTIONS(1724), - [sym_file_descriptor] = ACTIONS(1724), - [sym__concat] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_esac] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(1726), - [anon_sym_SEMI_SEMI] = ACTIONS(1724), - [anon_sym_PIPE_AMP] = ACTIONS(1724), - [anon_sym_AMP_AMP] = ACTIONS(1724), - [anon_sym_PIPE_PIPE] = ACTIONS(1724), - [anon_sym_EQ_TILDE] = ACTIONS(1726), - [anon_sym_EQ_EQ] = ACTIONS(1726), - [anon_sym_LT] = ACTIONS(1726), - [anon_sym_GT] = ACTIONS(1726), - [anon_sym_GT_GT] = ACTIONS(1724), - [anon_sym_AMP_GT] = ACTIONS(1726), - [anon_sym_AMP_GT_GT] = ACTIONS(1724), - [anon_sym_LT_AMP] = ACTIONS(1724), - [anon_sym_GT_AMP] = ACTIONS(1724), - [anon_sym_LT_LT] = ACTIONS(1726), - [anon_sym_LT_LT_DASH] = ACTIONS(1724), - [anon_sym_LT_LT_LT] = ACTIONS(1724), - [sym__special_characters] = ACTIONS(1724), - [anon_sym_DQUOTE] = ACTIONS(1724), - [anon_sym_DOLLAR] = ACTIONS(1726), - [sym_raw_string] = ACTIONS(1724), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1724), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1724), - [anon_sym_BQUOTE] = ACTIONS(1724), - [anon_sym_LT_LPAREN] = ACTIONS(1724), - [anon_sym_GT_LPAREN] = ACTIONS(1724), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1726), - [anon_sym_LF] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1726), - }, - [2307] = { - [aux_sym_concatenation_repeat1] = STATE(2307), - [sym__simple_heredoc_body] = ACTIONS(1724), - [sym__heredoc_body_beginning] = ACTIONS(1724), - [sym_file_descriptor] = ACTIONS(1724), - [sym__concat] = ACTIONS(5680), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_esac] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(1726), - [anon_sym_SEMI_SEMI] = ACTIONS(1724), - [anon_sym_PIPE_AMP] = ACTIONS(1724), - [anon_sym_AMP_AMP] = ACTIONS(1724), - [anon_sym_PIPE_PIPE] = ACTIONS(1724), - [anon_sym_EQ_TILDE] = ACTIONS(1726), - [anon_sym_EQ_EQ] = ACTIONS(1726), - [anon_sym_LT] = ACTIONS(1726), - [anon_sym_GT] = ACTIONS(1726), - [anon_sym_GT_GT] = ACTIONS(1724), - [anon_sym_AMP_GT] = ACTIONS(1726), - [anon_sym_AMP_GT_GT] = ACTIONS(1724), - [anon_sym_LT_AMP] = ACTIONS(1724), - [anon_sym_GT_AMP] = ACTIONS(1724), - [anon_sym_LT_LT] = ACTIONS(1726), - [anon_sym_LT_LT_DASH] = ACTIONS(1724), - [anon_sym_LT_LT_LT] = ACTIONS(1724), - [sym__special_characters] = ACTIONS(1724), - [anon_sym_DQUOTE] = ACTIONS(1724), - [anon_sym_DOLLAR] = ACTIONS(1726), - [sym_raw_string] = ACTIONS(1724), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1724), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1724), - [anon_sym_BQUOTE] = ACTIONS(1724), - [anon_sym_LT_LPAREN] = ACTIONS(1724), - [anon_sym_GT_LPAREN] = ACTIONS(1724), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1726), - [anon_sym_LF] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1726), - }, - [2308] = { - [sym__simple_heredoc_body] = ACTIONS(1731), - [sym__heredoc_body_beginning] = ACTIONS(1731), - [sym_file_descriptor] = ACTIONS(1731), - [sym__concat] = ACTIONS(1731), - [anon_sym_SEMI] = ACTIONS(1733), - [anon_sym_esac] = ACTIONS(1733), - [anon_sym_PIPE] = ACTIONS(1733), - [anon_sym_SEMI_SEMI] = ACTIONS(1731), - [anon_sym_PIPE_AMP] = ACTIONS(1731), - [anon_sym_AMP_AMP] = ACTIONS(1731), - [anon_sym_PIPE_PIPE] = ACTIONS(1731), - [anon_sym_EQ_TILDE] = ACTIONS(1733), - [anon_sym_EQ_EQ] = ACTIONS(1733), - [anon_sym_LT] = ACTIONS(1733), - [anon_sym_GT] = ACTIONS(1733), - [anon_sym_GT_GT] = ACTIONS(1731), - [anon_sym_AMP_GT] = ACTIONS(1733), - [anon_sym_AMP_GT_GT] = ACTIONS(1731), - [anon_sym_LT_AMP] = ACTIONS(1731), - [anon_sym_GT_AMP] = ACTIONS(1731), - [anon_sym_LT_LT] = ACTIONS(1733), - [anon_sym_LT_LT_DASH] = ACTIONS(1731), - [anon_sym_LT_LT_LT] = ACTIONS(1731), - [sym__special_characters] = ACTIONS(1731), - [anon_sym_DQUOTE] = ACTIONS(1731), - [anon_sym_DOLLAR] = ACTIONS(1733), - [sym_raw_string] = ACTIONS(1731), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1731), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1731), - [anon_sym_BQUOTE] = ACTIONS(1731), - [anon_sym_LT_LPAREN] = ACTIONS(1731), - [anon_sym_GT_LPAREN] = ACTIONS(1731), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1733), - [anon_sym_LF] = ACTIONS(1731), - [anon_sym_AMP] = ACTIONS(1733), - }, - [2309] = { - [anon_sym_DQUOTE] = ACTIONS(5683), - [anon_sym_DOLLAR] = ACTIONS(775), - [sym__string_content] = ACTIONS(777), - [anon_sym_POUND] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(781), - [anon_sym_STAR] = ACTIONS(783), - [anon_sym_AT] = ACTIONS(783), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_0] = ACTIONS(781), - [anon_sym__] = ACTIONS(781), - }, - [2310] = { - [sym_concatenation] = STATE(2496), - [sym_string] = STATE(2495), - [sym_simple_expansion] = STATE(2495), - [sym_string_expansion] = STATE(2495), - [sym_expansion] = STATE(2495), - [sym_command_substitution] = STATE(2495), - [sym_process_substitution] = STATE(2495), - [anon_sym_RBRACE] = ACTIONS(5685), - [sym__special_characters] = ACTIONS(5687), - [anon_sym_DQUOTE] = ACTIONS(1802), - [anon_sym_DOLLAR] = ACTIONS(1804), - [sym_raw_string] = ACTIONS(5689), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1808), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1810), - [anon_sym_BQUOTE] = ACTIONS(1812), - [anon_sym_LT_LPAREN] = ACTIONS(1814), - [anon_sym_GT_LPAREN] = ACTIONS(1814), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5689), - }, - [2311] = { - [anon_sym_LBRACK] = ACTIONS(815), - [anon_sym_EQ] = ACTIONS(5691), - [sym_comment] = ACTIONS(53), - }, - [2312] = { - [sym_concatenation] = STATE(2500), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(2500), - [anon_sym_RBRACE] = ACTIONS(5693), - [anon_sym_EQ] = ACTIONS(5695), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(5697), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(5699), - [anon_sym_COLON] = ACTIONS(5695), - [anon_sym_COLON_QMARK] = ACTIONS(5695), - [anon_sym_COLON_DASH] = ACTIONS(5695), - [anon_sym_PERCENT] = ACTIONS(5695), - [anon_sym_DASH] = ACTIONS(5695), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [2313] = { - [sym_concatenation] = STATE(2502), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(2502), - [anon_sym_RBRACE] = ACTIONS(5685), - [anon_sym_EQ] = ACTIONS(5701), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(5703), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(5705), - [anon_sym_COLON] = ACTIONS(5701), - [anon_sym_COLON_QMARK] = ACTIONS(5701), - [anon_sym_COLON_DASH] = ACTIONS(5701), - [anon_sym_PERCENT] = ACTIONS(5701), - [anon_sym_DASH] = ACTIONS(5701), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [2314] = { - [sym__simple_heredoc_body] = ACTIONS(1832), - [sym__heredoc_body_beginning] = ACTIONS(1832), - [sym_file_descriptor] = ACTIONS(1832), - [sym__concat] = ACTIONS(1832), - [anon_sym_SEMI] = ACTIONS(1834), - [anon_sym_esac] = ACTIONS(1834), - [anon_sym_PIPE] = ACTIONS(1834), - [anon_sym_SEMI_SEMI] = ACTIONS(1832), - [anon_sym_PIPE_AMP] = ACTIONS(1832), - [anon_sym_AMP_AMP] = ACTIONS(1832), - [anon_sym_PIPE_PIPE] = ACTIONS(1832), - [anon_sym_EQ_TILDE] = ACTIONS(1834), - [anon_sym_EQ_EQ] = ACTIONS(1834), - [anon_sym_LT] = ACTIONS(1834), - [anon_sym_GT] = ACTIONS(1834), - [anon_sym_GT_GT] = ACTIONS(1832), - [anon_sym_AMP_GT] = ACTIONS(1834), - [anon_sym_AMP_GT_GT] = ACTIONS(1832), - [anon_sym_LT_AMP] = ACTIONS(1832), - [anon_sym_GT_AMP] = ACTIONS(1832), - [anon_sym_LT_LT] = ACTIONS(1834), - [anon_sym_LT_LT_DASH] = ACTIONS(1832), - [anon_sym_LT_LT_LT] = ACTIONS(1832), - [sym__special_characters] = ACTIONS(1832), - [anon_sym_DQUOTE] = ACTIONS(1832), - [anon_sym_DOLLAR] = ACTIONS(1834), - [sym_raw_string] = ACTIONS(1832), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1832), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1832), - [anon_sym_BQUOTE] = ACTIONS(1832), - [anon_sym_LT_LPAREN] = ACTIONS(1832), - [anon_sym_GT_LPAREN] = ACTIONS(1832), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1834), - [anon_sym_LF] = ACTIONS(1832), - [anon_sym_AMP] = ACTIONS(1834), - }, - [2315] = { - [sym_comment] = ACTIONS(265), - [sym_regex_without_right_brace] = ACTIONS(5707), - }, - [2316] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(5709), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [2317] = { - [sym__simple_heredoc_body] = ACTIONS(1876), - [sym__heredoc_body_beginning] = ACTIONS(1876), - [sym_file_descriptor] = ACTIONS(1876), - [sym__concat] = ACTIONS(1876), - [anon_sym_SEMI] = ACTIONS(1878), - [anon_sym_esac] = ACTIONS(1878), - [anon_sym_PIPE] = ACTIONS(1878), - [anon_sym_SEMI_SEMI] = ACTIONS(1876), - [anon_sym_PIPE_AMP] = ACTIONS(1876), - [anon_sym_AMP_AMP] = ACTIONS(1876), - [anon_sym_PIPE_PIPE] = ACTIONS(1876), - [anon_sym_EQ_TILDE] = ACTIONS(1878), - [anon_sym_EQ_EQ] = ACTIONS(1878), - [anon_sym_LT] = ACTIONS(1878), - [anon_sym_GT] = ACTIONS(1878), - [anon_sym_GT_GT] = ACTIONS(1876), - [anon_sym_AMP_GT] = ACTIONS(1878), - [anon_sym_AMP_GT_GT] = ACTIONS(1876), - [anon_sym_LT_AMP] = ACTIONS(1876), - [anon_sym_GT_AMP] = ACTIONS(1876), - [anon_sym_LT_LT] = ACTIONS(1878), - [anon_sym_LT_LT_DASH] = ACTIONS(1876), - [anon_sym_LT_LT_LT] = ACTIONS(1876), - [sym__special_characters] = ACTIONS(1876), - [anon_sym_DQUOTE] = ACTIONS(1876), - [anon_sym_DOLLAR] = ACTIONS(1878), - [sym_raw_string] = ACTIONS(1876), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1876), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1876), - [anon_sym_BQUOTE] = ACTIONS(1876), - [anon_sym_LT_LPAREN] = ACTIONS(1876), - [anon_sym_GT_LPAREN] = ACTIONS(1876), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1878), - [anon_sym_LF] = ACTIONS(1876), - [anon_sym_AMP] = ACTIONS(1878), - }, - [2318] = { - [sym_comment] = ACTIONS(265), - [sym_regex_without_right_brace] = ACTIONS(5711), - }, - [2319] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(5685), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [2320] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(5713), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(901), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), - }, - [2321] = { - [sym__simple_heredoc_body] = ACTIONS(1884), - [sym__heredoc_body_beginning] = ACTIONS(1884), - [sym_file_descriptor] = ACTIONS(1884), - [sym__concat] = ACTIONS(1884), - [anon_sym_SEMI] = ACTIONS(1886), - [anon_sym_esac] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(1886), - [anon_sym_SEMI_SEMI] = ACTIONS(1884), - [anon_sym_PIPE_AMP] = ACTIONS(1884), - [anon_sym_AMP_AMP] = ACTIONS(1884), - [anon_sym_PIPE_PIPE] = ACTIONS(1884), - [anon_sym_EQ_TILDE] = ACTIONS(1886), - [anon_sym_EQ_EQ] = ACTIONS(1886), - [anon_sym_LT] = ACTIONS(1886), - [anon_sym_GT] = ACTIONS(1886), - [anon_sym_GT_GT] = ACTIONS(1884), - [anon_sym_AMP_GT] = ACTIONS(1886), - [anon_sym_AMP_GT_GT] = ACTIONS(1884), - [anon_sym_LT_AMP] = ACTIONS(1884), - [anon_sym_GT_AMP] = ACTIONS(1884), - [anon_sym_LT_LT] = ACTIONS(1886), - [anon_sym_LT_LT_DASH] = ACTIONS(1884), - [anon_sym_LT_LT_LT] = ACTIONS(1884), - [sym__special_characters] = ACTIONS(1884), - [anon_sym_DQUOTE] = ACTIONS(1884), - [anon_sym_DOLLAR] = ACTIONS(1886), - [sym_raw_string] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1884), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1884), - [anon_sym_BQUOTE] = ACTIONS(1884), - [anon_sym_LT_LPAREN] = ACTIONS(1884), - [anon_sym_GT_LPAREN] = ACTIONS(1884), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1886), - [anon_sym_LF] = ACTIONS(1884), - [anon_sym_AMP] = ACTIONS(1886), - }, - [2322] = { - [anon_sym_SEMI] = ACTIONS(5715), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(5713), - [anon_sym_SEMI_SEMI] = ACTIONS(5717), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(5717), - [anon_sym_AMP] = ACTIONS(5715), - }, - [2323] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(5715), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(5713), - [anon_sym_SEMI_SEMI] = ACTIONS(5717), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(5717), - [anon_sym_AMP] = ACTIONS(5715), - }, - [2324] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(5713), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), - }, - [2325] = { - [anon_sym_SEMI] = ACTIONS(5719), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_SEMI_SEMI] = ACTIONS(5721), - [anon_sym_PIPE_AMP] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(883), - [anon_sym_PIPE_PIPE] = ACTIONS(883), - [anon_sym_BQUOTE] = ACTIONS(5713), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(5721), - [anon_sym_AMP] = ACTIONS(5719), - }, - [2326] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(5719), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_SEMI_SEMI] = ACTIONS(5721), - [anon_sym_PIPE_AMP] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(883), - [anon_sym_PIPE_PIPE] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(5713), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(5721), - [anon_sym_AMP] = ACTIONS(5719), - }, - [2327] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(5723), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(901), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), - }, - [2328] = { - [sym__simple_heredoc_body] = ACTIONS(1916), - [sym__heredoc_body_beginning] = ACTIONS(1916), - [sym_file_descriptor] = ACTIONS(1916), - [sym__concat] = ACTIONS(1916), - [anon_sym_SEMI] = ACTIONS(1918), - [anon_sym_esac] = ACTIONS(1918), - [anon_sym_PIPE] = ACTIONS(1918), - [anon_sym_SEMI_SEMI] = ACTIONS(1916), - [anon_sym_PIPE_AMP] = ACTIONS(1916), - [anon_sym_AMP_AMP] = ACTIONS(1916), - [anon_sym_PIPE_PIPE] = ACTIONS(1916), - [anon_sym_EQ_TILDE] = ACTIONS(1918), - [anon_sym_EQ_EQ] = ACTIONS(1918), - [anon_sym_LT] = ACTIONS(1918), - [anon_sym_GT] = ACTIONS(1918), - [anon_sym_GT_GT] = ACTIONS(1916), - [anon_sym_AMP_GT] = ACTIONS(1918), - [anon_sym_AMP_GT_GT] = ACTIONS(1916), - [anon_sym_LT_AMP] = ACTIONS(1916), - [anon_sym_GT_AMP] = ACTIONS(1916), - [anon_sym_LT_LT] = ACTIONS(1918), - [anon_sym_LT_LT_DASH] = ACTIONS(1916), - [anon_sym_LT_LT_LT] = ACTIONS(1916), - [sym__special_characters] = ACTIONS(1916), - [anon_sym_DQUOTE] = ACTIONS(1916), - [anon_sym_DOLLAR] = ACTIONS(1918), - [sym_raw_string] = ACTIONS(1916), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1916), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1916), - [anon_sym_BQUOTE] = ACTIONS(1916), - [anon_sym_LT_LPAREN] = ACTIONS(1916), - [anon_sym_GT_LPAREN] = ACTIONS(1916), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1918), - [anon_sym_LF] = ACTIONS(1916), - [anon_sym_AMP] = ACTIONS(1918), - }, - [2329] = { - [anon_sym_SEMI] = ACTIONS(5725), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(5723), - [anon_sym_SEMI_SEMI] = ACTIONS(5727), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(5727), - [anon_sym_AMP] = ACTIONS(5725), - }, - [2330] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(5725), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(5723), - [anon_sym_SEMI_SEMI] = ACTIONS(5727), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(5727), - [anon_sym_AMP] = ACTIONS(5725), - }, - [2331] = { - [sym_compound_statement] = STATE(2511), - [anon_sym_LBRACE] = ACTIONS(511), - [sym_comment] = ACTIONS(53), - }, - [2332] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(1926), - [anon_sym_esac] = ACTIONS(1926), - [anon_sym_PIPE] = ACTIONS(1926), - [anon_sym_SEMI_SEMI] = ACTIONS(1924), - [anon_sym_PIPE_AMP] = ACTIONS(1924), - [anon_sym_AMP_AMP] = ACTIONS(1924), - [anon_sym_PIPE_PIPE] = ACTIONS(1924), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1926), - }, - [2333] = { - [anon_sym_SEMI] = ACTIONS(1930), - [anon_sym_esac] = ACTIONS(1928), - [anon_sym_PIPE] = ACTIONS(4899), - [anon_sym_SEMI_SEMI] = ACTIONS(1928), - [anon_sym_PIPE_AMP] = ACTIONS(4903), - [anon_sym_AMP_AMP] = ACTIONS(1928), - [anon_sym_PIPE_PIPE] = ACTIONS(1928), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1928), - [anon_sym_AMP] = ACTIONS(1930), - }, - [2334] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(1930), - [anon_sym_esac] = ACTIONS(1930), - [anon_sym_PIPE] = ACTIONS(4899), - [anon_sym_SEMI_SEMI] = ACTIONS(1928), - [anon_sym_PIPE_AMP] = ACTIONS(4903), - [anon_sym_AMP_AMP] = ACTIONS(1928), - [anon_sym_PIPE_PIPE] = ACTIONS(1928), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(1928), - [anon_sym_AMP] = ACTIONS(1930), - }, - [2335] = { - [sym_concatenation] = STATE(945), - [sym_string] = STATE(2513), - [sym_simple_expansion] = STATE(2513), - [sym_string_expansion] = STATE(2513), - [sym_expansion] = STATE(2513), - [sym_command_substitution] = STATE(2513), - [sym_process_substitution] = STATE(2513), - [sym__special_characters] = ACTIONS(5729), - [anon_sym_DQUOTE] = ACTIONS(5339), - [anon_sym_DOLLAR] = ACTIONS(5341), - [sym_raw_string] = ACTIONS(5731), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5345), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5347), - [anon_sym_BQUOTE] = ACTIONS(5349), - [anon_sym_LT_LPAREN] = ACTIONS(5351), - [anon_sym_GT_LPAREN] = ACTIONS(5351), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5731), - }, - [2336] = { - [aux_sym_concatenation_repeat1] = STATE(2104), - [sym__simple_heredoc_body] = ACTIONS(1960), - [sym__heredoc_body_beginning] = ACTIONS(1960), - [sym_file_descriptor] = ACTIONS(1960), - [sym__concat] = ACTIONS(4869), - [anon_sym_SEMI] = ACTIONS(1962), - [anon_sym_esac] = ACTIONS(1962), - [anon_sym_PIPE] = ACTIONS(1962), - [anon_sym_SEMI_SEMI] = ACTIONS(1960), - [anon_sym_PIPE_AMP] = ACTIONS(1960), - [anon_sym_AMP_AMP] = ACTIONS(1960), - [anon_sym_PIPE_PIPE] = ACTIONS(1960), - [anon_sym_EQ_TILDE] = ACTIONS(1962), - [anon_sym_EQ_EQ] = ACTIONS(1962), - [anon_sym_LT] = ACTIONS(1962), - [anon_sym_GT] = ACTIONS(1962), - [anon_sym_GT_GT] = ACTIONS(1960), - [anon_sym_AMP_GT] = ACTIONS(1962), - [anon_sym_AMP_GT_GT] = ACTIONS(1960), - [anon_sym_LT_AMP] = ACTIONS(1960), - [anon_sym_GT_AMP] = ACTIONS(1960), - [anon_sym_LT_LT] = ACTIONS(1962), - [anon_sym_LT_LT_DASH] = ACTIONS(1960), - [anon_sym_LT_LT_LT] = ACTIONS(1960), - [sym__special_characters] = ACTIONS(1960), - [anon_sym_DQUOTE] = ACTIONS(1960), - [anon_sym_DOLLAR] = ACTIONS(1962), - [sym_raw_string] = ACTIONS(1960), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1960), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), - [anon_sym_BQUOTE] = ACTIONS(1960), - [anon_sym_LT_LPAREN] = ACTIONS(1960), - [anon_sym_GT_LPAREN] = ACTIONS(1960), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1962), - [anon_sym_LF] = ACTIONS(1960), - [anon_sym_AMP] = ACTIONS(1962), - }, - [2337] = { - [aux_sym_concatenation_repeat1] = STATE(2104), - [sym__simple_heredoc_body] = ACTIONS(1964), - [sym__heredoc_body_beginning] = ACTIONS(1964), - [sym_file_descriptor] = ACTIONS(1964), - [sym__concat] = ACTIONS(4869), - [anon_sym_SEMI] = ACTIONS(1966), - [anon_sym_esac] = ACTIONS(1966), - [anon_sym_PIPE] = ACTIONS(1966), - [anon_sym_SEMI_SEMI] = ACTIONS(1964), - [anon_sym_PIPE_AMP] = ACTIONS(1964), - [anon_sym_AMP_AMP] = ACTIONS(1964), - [anon_sym_PIPE_PIPE] = ACTIONS(1964), - [anon_sym_EQ_TILDE] = ACTIONS(1966), - [anon_sym_EQ_EQ] = ACTIONS(1966), - [anon_sym_LT] = ACTIONS(1966), - [anon_sym_GT] = ACTIONS(1966), - [anon_sym_GT_GT] = ACTIONS(1964), - [anon_sym_AMP_GT] = ACTIONS(1966), - [anon_sym_AMP_GT_GT] = ACTIONS(1964), - [anon_sym_LT_AMP] = ACTIONS(1964), - [anon_sym_GT_AMP] = ACTIONS(1964), - [anon_sym_LT_LT] = ACTIONS(1966), - [anon_sym_LT_LT_DASH] = ACTIONS(1964), - [anon_sym_LT_LT_LT] = ACTIONS(1964), - [sym__special_characters] = ACTIONS(1964), - [anon_sym_DQUOTE] = ACTIONS(1964), - [anon_sym_DOLLAR] = ACTIONS(1966), - [sym_raw_string] = ACTIONS(1964), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1964), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1964), - [anon_sym_LT_LPAREN] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1964), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1966), - [anon_sym_LF] = ACTIONS(1964), - [anon_sym_AMP] = ACTIONS(1966), - }, - [2338] = { - [sym__simple_heredoc_body] = ACTIONS(1964), - [sym__heredoc_body_beginning] = ACTIONS(1964), - [sym_file_descriptor] = ACTIONS(1964), - [anon_sym_SEMI] = ACTIONS(1966), - [anon_sym_esac] = ACTIONS(1966), - [anon_sym_PIPE] = ACTIONS(1966), - [anon_sym_SEMI_SEMI] = ACTIONS(1964), - [anon_sym_PIPE_AMP] = ACTIONS(1964), - [anon_sym_AMP_AMP] = ACTIONS(1964), - [anon_sym_PIPE_PIPE] = ACTIONS(1964), - [anon_sym_EQ_TILDE] = ACTIONS(1966), - [anon_sym_EQ_EQ] = ACTIONS(1966), - [anon_sym_LT] = ACTIONS(1966), - [anon_sym_GT] = ACTIONS(1966), - [anon_sym_GT_GT] = ACTIONS(1964), - [anon_sym_AMP_GT] = ACTIONS(1966), - [anon_sym_AMP_GT_GT] = ACTIONS(1964), - [anon_sym_LT_AMP] = ACTIONS(1964), - [anon_sym_GT_AMP] = ACTIONS(1964), - [anon_sym_LT_LT] = ACTIONS(1966), - [anon_sym_LT_LT_DASH] = ACTIONS(1964), - [anon_sym_LT_LT_LT] = ACTIONS(1964), - [sym__special_characters] = ACTIONS(1964), - [anon_sym_DQUOTE] = ACTIONS(1964), - [anon_sym_DOLLAR] = ACTIONS(1966), - [sym_raw_string] = ACTIONS(1964), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1964), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1964), - [anon_sym_LT_LPAREN] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1964), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1966), - [anon_sym_LF] = ACTIONS(1964), - [anon_sym_AMP] = ACTIONS(1966), - }, - [2339] = { - [aux_sym_concatenation_repeat1] = STATE(2515), - [sym__simple_heredoc_body] = ACTIONS(731), - [sym__heredoc_body_beginning] = ACTIONS(731), - [sym_file_descriptor] = ACTIONS(731), - [sym__concat] = ACTIONS(5733), - [anon_sym_SEMI] = ACTIONS(735), - [anon_sym_esac] = ACTIONS(731), - [anon_sym_PIPE] = ACTIONS(735), - [anon_sym_SEMI_SEMI] = ACTIONS(731), - [anon_sym_PIPE_AMP] = ACTIONS(731), - [anon_sym_AMP_AMP] = ACTIONS(731), - [anon_sym_PIPE_PIPE] = ACTIONS(731), - [anon_sym_LT] = ACTIONS(735), - [anon_sym_GT] = ACTIONS(735), - [anon_sym_GT_GT] = ACTIONS(731), - [anon_sym_AMP_GT] = ACTIONS(735), - [anon_sym_AMP_GT_GT] = ACTIONS(731), - [anon_sym_LT_AMP] = ACTIONS(731), - [anon_sym_GT_AMP] = ACTIONS(731), - [anon_sym_LT_LT] = ACTIONS(735), - [anon_sym_LT_LT_DASH] = ACTIONS(731), - [anon_sym_LT_LT_LT] = ACTIONS(731), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(731), - [anon_sym_AMP] = ACTIONS(735), - }, - [2340] = { - [sym_simple_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [sym_command_substitution] = STATE(141), - [aux_sym_string_repeat1] = STATE(2518), - [anon_sym_DQUOTE] = ACTIONS(5735), - [anon_sym_DOLLAR] = ACTIONS(5737), - [sym__string_content] = ACTIONS(257), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(261), - [anon_sym_BQUOTE] = ACTIONS(263), - [sym_comment] = ACTIONS(265), - }, - [2341] = { - [sym_string] = STATE(2520), - [anon_sym_DQUOTE] = ACTIONS(5339), - [anon_sym_DOLLAR] = ACTIONS(5739), - [sym_raw_string] = ACTIONS(5741), - [anon_sym_POUND] = ACTIONS(5739), - [anon_sym_DASH] = ACTIONS(5739), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5743), - [anon_sym_STAR] = ACTIONS(5745), - [anon_sym_AT] = ACTIONS(5745), - [anon_sym_QMARK] = ACTIONS(5745), - [anon_sym_0] = ACTIONS(5743), - [anon_sym__] = ACTIONS(5743), - }, - [2342] = { - [aux_sym_concatenation_repeat1] = STATE(2515), - [sym__simple_heredoc_body] = ACTIONS(749), - [sym__heredoc_body_beginning] = ACTIONS(749), - [sym_file_descriptor] = ACTIONS(749), - [sym__concat] = ACTIONS(5733), - [anon_sym_SEMI] = ACTIONS(751), - [anon_sym_esac] = ACTIONS(749), - [anon_sym_PIPE] = ACTIONS(751), - [anon_sym_SEMI_SEMI] = ACTIONS(749), - [anon_sym_PIPE_AMP] = ACTIONS(749), - [anon_sym_AMP_AMP] = ACTIONS(749), - [anon_sym_PIPE_PIPE] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(751), - [anon_sym_GT] = ACTIONS(751), - [anon_sym_GT_GT] = ACTIONS(749), - [anon_sym_AMP_GT] = ACTIONS(751), - [anon_sym_AMP_GT_GT] = ACTIONS(749), - [anon_sym_LT_AMP] = ACTIONS(749), - [anon_sym_GT_AMP] = ACTIONS(749), - [anon_sym_LT_LT] = ACTIONS(751), - [anon_sym_LT_LT_DASH] = ACTIONS(749), - [anon_sym_LT_LT_LT] = ACTIONS(749), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(749), - [anon_sym_AMP] = ACTIONS(751), - }, - [2343] = { - [sym_subscript] = STATE(2525), - [sym_variable_name] = ACTIONS(5747), - [anon_sym_BANG] = ACTIONS(5749), - [anon_sym_DOLLAR] = ACTIONS(5751), - [anon_sym_POUND] = ACTIONS(5749), - [anon_sym_DASH] = ACTIONS(5751), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5753), - [anon_sym_STAR] = ACTIONS(5755), - [anon_sym_AT] = ACTIONS(5755), - [anon_sym_QMARK] = ACTIONS(5755), - [anon_sym_0] = ACTIONS(5753), - [anon_sym__] = ACTIONS(5753), - }, - [2344] = { - [sym__terminated_statement] = STATE(2528), - [sym_for_statement] = STATE(2526), - [sym_c_style_for_statement] = STATE(2526), - [sym_while_statement] = STATE(2526), - [sym_if_statement] = STATE(2526), - [sym_case_statement] = STATE(2526), - [sym_function_definition] = STATE(2526), - [sym_subshell] = STATE(2526), - [sym_pipeline] = STATE(2526), - [sym_list] = STATE(2526), - [sym_negated_command] = STATE(2526), - [sym_test_command] = STATE(2526), - [sym_declaration_command] = STATE(2526), - [sym_unset_command] = STATE(2526), - [sym_command] = STATE(2526), - [sym_command_name] = STATE(78), - [sym_variable_assignment] = STATE(2527), - [sym_subscript] = STATE(80), - [sym_file_redirect] = STATE(82), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(75), - [sym_simple_expansion] = STATE(75), - [sym_string_expansion] = STATE(75), - [sym_expansion] = STATE(75), - [sym_command_substitution] = STATE(75), - [sym_process_substitution] = STATE(75), - [aux_sym__statements_repeat1] = STATE(2528), - [aux_sym_command_repeat1] = STATE(82), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(111), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(119), - [anon_sym_declare] = ACTIONS(121), - [anon_sym_typeset] = ACTIONS(121), - [anon_sym_export] = ACTIONS(121), - [anon_sym_readonly] = ACTIONS(121), - [anon_sym_local] = ACTIONS(121), - [anon_sym_unset] = ACTIONS(123), - [anon_sym_unsetenv] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), - }, - [2345] = { - [sym__terminated_statement] = STATE(2531), - [sym_for_statement] = STATE(2529), - [sym_c_style_for_statement] = STATE(2529), - [sym_while_statement] = STATE(2529), - [sym_if_statement] = STATE(2529), - [sym_case_statement] = STATE(2529), - [sym_function_definition] = STATE(2529), - [sym_subshell] = STATE(2529), - [sym_pipeline] = STATE(2529), - [sym_list] = STATE(2529), - [sym_negated_command] = STATE(2529), - [sym_test_command] = STATE(2529), - [sym_declaration_command] = STATE(2529), - [sym_unset_command] = STATE(2529), - [sym_command] = STATE(2529), - [sym_command_name] = STATE(165), - [sym_variable_assignment] = STATE(2530), - [sym_subscript] = STATE(53), - [sym_file_redirect] = STATE(168), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(47), - [sym_simple_expansion] = STATE(47), - [sym_string_expansion] = STATE(47), - [sym_expansion] = STATE(47), - [sym_command_substitution] = STATE(47), - [sym_process_substitution] = STATE(47), - [aux_sym__statements_repeat1] = STATE(2531), - [aux_sym_command_repeat1] = STATE(168), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(69), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(289), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(291), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(293), - [anon_sym_LBRACK] = ACTIONS(295), - [anon_sym_LBRACK_LBRACK] = ACTIONS(297), - [anon_sym_declare] = ACTIONS(299), - [anon_sym_typeset] = ACTIONS(299), - [anon_sym_export] = ACTIONS(299), - [anon_sym_readonly] = ACTIONS(299), - [anon_sym_local] = ACTIONS(299), - [anon_sym_unset] = ACTIONS(301), - [anon_sym_unsetenv] = ACTIONS(301), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(87), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(303), - }, - [2346] = { - [sym__terminated_statement] = STATE(2534), - [sym_for_statement] = STATE(2532), - [sym_c_style_for_statement] = STATE(2532), - [sym_while_statement] = STATE(2532), - [sym_if_statement] = STATE(2532), - [sym_case_statement] = STATE(2532), - [sym_function_definition] = STATE(2532), - [sym_subshell] = STATE(2532), - [sym_pipeline] = STATE(2532), - [sym_list] = STATE(2532), - [sym_negated_command] = STATE(2532), - [sym_test_command] = STATE(2532), - [sym_declaration_command] = STATE(2532), - [sym_unset_command] = STATE(2532), - [sym_command] = STATE(2532), - [sym_command_name] = STATE(78), - [sym_variable_assignment] = STATE(2533), - [sym_subscript] = STATE(80), - [sym_file_redirect] = STATE(82), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(75), - [sym_simple_expansion] = STATE(75), - [sym_string_expansion] = STATE(75), - [sym_expansion] = STATE(75), - [sym_command_substitution] = STATE(75), - [sym_process_substitution] = STATE(75), - [aux_sym__statements_repeat1] = STATE(2534), - [aux_sym_command_repeat1] = STATE(82), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(111), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(119), - [anon_sym_declare] = ACTIONS(121), - [anon_sym_typeset] = ACTIONS(121), - [anon_sym_export] = ACTIONS(121), - [anon_sym_readonly] = ACTIONS(121), - [anon_sym_local] = ACTIONS(121), - [anon_sym_unset] = ACTIONS(123), - [anon_sym_unsetenv] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), - }, - [2347] = { - [aux_sym_concatenation_repeat1] = STATE(2515), - [sym__simple_heredoc_body] = ACTIONS(1972), - [sym__heredoc_body_beginning] = ACTIONS(1972), - [sym_file_descriptor] = ACTIONS(1972), - [sym__concat] = ACTIONS(5733), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_esac] = ACTIONS(1972), - [anon_sym_PIPE] = ACTIONS(1974), - [anon_sym_SEMI_SEMI] = ACTIONS(1972), - [anon_sym_PIPE_AMP] = ACTIONS(1972), - [anon_sym_AMP_AMP] = ACTIONS(1972), - [anon_sym_PIPE_PIPE] = ACTIONS(1972), - [anon_sym_LT] = ACTIONS(1974), - [anon_sym_GT] = ACTIONS(1974), - [anon_sym_GT_GT] = ACTIONS(1972), - [anon_sym_AMP_GT] = ACTIONS(1974), - [anon_sym_AMP_GT_GT] = ACTIONS(1972), - [anon_sym_LT_AMP] = ACTIONS(1972), - [anon_sym_GT_AMP] = ACTIONS(1972), - [anon_sym_LT_LT] = ACTIONS(1974), - [anon_sym_LT_LT_DASH] = ACTIONS(1972), - [anon_sym_LT_LT_LT] = ACTIONS(1972), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1972), - [anon_sym_AMP] = ACTIONS(1974), - }, - [2348] = { - [aux_sym_concatenation_repeat1] = STATE(2515), - [sym__simple_heredoc_body] = ACTIONS(1976), - [sym__heredoc_body_beginning] = ACTIONS(1976), - [sym_file_descriptor] = ACTIONS(1976), - [sym__concat] = ACTIONS(5733), - [anon_sym_SEMI] = ACTIONS(1978), - [anon_sym_esac] = ACTIONS(1976), - [anon_sym_PIPE] = ACTIONS(1978), - [anon_sym_SEMI_SEMI] = ACTIONS(1976), - [anon_sym_PIPE_AMP] = ACTIONS(1976), - [anon_sym_AMP_AMP] = ACTIONS(1976), - [anon_sym_PIPE_PIPE] = ACTIONS(1976), - [anon_sym_LT] = ACTIONS(1978), - [anon_sym_GT] = ACTIONS(1978), - [anon_sym_GT_GT] = ACTIONS(1976), - [anon_sym_AMP_GT] = ACTIONS(1978), - [anon_sym_AMP_GT_GT] = ACTIONS(1976), - [anon_sym_LT_AMP] = ACTIONS(1976), - [anon_sym_GT_AMP] = ACTIONS(1976), - [anon_sym_LT_LT] = ACTIONS(1978), - [anon_sym_LT_LT_DASH] = ACTIONS(1976), - [anon_sym_LT_LT_LT] = ACTIONS(1976), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1978), - }, - [2349] = { - [sym_file_redirect] = STATE(2349), - [sym_heredoc_redirect] = STATE(2349), - [sym_herestring_redirect] = STATE(2349), - [aux_sym_while_statement_repeat1] = STATE(2349), - [sym__simple_heredoc_body] = ACTIONS(1984), - [sym__heredoc_body_beginning] = ACTIONS(1984), - [sym_file_descriptor] = ACTIONS(5757), - [anon_sym_SEMI] = ACTIONS(1989), - [anon_sym_esac] = ACTIONS(1984), - [anon_sym_PIPE] = ACTIONS(1989), - [anon_sym_SEMI_SEMI] = ACTIONS(1984), - [anon_sym_PIPE_AMP] = ACTIONS(1984), - [anon_sym_AMP_AMP] = ACTIONS(1984), - [anon_sym_PIPE_PIPE] = ACTIONS(1984), - [anon_sym_LT] = ACTIONS(5760), - [anon_sym_GT] = ACTIONS(5760), - [anon_sym_GT_GT] = ACTIONS(5763), - [anon_sym_AMP_GT] = ACTIONS(5760), - [anon_sym_AMP_GT_GT] = ACTIONS(5763), - [anon_sym_LT_AMP] = ACTIONS(5763), - [anon_sym_GT_AMP] = ACTIONS(5763), - [anon_sym_LT_LT] = ACTIONS(1997), - [anon_sym_LT_LT_DASH] = ACTIONS(2000), - [anon_sym_LT_LT_LT] = ACTIONS(5766), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1984), - [anon_sym_AMP] = ACTIONS(1989), - }, - [2350] = { - [sym_file_redirect] = STATE(2349), - [sym_heredoc_redirect] = STATE(2349), - [sym_heredoc_body] = STATE(947), - [sym_herestring_redirect] = STATE(2349), - [aux_sym_while_statement_repeat1] = STATE(2349), - [sym__simple_heredoc_body] = ACTIONS(321), - [sym__heredoc_body_beginning] = ACTIONS(323), - [sym_file_descriptor] = ACTIONS(4909), - [anon_sym_SEMI] = ACTIONS(1982), - [anon_sym_esac] = ACTIONS(1980), - [anon_sym_PIPE] = ACTIONS(1982), - [anon_sym_SEMI_SEMI] = ACTIONS(1980), - [anon_sym_PIPE_AMP] = ACTIONS(1980), - [anon_sym_AMP_AMP] = ACTIONS(1980), - [anon_sym_PIPE_PIPE] = ACTIONS(1980), - [anon_sym_LT] = ACTIONS(4913), - [anon_sym_GT] = ACTIONS(4913), - [anon_sym_GT_GT] = ACTIONS(4915), - [anon_sym_AMP_GT] = ACTIONS(4913), - [anon_sym_AMP_GT_GT] = ACTIONS(4915), - [anon_sym_LT_AMP] = ACTIONS(4915), - [anon_sym_GT_AMP] = ACTIONS(4915), - [anon_sym_LT_LT] = ACTIONS(337), - [anon_sym_LT_LT_DASH] = ACTIONS(339), - [anon_sym_LT_LT_LT] = ACTIONS(4917), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1980), - [anon_sym_AMP] = ACTIONS(1982), - }, - [2351] = { - [sym_concatenation] = STATE(2351), - [sym_string] = STATE(2134), - [sym_simple_expansion] = STATE(2134), - [sym_string_expansion] = STATE(2134), - [sym_expansion] = STATE(2134), - [sym_command_substitution] = STATE(2134), - [sym_process_substitution] = STATE(2134), - [aux_sym_command_repeat2] = STATE(2351), - [sym__simple_heredoc_body] = ACTIONS(1964), - [sym__heredoc_body_beginning] = ACTIONS(1964), - [sym_file_descriptor] = ACTIONS(1964), - [anon_sym_SEMI] = ACTIONS(1966), - [anon_sym_esac] = ACTIONS(1966), - [anon_sym_PIPE] = ACTIONS(1966), - [anon_sym_SEMI_SEMI] = ACTIONS(1964), - [anon_sym_PIPE_AMP] = ACTIONS(1964), - [anon_sym_AMP_AMP] = ACTIONS(1964), - [anon_sym_PIPE_PIPE] = ACTIONS(1964), - [anon_sym_EQ_TILDE] = ACTIONS(5769), - [anon_sym_EQ_EQ] = ACTIONS(5769), - [anon_sym_LT] = ACTIONS(1966), - [anon_sym_GT] = ACTIONS(1966), - [anon_sym_GT_GT] = ACTIONS(1964), - [anon_sym_AMP_GT] = ACTIONS(1966), - [anon_sym_AMP_GT_GT] = ACTIONS(1964), - [anon_sym_LT_AMP] = ACTIONS(1964), - [anon_sym_GT_AMP] = ACTIONS(1964), - [anon_sym_LT_LT] = ACTIONS(1966), - [anon_sym_LT_LT_DASH] = ACTIONS(1964), - [anon_sym_LT_LT_LT] = ACTIONS(1964), - [sym__special_characters] = ACTIONS(5772), - [anon_sym_DQUOTE] = ACTIONS(5775), - [anon_sym_DOLLAR] = ACTIONS(5778), - [sym_raw_string] = ACTIONS(5781), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5784), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5787), - [anon_sym_BQUOTE] = ACTIONS(5790), - [anon_sym_LT_LPAREN] = ACTIONS(5793), - [anon_sym_GT_LPAREN] = ACTIONS(5793), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5796), - [anon_sym_LF] = ACTIONS(1964), - [anon_sym_AMP] = ACTIONS(1966), - }, - [2352] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_esac] = ACTIONS(5799), - [anon_sym_SEMI_SEMI] = ACTIONS(901), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(5801), - [anon_sym_DQUOTE] = ACTIONS(5803), - [anon_sym_DOLLAR] = ACTIONS(5801), - [sym_raw_string] = ACTIONS(5803), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5803), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5803), - [anon_sym_BQUOTE] = ACTIONS(5803), - [anon_sym_LT_LPAREN] = ACTIONS(5803), - [anon_sym_GT_LPAREN] = ACTIONS(5803), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5801), - }, - [2353] = { - [anon_sym_SEMI] = ACTIONS(4895), - [anon_sym_PIPE] = ACTIONS(445), - [anon_sym_SEMI_SEMI] = ACTIONS(4907), - [anon_sym_PIPE_AMP] = ACTIONS(449), - [anon_sym_AMP_AMP] = ACTIONS(451), - [anon_sym_PIPE_PIPE] = ACTIONS(451), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(4907), - [anon_sym_AMP] = ACTIONS(4895), - }, - [2354] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(4895), - [anon_sym_PIPE] = ACTIONS(445), - [anon_sym_SEMI_SEMI] = ACTIONS(4907), - [anon_sym_PIPE_AMP] = ACTIONS(449), - [anon_sym_AMP_AMP] = ACTIONS(451), - [anon_sym_PIPE_PIPE] = ACTIONS(451), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(4907), - [anon_sym_AMP] = ACTIONS(4895), - }, - [2355] = { - [sym_file_redirect] = STATE(2535), - [sym_heredoc_redirect] = STATE(2535), - [sym_heredoc_body] = STATE(947), - [sym_herestring_redirect] = STATE(2535), - [sym_concatenation] = STATE(2351), - [sym_string] = STATE(2134), - [sym_simple_expansion] = STATE(2134), - [sym_string_expansion] = STATE(2134), - [sym_expansion] = STATE(2134), - [sym_command_substitution] = STATE(2134), - [sym_process_substitution] = STATE(2134), - [aux_sym_while_statement_repeat1] = STATE(2535), - [aux_sym_command_repeat2] = STATE(2351), - [sym__simple_heredoc_body] = ACTIONS(321), - [sym__heredoc_body_beginning] = ACTIONS(323), - [sym_file_descriptor] = ACTIONS(4909), - [anon_sym_SEMI] = ACTIONS(1982), - [anon_sym_esac] = ACTIONS(1982), - [anon_sym_PIPE] = ACTIONS(1982), - [anon_sym_SEMI_SEMI] = ACTIONS(1980), - [anon_sym_PIPE_AMP] = ACTIONS(1980), - [anon_sym_AMP_AMP] = ACTIONS(1980), - [anon_sym_PIPE_PIPE] = ACTIONS(1980), - [anon_sym_EQ_TILDE] = ACTIONS(4911), - [anon_sym_EQ_EQ] = ACTIONS(4911), - [anon_sym_LT] = ACTIONS(4913), - [anon_sym_GT] = ACTIONS(4913), - [anon_sym_GT_GT] = ACTIONS(4915), - [anon_sym_AMP_GT] = ACTIONS(4913), - [anon_sym_AMP_GT_GT] = ACTIONS(4915), - [anon_sym_LT_AMP] = ACTIONS(4915), - [anon_sym_GT_AMP] = ACTIONS(4915), - [anon_sym_LT_LT] = ACTIONS(337), - [anon_sym_LT_LT_DASH] = ACTIONS(339), - [anon_sym_LT_LT_LT] = ACTIONS(4917), - [sym__special_characters] = ACTIONS(4919), - [anon_sym_DQUOTE] = ACTIONS(4267), - [anon_sym_DOLLAR] = ACTIONS(4269), - [sym_raw_string] = ACTIONS(4921), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4273), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4275), - [anon_sym_BQUOTE] = ACTIONS(4277), - [anon_sym_LT_LPAREN] = ACTIONS(4279), - [anon_sym_GT_LPAREN] = ACTIONS(4279), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4923), - [anon_sym_LF] = ACTIONS(1980), - [anon_sym_AMP] = ACTIONS(1982), - }, [2356] = { - [anon_sym_esac] = ACTIONS(5799), - [sym__special_characters] = ACTIONS(5803), - [anon_sym_DQUOTE] = ACTIONS(5803), - [anon_sym_DOLLAR] = ACTIONS(5801), - [sym_raw_string] = ACTIONS(5803), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5803), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5803), - [anon_sym_BQUOTE] = ACTIONS(5803), - [anon_sym_LT_LPAREN] = ACTIONS(5803), - [anon_sym_GT_LPAREN] = ACTIONS(5803), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5801), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_DQUOTE] = ACTIONS(5707), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym__string_content] = ACTIONS(821), + [anon_sym_POUND] = ACTIONS(815), + [sym_comment] = ACTIONS(281), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(823), + [anon_sym_STAR] = ACTIONS(825), + [anon_sym_AT] = ACTIONS(825), + [anon_sym_QMARK] = ACTIONS(825), + [anon_sym_0] = ACTIONS(823), + [anon_sym__] = ACTIONS(823), }, [2357] = { - [anon_sym_SEMI] = ACTIONS(4895), - [anon_sym_esac] = ACTIONS(5805), - [anon_sym_PIPE] = ACTIONS(4899), - [anon_sym_SEMI_SEMI] = ACTIONS(5807), - [anon_sym_PIPE_AMP] = ACTIONS(4903), - [anon_sym_AMP_AMP] = ACTIONS(4905), - [anon_sym_PIPE_PIPE] = ACTIONS(4905), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(4907), - [anon_sym_AMP] = ACTIONS(4895), + [sym_simple_expansion] = STATE(148), + [sym_expansion] = STATE(148), + [sym_command_substitution] = STATE(148), + [aux_sym_string_repeat1] = STATE(473), + [anon_sym_DQUOTE] = ACTIONS(5707), + [anon_sym_DOLLAR] = ACTIONS(5709), + [sym__string_content] = ACTIONS(273), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(277), + [anon_sym_BQUOTE] = ACTIONS(279), + [sym_comment] = ACTIONS(281), }, [2358] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(4895), - [anon_sym_esac] = ACTIONS(5799), - [anon_sym_PIPE] = ACTIONS(4899), - [anon_sym_SEMI_SEMI] = ACTIONS(5807), - [anon_sym_PIPE_AMP] = ACTIONS(4903), - [anon_sym_AMP_AMP] = ACTIONS(4905), - [anon_sym_PIPE_PIPE] = ACTIONS(4905), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(4907), - [anon_sym_AMP] = ACTIONS(4895), + [sym__concat] = ACTIONS(845), + [anon_sym_SEMI] = ACTIONS(847), + [anon_sym_esac] = ACTIONS(847), + [anon_sym_PIPE] = ACTIONS(847), + [anon_sym_SEMI_SEMI] = ACTIONS(845), + [anon_sym_PIPE_AMP] = ACTIONS(845), + [anon_sym_AMP_AMP] = ACTIONS(845), + [anon_sym_PIPE_PIPE] = ACTIONS(845), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(845), + [anon_sym_DOLLAR] = ACTIONS(847), + [sym_raw_string] = ACTIONS(845), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(845), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), + [anon_sym_BQUOTE] = ACTIONS(845), + [anon_sym_LT_LPAREN] = ACTIONS(845), + [anon_sym_GT_LPAREN] = ACTIONS(845), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(847), + [sym_word] = ACTIONS(847), + [anon_sym_LF] = ACTIONS(845), + [anon_sym_AMP] = ACTIONS(847), }, [2359] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_esac] = ACTIONS(5809), - [anon_sym_SEMI_SEMI] = ACTIONS(901), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(5811), - [anon_sym_DQUOTE] = ACTIONS(5813), - [anon_sym_DOLLAR] = ACTIONS(5811), - [sym_raw_string] = ACTIONS(5813), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5813), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5813), - [anon_sym_BQUOTE] = ACTIONS(5813), - [anon_sym_LT_LPAREN] = ACTIONS(5813), - [anon_sym_GT_LPAREN] = ACTIONS(5813), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5811), + [sym__concat] = ACTIONS(849), + [anon_sym_SEMI] = ACTIONS(851), + [anon_sym_esac] = ACTIONS(851), + [anon_sym_PIPE] = ACTIONS(851), + [anon_sym_SEMI_SEMI] = ACTIONS(849), + [anon_sym_PIPE_AMP] = ACTIONS(849), + [anon_sym_AMP_AMP] = ACTIONS(849), + [anon_sym_PIPE_PIPE] = ACTIONS(849), + [sym__special_characters] = ACTIONS(849), + [anon_sym_DQUOTE] = ACTIONS(849), + [anon_sym_DOLLAR] = ACTIONS(851), + [sym_raw_string] = ACTIONS(849), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(849), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(849), + [anon_sym_BQUOTE] = ACTIONS(849), + [anon_sym_LT_LPAREN] = ACTIONS(849), + [anon_sym_GT_LPAREN] = ACTIONS(849), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(851), + [sym_word] = ACTIONS(851), + [anon_sym_LF] = ACTIONS(849), + [anon_sym_AMP] = ACTIONS(851), }, [2360] = { - [anon_sym_esac] = ACTIONS(5809), - [sym__special_characters] = ACTIONS(5813), - [anon_sym_DQUOTE] = ACTIONS(5813), - [anon_sym_DOLLAR] = ACTIONS(5811), - [sym_raw_string] = ACTIONS(5813), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5813), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5813), - [anon_sym_BQUOTE] = ACTIONS(5813), - [anon_sym_LT_LPAREN] = ACTIONS(5813), - [anon_sym_GT_LPAREN] = ACTIONS(5813), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5811), + [sym__concat] = ACTIONS(853), + [anon_sym_SEMI] = ACTIONS(855), + [anon_sym_esac] = ACTIONS(855), + [anon_sym_PIPE] = ACTIONS(855), + [anon_sym_SEMI_SEMI] = ACTIONS(853), + [anon_sym_PIPE_AMP] = ACTIONS(853), + [anon_sym_AMP_AMP] = ACTIONS(853), + [anon_sym_PIPE_PIPE] = ACTIONS(853), + [sym__special_characters] = ACTIONS(853), + [anon_sym_DQUOTE] = ACTIONS(853), + [anon_sym_DOLLAR] = ACTIONS(855), + [sym_raw_string] = ACTIONS(853), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(853), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(853), + [anon_sym_BQUOTE] = ACTIONS(853), + [anon_sym_LT_LPAREN] = ACTIONS(853), + [anon_sym_GT_LPAREN] = ACTIONS(853), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(855), + [sym_word] = ACTIONS(855), + [anon_sym_LF] = ACTIONS(853), + [anon_sym_AMP] = ACTIONS(855), }, [2361] = { - [anon_sym_SEMI] = ACTIONS(4895), - [anon_sym_esac] = ACTIONS(5815), - [anon_sym_PIPE] = ACTIONS(4899), - [anon_sym_SEMI_SEMI] = ACTIONS(5817), - [anon_sym_PIPE_AMP] = ACTIONS(4903), - [anon_sym_AMP_AMP] = ACTIONS(4905), - [anon_sym_PIPE_PIPE] = ACTIONS(4905), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(4907), - [anon_sym_AMP] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(857), + [anon_sym_EQ] = ACTIONS(5711), + [sym_comment] = ACTIONS(55), }, [2362] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(4895), - [anon_sym_esac] = ACTIONS(5809), - [anon_sym_PIPE] = ACTIONS(4899), - [anon_sym_SEMI_SEMI] = ACTIONS(5817), - [anon_sym_PIPE_AMP] = ACTIONS(4903), - [anon_sym_AMP_AMP] = ACTIONS(4905), - [anon_sym_PIPE_PIPE] = ACTIONS(4905), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(4907), - [anon_sym_AMP] = ACTIONS(4895), + [sym_subscript] = STATE(2530), + [sym_variable_name] = ACTIONS(5713), + [anon_sym_DASH] = ACTIONS(5715), + [anon_sym_DOLLAR] = ACTIONS(5715), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5717), + [anon_sym_STAR] = ACTIONS(5719), + [anon_sym_AT] = ACTIONS(5719), + [anon_sym_QMARK] = ACTIONS(5719), + [anon_sym_0] = ACTIONS(5717), + [anon_sym__] = ACTIONS(5717), }, [2363] = { - [sym__special_characters] = ACTIONS(4821), - [anon_sym_DQUOTE] = ACTIONS(4821), - [anon_sym_DOLLAR] = ACTIONS(4823), - [sym_raw_string] = ACTIONS(4821), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4821), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4821), - [anon_sym_BQUOTE] = ACTIONS(4821), - [anon_sym_LT_LPAREN] = ACTIONS(4821), - [anon_sym_GT_LPAREN] = ACTIONS(4821), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4821), + [sym_concatenation] = STATE(2533), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2533), + [anon_sym_RBRACE] = ACTIONS(5721), + [anon_sym_EQ] = ACTIONS(5723), + [anon_sym_DASH] = ACTIONS(5723), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(5725), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(5727), + [anon_sym_COLON] = ACTIONS(5723), + [anon_sym_COLON_QMARK] = ACTIONS(5723), + [anon_sym_COLON_DASH] = ACTIONS(5723), + [anon_sym_PERCENT] = ACTIONS(5723), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2364] = { - [anon_sym_SEMI] = ACTIONS(2038), - [anon_sym_PIPE] = ACTIONS(445), - [anon_sym_SEMI_SEMI] = ACTIONS(5819), - [anon_sym_PIPE_AMP] = ACTIONS(449), - [anon_sym_AMP_AMP] = ACTIONS(451), - [anon_sym_PIPE_PIPE] = ACTIONS(451), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(2040), - [anon_sym_AMP] = ACTIONS(2038), + [sym_concatenation] = STATE(2536), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2536), + [anon_sym_RBRACE] = ACTIONS(5729), + [anon_sym_EQ] = ACTIONS(5731), + [anon_sym_DASH] = ACTIONS(5731), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(5733), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(5735), + [anon_sym_COLON] = ACTIONS(5731), + [anon_sym_COLON_QMARK] = ACTIONS(5731), + [anon_sym_COLON_DASH] = ACTIONS(5731), + [anon_sym_PERCENT] = ACTIONS(5731), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2365] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(2038), - [anon_sym_PIPE] = ACTIONS(445), - [anon_sym_SEMI_SEMI] = ACTIONS(5819), - [anon_sym_PIPE_AMP] = ACTIONS(449), - [anon_sym_AMP_AMP] = ACTIONS(451), - [anon_sym_PIPE_PIPE] = ACTIONS(451), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(2040), - [anon_sym_AMP] = ACTIONS(2038), + [anon_sym_SEMI] = ACTIONS(5737), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(5739), + [anon_sym_SEMI_SEMI] = ACTIONS(5741), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(5741), + [anon_sym_AMP] = ACTIONS(5737), }, [2366] = { - [sym__terminated_statement] = STATE(2542), - [sym_for_statement] = STATE(2540), - [sym_c_style_for_statement] = STATE(2540), - [sym_while_statement] = STATE(2540), - [sym_if_statement] = STATE(2540), - [sym_case_statement] = STATE(2540), - [sym_function_definition] = STATE(2540), - [sym_subshell] = STATE(2540), - [sym_pipeline] = STATE(2540), - [sym_list] = STATE(2540), - [sym_negated_command] = STATE(2540), - [sym_test_command] = STATE(2540), - [sym_declaration_command] = STATE(2540), - [sym_unset_command] = STATE(2540), - [sym_command] = STATE(2540), - [sym_command_name] = STATE(51), - [sym_variable_assignment] = STATE(2541), - [sym_subscript] = STATE(53), - [sym_file_redirect] = STATE(54), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(47), - [sym_simple_expansion] = STATE(47), - [sym_string_expansion] = STATE(47), - [sym_expansion] = STATE(47), - [sym_command_substitution] = STATE(47), - [sym_process_substitution] = STATE(47), - [aux_sym__statements_repeat1] = STATE(2542), - [aux_sym_command_repeat1] = STATE(54), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(69), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(71), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_SEMI_SEMI] = ACTIONS(5821), - [anon_sym_function] = ACTIONS(73), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(75), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_LBRACK_LBRACK] = ACTIONS(79), - [anon_sym_declare] = ACTIONS(81), - [anon_sym_typeset] = ACTIONS(81), - [anon_sym_export] = ACTIONS(81), - [anon_sym_readonly] = ACTIONS(81), - [anon_sym_local] = ACTIONS(81), - [anon_sym_unset] = ACTIONS(83), - [anon_sym_unsetenv] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(87), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(89), + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(5737), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(5739), + [anon_sym_SEMI_SEMI] = ACTIONS(5741), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(5741), + [anon_sym_AMP] = ACTIONS(5737), }, [2367] = { - [sym__terminated_statement] = STATE(2543), - [sym_for_statement] = STATE(2540), - [sym_c_style_for_statement] = STATE(2540), - [sym_while_statement] = STATE(2540), - [sym_if_statement] = STATE(2540), - [sym_case_statement] = STATE(2540), - [sym_function_definition] = STATE(2540), - [sym_subshell] = STATE(2540), - [sym_pipeline] = STATE(2540), - [sym_list] = STATE(2540), - [sym_negated_command] = STATE(2540), - [sym_test_command] = STATE(2540), - [sym_declaration_command] = STATE(2540), - [sym_unset_command] = STATE(2540), - [sym_command] = STATE(2540), - [sym_command_name] = STATE(51), - [sym_variable_assignment] = STATE(2541), - [sym_subscript] = STATE(53), - [sym_file_redirect] = STATE(54), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(47), - [sym_simple_expansion] = STATE(47), - [sym_string_expansion] = STATE(47), - [sym_expansion] = STATE(47), - [sym_command_substitution] = STATE(47), - [sym_process_substitution] = STATE(47), - [aux_sym__statements_repeat1] = STATE(2543), - [aux_sym_command_repeat1] = STATE(54), + [sym__terminated_statement] = STATE(198), + [sym_for_statement] = STATE(2539), + [sym_c_style_for_statement] = STATE(2539), + [sym_while_statement] = STATE(2539), + [sym_if_statement] = STATE(2539), + [sym_case_statement] = STATE(2539), + [sym_function_definition] = STATE(2539), + [sym_subshell] = STATE(2539), + [sym_pipeline] = STATE(2539), + [sym_list] = STATE(2539), + [sym_negated_command] = STATE(2539), + [sym_test_command] = STATE(2539), + [sym_declaration_command] = STATE(2539), + [sym_unset_command] = STATE(2539), + [sym_command] = STATE(2539), + [sym_command_name] = STATE(92), + [sym_variable_assignment] = STATE(2540), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(96), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), + [aux_sym__statements_repeat1] = STATE(198), + [aux_sym_command_repeat1] = STATE(96), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(69), + [sym_variable_name] = ACTIONS(137), [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(71), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_SEMI_SEMI] = ACTIONS(5821), - [anon_sym_function] = ACTIONS(73), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(75), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_LBRACK_LBRACK] = ACTIONS(79), - [anon_sym_declare] = ACTIONS(81), - [anon_sym_typeset] = ACTIONS(81), - [anon_sym_export] = ACTIONS(81), - [anon_sym_readonly] = ACTIONS(81), - [anon_sym_local] = ACTIONS(81), - [anon_sym_unset] = ACTIONS(83), - [anon_sym_unsetenv] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(87), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(89), + [anon_sym_LPAREN_LPAREN] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(149), + [anon_sym_declare] = ACTIONS(151), + [anon_sym_typeset] = ACTIONS(151), + [anon_sym_export] = ACTIONS(151), + [anon_sym_readonly] = ACTIONS(151), + [anon_sym_local] = ACTIONS(151), + [anon_sym_unset] = ACTIONS(153), + [anon_sym_unsetenv] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(159), }, [2368] = { - [sym__special_characters] = ACTIONS(4934), - [anon_sym_DQUOTE] = ACTIONS(4934), - [anon_sym_DOLLAR] = ACTIONS(4936), - [sym_raw_string] = ACTIONS(4934), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4934), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4934), - [anon_sym_BQUOTE] = ACTIONS(4934), - [anon_sym_LT_LPAREN] = ACTIONS(4934), - [anon_sym_GT_LPAREN] = ACTIONS(4934), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4934), + [anon_sym_SEMI] = ACTIONS(5743), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_SEMI_SEMI] = ACTIONS(5745), + [anon_sym_PIPE_AMP] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_BQUOTE] = ACTIONS(5739), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(5745), + [anon_sym_AMP] = ACTIONS(5743), }, [2369] = { - [anon_sym_SEMI] = ACTIONS(2038), - [anon_sym_PIPE] = ACTIONS(445), - [anon_sym_SEMI_SEMI] = ACTIONS(5823), - [anon_sym_PIPE_AMP] = ACTIONS(449), - [anon_sym_AMP_AMP] = ACTIONS(451), - [anon_sym_PIPE_PIPE] = ACTIONS(451), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(2040), - [anon_sym_AMP] = ACTIONS(2038), + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(5743), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_SEMI_SEMI] = ACTIONS(5745), + [anon_sym_PIPE_AMP] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(5739), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(5745), + [anon_sym_AMP] = ACTIONS(5743), }, [2370] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(2038), - [anon_sym_PIPE] = ACTIONS(445), - [anon_sym_SEMI_SEMI] = ACTIONS(5823), - [anon_sym_PIPE_AMP] = ACTIONS(449), - [anon_sym_AMP_AMP] = ACTIONS(451), - [anon_sym_PIPE_PIPE] = ACTIONS(451), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(2040), - [anon_sym_AMP] = ACTIONS(2038), + [sym__terminated_statement] = STATE(198), + [sym_for_statement] = STATE(2542), + [sym_c_style_for_statement] = STATE(2542), + [sym_while_statement] = STATE(2542), + [sym_if_statement] = STATE(2542), + [sym_case_statement] = STATE(2542), + [sym_function_definition] = STATE(2542), + [sym_subshell] = STATE(2542), + [sym_pipeline] = STATE(2542), + [sym_list] = STATE(2542), + [sym_negated_command] = STATE(2542), + [sym_test_command] = STATE(2542), + [sym_declaration_command] = STATE(2542), + [sym_unset_command] = STATE(2542), + [sym_command] = STATE(2542), + [sym_command_name] = STATE(173), + [sym_variable_assignment] = STATE(2543), + [sym_subscript] = STATE(66), + [sym_file_redirect] = STATE(176), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(60), + [sym_simple_expansion] = STATE(60), + [sym_string_expansion] = STATE(60), + [sym_expansion] = STATE(60), + [sym_command_substitution] = STATE(60), + [sym_process_substitution] = STATE(60), + [aux_sym__statements_repeat1] = STATE(198), + [aux_sym_command_repeat1] = STATE(176), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(95), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(305), + [anon_sym_while] = ACTIONS(307), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(311), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(315), + [anon_sym_declare] = ACTIONS(317), + [anon_sym_typeset] = ACTIONS(317), + [anon_sym_export] = ACTIONS(317), + [anon_sym_readonly] = ACTIONS(317), + [anon_sym_local] = ACTIONS(317), + [anon_sym_unset] = ACTIONS(319), + [anon_sym_unsetenv] = ACTIONS(319), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(115), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(321), }, [2371] = { - [sym__terminated_statement] = STATE(2542), - [sym_for_statement] = STATE(2546), - [sym_c_style_for_statement] = STATE(2546), - [sym_while_statement] = STATE(2546), - [sym_if_statement] = STATE(2546), - [sym_case_statement] = STATE(2546), - [sym_function_definition] = STATE(2546), - [sym_subshell] = STATE(2546), - [sym_pipeline] = STATE(2546), - [sym_list] = STATE(2546), - [sym_negated_command] = STATE(2546), - [sym_test_command] = STATE(2546), - [sym_declaration_command] = STATE(2546), - [sym_unset_command] = STATE(2546), - [sym_command] = STATE(2546), - [sym_command_name] = STATE(51), - [sym_variable_assignment] = STATE(2547), - [sym_subscript] = STATE(53), - [sym_file_redirect] = STATE(54), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(47), - [sym_simple_expansion] = STATE(47), - [sym_string_expansion] = STATE(47), - [sym_expansion] = STATE(47), - [sym_command_substitution] = STATE(47), - [sym_process_substitution] = STATE(47), - [aux_sym__statements_repeat1] = STATE(2542), - [aux_sym_command_repeat1] = STATE(54), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(69), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(71), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_SEMI_SEMI] = ACTIONS(5825), - [anon_sym_function] = ACTIONS(73), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(75), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_LBRACK_LBRACK] = ACTIONS(79), - [anon_sym_declare] = ACTIONS(81), - [anon_sym_typeset] = ACTIONS(81), - [anon_sym_export] = ACTIONS(81), - [anon_sym_readonly] = ACTIONS(81), - [anon_sym_local] = ACTIONS(81), - [anon_sym_unset] = ACTIONS(83), - [anon_sym_unsetenv] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(87), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(89), + [anon_sym_SEMI] = ACTIONS(5747), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(5749), + [anon_sym_SEMI_SEMI] = ACTIONS(5751), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(5751), + [anon_sym_AMP] = ACTIONS(5747), }, [2372] = { - [sym__terminated_statement] = STATE(2548), + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(5747), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(5749), + [anon_sym_SEMI_SEMI] = ACTIONS(5751), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(5751), + [anon_sym_AMP] = ACTIONS(5747), + }, + [2373] = { + [sym__terminated_statement] = STATE(198), [sym_for_statement] = STATE(2546), [sym_c_style_for_statement] = STATE(2546), [sym_while_statement] = STATE(2546), @@ -65913,881 +68835,2616 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(2546), [sym_unset_command] = STATE(2546), [sym_command] = STATE(2546), - [sym_command_name] = STATE(51), + [sym_command_name] = STATE(92), [sym_variable_assignment] = STATE(2547), - [sym_subscript] = STATE(53), - [sym_file_redirect] = STATE(54), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(47), - [sym_simple_expansion] = STATE(47), - [sym_string_expansion] = STATE(47), - [sym_expansion] = STATE(47), - [sym_command_substitution] = STATE(47), - [sym_process_substitution] = STATE(47), - [aux_sym__statements_repeat1] = STATE(2548), - [aux_sym_command_repeat1] = STATE(54), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(96), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), + [aux_sym__statements_repeat1] = STATE(198), + [aux_sym_command_repeat1] = STATE(96), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(69), + [sym_variable_name] = ACTIONS(137), [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(71), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_SEMI_SEMI] = ACTIONS(5825), - [anon_sym_function] = ACTIONS(73), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(75), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_LBRACK_LBRACK] = ACTIONS(79), - [anon_sym_declare] = ACTIONS(81), - [anon_sym_typeset] = ACTIONS(81), - [anon_sym_export] = ACTIONS(81), - [anon_sym_readonly] = ACTIONS(81), - [anon_sym_local] = ACTIONS(81), - [anon_sym_unset] = ACTIONS(83), - [anon_sym_unsetenv] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(87), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(89), - }, - [2373] = { - [sym_file_descriptor] = ACTIONS(3788), - [sym__concat] = ACTIONS(3788), - [ts_builtin_sym_end] = ACTIONS(3788), - [anon_sym_SEMI] = ACTIONS(3790), - [anon_sym_esac] = ACTIONS(3788), - [anon_sym_PIPE] = ACTIONS(3790), - [anon_sym_RPAREN] = ACTIONS(3788), - [anon_sym_SEMI_SEMI] = ACTIONS(3788), - [anon_sym_PIPE_AMP] = ACTIONS(3788), - [anon_sym_AMP_AMP] = ACTIONS(3788), - [anon_sym_PIPE_PIPE] = ACTIONS(3788), - [anon_sym_LT] = ACTIONS(3790), - [anon_sym_GT] = ACTIONS(3790), - [anon_sym_GT_GT] = ACTIONS(3788), - [anon_sym_AMP_GT] = ACTIONS(3790), - [anon_sym_AMP_GT_GT] = ACTIONS(3788), - [anon_sym_LT_AMP] = ACTIONS(3788), - [anon_sym_GT_AMP] = ACTIONS(3788), - [anon_sym_LT_LT] = ACTIONS(3790), - [anon_sym_LT_LT_DASH] = ACTIONS(3788), - [anon_sym_LT_LT_LT] = ACTIONS(3788), - [anon_sym_BQUOTE] = ACTIONS(3788), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(3788), - [anon_sym_AMP] = ACTIONS(3790), + [anon_sym_LPAREN_LPAREN] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(149), + [anon_sym_declare] = ACTIONS(151), + [anon_sym_typeset] = ACTIONS(151), + [anon_sym_export] = ACTIONS(151), + [anon_sym_readonly] = ACTIONS(151), + [anon_sym_local] = ACTIONS(151), + [anon_sym_unset] = ACTIONS(153), + [anon_sym_unsetenv] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(159), }, [2374] = { - [sym_file_descriptor] = ACTIONS(3796), - [sym__concat] = ACTIONS(3796), - [ts_builtin_sym_end] = ACTIONS(3796), - [anon_sym_SEMI] = ACTIONS(3798), - [anon_sym_esac] = ACTIONS(3796), - [anon_sym_PIPE] = ACTIONS(3798), - [anon_sym_RPAREN] = ACTIONS(3796), - [anon_sym_SEMI_SEMI] = ACTIONS(3796), - [anon_sym_PIPE_AMP] = ACTIONS(3796), - [anon_sym_AMP_AMP] = ACTIONS(3796), - [anon_sym_PIPE_PIPE] = ACTIONS(3796), - [anon_sym_LT] = ACTIONS(3798), - [anon_sym_GT] = ACTIONS(3798), - [anon_sym_GT_GT] = ACTIONS(3796), - [anon_sym_AMP_GT] = ACTIONS(3798), - [anon_sym_AMP_GT_GT] = ACTIONS(3796), - [anon_sym_LT_AMP] = ACTIONS(3796), - [anon_sym_GT_AMP] = ACTIONS(3796), - [anon_sym_LT_LT] = ACTIONS(3798), - [anon_sym_LT_LT_DASH] = ACTIONS(3796), - [anon_sym_LT_LT_LT] = ACTIONS(3796), - [anon_sym_BQUOTE] = ACTIONS(3796), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(3796), - [anon_sym_AMP] = ACTIONS(3798), + [sym_concatenation] = STATE(2374), + [sym_string] = STATE(2183), + [sym_simple_expansion] = STATE(2183), + [sym_string_expansion] = STATE(2183), + [sym_expansion] = STATE(2183), + [sym_command_substitution] = STATE(2183), + [sym_process_substitution] = STATE(2183), + [aux_sym_unset_command_repeat1] = STATE(2374), + [anon_sym_SEMI] = ACTIONS(1683), + [anon_sym_esac] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1683), + [anon_sym_SEMI_SEMI] = ACTIONS(1681), + [anon_sym_PIPE_AMP] = ACTIONS(1681), + [anon_sym_AMP_AMP] = ACTIONS(1681), + [anon_sym_PIPE_PIPE] = ACTIONS(1681), + [sym__special_characters] = ACTIONS(5753), + [anon_sym_DQUOTE] = ACTIONS(5756), + [anon_sym_DOLLAR] = ACTIONS(5759), + [sym_raw_string] = ACTIONS(5762), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5765), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5768), + [anon_sym_BQUOTE] = ACTIONS(5771), + [anon_sym_LT_LPAREN] = ACTIONS(5774), + [anon_sym_GT_LPAREN] = ACTIONS(5774), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5777), + [sym_word] = ACTIONS(5780), + [anon_sym_LF] = ACTIONS(1681), + [anon_sym_AMP] = ACTIONS(1683), }, [2375] = { - [aux_sym_concatenation_repeat1] = STATE(1293), - [sym__concat] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(5827), - [sym_comment] = ACTIONS(53), + [sym__simple_heredoc_body] = ACTIONS(1763), + [sym__heredoc_body_beginning] = ACTIONS(1763), + [sym_file_descriptor] = ACTIONS(1763), + [sym__concat] = ACTIONS(1763), + [anon_sym_SEMI] = ACTIONS(1765), + [anon_sym_esac] = ACTIONS(1765), + [anon_sym_PIPE] = ACTIONS(1765), + [anon_sym_SEMI_SEMI] = ACTIONS(1763), + [anon_sym_PIPE_AMP] = ACTIONS(1763), + [anon_sym_AMP_AMP] = ACTIONS(1763), + [anon_sym_PIPE_PIPE] = ACTIONS(1763), + [anon_sym_EQ_TILDE] = ACTIONS(1765), + [anon_sym_EQ_EQ] = ACTIONS(1765), + [anon_sym_LT] = ACTIONS(1765), + [anon_sym_GT] = ACTIONS(1765), + [anon_sym_GT_GT] = ACTIONS(1763), + [anon_sym_AMP_GT] = ACTIONS(1765), + [anon_sym_AMP_GT_GT] = ACTIONS(1763), + [anon_sym_LT_AMP] = ACTIONS(1763), + [anon_sym_GT_AMP] = ACTIONS(1763), + [anon_sym_LT_LT] = ACTIONS(1765), + [anon_sym_LT_LT_DASH] = ACTIONS(1763), + [anon_sym_LT_LT_LT] = ACTIONS(1763), + [sym__special_characters] = ACTIONS(1763), + [anon_sym_DQUOTE] = ACTIONS(1763), + [anon_sym_DOLLAR] = ACTIONS(1765), + [sym_raw_string] = ACTIONS(1763), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1763), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1763), + [anon_sym_BQUOTE] = ACTIONS(1763), + [anon_sym_LT_LPAREN] = ACTIONS(1763), + [anon_sym_GT_LPAREN] = ACTIONS(1763), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1765), + [anon_sym_LF] = ACTIONS(1763), + [anon_sym_AMP] = ACTIONS(1765), }, [2376] = { - [aux_sym_concatenation_repeat1] = STATE(1293), - [sym__concat] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(5829), - [sym_comment] = ACTIONS(53), + [aux_sym_concatenation_repeat1] = STATE(2376), + [sym__simple_heredoc_body] = ACTIONS(1763), + [sym__heredoc_body_beginning] = ACTIONS(1763), + [sym_file_descriptor] = ACTIONS(1763), + [sym__concat] = ACTIONS(5783), + [anon_sym_SEMI] = ACTIONS(1765), + [anon_sym_esac] = ACTIONS(1765), + [anon_sym_PIPE] = ACTIONS(1765), + [anon_sym_SEMI_SEMI] = ACTIONS(1763), + [anon_sym_PIPE_AMP] = ACTIONS(1763), + [anon_sym_AMP_AMP] = ACTIONS(1763), + [anon_sym_PIPE_PIPE] = ACTIONS(1763), + [anon_sym_EQ_TILDE] = ACTIONS(1765), + [anon_sym_EQ_EQ] = ACTIONS(1765), + [anon_sym_LT] = ACTIONS(1765), + [anon_sym_GT] = ACTIONS(1765), + [anon_sym_GT_GT] = ACTIONS(1763), + [anon_sym_AMP_GT] = ACTIONS(1765), + [anon_sym_AMP_GT_GT] = ACTIONS(1763), + [anon_sym_LT_AMP] = ACTIONS(1763), + [anon_sym_GT_AMP] = ACTIONS(1763), + [anon_sym_LT_LT] = ACTIONS(1765), + [anon_sym_LT_LT_DASH] = ACTIONS(1763), + [anon_sym_LT_LT_LT] = ACTIONS(1763), + [sym__special_characters] = ACTIONS(1763), + [anon_sym_DQUOTE] = ACTIONS(1763), + [anon_sym_DOLLAR] = ACTIONS(1765), + [sym_raw_string] = ACTIONS(1763), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1763), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1763), + [anon_sym_BQUOTE] = ACTIONS(1763), + [anon_sym_LT_LPAREN] = ACTIONS(1763), + [anon_sym_GT_LPAREN] = ACTIONS(1763), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1765), + [anon_sym_LF] = ACTIONS(1763), + [anon_sym_AMP] = ACTIONS(1765), }, [2377] = { - [anon_sym_RBRACE] = ACTIONS(5829), - [sym_comment] = ACTIONS(53), + [sym__simple_heredoc_body] = ACTIONS(1770), + [sym__heredoc_body_beginning] = ACTIONS(1770), + [sym_file_descriptor] = ACTIONS(1770), + [sym__concat] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(1772), + [anon_sym_esac] = ACTIONS(1772), + [anon_sym_PIPE] = ACTIONS(1772), + [anon_sym_SEMI_SEMI] = ACTIONS(1770), + [anon_sym_PIPE_AMP] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_EQ_TILDE] = ACTIONS(1772), + [anon_sym_EQ_EQ] = ACTIONS(1772), + [anon_sym_LT] = ACTIONS(1772), + [anon_sym_GT] = ACTIONS(1772), + [anon_sym_GT_GT] = ACTIONS(1770), + [anon_sym_AMP_GT] = ACTIONS(1772), + [anon_sym_AMP_GT_GT] = ACTIONS(1770), + [anon_sym_LT_AMP] = ACTIONS(1770), + [anon_sym_GT_AMP] = ACTIONS(1770), + [anon_sym_LT_LT] = ACTIONS(1772), + [anon_sym_LT_LT_DASH] = ACTIONS(1770), + [anon_sym_LT_LT_LT] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(1770), + [anon_sym_DQUOTE] = ACTIONS(1770), + [anon_sym_DOLLAR] = ACTIONS(1772), + [sym_raw_string] = ACTIONS(1770), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1770), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1770), + [anon_sym_BQUOTE] = ACTIONS(1770), + [anon_sym_LT_LPAREN] = ACTIONS(1770), + [anon_sym_GT_LPAREN] = ACTIONS(1770), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1772), + [anon_sym_LF] = ACTIONS(1770), + [anon_sym_AMP] = ACTIONS(1772), }, [2378] = { - [sym_concatenation] = STATE(2552), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(2552), - [anon_sym_RBRACE] = ACTIONS(5831), - [anon_sym_EQ] = ACTIONS(5833), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(5835), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(5833), - [anon_sym_COLON_QMARK] = ACTIONS(5833), - [anon_sym_COLON_DASH] = ACTIONS(5833), - [anon_sym_PERCENT] = ACTIONS(5833), - [anon_sym_DASH] = ACTIONS(5833), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_DQUOTE] = ACTIONS(5786), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym__string_content] = ACTIONS(821), + [anon_sym_POUND] = ACTIONS(815), + [sym_comment] = ACTIONS(281), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(823), + [anon_sym_STAR] = ACTIONS(825), + [anon_sym_AT] = ACTIONS(825), + [anon_sym_QMARK] = ACTIONS(825), + [anon_sym_0] = ACTIONS(823), + [anon_sym__] = ACTIONS(823), }, [2379] = { - [sym_file_descriptor] = ACTIONS(3852), - [sym__concat] = ACTIONS(3852), - [ts_builtin_sym_end] = ACTIONS(3852), - [anon_sym_SEMI] = ACTIONS(3854), - [anon_sym_esac] = ACTIONS(3852), - [anon_sym_PIPE] = ACTIONS(3854), - [anon_sym_RPAREN] = ACTIONS(3852), - [anon_sym_SEMI_SEMI] = ACTIONS(3852), - [anon_sym_PIPE_AMP] = ACTIONS(3852), - [anon_sym_AMP_AMP] = ACTIONS(3852), - [anon_sym_PIPE_PIPE] = ACTIONS(3852), - [anon_sym_LT] = ACTIONS(3854), - [anon_sym_GT] = ACTIONS(3854), - [anon_sym_GT_GT] = ACTIONS(3852), - [anon_sym_AMP_GT] = ACTIONS(3854), - [anon_sym_AMP_GT_GT] = ACTIONS(3852), - [anon_sym_LT_AMP] = ACTIONS(3852), - [anon_sym_GT_AMP] = ACTIONS(3852), - [anon_sym_LT_LT] = ACTIONS(3854), - [anon_sym_LT_LT_DASH] = ACTIONS(3852), - [anon_sym_LT_LT_LT] = ACTIONS(3852), - [anon_sym_BQUOTE] = ACTIONS(3852), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(3852), - [anon_sym_AMP] = ACTIONS(3854), + [sym_concatenation] = STATE(2552), + [sym_string] = STATE(2551), + [sym_simple_expansion] = STATE(2551), + [sym_string_expansion] = STATE(2551), + [sym_expansion] = STATE(2551), + [sym_command_substitution] = STATE(2551), + [sym_process_substitution] = STATE(2551), + [anon_sym_RBRACE] = ACTIONS(5788), + [sym__special_characters] = ACTIONS(5790), + [anon_sym_DQUOTE] = ACTIONS(1841), + [anon_sym_DOLLAR] = ACTIONS(1843), + [sym_raw_string] = ACTIONS(5792), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1849), + [anon_sym_BQUOTE] = ACTIONS(1851), + [anon_sym_LT_LPAREN] = ACTIONS(1853), + [anon_sym_GT_LPAREN] = ACTIONS(1853), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(5792), }, [2380] = { - [sym_concatenation] = STATE(2553), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(2553), - [anon_sym_RBRACE] = ACTIONS(5829), - [anon_sym_EQ] = ACTIONS(5837), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(5839), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(5837), - [anon_sym_COLON_QMARK] = ACTIONS(5837), - [anon_sym_COLON_DASH] = ACTIONS(5837), - [anon_sym_PERCENT] = ACTIONS(5837), - [anon_sym_DASH] = ACTIONS(5837), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [anon_sym_LBRACK] = ACTIONS(857), + [anon_sym_EQ] = ACTIONS(5794), + [sym_comment] = ACTIONS(55), }, [2381] = { - [sym_file_descriptor] = ACTIONS(3893), - [sym__concat] = ACTIONS(3893), - [ts_builtin_sym_end] = ACTIONS(3893), - [anon_sym_SEMI] = ACTIONS(3895), - [anon_sym_esac] = ACTIONS(3893), - [anon_sym_PIPE] = ACTIONS(3895), - [anon_sym_RPAREN] = ACTIONS(3893), - [anon_sym_SEMI_SEMI] = ACTIONS(3893), - [anon_sym_PIPE_AMP] = ACTIONS(3893), - [anon_sym_AMP_AMP] = ACTIONS(3893), - [anon_sym_PIPE_PIPE] = ACTIONS(3893), - [anon_sym_LT] = ACTIONS(3895), - [anon_sym_GT] = ACTIONS(3895), - [anon_sym_GT_GT] = ACTIONS(3893), - [anon_sym_AMP_GT] = ACTIONS(3895), - [anon_sym_AMP_GT_GT] = ACTIONS(3893), - [anon_sym_LT_AMP] = ACTIONS(3893), - [anon_sym_GT_AMP] = ACTIONS(3893), - [anon_sym_LT_LT] = ACTIONS(3895), - [anon_sym_LT_LT_DASH] = ACTIONS(3893), - [anon_sym_LT_LT_LT] = ACTIONS(3893), - [anon_sym_BQUOTE] = ACTIONS(3893), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(3893), - [anon_sym_AMP] = ACTIONS(3895), + [sym_concatenation] = STATE(2556), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2556), + [anon_sym_RBRACE] = ACTIONS(5796), + [anon_sym_EQ] = ACTIONS(5798), + [anon_sym_DASH] = ACTIONS(5798), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(5800), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(5802), + [anon_sym_COLON] = ACTIONS(5798), + [anon_sym_COLON_QMARK] = ACTIONS(5798), + [anon_sym_COLON_DASH] = ACTIONS(5798), + [anon_sym_PERCENT] = ACTIONS(5798), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2382] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(5841), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_concatenation] = STATE(2558), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2558), + [anon_sym_RBRACE] = ACTIONS(5788), + [anon_sym_EQ] = ACTIONS(5804), + [anon_sym_DASH] = ACTIONS(5804), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(5806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(5808), + [anon_sym_COLON] = ACTIONS(5804), + [anon_sym_COLON_QMARK] = ACTIONS(5804), + [anon_sym_COLON_DASH] = ACTIONS(5804), + [anon_sym_PERCENT] = ACTIONS(5804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2383] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(5829), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym__simple_heredoc_body] = ACTIONS(1871), + [sym__heredoc_body_beginning] = ACTIONS(1871), + [sym_file_descriptor] = ACTIONS(1871), + [sym__concat] = ACTIONS(1871), + [anon_sym_SEMI] = ACTIONS(1873), + [anon_sym_esac] = ACTIONS(1873), + [anon_sym_PIPE] = ACTIONS(1873), + [anon_sym_SEMI_SEMI] = ACTIONS(1871), + [anon_sym_PIPE_AMP] = ACTIONS(1871), + [anon_sym_AMP_AMP] = ACTIONS(1871), + [anon_sym_PIPE_PIPE] = ACTIONS(1871), + [anon_sym_EQ_TILDE] = ACTIONS(1873), + [anon_sym_EQ_EQ] = ACTIONS(1873), + [anon_sym_LT] = ACTIONS(1873), + [anon_sym_GT] = ACTIONS(1873), + [anon_sym_GT_GT] = ACTIONS(1871), + [anon_sym_AMP_GT] = ACTIONS(1873), + [anon_sym_AMP_GT_GT] = ACTIONS(1871), + [anon_sym_LT_AMP] = ACTIONS(1871), + [anon_sym_GT_AMP] = ACTIONS(1871), + [anon_sym_LT_LT] = ACTIONS(1873), + [anon_sym_LT_LT_DASH] = ACTIONS(1871), + [anon_sym_LT_LT_LT] = ACTIONS(1871), + [sym__special_characters] = ACTIONS(1871), + [anon_sym_DQUOTE] = ACTIONS(1871), + [anon_sym_DOLLAR] = ACTIONS(1873), + [sym_raw_string] = ACTIONS(1871), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1871), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1871), + [anon_sym_BQUOTE] = ACTIONS(1871), + [anon_sym_LT_LPAREN] = ACTIONS(1871), + [anon_sym_GT_LPAREN] = ACTIONS(1871), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1873), + [anon_sym_LF] = ACTIONS(1871), + [anon_sym_AMP] = ACTIONS(1873), }, [2384] = { - [sym_file_descriptor] = ACTIONS(3915), - [sym__concat] = ACTIONS(3915), - [ts_builtin_sym_end] = ACTIONS(3915), - [anon_sym_SEMI] = ACTIONS(3917), - [anon_sym_esac] = ACTIONS(3915), - [anon_sym_PIPE] = ACTIONS(3917), - [anon_sym_RPAREN] = ACTIONS(3915), - [anon_sym_SEMI_SEMI] = ACTIONS(3915), - [anon_sym_PIPE_AMP] = ACTIONS(3915), - [anon_sym_AMP_AMP] = ACTIONS(3915), - [anon_sym_PIPE_PIPE] = ACTIONS(3915), - [anon_sym_LT] = ACTIONS(3917), - [anon_sym_GT] = ACTIONS(3917), - [anon_sym_GT_GT] = ACTIONS(3915), - [anon_sym_AMP_GT] = ACTIONS(3917), - [anon_sym_AMP_GT_GT] = ACTIONS(3915), - [anon_sym_LT_AMP] = ACTIONS(3915), - [anon_sym_GT_AMP] = ACTIONS(3915), - [anon_sym_LT_LT] = ACTIONS(3917), - [anon_sym_LT_LT_DASH] = ACTIONS(3915), - [anon_sym_LT_LT_LT] = ACTIONS(3915), - [anon_sym_BQUOTE] = ACTIONS(3915), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(3915), - [anon_sym_AMP] = ACTIONS(3917), + [sym_concatenation] = STATE(2561), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2561), + [sym_regex] = ACTIONS(5810), + [anon_sym_RBRACE] = ACTIONS(5812), + [anon_sym_EQ] = ACTIONS(5814), + [anon_sym_DASH] = ACTIONS(5814), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(5816), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(5814), + [anon_sym_COLON_QMARK] = ACTIONS(5814), + [anon_sym_COLON_DASH] = ACTIONS(5814), + [anon_sym_PERCENT] = ACTIONS(5814), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2385] = { - [sym_file_descriptor] = ACTIONS(3939), - [sym__concat] = ACTIONS(3939), - [ts_builtin_sym_end] = ACTIONS(3939), - [anon_sym_SEMI] = ACTIONS(3941), - [anon_sym_esac] = ACTIONS(3939), - [anon_sym_PIPE] = ACTIONS(3941), - [anon_sym_RPAREN] = ACTIONS(3939), - [anon_sym_SEMI_SEMI] = ACTIONS(3939), - [anon_sym_PIPE_AMP] = ACTIONS(3939), - [anon_sym_AMP_AMP] = ACTIONS(3939), - [anon_sym_PIPE_PIPE] = ACTIONS(3939), - [anon_sym_LT] = ACTIONS(3941), - [anon_sym_GT] = ACTIONS(3941), - [anon_sym_GT_GT] = ACTIONS(3939), - [anon_sym_AMP_GT] = ACTIONS(3941), - [anon_sym_AMP_GT_GT] = ACTIONS(3939), - [anon_sym_LT_AMP] = ACTIONS(3939), - [anon_sym_GT_AMP] = ACTIONS(3939), - [anon_sym_LT_LT] = ACTIONS(3941), - [anon_sym_LT_LT_DASH] = ACTIONS(3939), - [anon_sym_LT_LT_LT] = ACTIONS(3939), - [anon_sym_BQUOTE] = ACTIONS(3939), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(3939), - [anon_sym_AMP] = ACTIONS(3941), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(5812), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2386] = { - [sym__concat] = ACTIONS(4568), - [anon_sym_RBRACE] = ACTIONS(4568), - [sym_comment] = ACTIONS(53), + [sym__simple_heredoc_body] = ACTIONS(1919), + [sym__heredoc_body_beginning] = ACTIONS(1919), + [sym_file_descriptor] = ACTIONS(1919), + [sym__concat] = ACTIONS(1919), + [anon_sym_SEMI] = ACTIONS(1921), + [anon_sym_esac] = ACTIONS(1921), + [anon_sym_PIPE] = ACTIONS(1921), + [anon_sym_SEMI_SEMI] = ACTIONS(1919), + [anon_sym_PIPE_AMP] = ACTIONS(1919), + [anon_sym_AMP_AMP] = ACTIONS(1919), + [anon_sym_PIPE_PIPE] = ACTIONS(1919), + [anon_sym_EQ_TILDE] = ACTIONS(1921), + [anon_sym_EQ_EQ] = ACTIONS(1921), + [anon_sym_LT] = ACTIONS(1921), + [anon_sym_GT] = ACTIONS(1921), + [anon_sym_GT_GT] = ACTIONS(1919), + [anon_sym_AMP_GT] = ACTIONS(1921), + [anon_sym_AMP_GT_GT] = ACTIONS(1919), + [anon_sym_LT_AMP] = ACTIONS(1919), + [anon_sym_GT_AMP] = ACTIONS(1919), + [anon_sym_LT_LT] = ACTIONS(1921), + [anon_sym_LT_LT_DASH] = ACTIONS(1919), + [anon_sym_LT_LT_LT] = ACTIONS(1919), + [sym__special_characters] = ACTIONS(1919), + [anon_sym_DQUOTE] = ACTIONS(1919), + [anon_sym_DOLLAR] = ACTIONS(1921), + [sym_raw_string] = ACTIONS(1919), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1919), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1919), + [anon_sym_BQUOTE] = ACTIONS(1919), + [anon_sym_LT_LPAREN] = ACTIONS(1919), + [anon_sym_GT_LPAREN] = ACTIONS(1919), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1921), + [anon_sym_LF] = ACTIONS(1919), + [anon_sym_AMP] = ACTIONS(1921), }, [2387] = { - [sym__concat] = ACTIONS(4572), - [anon_sym_RBRACE] = ACTIONS(4572), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(2558), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2558), + [sym_regex] = ACTIONS(5818), + [anon_sym_RBRACE] = ACTIONS(5788), + [anon_sym_EQ] = ACTIONS(5804), + [anon_sym_DASH] = ACTIONS(5804), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(5806), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(5804), + [anon_sym_COLON_QMARK] = ACTIONS(5804), + [anon_sym_COLON_DASH] = ACTIONS(5804), + [anon_sym_PERCENT] = ACTIONS(5804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2388] = { - [sym__concat] = ACTIONS(4576), - [anon_sym_RBRACE] = ACTIONS(4576), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(5788), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2389] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(5843), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(5820), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), }, [2390] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(5845), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym__simple_heredoc_body] = ACTIONS(1927), + [sym__heredoc_body_beginning] = ACTIONS(1927), + [sym_file_descriptor] = ACTIONS(1927), + [sym__concat] = ACTIONS(1927), + [anon_sym_SEMI] = ACTIONS(1929), + [anon_sym_esac] = ACTIONS(1929), + [anon_sym_PIPE] = ACTIONS(1929), + [anon_sym_SEMI_SEMI] = ACTIONS(1927), + [anon_sym_PIPE_AMP] = ACTIONS(1927), + [anon_sym_AMP_AMP] = ACTIONS(1927), + [anon_sym_PIPE_PIPE] = ACTIONS(1927), + [anon_sym_EQ_TILDE] = ACTIONS(1929), + [anon_sym_EQ_EQ] = ACTIONS(1929), + [anon_sym_LT] = ACTIONS(1929), + [anon_sym_GT] = ACTIONS(1929), + [anon_sym_GT_GT] = ACTIONS(1927), + [anon_sym_AMP_GT] = ACTIONS(1929), + [anon_sym_AMP_GT_GT] = ACTIONS(1927), + [anon_sym_LT_AMP] = ACTIONS(1927), + [anon_sym_GT_AMP] = ACTIONS(1927), + [anon_sym_LT_LT] = ACTIONS(1929), + [anon_sym_LT_LT_DASH] = ACTIONS(1927), + [anon_sym_LT_LT_LT] = ACTIONS(1927), + [sym__special_characters] = ACTIONS(1927), + [anon_sym_DQUOTE] = ACTIONS(1927), + [anon_sym_DOLLAR] = ACTIONS(1929), + [sym_raw_string] = ACTIONS(1927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1927), + [anon_sym_BQUOTE] = ACTIONS(1927), + [anon_sym_LT_LPAREN] = ACTIONS(1927), + [anon_sym_GT_LPAREN] = ACTIONS(1927), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1929), + [anon_sym_LF] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1929), }, [2391] = { - [sym__concat] = ACTIONS(4608), - [anon_sym_RBRACE] = ACTIONS(4608), - [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(5822), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(5820), + [anon_sym_SEMI_SEMI] = ACTIONS(5824), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(5824), + [anon_sym_AMP] = ACTIONS(5822), }, [2392] = { - [sym__concat] = ACTIONS(5069), - [anon_sym_RBRACE] = ACTIONS(5069), - [anon_sym_EQ] = ACTIONS(5071), - [sym__special_characters] = ACTIONS(5071), - [anon_sym_DQUOTE] = ACTIONS(5069), - [anon_sym_DOLLAR] = ACTIONS(5071), - [sym_raw_string] = ACTIONS(5069), - [anon_sym_POUND] = ACTIONS(5069), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5069), - [anon_sym_COLON] = ACTIONS(5071), - [anon_sym_COLON_QMARK] = ACTIONS(5071), - [anon_sym_COLON_DASH] = ACTIONS(5071), - [anon_sym_PERCENT] = ACTIONS(5071), - [anon_sym_DASH] = ACTIONS(5071), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5069), - [anon_sym_BQUOTE] = ACTIONS(5069), - [anon_sym_LT_LPAREN] = ACTIONS(5069), - [anon_sym_GT_LPAREN] = ACTIONS(5069), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(5071), + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(5822), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(5820), + [anon_sym_SEMI_SEMI] = ACTIONS(5824), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(5824), + [anon_sym_AMP] = ACTIONS(5822), }, [2393] = { - [sym__concat] = ACTIONS(5073), - [anon_sym_RBRACE] = ACTIONS(5073), - [anon_sym_EQ] = ACTIONS(5075), - [sym__special_characters] = ACTIONS(5075), - [anon_sym_DQUOTE] = ACTIONS(5073), - [anon_sym_DOLLAR] = ACTIONS(5075), - [sym_raw_string] = ACTIONS(5073), - [anon_sym_POUND] = ACTIONS(5073), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5073), - [anon_sym_COLON] = ACTIONS(5075), - [anon_sym_COLON_QMARK] = ACTIONS(5075), - [anon_sym_COLON_DASH] = ACTIONS(5075), - [anon_sym_PERCENT] = ACTIONS(5075), - [anon_sym_DASH] = ACTIONS(5075), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5073), - [anon_sym_BQUOTE] = ACTIONS(5073), - [anon_sym_LT_LPAREN] = ACTIONS(5073), - [anon_sym_GT_LPAREN] = ACTIONS(5073), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(5075), + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(5820), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), }, [2394] = { - [sym__heredoc_body_middle] = ACTIONS(5069), - [sym__heredoc_body_end] = ACTIONS(5069), - [anon_sym_DOLLAR] = ACTIONS(5071), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5069), - [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(5826), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_SEMI_SEMI] = ACTIONS(5828), + [anon_sym_PIPE_AMP] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_BQUOTE] = ACTIONS(5820), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(5828), + [anon_sym_AMP] = ACTIONS(5826), }, [2395] = { - [sym__heredoc_body_middle] = ACTIONS(5073), - [sym__heredoc_body_end] = ACTIONS(5073), - [anon_sym_DOLLAR] = ACTIONS(5075), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5073), - [sym_comment] = ACTIONS(53), + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(5826), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_SEMI_SEMI] = ACTIONS(5828), + [anon_sym_PIPE_AMP] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(5820), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(5828), + [anon_sym_AMP] = ACTIONS(5826), }, [2396] = { - [sym__concat] = ACTIONS(5069), - [anon_sym_RPAREN] = ACTIONS(5069), - [sym__special_characters] = ACTIONS(5069), - [anon_sym_DQUOTE] = ACTIONS(5069), - [anon_sym_DOLLAR] = ACTIONS(5071), - [sym_raw_string] = ACTIONS(5069), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5069), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5069), - [anon_sym_BQUOTE] = ACTIONS(5069), - [anon_sym_LT_LPAREN] = ACTIONS(5069), - [anon_sym_GT_LPAREN] = ACTIONS(5069), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5069), + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(5830), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), }, [2397] = { - [sym__concat] = ACTIONS(5073), - [anon_sym_RPAREN] = ACTIONS(5073), - [sym__special_characters] = ACTIONS(5073), - [anon_sym_DQUOTE] = ACTIONS(5073), - [anon_sym_DOLLAR] = ACTIONS(5075), - [sym_raw_string] = ACTIONS(5073), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5073), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5073), - [anon_sym_BQUOTE] = ACTIONS(5073), - [anon_sym_LT_LPAREN] = ACTIONS(5073), - [anon_sym_GT_LPAREN] = ACTIONS(5073), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5073), + [sym__simple_heredoc_body] = ACTIONS(1959), + [sym__heredoc_body_beginning] = ACTIONS(1959), + [sym_file_descriptor] = ACTIONS(1959), + [sym__concat] = ACTIONS(1959), + [anon_sym_SEMI] = ACTIONS(1961), + [anon_sym_esac] = ACTIONS(1961), + [anon_sym_PIPE] = ACTIONS(1961), + [anon_sym_SEMI_SEMI] = ACTIONS(1959), + [anon_sym_PIPE_AMP] = ACTIONS(1959), + [anon_sym_AMP_AMP] = ACTIONS(1959), + [anon_sym_PIPE_PIPE] = ACTIONS(1959), + [anon_sym_EQ_TILDE] = ACTIONS(1961), + [anon_sym_EQ_EQ] = ACTIONS(1961), + [anon_sym_LT] = ACTIONS(1961), + [anon_sym_GT] = ACTIONS(1961), + [anon_sym_GT_GT] = ACTIONS(1959), + [anon_sym_AMP_GT] = ACTIONS(1961), + [anon_sym_AMP_GT_GT] = ACTIONS(1959), + [anon_sym_LT_AMP] = ACTIONS(1959), + [anon_sym_GT_AMP] = ACTIONS(1959), + [anon_sym_LT_LT] = ACTIONS(1961), + [anon_sym_LT_LT_DASH] = ACTIONS(1959), + [anon_sym_LT_LT_LT] = ACTIONS(1959), + [sym__special_characters] = ACTIONS(1959), + [anon_sym_DQUOTE] = ACTIONS(1959), + [anon_sym_DOLLAR] = ACTIONS(1961), + [sym_raw_string] = ACTIONS(1959), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1959), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1959), + [anon_sym_BQUOTE] = ACTIONS(1959), + [anon_sym_LT_LPAREN] = ACTIONS(1959), + [anon_sym_GT_LPAREN] = ACTIONS(1959), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1961), + [anon_sym_LF] = ACTIONS(1959), + [anon_sym_AMP] = ACTIONS(1961), }, [2398] = { - [sym__concat] = ACTIONS(4568), - [anon_sym_RPAREN_RPAREN] = ACTIONS(4568), - [anon_sym_AMP_AMP] = ACTIONS(4568), - [anon_sym_PIPE_PIPE] = ACTIONS(4568), - [anon_sym_EQ_TILDE] = ACTIONS(4568), - [anon_sym_EQ_EQ] = ACTIONS(4568), - [anon_sym_EQ] = ACTIONS(4570), - [anon_sym_LT] = ACTIONS(4568), - [anon_sym_GT] = ACTIONS(4568), - [anon_sym_BANG_EQ] = ACTIONS(4568), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4568), + [anon_sym_SEMI] = ACTIONS(5832), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(5830), + [anon_sym_SEMI_SEMI] = ACTIONS(5834), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(5834), + [anon_sym_AMP] = ACTIONS(5832), }, [2399] = { - [sym__concat] = ACTIONS(4572), - [anon_sym_RPAREN_RPAREN] = ACTIONS(4572), - [anon_sym_AMP_AMP] = ACTIONS(4572), - [anon_sym_PIPE_PIPE] = ACTIONS(4572), - [anon_sym_EQ_TILDE] = ACTIONS(4572), - [anon_sym_EQ_EQ] = ACTIONS(4572), - [anon_sym_EQ] = ACTIONS(4574), - [anon_sym_LT] = ACTIONS(4572), - [anon_sym_GT] = ACTIONS(4572), - [anon_sym_BANG_EQ] = ACTIONS(4572), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4572), + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(5832), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(5830), + [anon_sym_SEMI_SEMI] = ACTIONS(5834), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(5834), + [anon_sym_AMP] = ACTIONS(5832), }, [2400] = { - [sym__concat] = ACTIONS(4576), - [anon_sym_RPAREN_RPAREN] = ACTIONS(4576), - [anon_sym_AMP_AMP] = ACTIONS(4576), - [anon_sym_PIPE_PIPE] = ACTIONS(4576), - [anon_sym_EQ_TILDE] = ACTIONS(4576), - [anon_sym_EQ_EQ] = ACTIONS(4576), - [anon_sym_EQ] = ACTIONS(4578), - [anon_sym_LT] = ACTIONS(4576), - [anon_sym_GT] = ACTIONS(4576), - [anon_sym_BANG_EQ] = ACTIONS(4576), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4576), + [sym_compound_statement] = STATE(2568), + [anon_sym_LBRACE] = ACTIONS(595), + [sym_comment] = ACTIONS(55), }, [2401] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(5847), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(1969), + [anon_sym_esac] = ACTIONS(1969), + [anon_sym_PIPE] = ACTIONS(1969), + [anon_sym_SEMI_SEMI] = ACTIONS(1967), + [anon_sym_PIPE_AMP] = ACTIONS(1967), + [anon_sym_AMP_AMP] = ACTIONS(1967), + [anon_sym_PIPE_PIPE] = ACTIONS(1967), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(1967), + [anon_sym_AMP] = ACTIONS(1969), }, [2402] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(5849), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [anon_sym_SEMI] = ACTIONS(1973), + [anon_sym_esac] = ACTIONS(1971), + [anon_sym_PIPE] = ACTIONS(5081), + [anon_sym_SEMI_SEMI] = ACTIONS(1971), + [anon_sym_PIPE_AMP] = ACTIONS(5085), + [anon_sym_AMP_AMP] = ACTIONS(1971), + [anon_sym_PIPE_PIPE] = ACTIONS(1971), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1971), + [anon_sym_AMP] = ACTIONS(1973), }, [2403] = { - [sym__concat] = ACTIONS(4608), - [anon_sym_RPAREN_RPAREN] = ACTIONS(4608), - [anon_sym_AMP_AMP] = ACTIONS(4608), - [anon_sym_PIPE_PIPE] = ACTIONS(4608), - [anon_sym_EQ_TILDE] = ACTIONS(4608), - [anon_sym_EQ_EQ] = ACTIONS(4608), - [anon_sym_EQ] = ACTIONS(4610), - [anon_sym_LT] = ACTIONS(4608), - [anon_sym_GT] = ACTIONS(4608), - [anon_sym_BANG_EQ] = ACTIONS(4608), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4608), + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(1973), + [anon_sym_esac] = ACTIONS(1973), + [anon_sym_PIPE] = ACTIONS(5081), + [anon_sym_SEMI_SEMI] = ACTIONS(1971), + [anon_sym_PIPE_AMP] = ACTIONS(5085), + [anon_sym_AMP_AMP] = ACTIONS(1971), + [anon_sym_PIPE_PIPE] = ACTIONS(1971), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(1971), + [anon_sym_AMP] = ACTIONS(1973), }, [2404] = { - [ts_builtin_sym_end] = ACTIONS(5851), - [anon_sym_SEMI] = ACTIONS(5853), - [anon_sym_esac] = ACTIONS(5851), - [anon_sym_PIPE] = ACTIONS(5853), - [anon_sym_RPAREN] = ACTIONS(5851), - [anon_sym_SEMI_SEMI] = ACTIONS(5851), - [anon_sym_PIPE_AMP] = ACTIONS(5851), - [anon_sym_AMP_AMP] = ACTIONS(5851), - [anon_sym_PIPE_PIPE] = ACTIONS(5851), - [anon_sym_BQUOTE] = ACTIONS(5851), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(5851), - [anon_sym_AMP] = ACTIONS(5853), + [sym_concatenation] = STATE(994), + [sym_string] = STATE(2570), + [sym_simple_expansion] = STATE(2570), + [sym_string_expansion] = STATE(2570), + [sym_expansion] = STATE(2570), + [sym_command_substitution] = STATE(2570), + [sym_process_substitution] = STATE(2570), + [sym__special_characters] = ACTIONS(5836), + [anon_sym_DQUOTE] = ACTIONS(5470), + [anon_sym_DOLLAR] = ACTIONS(5472), + [sym_raw_string] = ACTIONS(5838), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5476), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5478), + [anon_sym_BQUOTE] = ACTIONS(5480), + [anon_sym_LT_LPAREN] = ACTIONS(5482), + [anon_sym_GT_LPAREN] = ACTIONS(5482), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(5838), }, [2405] = { - [sym__concat] = ACTIONS(5069), - [anon_sym_SEMI] = ACTIONS(5071), - [anon_sym_SEMI_SEMI] = ACTIONS(5069), - [sym__special_characters] = ACTIONS(5069), - [anon_sym_DQUOTE] = ACTIONS(5069), - [anon_sym_DOLLAR] = ACTIONS(5071), - [sym_raw_string] = ACTIONS(5069), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5069), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5069), - [anon_sym_BQUOTE] = ACTIONS(5069), - [anon_sym_LT_LPAREN] = ACTIONS(5069), - [anon_sym_GT_LPAREN] = ACTIONS(5069), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5071), - [anon_sym_LF] = ACTIONS(5069), - [anon_sym_AMP] = ACTIONS(5069), + [sym__simple_heredoc_body] = ACTIONS(2003), + [sym__heredoc_body_beginning] = ACTIONS(2003), + [sym_file_descriptor] = ACTIONS(2003), + [anon_sym_SEMI] = ACTIONS(2005), + [anon_sym_esac] = ACTIONS(2005), + [anon_sym_PIPE] = ACTIONS(2005), + [anon_sym_SEMI_SEMI] = ACTIONS(2003), + [anon_sym_PIPE_AMP] = ACTIONS(2003), + [anon_sym_AMP_AMP] = ACTIONS(2003), + [anon_sym_PIPE_PIPE] = ACTIONS(2003), + [anon_sym_EQ_TILDE] = ACTIONS(2005), + [anon_sym_EQ_EQ] = ACTIONS(2005), + [anon_sym_LT] = ACTIONS(2005), + [anon_sym_GT] = ACTIONS(2005), + [anon_sym_GT_GT] = ACTIONS(2003), + [anon_sym_AMP_GT] = ACTIONS(2005), + [anon_sym_AMP_GT_GT] = ACTIONS(2003), + [anon_sym_LT_AMP] = ACTIONS(2003), + [anon_sym_GT_AMP] = ACTIONS(2003), + [anon_sym_LT_LT] = ACTIONS(2005), + [anon_sym_LT_LT_DASH] = ACTIONS(2003), + [anon_sym_LT_LT_LT] = ACTIONS(2003), + [sym__special_characters] = ACTIONS(2003), + [anon_sym_DQUOTE] = ACTIONS(2003), + [anon_sym_DOLLAR] = ACTIONS(2005), + [sym_raw_string] = ACTIONS(2003), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2003), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2003), + [anon_sym_BQUOTE] = ACTIONS(2003), + [anon_sym_LT_LPAREN] = ACTIONS(2003), + [anon_sym_GT_LPAREN] = ACTIONS(2003), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(2005), + [anon_sym_LF] = ACTIONS(2003), + [anon_sym_AMP] = ACTIONS(2005), }, [2406] = { - [sym__concat] = ACTIONS(5073), - [anon_sym_SEMI] = ACTIONS(5075), - [anon_sym_SEMI_SEMI] = ACTIONS(5073), - [sym__special_characters] = ACTIONS(5073), - [anon_sym_DQUOTE] = ACTIONS(5073), - [anon_sym_DOLLAR] = ACTIONS(5075), - [sym_raw_string] = ACTIONS(5073), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5073), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5073), - [anon_sym_BQUOTE] = ACTIONS(5073), - [anon_sym_LT_LPAREN] = ACTIONS(5073), - [anon_sym_GT_LPAREN] = ACTIONS(5073), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5075), - [anon_sym_LF] = ACTIONS(5073), - [anon_sym_AMP] = ACTIONS(5073), + [aux_sym_concatenation_repeat1] = STATE(2190), + [sym__simple_heredoc_body] = ACTIONS(2007), + [sym__heredoc_body_beginning] = ACTIONS(2007), + [sym_file_descriptor] = ACTIONS(2007), + [sym__concat] = ACTIONS(5051), + [anon_sym_SEMI] = ACTIONS(2009), + [anon_sym_esac] = ACTIONS(2009), + [anon_sym_PIPE] = ACTIONS(2009), + [anon_sym_SEMI_SEMI] = ACTIONS(2007), + [anon_sym_PIPE_AMP] = ACTIONS(2007), + [anon_sym_AMP_AMP] = ACTIONS(2007), + [anon_sym_PIPE_PIPE] = ACTIONS(2007), + [anon_sym_EQ_TILDE] = ACTIONS(2009), + [anon_sym_EQ_EQ] = ACTIONS(2009), + [anon_sym_LT] = ACTIONS(2009), + [anon_sym_GT] = ACTIONS(2009), + [anon_sym_GT_GT] = ACTIONS(2007), + [anon_sym_AMP_GT] = ACTIONS(2009), + [anon_sym_AMP_GT_GT] = ACTIONS(2007), + [anon_sym_LT_AMP] = ACTIONS(2007), + [anon_sym_GT_AMP] = ACTIONS(2007), + [anon_sym_LT_LT] = ACTIONS(2009), + [anon_sym_LT_LT_DASH] = ACTIONS(2007), + [anon_sym_LT_LT_LT] = ACTIONS(2007), + [sym__special_characters] = ACTIONS(2007), + [anon_sym_DQUOTE] = ACTIONS(2007), + [anon_sym_DOLLAR] = ACTIONS(2009), + [sym_raw_string] = ACTIONS(2007), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2007), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2007), + [anon_sym_BQUOTE] = ACTIONS(2007), + [anon_sym_LT_LPAREN] = ACTIONS(2007), + [anon_sym_GT_LPAREN] = ACTIONS(2007), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(2009), + [anon_sym_LF] = ACTIONS(2007), + [anon_sym_AMP] = ACTIONS(2009), }, [2407] = { - [sym_file_descriptor] = ACTIONS(2056), - [sym_variable_name] = ACTIONS(2056), - [anon_sym_SEMI] = ACTIONS(2058), - [anon_sym_esac] = ACTIONS(2058), - [anon_sym_PIPE] = ACTIONS(2058), - [anon_sym_SEMI_SEMI] = ACTIONS(2056), - [anon_sym_PIPE_AMP] = ACTIONS(2056), - [anon_sym_AMP_AMP] = ACTIONS(2056), - [anon_sym_PIPE_PIPE] = ACTIONS(2056), - [anon_sym_LT] = ACTIONS(2058), - [anon_sym_GT] = ACTIONS(2058), - [anon_sym_GT_GT] = ACTIONS(2056), - [anon_sym_AMP_GT] = ACTIONS(2058), - [anon_sym_AMP_GT_GT] = ACTIONS(2056), - [anon_sym_LT_AMP] = ACTIONS(2056), - [anon_sym_GT_AMP] = ACTIONS(2056), - [sym__special_characters] = ACTIONS(2056), - [anon_sym_DQUOTE] = ACTIONS(2056), - [anon_sym_DOLLAR] = ACTIONS(2058), - [sym_raw_string] = ACTIONS(2056), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2056), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2056), - [anon_sym_BQUOTE] = ACTIONS(2056), - [anon_sym_LT_LPAREN] = ACTIONS(2056), - [anon_sym_GT_LPAREN] = ACTIONS(2056), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2058), - [anon_sym_LF] = ACTIONS(2056), - [anon_sym_AMP] = ACTIONS(2058), + [aux_sym_concatenation_repeat1] = STATE(2190), + [sym__simple_heredoc_body] = ACTIONS(2003), + [sym__heredoc_body_beginning] = ACTIONS(2003), + [sym_file_descriptor] = ACTIONS(2003), + [sym__concat] = ACTIONS(5051), + [anon_sym_SEMI] = ACTIONS(2005), + [anon_sym_esac] = ACTIONS(2005), + [anon_sym_PIPE] = ACTIONS(2005), + [anon_sym_SEMI_SEMI] = ACTIONS(2003), + [anon_sym_PIPE_AMP] = ACTIONS(2003), + [anon_sym_AMP_AMP] = ACTIONS(2003), + [anon_sym_PIPE_PIPE] = ACTIONS(2003), + [anon_sym_EQ_TILDE] = ACTIONS(2005), + [anon_sym_EQ_EQ] = ACTIONS(2005), + [anon_sym_LT] = ACTIONS(2005), + [anon_sym_GT] = ACTIONS(2005), + [anon_sym_GT_GT] = ACTIONS(2003), + [anon_sym_AMP_GT] = ACTIONS(2005), + [anon_sym_AMP_GT_GT] = ACTIONS(2003), + [anon_sym_LT_AMP] = ACTIONS(2003), + [anon_sym_GT_AMP] = ACTIONS(2003), + [anon_sym_LT_LT] = ACTIONS(2005), + [anon_sym_LT_LT_DASH] = ACTIONS(2003), + [anon_sym_LT_LT_LT] = ACTIONS(2003), + [sym__special_characters] = ACTIONS(2003), + [anon_sym_DQUOTE] = ACTIONS(2003), + [anon_sym_DOLLAR] = ACTIONS(2005), + [sym_raw_string] = ACTIONS(2003), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2003), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2003), + [anon_sym_BQUOTE] = ACTIONS(2003), + [anon_sym_LT_LPAREN] = ACTIONS(2003), + [anon_sym_GT_LPAREN] = ACTIONS(2003), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(2005), + [anon_sym_LF] = ACTIONS(2003), + [anon_sym_AMP] = ACTIONS(2005), }, [2408] = { - [sym_concatenation] = STATE(977), - [sym_string] = STATE(534), - [sym_simple_expansion] = STATE(534), - [sym_string_expansion] = STATE(534), - [sym_expansion] = STATE(534), - [sym_command_substitution] = STATE(534), - [sym_process_substitution] = STATE(534), - [aux_sym_for_statement_repeat1] = STATE(977), - [anon_sym_RPAREN] = ACTIONS(5855), - [sym__special_characters] = ACTIONS(1077), - [anon_sym_DQUOTE] = ACTIONS(1079), - [anon_sym_DOLLAR] = ACTIONS(1081), - [sym_raw_string] = ACTIONS(1083), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1085), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1087), - [anon_sym_BQUOTE] = ACTIONS(1089), - [anon_sym_LT_LPAREN] = ACTIONS(1091), - [anon_sym_GT_LPAREN] = ACTIONS(1091), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1083), + [aux_sym_concatenation_repeat1] = STATE(2572), + [sym__simple_heredoc_body] = ACTIONS(773), + [sym__heredoc_body_beginning] = ACTIONS(773), + [sym_file_descriptor] = ACTIONS(773), + [sym__concat] = ACTIONS(5840), + [anon_sym_SEMI] = ACTIONS(777), + [anon_sym_esac] = ACTIONS(773), + [anon_sym_PIPE] = ACTIONS(777), + [anon_sym_SEMI_SEMI] = ACTIONS(773), + [anon_sym_PIPE_AMP] = ACTIONS(773), + [anon_sym_AMP_AMP] = ACTIONS(773), + [anon_sym_PIPE_PIPE] = ACTIONS(773), + [anon_sym_LT] = ACTIONS(777), + [anon_sym_GT] = ACTIONS(777), + [anon_sym_GT_GT] = ACTIONS(773), + [anon_sym_AMP_GT] = ACTIONS(777), + [anon_sym_AMP_GT_GT] = ACTIONS(773), + [anon_sym_LT_AMP] = ACTIONS(773), + [anon_sym_GT_AMP] = ACTIONS(773), + [anon_sym_LT_LT] = ACTIONS(777), + [anon_sym_LT_LT_DASH] = ACTIONS(773), + [anon_sym_LT_LT_LT] = ACTIONS(773), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(773), + [anon_sym_AMP] = ACTIONS(777), }, [2409] = { - [sym_string] = STATE(2560), - [sym_simple_expansion] = STATE(2560), - [sym_string_expansion] = STATE(2560), - [sym_expansion] = STATE(2560), - [sym_command_substitution] = STATE(2560), - [sym_process_substitution] = STATE(2560), - [sym__special_characters] = ACTIONS(5857), - [anon_sym_DQUOTE] = ACTIONS(5189), - [anon_sym_DOLLAR] = ACTIONS(5191), - [sym_raw_string] = ACTIONS(5857), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5195), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5197), - [anon_sym_BQUOTE] = ACTIONS(5199), - [anon_sym_LT_LPAREN] = ACTIONS(5201), - [anon_sym_GT_LPAREN] = ACTIONS(5201), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5857), + [sym_simple_expansion] = STATE(148), + [sym_expansion] = STATE(148), + [sym_command_substitution] = STATE(148), + [aux_sym_string_repeat1] = STATE(2575), + [anon_sym_DQUOTE] = ACTIONS(5842), + [anon_sym_DOLLAR] = ACTIONS(5844), + [sym__string_content] = ACTIONS(273), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(277), + [anon_sym_BQUOTE] = ACTIONS(279), + [sym_comment] = ACTIONS(281), }, [2410] = { - [aux_sym_concatenation_repeat1] = STATE(2561), - [sym_file_descriptor] = ACTIONS(765), - [sym__concat] = ACTIONS(5473), - [sym_variable_name] = ACTIONS(765), - [anon_sym_SEMI] = ACTIONS(767), - [anon_sym_esac] = ACTIONS(767), - [anon_sym_PIPE] = ACTIONS(767), - [anon_sym_SEMI_SEMI] = ACTIONS(765), - [anon_sym_PIPE_AMP] = ACTIONS(765), - [anon_sym_AMP_AMP] = ACTIONS(765), - [anon_sym_PIPE_PIPE] = ACTIONS(765), - [anon_sym_LT] = ACTIONS(767), - [anon_sym_GT] = ACTIONS(767), - [anon_sym_GT_GT] = ACTIONS(765), - [anon_sym_AMP_GT] = ACTIONS(767), - [anon_sym_AMP_GT_GT] = ACTIONS(765), - [anon_sym_LT_AMP] = ACTIONS(765), - [anon_sym_GT_AMP] = ACTIONS(765), - [sym__special_characters] = ACTIONS(765), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_DOLLAR] = ACTIONS(767), - [sym_raw_string] = ACTIONS(765), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(765), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(765), - [anon_sym_BQUOTE] = ACTIONS(765), - [anon_sym_LT_LPAREN] = ACTIONS(765), - [anon_sym_GT_LPAREN] = ACTIONS(765), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(767), - [anon_sym_LF] = ACTIONS(765), - [anon_sym_AMP] = ACTIONS(767), + [sym_string] = STATE(2577), + [anon_sym_DASH] = ACTIONS(5846), + [anon_sym_DQUOTE] = ACTIONS(5470), + [anon_sym_DOLLAR] = ACTIONS(5846), + [sym_raw_string] = ACTIONS(5848), + [anon_sym_POUND] = ACTIONS(5846), + [sym_comment] = ACTIONS(281), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5850), + [anon_sym_STAR] = ACTIONS(5852), + [anon_sym_AT] = ACTIONS(5852), + [anon_sym_QMARK] = ACTIONS(5852), + [anon_sym_0] = ACTIONS(5850), + [anon_sym__] = ACTIONS(5850), }, [2411] = { - [sym_file_descriptor] = ACTIONS(769), - [sym__concat] = ACTIONS(769), - [sym_variable_name] = ACTIONS(769), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_esac] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_SEMI_SEMI] = ACTIONS(769), - [anon_sym_PIPE_AMP] = ACTIONS(769), - [anon_sym_AMP_AMP] = ACTIONS(769), - [anon_sym_PIPE_PIPE] = ACTIONS(769), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_GT] = ACTIONS(769), - [anon_sym_AMP_GT] = ACTIONS(771), - [anon_sym_AMP_GT_GT] = ACTIONS(769), - [anon_sym_LT_AMP] = ACTIONS(769), - [anon_sym_GT_AMP] = ACTIONS(769), - [sym__special_characters] = ACTIONS(769), - [anon_sym_DQUOTE] = ACTIONS(769), - [anon_sym_DOLLAR] = ACTIONS(771), - [sym_raw_string] = ACTIONS(769), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(769), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(769), - [anon_sym_BQUOTE] = ACTIONS(769), - [anon_sym_LT_LPAREN] = ACTIONS(769), - [anon_sym_GT_LPAREN] = ACTIONS(769), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(771), - [anon_sym_LF] = ACTIONS(769), - [anon_sym_AMP] = ACTIONS(771), + [aux_sym_concatenation_repeat1] = STATE(2572), + [sym__simple_heredoc_body] = ACTIONS(791), + [sym__heredoc_body_beginning] = ACTIONS(791), + [sym_file_descriptor] = ACTIONS(791), + [sym__concat] = ACTIONS(5840), + [anon_sym_SEMI] = ACTIONS(793), + [anon_sym_esac] = ACTIONS(791), + [anon_sym_PIPE] = ACTIONS(793), + [anon_sym_SEMI_SEMI] = ACTIONS(791), + [anon_sym_PIPE_AMP] = ACTIONS(791), + [anon_sym_AMP_AMP] = ACTIONS(791), + [anon_sym_PIPE_PIPE] = ACTIONS(791), + [anon_sym_LT] = ACTIONS(793), + [anon_sym_GT] = ACTIONS(793), + [anon_sym_GT_GT] = ACTIONS(791), + [anon_sym_AMP_GT] = ACTIONS(793), + [anon_sym_AMP_GT_GT] = ACTIONS(791), + [anon_sym_LT_AMP] = ACTIONS(791), + [anon_sym_GT_AMP] = ACTIONS(791), + [anon_sym_LT_LT] = ACTIONS(793), + [anon_sym_LT_LT_DASH] = ACTIONS(791), + [anon_sym_LT_LT_LT] = ACTIONS(791), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(791), + [anon_sym_AMP] = ACTIONS(793), }, [2412] = { - [anon_sym_DQUOTE] = ACTIONS(5859), - [anon_sym_DOLLAR] = ACTIONS(775), - [sym__string_content] = ACTIONS(777), - [anon_sym_POUND] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(781), - [anon_sym_STAR] = ACTIONS(783), - [anon_sym_AT] = ACTIONS(783), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_0] = ACTIONS(781), - [anon_sym__] = ACTIONS(781), + [sym_subscript] = STATE(2582), + [sym_variable_name] = ACTIONS(5854), + [anon_sym_BANG] = ACTIONS(5856), + [anon_sym_DASH] = ACTIONS(5858), + [anon_sym_DOLLAR] = ACTIONS(5858), + [anon_sym_POUND] = ACTIONS(5856), + [sym_comment] = ACTIONS(281), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5860), + [anon_sym_STAR] = ACTIONS(5862), + [anon_sym_AT] = ACTIONS(5862), + [anon_sym_QMARK] = ACTIONS(5862), + [anon_sym_0] = ACTIONS(5860), + [anon_sym__] = ACTIONS(5860), }, [2413] = { - [sym_simple_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [sym_command_substitution] = STATE(141), - [aux_sym_string_repeat1] = STATE(450), - [anon_sym_DQUOTE] = ACTIONS(5859), - [anon_sym_DOLLAR] = ACTIONS(5861), - [sym__string_content] = ACTIONS(257), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(261), - [anon_sym_BQUOTE] = ACTIONS(263), - [sym_comment] = ACTIONS(265), + [sym__terminated_statement] = STATE(2585), + [sym_for_statement] = STATE(2583), + [sym_c_style_for_statement] = STATE(2583), + [sym_while_statement] = STATE(2583), + [sym_if_statement] = STATE(2583), + [sym_case_statement] = STATE(2583), + [sym_function_definition] = STATE(2583), + [sym_subshell] = STATE(2583), + [sym_pipeline] = STATE(2583), + [sym_list] = STATE(2583), + [sym_negated_command] = STATE(2583), + [sym_test_command] = STATE(2583), + [sym_declaration_command] = STATE(2583), + [sym_unset_command] = STATE(2583), + [sym_command] = STATE(2583), + [sym_command_name] = STATE(92), + [sym_variable_assignment] = STATE(2584), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(96), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), + [aux_sym__statements_repeat1] = STATE(2585), + [aux_sym_command_repeat1] = STATE(96), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(137), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(149), + [anon_sym_declare] = ACTIONS(151), + [anon_sym_typeset] = ACTIONS(151), + [anon_sym_export] = ACTIONS(151), + [anon_sym_readonly] = ACTIONS(151), + [anon_sym_local] = ACTIONS(151), + [anon_sym_unset] = ACTIONS(153), + [anon_sym_unsetenv] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(159), }, [2414] = { - [sym_file_descriptor] = ACTIONS(803), - [sym__concat] = ACTIONS(803), - [sym_variable_name] = ACTIONS(803), - [anon_sym_SEMI] = ACTIONS(805), - [anon_sym_esac] = ACTIONS(805), - [anon_sym_PIPE] = ACTIONS(805), - [anon_sym_SEMI_SEMI] = ACTIONS(803), - [anon_sym_PIPE_AMP] = ACTIONS(803), - [anon_sym_AMP_AMP] = ACTIONS(803), - [anon_sym_PIPE_PIPE] = ACTIONS(803), - [anon_sym_LT] = ACTIONS(805), - [anon_sym_GT] = ACTIONS(805), - [anon_sym_GT_GT] = ACTIONS(803), - [anon_sym_AMP_GT] = ACTIONS(805), - [anon_sym_AMP_GT_GT] = ACTIONS(803), - [anon_sym_LT_AMP] = ACTIONS(803), - [anon_sym_GT_AMP] = ACTIONS(803), - [sym__special_characters] = ACTIONS(803), - [anon_sym_DQUOTE] = ACTIONS(803), - [anon_sym_DOLLAR] = ACTIONS(805), - [sym_raw_string] = ACTIONS(803), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(803), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(803), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_LT_LPAREN] = ACTIONS(803), - [anon_sym_GT_LPAREN] = ACTIONS(803), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(805), - [anon_sym_LF] = ACTIONS(803), - [anon_sym_AMP] = ACTIONS(805), + [sym__terminated_statement] = STATE(2588), + [sym_for_statement] = STATE(2586), + [sym_c_style_for_statement] = STATE(2586), + [sym_while_statement] = STATE(2586), + [sym_if_statement] = STATE(2586), + [sym_case_statement] = STATE(2586), + [sym_function_definition] = STATE(2586), + [sym_subshell] = STATE(2586), + [sym_pipeline] = STATE(2586), + [sym_list] = STATE(2586), + [sym_negated_command] = STATE(2586), + [sym_test_command] = STATE(2586), + [sym_declaration_command] = STATE(2586), + [sym_unset_command] = STATE(2586), + [sym_command] = STATE(2586), + [sym_command_name] = STATE(173), + [sym_variable_assignment] = STATE(2587), + [sym_subscript] = STATE(66), + [sym_file_redirect] = STATE(176), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(60), + [sym_simple_expansion] = STATE(60), + [sym_string_expansion] = STATE(60), + [sym_expansion] = STATE(60), + [sym_command_substitution] = STATE(60), + [sym_process_substitution] = STATE(60), + [aux_sym__statements_repeat1] = STATE(2588), + [aux_sym_command_repeat1] = STATE(176), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(95), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(305), + [anon_sym_while] = ACTIONS(307), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(311), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(315), + [anon_sym_declare] = ACTIONS(317), + [anon_sym_typeset] = ACTIONS(317), + [anon_sym_export] = ACTIONS(317), + [anon_sym_readonly] = ACTIONS(317), + [anon_sym_local] = ACTIONS(317), + [anon_sym_unset] = ACTIONS(319), + [anon_sym_unsetenv] = ACTIONS(319), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(115), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(321), }, [2415] = { + [sym__terminated_statement] = STATE(2591), + [sym_for_statement] = STATE(2589), + [sym_c_style_for_statement] = STATE(2589), + [sym_while_statement] = STATE(2589), + [sym_if_statement] = STATE(2589), + [sym_case_statement] = STATE(2589), + [sym_function_definition] = STATE(2589), + [sym_subshell] = STATE(2589), + [sym_pipeline] = STATE(2589), + [sym_list] = STATE(2589), + [sym_negated_command] = STATE(2589), + [sym_test_command] = STATE(2589), + [sym_declaration_command] = STATE(2589), + [sym_unset_command] = STATE(2589), + [sym_command] = STATE(2589), + [sym_command_name] = STATE(92), + [sym_variable_assignment] = STATE(2590), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(96), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), + [aux_sym__statements_repeat1] = STATE(2591), + [aux_sym_command_repeat1] = STATE(96), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(137), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(149), + [anon_sym_declare] = ACTIONS(151), + [anon_sym_typeset] = ACTIONS(151), + [anon_sym_export] = ACTIONS(151), + [anon_sym_readonly] = ACTIONS(151), + [anon_sym_local] = ACTIONS(151), + [anon_sym_unset] = ACTIONS(153), + [anon_sym_unsetenv] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(159), + }, + [2416] = { + [aux_sym_concatenation_repeat1] = STATE(2572), + [sym__simple_heredoc_body] = ACTIONS(2015), + [sym__heredoc_body_beginning] = ACTIONS(2015), + [sym_file_descriptor] = ACTIONS(2015), + [sym__concat] = ACTIONS(5840), + [anon_sym_SEMI] = ACTIONS(2017), + [anon_sym_esac] = ACTIONS(2015), + [anon_sym_PIPE] = ACTIONS(2017), + [anon_sym_SEMI_SEMI] = ACTIONS(2015), + [anon_sym_PIPE_AMP] = ACTIONS(2015), + [anon_sym_AMP_AMP] = ACTIONS(2015), + [anon_sym_PIPE_PIPE] = ACTIONS(2015), + [anon_sym_LT] = ACTIONS(2017), + [anon_sym_GT] = ACTIONS(2017), + [anon_sym_GT_GT] = ACTIONS(2015), + [anon_sym_AMP_GT] = ACTIONS(2017), + [anon_sym_AMP_GT_GT] = ACTIONS(2015), + [anon_sym_LT_AMP] = ACTIONS(2015), + [anon_sym_GT_AMP] = ACTIONS(2015), + [anon_sym_LT_LT] = ACTIONS(2017), + [anon_sym_LT_LT_DASH] = ACTIONS(2015), + [anon_sym_LT_LT_LT] = ACTIONS(2015), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2017), + }, + [2417] = { + [aux_sym_concatenation_repeat1] = STATE(2572), + [sym__simple_heredoc_body] = ACTIONS(2019), + [sym__heredoc_body_beginning] = ACTIONS(2019), + [sym_file_descriptor] = ACTIONS(2019), + [sym__concat] = ACTIONS(5840), + [anon_sym_SEMI] = ACTIONS(2021), + [anon_sym_esac] = ACTIONS(2019), + [anon_sym_PIPE] = ACTIONS(2021), + [anon_sym_SEMI_SEMI] = ACTIONS(2019), + [anon_sym_PIPE_AMP] = ACTIONS(2019), + [anon_sym_AMP_AMP] = ACTIONS(2019), + [anon_sym_PIPE_PIPE] = ACTIONS(2019), + [anon_sym_LT] = ACTIONS(2021), + [anon_sym_GT] = ACTIONS(2021), + [anon_sym_GT_GT] = ACTIONS(2019), + [anon_sym_AMP_GT] = ACTIONS(2021), + [anon_sym_AMP_GT_GT] = ACTIONS(2019), + [anon_sym_LT_AMP] = ACTIONS(2019), + [anon_sym_GT_AMP] = ACTIONS(2019), + [anon_sym_LT_LT] = ACTIONS(2021), + [anon_sym_LT_LT_DASH] = ACTIONS(2019), + [anon_sym_LT_LT_LT] = ACTIONS(2019), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2019), + [anon_sym_AMP] = ACTIONS(2021), + }, + [2418] = { + [sym_file_redirect] = STATE(2418), + [sym_heredoc_redirect] = STATE(2418), + [sym_herestring_redirect] = STATE(2418), + [aux_sym_while_statement_repeat1] = STATE(2418), + [sym__simple_heredoc_body] = ACTIONS(2027), + [sym__heredoc_body_beginning] = ACTIONS(2027), + [sym_file_descriptor] = ACTIONS(5864), + [anon_sym_SEMI] = ACTIONS(2032), + [anon_sym_esac] = ACTIONS(2027), + [anon_sym_PIPE] = ACTIONS(2032), + [anon_sym_SEMI_SEMI] = ACTIONS(2027), + [anon_sym_PIPE_AMP] = ACTIONS(2027), + [anon_sym_AMP_AMP] = ACTIONS(2027), + [anon_sym_PIPE_PIPE] = ACTIONS(2027), + [anon_sym_LT] = ACTIONS(5867), + [anon_sym_GT] = ACTIONS(5867), + [anon_sym_GT_GT] = ACTIONS(5870), + [anon_sym_AMP_GT] = ACTIONS(5867), + [anon_sym_AMP_GT_GT] = ACTIONS(5870), + [anon_sym_LT_AMP] = ACTIONS(5870), + [anon_sym_GT_AMP] = ACTIONS(5870), + [anon_sym_LT_LT] = ACTIONS(2040), + [anon_sym_LT_LT_DASH] = ACTIONS(2043), + [anon_sym_LT_LT_LT] = ACTIONS(5873), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2027), + [anon_sym_AMP] = ACTIONS(2032), + }, + [2419] = { + [sym_file_redirect] = STATE(2418), + [sym_heredoc_redirect] = STATE(2418), + [sym_heredoc_body] = STATE(996), + [sym_herestring_redirect] = STATE(2418), + [aux_sym_while_statement_repeat1] = STATE(2418), + [sym__simple_heredoc_body] = ACTIONS(339), + [sym__heredoc_body_beginning] = ACTIONS(341), + [sym_file_descriptor] = ACTIONS(5091), + [anon_sym_SEMI] = ACTIONS(2025), + [anon_sym_esac] = ACTIONS(2023), + [anon_sym_PIPE] = ACTIONS(2025), + [anon_sym_SEMI_SEMI] = ACTIONS(2023), + [anon_sym_PIPE_AMP] = ACTIONS(2023), + [anon_sym_AMP_AMP] = ACTIONS(2023), + [anon_sym_PIPE_PIPE] = ACTIONS(2023), + [anon_sym_LT] = ACTIONS(5095), + [anon_sym_GT] = ACTIONS(5095), + [anon_sym_GT_GT] = ACTIONS(5097), + [anon_sym_AMP_GT] = ACTIONS(5095), + [anon_sym_AMP_GT_GT] = ACTIONS(5097), + [anon_sym_LT_AMP] = ACTIONS(5097), + [anon_sym_GT_AMP] = ACTIONS(5097), + [anon_sym_LT_LT] = ACTIONS(355), + [anon_sym_LT_LT_DASH] = ACTIONS(357), + [anon_sym_LT_LT_LT] = ACTIONS(5099), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2023), + [anon_sym_AMP] = ACTIONS(2025), + }, + [2420] = { + [sym_concatenation] = STATE(2420), + [sym_string] = STATE(2220), + [sym_simple_expansion] = STATE(2220), + [sym_string_expansion] = STATE(2220), + [sym_expansion] = STATE(2220), + [sym_command_substitution] = STATE(2220), + [sym_process_substitution] = STATE(2220), + [aux_sym_command_repeat2] = STATE(2420), + [sym__simple_heredoc_body] = ACTIONS(2003), + [sym__heredoc_body_beginning] = ACTIONS(2003), + [sym_file_descriptor] = ACTIONS(2003), + [anon_sym_SEMI] = ACTIONS(2005), + [anon_sym_esac] = ACTIONS(2005), + [anon_sym_PIPE] = ACTIONS(2005), + [anon_sym_SEMI_SEMI] = ACTIONS(2003), + [anon_sym_PIPE_AMP] = ACTIONS(2003), + [anon_sym_AMP_AMP] = ACTIONS(2003), + [anon_sym_PIPE_PIPE] = ACTIONS(2003), + [anon_sym_EQ_TILDE] = ACTIONS(5876), + [anon_sym_EQ_EQ] = ACTIONS(5876), + [anon_sym_LT] = ACTIONS(2005), + [anon_sym_GT] = ACTIONS(2005), + [anon_sym_GT_GT] = ACTIONS(2003), + [anon_sym_AMP_GT] = ACTIONS(2005), + [anon_sym_AMP_GT_GT] = ACTIONS(2003), + [anon_sym_LT_AMP] = ACTIONS(2003), + [anon_sym_GT_AMP] = ACTIONS(2003), + [anon_sym_LT_LT] = ACTIONS(2005), + [anon_sym_LT_LT_DASH] = ACTIONS(2003), + [anon_sym_LT_LT_LT] = ACTIONS(2003), + [sym__special_characters] = ACTIONS(5879), + [anon_sym_DQUOTE] = ACTIONS(5882), + [anon_sym_DOLLAR] = ACTIONS(5885), + [sym_raw_string] = ACTIONS(5888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5891), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5894), + [anon_sym_BQUOTE] = ACTIONS(5897), + [anon_sym_LT_LPAREN] = ACTIONS(5900), + [anon_sym_GT_LPAREN] = ACTIONS(5900), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(5903), + [anon_sym_LF] = ACTIONS(2003), + [anon_sym_AMP] = ACTIONS(2005), + }, + [2421] = { + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_esac] = ACTIONS(5906), + [anon_sym_SEMI_SEMI] = ACTIONS(943), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(5908), + [anon_sym_DQUOTE] = ACTIONS(5910), + [anon_sym_DOLLAR] = ACTIONS(5908), + [sym_raw_string] = ACTIONS(5910), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5910), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5910), + [anon_sym_BQUOTE] = ACTIONS(5910), + [anon_sym_LT_LPAREN] = ACTIONS(5910), + [anon_sym_GT_LPAREN] = ACTIONS(5910), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(5908), + }, + [2422] = { + [anon_sym_SEMI] = ACTIONS(5077), + [anon_sym_PIPE] = ACTIONS(529), + [anon_sym_SEMI_SEMI] = ACTIONS(5089), + [anon_sym_PIPE_AMP] = ACTIONS(533), + [anon_sym_AMP_AMP] = ACTIONS(535), + [anon_sym_PIPE_PIPE] = ACTIONS(535), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(5089), + [anon_sym_AMP] = ACTIONS(5077), + }, + [2423] = { + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(5077), + [anon_sym_PIPE] = ACTIONS(529), + [anon_sym_SEMI_SEMI] = ACTIONS(5089), + [anon_sym_PIPE_AMP] = ACTIONS(533), + [anon_sym_AMP_AMP] = ACTIONS(535), + [anon_sym_PIPE_PIPE] = ACTIONS(535), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(5089), + [anon_sym_AMP] = ACTIONS(5077), + }, + [2424] = { + [sym_file_redirect] = STATE(2592), + [sym_heredoc_redirect] = STATE(2592), + [sym_heredoc_body] = STATE(996), + [sym_herestring_redirect] = STATE(2592), + [sym_concatenation] = STATE(2420), + [sym_string] = STATE(2220), + [sym_simple_expansion] = STATE(2220), + [sym_string_expansion] = STATE(2220), + [sym_expansion] = STATE(2220), + [sym_command_substitution] = STATE(2220), + [sym_process_substitution] = STATE(2220), + [aux_sym_while_statement_repeat1] = STATE(2592), + [aux_sym_command_repeat2] = STATE(2420), + [sym__simple_heredoc_body] = ACTIONS(339), + [sym__heredoc_body_beginning] = ACTIONS(341), + [sym_file_descriptor] = ACTIONS(5091), + [anon_sym_SEMI] = ACTIONS(2025), + [anon_sym_esac] = ACTIONS(2025), + [anon_sym_PIPE] = ACTIONS(2025), + [anon_sym_SEMI_SEMI] = ACTIONS(2023), + [anon_sym_PIPE_AMP] = ACTIONS(2023), + [anon_sym_AMP_AMP] = ACTIONS(2023), + [anon_sym_PIPE_PIPE] = ACTIONS(2023), + [anon_sym_EQ_TILDE] = ACTIONS(5093), + [anon_sym_EQ_EQ] = ACTIONS(5093), + [anon_sym_LT] = ACTIONS(5095), + [anon_sym_GT] = ACTIONS(5095), + [anon_sym_GT_GT] = ACTIONS(5097), + [anon_sym_AMP_GT] = ACTIONS(5095), + [anon_sym_AMP_GT_GT] = ACTIONS(5097), + [anon_sym_LT_AMP] = ACTIONS(5097), + [anon_sym_GT_AMP] = ACTIONS(5097), + [anon_sym_LT_LT] = ACTIONS(355), + [anon_sym_LT_LT_DASH] = ACTIONS(357), + [anon_sym_LT_LT_LT] = ACTIONS(5099), + [sym__special_characters] = ACTIONS(5101), + [anon_sym_DQUOTE] = ACTIONS(4469), + [anon_sym_DOLLAR] = ACTIONS(4471), + [sym_raw_string] = ACTIONS(5103), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4475), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4477), + [anon_sym_BQUOTE] = ACTIONS(4479), + [anon_sym_LT_LPAREN] = ACTIONS(4481), + [anon_sym_GT_LPAREN] = ACTIONS(4481), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(5105), + [anon_sym_LF] = ACTIONS(2023), + [anon_sym_AMP] = ACTIONS(2025), + }, + [2425] = { + [anon_sym_esac] = ACTIONS(5906), + [sym__special_characters] = ACTIONS(5910), + [anon_sym_DQUOTE] = ACTIONS(5910), + [anon_sym_DOLLAR] = ACTIONS(5908), + [sym_raw_string] = ACTIONS(5910), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5910), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5910), + [anon_sym_BQUOTE] = ACTIONS(5910), + [anon_sym_LT_LPAREN] = ACTIONS(5910), + [anon_sym_GT_LPAREN] = ACTIONS(5910), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(5908), + }, + [2426] = { + [anon_sym_SEMI] = ACTIONS(5077), + [anon_sym_esac] = ACTIONS(5912), + [anon_sym_PIPE] = ACTIONS(5081), + [anon_sym_SEMI_SEMI] = ACTIONS(5914), + [anon_sym_PIPE_AMP] = ACTIONS(5085), + [anon_sym_AMP_AMP] = ACTIONS(5087), + [anon_sym_PIPE_PIPE] = ACTIONS(5087), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(5089), + [anon_sym_AMP] = ACTIONS(5077), + }, + [2427] = { + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(5077), + [anon_sym_esac] = ACTIONS(5906), + [anon_sym_PIPE] = ACTIONS(5081), + [anon_sym_SEMI_SEMI] = ACTIONS(5914), + [anon_sym_PIPE_AMP] = ACTIONS(5085), + [anon_sym_AMP_AMP] = ACTIONS(5087), + [anon_sym_PIPE_PIPE] = ACTIONS(5087), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(5089), + [anon_sym_AMP] = ACTIONS(5077), + }, + [2428] = { + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_esac] = ACTIONS(5916), + [anon_sym_SEMI_SEMI] = ACTIONS(943), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(5918), + [anon_sym_DQUOTE] = ACTIONS(5920), + [anon_sym_DOLLAR] = ACTIONS(5918), + [sym_raw_string] = ACTIONS(5920), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5920), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5920), + [anon_sym_BQUOTE] = ACTIONS(5920), + [anon_sym_LT_LPAREN] = ACTIONS(5920), + [anon_sym_GT_LPAREN] = ACTIONS(5920), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(5918), + }, + [2429] = { + [anon_sym_esac] = ACTIONS(5916), + [sym__special_characters] = ACTIONS(5920), + [anon_sym_DQUOTE] = ACTIONS(5920), + [anon_sym_DOLLAR] = ACTIONS(5918), + [sym_raw_string] = ACTIONS(5920), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5920), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5920), + [anon_sym_BQUOTE] = ACTIONS(5920), + [anon_sym_LT_LPAREN] = ACTIONS(5920), + [anon_sym_GT_LPAREN] = ACTIONS(5920), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(5918), + }, + [2430] = { + [anon_sym_SEMI] = ACTIONS(5077), + [anon_sym_esac] = ACTIONS(5922), + [anon_sym_PIPE] = ACTIONS(5081), + [anon_sym_SEMI_SEMI] = ACTIONS(5924), + [anon_sym_PIPE_AMP] = ACTIONS(5085), + [anon_sym_AMP_AMP] = ACTIONS(5087), + [anon_sym_PIPE_PIPE] = ACTIONS(5087), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(5089), + [anon_sym_AMP] = ACTIONS(5077), + }, + [2431] = { + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(5077), + [anon_sym_esac] = ACTIONS(5916), + [anon_sym_PIPE] = ACTIONS(5081), + [anon_sym_SEMI_SEMI] = ACTIONS(5924), + [anon_sym_PIPE_AMP] = ACTIONS(5085), + [anon_sym_AMP_AMP] = ACTIONS(5087), + [anon_sym_PIPE_PIPE] = ACTIONS(5087), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(5089), + [anon_sym_AMP] = ACTIONS(5077), + }, + [2432] = { + [sym__special_characters] = ACTIONS(5003), + [anon_sym_DQUOTE] = ACTIONS(5003), + [anon_sym_DOLLAR] = ACTIONS(5005), + [sym_raw_string] = ACTIONS(5003), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5003), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5003), + [anon_sym_BQUOTE] = ACTIONS(5003), + [anon_sym_LT_LPAREN] = ACTIONS(5003), + [anon_sym_GT_LPAREN] = ACTIONS(5003), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(5003), + }, + [2433] = { + [anon_sym_SEMI] = ACTIONS(2081), + [anon_sym_PIPE] = ACTIONS(529), + [anon_sym_SEMI_SEMI] = ACTIONS(5926), + [anon_sym_PIPE_AMP] = ACTIONS(533), + [anon_sym_AMP_AMP] = ACTIONS(535), + [anon_sym_PIPE_PIPE] = ACTIONS(535), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2083), + [anon_sym_AMP] = ACTIONS(2081), + }, + [2434] = { + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(2081), + [anon_sym_PIPE] = ACTIONS(529), + [anon_sym_SEMI_SEMI] = ACTIONS(5926), + [anon_sym_PIPE_AMP] = ACTIONS(533), + [anon_sym_AMP_AMP] = ACTIONS(535), + [anon_sym_PIPE_PIPE] = ACTIONS(535), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(2083), + [anon_sym_AMP] = ACTIONS(2081), + }, + [2435] = { + [sym__terminated_statement] = STATE(2599), + [sym_for_statement] = STATE(2597), + [sym_c_style_for_statement] = STATE(2597), + [sym_while_statement] = STATE(2597), + [sym_if_statement] = STATE(2597), + [sym_case_statement] = STATE(2597), + [sym_function_definition] = STATE(2597), + [sym_subshell] = STATE(2597), + [sym_pipeline] = STATE(2597), + [sym_list] = STATE(2597), + [sym_negated_command] = STATE(2597), + [sym_test_command] = STATE(2597), + [sym_declaration_command] = STATE(2597), + [sym_unset_command] = STATE(2597), + [sym_command] = STATE(2597), + [sym_command_name] = STATE(64), + [sym_variable_assignment] = STATE(2598), + [sym_subscript] = STATE(66), + [sym_file_redirect] = STATE(67), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(60), + [sym_simple_expansion] = STATE(60), + [sym_string_expansion] = STATE(60), + [sym_expansion] = STATE(60), + [sym_command_substitution] = STATE(60), + [sym_process_substitution] = STATE(60), + [aux_sym__statements_repeat1] = STATE(2599), + [aux_sym_command_repeat1] = STATE(67), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(95), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(97), + [anon_sym_while] = ACTIONS(99), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_SEMI_SEMI] = ACTIONS(5928), + [anon_sym_function] = ACTIONS(101), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_LBRACK] = ACTIONS(107), + [anon_sym_declare] = ACTIONS(109), + [anon_sym_typeset] = ACTIONS(109), + [anon_sym_export] = ACTIONS(109), + [anon_sym_readonly] = ACTIONS(109), + [anon_sym_local] = ACTIONS(109), + [anon_sym_unset] = ACTIONS(111), + [anon_sym_unsetenv] = ACTIONS(111), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(115), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(117), + }, + [2436] = { + [sym__terminated_statement] = STATE(2600), + [sym_for_statement] = STATE(2597), + [sym_c_style_for_statement] = STATE(2597), + [sym_while_statement] = STATE(2597), + [sym_if_statement] = STATE(2597), + [sym_case_statement] = STATE(2597), + [sym_function_definition] = STATE(2597), + [sym_subshell] = STATE(2597), + [sym_pipeline] = STATE(2597), + [sym_list] = STATE(2597), + [sym_negated_command] = STATE(2597), + [sym_test_command] = STATE(2597), + [sym_declaration_command] = STATE(2597), + [sym_unset_command] = STATE(2597), + [sym_command] = STATE(2597), + [sym_command_name] = STATE(64), + [sym_variable_assignment] = STATE(2598), + [sym_subscript] = STATE(66), + [sym_file_redirect] = STATE(67), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(60), + [sym_simple_expansion] = STATE(60), + [sym_string_expansion] = STATE(60), + [sym_expansion] = STATE(60), + [sym_command_substitution] = STATE(60), + [sym_process_substitution] = STATE(60), + [aux_sym__statements_repeat1] = STATE(2600), + [aux_sym_command_repeat1] = STATE(67), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(95), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(97), + [anon_sym_while] = ACTIONS(99), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_SEMI_SEMI] = ACTIONS(5928), + [anon_sym_function] = ACTIONS(101), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_LBRACK] = ACTIONS(107), + [anon_sym_declare] = ACTIONS(109), + [anon_sym_typeset] = ACTIONS(109), + [anon_sym_export] = ACTIONS(109), + [anon_sym_readonly] = ACTIONS(109), + [anon_sym_local] = ACTIONS(109), + [anon_sym_unset] = ACTIONS(111), + [anon_sym_unsetenv] = ACTIONS(111), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(115), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(117), + }, + [2437] = { + [sym__special_characters] = ACTIONS(5116), + [anon_sym_DQUOTE] = ACTIONS(5116), + [anon_sym_DOLLAR] = ACTIONS(5118), + [sym_raw_string] = ACTIONS(5116), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5116), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5116), + [anon_sym_BQUOTE] = ACTIONS(5116), + [anon_sym_LT_LPAREN] = ACTIONS(5116), + [anon_sym_GT_LPAREN] = ACTIONS(5116), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(5116), + }, + [2438] = { + [anon_sym_SEMI] = ACTIONS(2081), + [anon_sym_PIPE] = ACTIONS(529), + [anon_sym_SEMI_SEMI] = ACTIONS(5930), + [anon_sym_PIPE_AMP] = ACTIONS(533), + [anon_sym_AMP_AMP] = ACTIONS(535), + [anon_sym_PIPE_PIPE] = ACTIONS(535), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2083), + [anon_sym_AMP] = ACTIONS(2081), + }, + [2439] = { + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(2081), + [anon_sym_PIPE] = ACTIONS(529), + [anon_sym_SEMI_SEMI] = ACTIONS(5930), + [anon_sym_PIPE_AMP] = ACTIONS(533), + [anon_sym_AMP_AMP] = ACTIONS(535), + [anon_sym_PIPE_PIPE] = ACTIONS(535), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(2083), + [anon_sym_AMP] = ACTIONS(2081), + }, + [2440] = { + [sym__terminated_statement] = STATE(2599), + [sym_for_statement] = STATE(2603), + [sym_c_style_for_statement] = STATE(2603), + [sym_while_statement] = STATE(2603), + [sym_if_statement] = STATE(2603), + [sym_case_statement] = STATE(2603), + [sym_function_definition] = STATE(2603), + [sym_subshell] = STATE(2603), + [sym_pipeline] = STATE(2603), + [sym_list] = STATE(2603), + [sym_negated_command] = STATE(2603), + [sym_test_command] = STATE(2603), + [sym_declaration_command] = STATE(2603), + [sym_unset_command] = STATE(2603), + [sym_command] = STATE(2603), + [sym_command_name] = STATE(64), + [sym_variable_assignment] = STATE(2604), + [sym_subscript] = STATE(66), + [sym_file_redirect] = STATE(67), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(60), + [sym_simple_expansion] = STATE(60), + [sym_string_expansion] = STATE(60), + [sym_expansion] = STATE(60), + [sym_command_substitution] = STATE(60), + [sym_process_substitution] = STATE(60), + [aux_sym__statements_repeat1] = STATE(2599), + [aux_sym_command_repeat1] = STATE(67), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(95), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(97), + [anon_sym_while] = ACTIONS(99), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_SEMI_SEMI] = ACTIONS(5932), + [anon_sym_function] = ACTIONS(101), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_LBRACK] = ACTIONS(107), + [anon_sym_declare] = ACTIONS(109), + [anon_sym_typeset] = ACTIONS(109), + [anon_sym_export] = ACTIONS(109), + [anon_sym_readonly] = ACTIONS(109), + [anon_sym_local] = ACTIONS(109), + [anon_sym_unset] = ACTIONS(111), + [anon_sym_unsetenv] = ACTIONS(111), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(115), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(117), + }, + [2441] = { + [sym__terminated_statement] = STATE(2605), + [sym_for_statement] = STATE(2603), + [sym_c_style_for_statement] = STATE(2603), + [sym_while_statement] = STATE(2603), + [sym_if_statement] = STATE(2603), + [sym_case_statement] = STATE(2603), + [sym_function_definition] = STATE(2603), + [sym_subshell] = STATE(2603), + [sym_pipeline] = STATE(2603), + [sym_list] = STATE(2603), + [sym_negated_command] = STATE(2603), + [sym_test_command] = STATE(2603), + [sym_declaration_command] = STATE(2603), + [sym_unset_command] = STATE(2603), + [sym_command] = STATE(2603), + [sym_command_name] = STATE(64), + [sym_variable_assignment] = STATE(2604), + [sym_subscript] = STATE(66), + [sym_file_redirect] = STATE(67), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(60), + [sym_simple_expansion] = STATE(60), + [sym_string_expansion] = STATE(60), + [sym_expansion] = STATE(60), + [sym_command_substitution] = STATE(60), + [sym_process_substitution] = STATE(60), + [aux_sym__statements_repeat1] = STATE(2605), + [aux_sym_command_repeat1] = STATE(67), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(95), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(97), + [anon_sym_while] = ACTIONS(99), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_SEMI_SEMI] = ACTIONS(5932), + [anon_sym_function] = ACTIONS(101), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_LBRACK] = ACTIONS(107), + [anon_sym_declare] = ACTIONS(109), + [anon_sym_typeset] = ACTIONS(109), + [anon_sym_export] = ACTIONS(109), + [anon_sym_readonly] = ACTIONS(109), + [anon_sym_local] = ACTIONS(109), + [anon_sym_unset] = ACTIONS(111), + [anon_sym_unsetenv] = ACTIONS(111), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(115), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(117), + }, + [2442] = { + [sym__concat] = ACTIONS(4710), + [anon_sym_RBRACE] = ACTIONS(4710), + [sym_comment] = ACTIONS(55), + }, + [2443] = { + [sym__concat] = ACTIONS(4714), + [anon_sym_RBRACE] = ACTIONS(4714), + [sym_comment] = ACTIONS(55), + }, + [2444] = { + [sym__concat] = ACTIONS(4718), + [anon_sym_RBRACE] = ACTIONS(4718), + [sym_comment] = ACTIONS(55), + }, + [2445] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(5934), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [2446] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(5936), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [2447] = { + [sym__concat] = ACTIONS(4754), + [anon_sym_RBRACE] = ACTIONS(4754), + [sym_comment] = ACTIONS(55), + }, + [2448] = { + [sym__concat] = ACTIONS(5202), + [anon_sym_RBRACE] = ACTIONS(5202), + [anon_sym_EQ] = ACTIONS(5204), + [anon_sym_DASH] = ACTIONS(5204), + [sym__special_characters] = ACTIONS(5204), + [anon_sym_DQUOTE] = ACTIONS(5202), + [anon_sym_DOLLAR] = ACTIONS(5204), + [sym_raw_string] = ACTIONS(5202), + [anon_sym_POUND] = ACTIONS(5202), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5202), + [anon_sym_COLON] = ACTIONS(5204), + [anon_sym_COLON_QMARK] = ACTIONS(5204), + [anon_sym_COLON_DASH] = ACTIONS(5204), + [anon_sym_PERCENT] = ACTIONS(5204), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5202), + [anon_sym_BQUOTE] = ACTIONS(5202), + [anon_sym_LT_LPAREN] = ACTIONS(5202), + [anon_sym_GT_LPAREN] = ACTIONS(5202), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(5204), + }, + [2449] = { + [sym__concat] = ACTIONS(5206), + [anon_sym_RBRACE] = ACTIONS(5206), + [anon_sym_EQ] = ACTIONS(5208), + [anon_sym_DASH] = ACTIONS(5208), + [sym__special_characters] = ACTIONS(5208), + [anon_sym_DQUOTE] = ACTIONS(5206), + [anon_sym_DOLLAR] = ACTIONS(5208), + [sym_raw_string] = ACTIONS(5206), + [anon_sym_POUND] = ACTIONS(5206), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5206), + [anon_sym_COLON] = ACTIONS(5208), + [anon_sym_COLON_QMARK] = ACTIONS(5208), + [anon_sym_COLON_DASH] = ACTIONS(5208), + [anon_sym_PERCENT] = ACTIONS(5208), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5206), + [anon_sym_BQUOTE] = ACTIONS(5206), + [anon_sym_LT_LPAREN] = ACTIONS(5206), + [anon_sym_GT_LPAREN] = ACTIONS(5206), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(5208), + }, + [2450] = { + [sym__heredoc_body_middle] = ACTIONS(5202), + [sym__heredoc_body_end] = ACTIONS(5202), + [anon_sym_DOLLAR] = ACTIONS(5204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5202), + [sym_comment] = ACTIONS(55), + }, + [2451] = { + [sym__heredoc_body_middle] = ACTIONS(5206), + [sym__heredoc_body_end] = ACTIONS(5206), + [anon_sym_DOLLAR] = ACTIONS(5208), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5206), + [sym_comment] = ACTIONS(55), + }, + [2452] = { + [sym__concat] = ACTIONS(5202), + [anon_sym_RPAREN] = ACTIONS(5202), + [sym__special_characters] = ACTIONS(5202), + [anon_sym_DQUOTE] = ACTIONS(5202), + [anon_sym_DOLLAR] = ACTIONS(5204), + [sym_raw_string] = ACTIONS(5202), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5202), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5202), + [anon_sym_BQUOTE] = ACTIONS(5202), + [anon_sym_LT_LPAREN] = ACTIONS(5202), + [anon_sym_GT_LPAREN] = ACTIONS(5202), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(5202), + }, + [2453] = { + [sym__concat] = ACTIONS(5206), + [anon_sym_RPAREN] = ACTIONS(5206), + [sym__special_characters] = ACTIONS(5206), + [anon_sym_DQUOTE] = ACTIONS(5206), + [anon_sym_DOLLAR] = ACTIONS(5208), + [sym_raw_string] = ACTIONS(5206), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5206), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5206), + [anon_sym_BQUOTE] = ACTIONS(5206), + [anon_sym_LT_LPAREN] = ACTIONS(5206), + [anon_sym_GT_LPAREN] = ACTIONS(5206), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(5206), + }, + [2454] = { + [ts_builtin_sym_end] = ACTIONS(5938), + [anon_sym_SEMI] = ACTIONS(5940), + [anon_sym_esac] = ACTIONS(5938), + [anon_sym_PIPE] = ACTIONS(5940), + [anon_sym_RPAREN] = ACTIONS(5938), + [anon_sym_SEMI_SEMI] = ACTIONS(5938), + [anon_sym_PIPE_AMP] = ACTIONS(5938), + [anon_sym_AMP_AMP] = ACTIONS(5938), + [anon_sym_PIPE_PIPE] = ACTIONS(5938), + [anon_sym_BQUOTE] = ACTIONS(5938), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(5938), + [anon_sym_AMP] = ACTIONS(5940), + }, + [2455] = { + [sym__concat] = ACTIONS(5202), + [anon_sym_SEMI] = ACTIONS(5204), + [anon_sym_SEMI_SEMI] = ACTIONS(5202), + [sym__special_characters] = ACTIONS(5202), + [anon_sym_DQUOTE] = ACTIONS(5202), + [anon_sym_DOLLAR] = ACTIONS(5204), + [sym_raw_string] = ACTIONS(5202), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5202), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5202), + [anon_sym_BQUOTE] = ACTIONS(5202), + [anon_sym_LT_LPAREN] = ACTIONS(5202), + [anon_sym_GT_LPAREN] = ACTIONS(5202), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(5204), + [anon_sym_LF] = ACTIONS(5202), + [anon_sym_AMP] = ACTIONS(5202), + }, + [2456] = { + [sym__concat] = ACTIONS(5206), + [anon_sym_SEMI] = ACTIONS(5208), + [anon_sym_SEMI_SEMI] = ACTIONS(5206), + [sym__special_characters] = ACTIONS(5206), + [anon_sym_DQUOTE] = ACTIONS(5206), + [anon_sym_DOLLAR] = ACTIONS(5208), + [sym_raw_string] = ACTIONS(5206), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5206), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5206), + [anon_sym_BQUOTE] = ACTIONS(5206), + [anon_sym_LT_LPAREN] = ACTIONS(5206), + [anon_sym_GT_LPAREN] = ACTIONS(5206), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(5208), + [anon_sym_LF] = ACTIONS(5206), + [anon_sym_AMP] = ACTIONS(5206), + }, + [2457] = { + [sym_file_descriptor] = ACTIONS(4710), + [sym__concat] = ACTIONS(4710), + [ts_builtin_sym_end] = ACTIONS(4710), + [anon_sym_SEMI] = ACTIONS(4712), + [anon_sym_esac] = ACTIONS(4710), + [anon_sym_PIPE] = ACTIONS(4712), + [anon_sym_RPAREN] = ACTIONS(4710), + [anon_sym_SEMI_SEMI] = ACTIONS(4710), + [anon_sym_PIPE_AMP] = ACTIONS(4710), + [anon_sym_AMP_AMP] = ACTIONS(4710), + [anon_sym_PIPE_PIPE] = ACTIONS(4710), + [anon_sym_LT] = ACTIONS(4712), + [anon_sym_GT] = ACTIONS(4712), + [anon_sym_GT_GT] = ACTIONS(4710), + [anon_sym_AMP_GT] = ACTIONS(4712), + [anon_sym_AMP_GT_GT] = ACTIONS(4710), + [anon_sym_LT_AMP] = ACTIONS(4710), + [anon_sym_GT_AMP] = ACTIONS(4710), + [anon_sym_LT_LT] = ACTIONS(4712), + [anon_sym_LT_LT_DASH] = ACTIONS(4710), + [anon_sym_LT_LT_LT] = ACTIONS(4710), + [anon_sym_BQUOTE] = ACTIONS(4710), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(4710), + [anon_sym_AMP] = ACTIONS(4712), + }, + [2458] = { + [sym_file_descriptor] = ACTIONS(4714), + [sym__concat] = ACTIONS(4714), + [ts_builtin_sym_end] = ACTIONS(4714), + [anon_sym_SEMI] = ACTIONS(4716), + [anon_sym_esac] = ACTIONS(4714), + [anon_sym_PIPE] = ACTIONS(4716), + [anon_sym_RPAREN] = ACTIONS(4714), + [anon_sym_SEMI_SEMI] = ACTIONS(4714), + [anon_sym_PIPE_AMP] = ACTIONS(4714), + [anon_sym_AMP_AMP] = ACTIONS(4714), + [anon_sym_PIPE_PIPE] = ACTIONS(4714), + [anon_sym_LT] = ACTIONS(4716), + [anon_sym_GT] = ACTIONS(4716), + [anon_sym_GT_GT] = ACTIONS(4714), + [anon_sym_AMP_GT] = ACTIONS(4716), + [anon_sym_AMP_GT_GT] = ACTIONS(4714), + [anon_sym_LT_AMP] = ACTIONS(4714), + [anon_sym_GT_AMP] = ACTIONS(4714), + [anon_sym_LT_LT] = ACTIONS(4716), + [anon_sym_LT_LT_DASH] = ACTIONS(4714), + [anon_sym_LT_LT_LT] = ACTIONS(4714), + [anon_sym_BQUOTE] = ACTIONS(4714), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(4714), + [anon_sym_AMP] = ACTIONS(4716), + }, + [2459] = { + [sym_file_descriptor] = ACTIONS(4718), + [sym__concat] = ACTIONS(4718), + [ts_builtin_sym_end] = ACTIONS(4718), + [anon_sym_SEMI] = ACTIONS(4720), + [anon_sym_esac] = ACTIONS(4718), + [anon_sym_PIPE] = ACTIONS(4720), + [anon_sym_RPAREN] = ACTIONS(4718), + [anon_sym_SEMI_SEMI] = ACTIONS(4718), + [anon_sym_PIPE_AMP] = ACTIONS(4718), + [anon_sym_AMP_AMP] = ACTIONS(4718), + [anon_sym_PIPE_PIPE] = ACTIONS(4718), + [anon_sym_LT] = ACTIONS(4720), + [anon_sym_GT] = ACTIONS(4720), + [anon_sym_GT_GT] = ACTIONS(4718), + [anon_sym_AMP_GT] = ACTIONS(4720), + [anon_sym_AMP_GT_GT] = ACTIONS(4718), + [anon_sym_LT_AMP] = ACTIONS(4718), + [anon_sym_GT_AMP] = ACTIONS(4718), + [anon_sym_LT_LT] = ACTIONS(4720), + [anon_sym_LT_LT_DASH] = ACTIONS(4718), + [anon_sym_LT_LT_LT] = ACTIONS(4718), + [anon_sym_BQUOTE] = ACTIONS(4718), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(4718), + [anon_sym_AMP] = ACTIONS(4720), + }, + [2460] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(5942), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [2461] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(5944), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [2462] = { + [sym_file_descriptor] = ACTIONS(4754), + [sym__concat] = ACTIONS(4754), + [ts_builtin_sym_end] = ACTIONS(4754), + [anon_sym_SEMI] = ACTIONS(4756), + [anon_sym_esac] = ACTIONS(4754), + [anon_sym_PIPE] = ACTIONS(4756), + [anon_sym_RPAREN] = ACTIONS(4754), + [anon_sym_SEMI_SEMI] = ACTIONS(4754), + [anon_sym_PIPE_AMP] = ACTIONS(4754), + [anon_sym_AMP_AMP] = ACTIONS(4754), + [anon_sym_PIPE_PIPE] = ACTIONS(4754), + [anon_sym_LT] = ACTIONS(4756), + [anon_sym_GT] = ACTIONS(4756), + [anon_sym_GT_GT] = ACTIONS(4754), + [anon_sym_AMP_GT] = ACTIONS(4756), + [anon_sym_AMP_GT_GT] = ACTIONS(4754), + [anon_sym_LT_AMP] = ACTIONS(4754), + [anon_sym_GT_AMP] = ACTIONS(4754), + [anon_sym_LT_LT] = ACTIONS(4756), + [anon_sym_LT_LT_DASH] = ACTIONS(4754), + [anon_sym_LT_LT_LT] = ACTIONS(4754), + [anon_sym_BQUOTE] = ACTIONS(4754), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(4754), + [anon_sym_AMP] = ACTIONS(4756), + }, + [2463] = { + [sym_file_descriptor] = ACTIONS(2099), + [sym_variable_name] = ACTIONS(2099), + [anon_sym_SEMI] = ACTIONS(2101), + [anon_sym_esac] = ACTIONS(2101), + [anon_sym_PIPE] = ACTIONS(2101), + [anon_sym_SEMI_SEMI] = ACTIONS(2099), + [anon_sym_PIPE_AMP] = ACTIONS(2099), + [anon_sym_AMP_AMP] = ACTIONS(2099), + [anon_sym_PIPE_PIPE] = ACTIONS(2099), + [anon_sym_LT] = ACTIONS(2101), + [anon_sym_GT] = ACTIONS(2101), + [anon_sym_GT_GT] = ACTIONS(2099), + [anon_sym_AMP_GT] = ACTIONS(2101), + [anon_sym_AMP_GT_GT] = ACTIONS(2099), + [anon_sym_LT_AMP] = ACTIONS(2099), + [anon_sym_GT_AMP] = ACTIONS(2099), + [sym__special_characters] = ACTIONS(2099), + [anon_sym_DQUOTE] = ACTIONS(2099), + [anon_sym_DOLLAR] = ACTIONS(2101), + [sym_raw_string] = ACTIONS(2099), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2099), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2099), + [anon_sym_BQUOTE] = ACTIONS(2099), + [anon_sym_LT_LPAREN] = ACTIONS(2099), + [anon_sym_GT_LPAREN] = ACTIONS(2099), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(2101), + [anon_sym_LF] = ACTIONS(2099), + [anon_sym_AMP] = ACTIONS(2101), + }, + [2464] = { + [sym_concatenation] = STATE(1026), + [sym_string] = STATE(558), + [sym_simple_expansion] = STATE(558), + [sym_string_expansion] = STATE(558), + [sym_expansion] = STATE(558), + [sym_command_substitution] = STATE(558), + [sym_process_substitution] = STATE(558), + [aux_sym_for_statement_repeat1] = STATE(1026), + [anon_sym_RPAREN] = ACTIONS(5946), + [sym__special_characters] = ACTIONS(1112), + [anon_sym_DQUOTE] = ACTIONS(1114), + [anon_sym_DOLLAR] = ACTIONS(1116), + [sym_raw_string] = ACTIONS(1118), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1120), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1122), + [anon_sym_BQUOTE] = ACTIONS(1124), + [anon_sym_LT_LPAREN] = ACTIONS(1126), + [anon_sym_GT_LPAREN] = ACTIONS(1126), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1118), + }, + [2465] = { + [sym_string] = STATE(2611), + [sym_simple_expansion] = STATE(2611), + [sym_string_expansion] = STATE(2611), + [sym_expansion] = STATE(2611), + [sym_command_substitution] = STATE(2611), + [sym_process_substitution] = STATE(2611), + [sym__special_characters] = ACTIONS(5948), + [anon_sym_DQUOTE] = ACTIONS(5330), + [anon_sym_DOLLAR] = ACTIONS(5332), + [sym_raw_string] = ACTIONS(5948), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5336), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5338), + [anon_sym_BQUOTE] = ACTIONS(5340), + [anon_sym_LT_LPAREN] = ACTIONS(5342), + [anon_sym_GT_LPAREN] = ACTIONS(5342), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(5948), + }, + [2466] = { + [aux_sym_concatenation_repeat1] = STATE(2612), [sym_file_descriptor] = ACTIONS(807), - [sym__concat] = ACTIONS(807), + [sym__concat] = ACTIONS(5576), [sym_variable_name] = ACTIONS(807), [anon_sym_SEMI] = ACTIONS(809), [anon_sym_esac] = ACTIONS(809), @@ -66812,12 +71469,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(807), [anon_sym_LT_LPAREN] = ACTIONS(807), [anon_sym_GT_LPAREN] = ACTIONS(807), - [sym_comment] = ACTIONS(53), + [sym_comment] = ACTIONS(55), [sym_word] = ACTIONS(809), [anon_sym_LF] = ACTIONS(807), [anon_sym_AMP] = ACTIONS(809), }, - [2416] = { + [2467] = { [sym_file_descriptor] = ACTIONS(811), [sym__concat] = ACTIONS(811), [sym_variable_name] = ACTIONS(811), @@ -66844,2530 +71501,2745 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(811), [anon_sym_LT_LPAREN] = ACTIONS(811), [anon_sym_GT_LPAREN] = ACTIONS(811), - [sym_comment] = ACTIONS(53), + [sym_comment] = ACTIONS(55), [sym_word] = ACTIONS(813), [anon_sym_LF] = ACTIONS(811), [anon_sym_AMP] = ACTIONS(813), }, - [2417] = { - [anon_sym_LBRACK] = ACTIONS(815), - [anon_sym_EQ] = ACTIONS(5863), - [sym_comment] = ACTIONS(53), - }, - [2418] = { - [sym_subscript] = STATE(2567), - [sym_variable_name] = ACTIONS(5865), - [anon_sym_DOLLAR] = ACTIONS(5867), - [anon_sym_DASH] = ACTIONS(5867), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5869), - [anon_sym_STAR] = ACTIONS(5871), - [anon_sym_AT] = ACTIONS(5871), - [anon_sym_QMARK] = ACTIONS(5871), - [anon_sym_0] = ACTIONS(5869), - [anon_sym__] = ACTIONS(5869), - }, - [2419] = { - [sym_concatenation] = STATE(2570), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(2570), - [anon_sym_RBRACE] = ACTIONS(5873), - [anon_sym_EQ] = ACTIONS(5875), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(5877), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(5879), - [anon_sym_COLON] = ACTIONS(5875), - [anon_sym_COLON_QMARK] = ACTIONS(5875), - [anon_sym_COLON_DASH] = ACTIONS(5875), - [anon_sym_PERCENT] = ACTIONS(5875), - [anon_sym_DASH] = ACTIONS(5875), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [2420] = { - [sym_concatenation] = STATE(2573), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(2573), - [anon_sym_RBRACE] = ACTIONS(5881), - [anon_sym_EQ] = ACTIONS(5883), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(5885), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(5887), - [anon_sym_COLON] = ACTIONS(5883), - [anon_sym_COLON_QMARK] = ACTIONS(5883), - [anon_sym_COLON_DASH] = ACTIONS(5883), - [anon_sym_PERCENT] = ACTIONS(5883), - [anon_sym_DASH] = ACTIONS(5883), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [2421] = { - [anon_sym_SEMI] = ACTIONS(5889), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(5891), - [anon_sym_SEMI_SEMI] = ACTIONS(5893), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(5893), - [anon_sym_AMP] = ACTIONS(5889), - }, - [2422] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(5889), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(5891), - [anon_sym_SEMI_SEMI] = ACTIONS(5893), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(5893), - [anon_sym_AMP] = ACTIONS(5889), - }, - [2423] = { - [sym__terminated_statement] = STATE(190), - [sym_for_statement] = STATE(2576), - [sym_c_style_for_statement] = STATE(2576), - [sym_while_statement] = STATE(2576), - [sym_if_statement] = STATE(2576), - [sym_case_statement] = STATE(2576), - [sym_function_definition] = STATE(2576), - [sym_subshell] = STATE(2576), - [sym_pipeline] = STATE(2576), - [sym_list] = STATE(2576), - [sym_negated_command] = STATE(2576), - [sym_test_command] = STATE(2576), - [sym_declaration_command] = STATE(2576), - [sym_unset_command] = STATE(2576), - [sym_command] = STATE(2576), - [sym_command_name] = STATE(78), - [sym_variable_assignment] = STATE(2577), - [sym_subscript] = STATE(80), - [sym_file_redirect] = STATE(82), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(75), - [sym_simple_expansion] = STATE(75), - [sym_string_expansion] = STATE(75), - [sym_expansion] = STATE(75), - [sym_command_substitution] = STATE(75), - [sym_process_substitution] = STATE(75), - [aux_sym__statements_repeat1] = STATE(190), - [aux_sym_command_repeat1] = STATE(82), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(111), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(119), - [anon_sym_declare] = ACTIONS(121), - [anon_sym_typeset] = ACTIONS(121), - [anon_sym_export] = ACTIONS(121), - [anon_sym_readonly] = ACTIONS(121), - [anon_sym_local] = ACTIONS(121), - [anon_sym_unset] = ACTIONS(123), - [anon_sym_unsetenv] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), - }, - [2424] = { - [anon_sym_SEMI] = ACTIONS(5895), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_SEMI_SEMI] = ACTIONS(5897), - [anon_sym_PIPE_AMP] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(883), - [anon_sym_PIPE_PIPE] = ACTIONS(883), - [anon_sym_BQUOTE] = ACTIONS(5891), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(5897), - [anon_sym_AMP] = ACTIONS(5895), - }, - [2425] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(5895), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_SEMI_SEMI] = ACTIONS(5897), - [anon_sym_PIPE_AMP] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(883), - [anon_sym_PIPE_PIPE] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(5891), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(5897), - [anon_sym_AMP] = ACTIONS(5895), - }, - [2426] = { - [sym__terminated_statement] = STATE(190), - [sym_for_statement] = STATE(2579), - [sym_c_style_for_statement] = STATE(2579), - [sym_while_statement] = STATE(2579), - [sym_if_statement] = STATE(2579), - [sym_case_statement] = STATE(2579), - [sym_function_definition] = STATE(2579), - [sym_subshell] = STATE(2579), - [sym_pipeline] = STATE(2579), - [sym_list] = STATE(2579), - [sym_negated_command] = STATE(2579), - [sym_test_command] = STATE(2579), - [sym_declaration_command] = STATE(2579), - [sym_unset_command] = STATE(2579), - [sym_command] = STATE(2579), - [sym_command_name] = STATE(165), - [sym_variable_assignment] = STATE(2580), - [sym_subscript] = STATE(53), - [sym_file_redirect] = STATE(168), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(47), - [sym_simple_expansion] = STATE(47), - [sym_string_expansion] = STATE(47), - [sym_expansion] = STATE(47), - [sym_command_substitution] = STATE(47), - [sym_process_substitution] = STATE(47), - [aux_sym__statements_repeat1] = STATE(190), - [aux_sym_command_repeat1] = STATE(168), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(69), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(289), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(291), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(293), - [anon_sym_LBRACK] = ACTIONS(295), - [anon_sym_LBRACK_LBRACK] = ACTIONS(297), - [anon_sym_declare] = ACTIONS(299), - [anon_sym_typeset] = ACTIONS(299), - [anon_sym_export] = ACTIONS(299), - [anon_sym_readonly] = ACTIONS(299), - [anon_sym_local] = ACTIONS(299), - [anon_sym_unset] = ACTIONS(301), - [anon_sym_unsetenv] = ACTIONS(301), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(87), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(303), - }, - [2427] = { - [anon_sym_SEMI] = ACTIONS(5899), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(5901), - [anon_sym_SEMI_SEMI] = ACTIONS(5903), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(5903), - [anon_sym_AMP] = ACTIONS(5899), - }, - [2428] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(5899), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(5901), - [anon_sym_SEMI_SEMI] = ACTIONS(5903), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(5903), - [anon_sym_AMP] = ACTIONS(5899), - }, - [2429] = { - [sym__terminated_statement] = STATE(190), - [sym_for_statement] = STATE(2583), - [sym_c_style_for_statement] = STATE(2583), - [sym_while_statement] = STATE(2583), - [sym_if_statement] = STATE(2583), - [sym_case_statement] = STATE(2583), - [sym_function_definition] = STATE(2583), - [sym_subshell] = STATE(2583), - [sym_pipeline] = STATE(2583), - [sym_list] = STATE(2583), - [sym_negated_command] = STATE(2583), - [sym_test_command] = STATE(2583), - [sym_declaration_command] = STATE(2583), - [sym_unset_command] = STATE(2583), - [sym_command] = STATE(2583), - [sym_command_name] = STATE(78), - [sym_variable_assignment] = STATE(2584), - [sym_subscript] = STATE(80), - [sym_file_redirect] = STATE(82), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(75), - [sym_simple_expansion] = STATE(75), - [sym_string_expansion] = STATE(75), - [sym_expansion] = STATE(75), - [sym_command_substitution] = STATE(75), - [sym_process_substitution] = STATE(75), - [aux_sym__statements_repeat1] = STATE(190), - [aux_sym_command_repeat1] = STATE(82), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(111), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(119), - [anon_sym_declare] = ACTIONS(121), - [anon_sym_typeset] = ACTIONS(121), - [anon_sym_export] = ACTIONS(121), - [anon_sym_readonly] = ACTIONS(121), - [anon_sym_local] = ACTIONS(121), - [anon_sym_unset] = ACTIONS(123), - [anon_sym_unsetenv] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), - }, - [2430] = { - [sym_file_redirect] = STATE(2349), - [sym_heredoc_redirect] = STATE(2349), - [sym_heredoc_body] = STATE(1086), - [sym_herestring_redirect] = STATE(2349), - [aux_sym_while_statement_repeat1] = STATE(2349), - [sym__simple_heredoc_body] = ACTIONS(321), - [sym__heredoc_body_beginning] = ACTIONS(323), - [sym_file_descriptor] = ACTIONS(4909), - [anon_sym_SEMI] = ACTIONS(2331), - [anon_sym_esac] = ACTIONS(2329), - [anon_sym_PIPE] = ACTIONS(2331), - [anon_sym_SEMI_SEMI] = ACTIONS(2329), - [anon_sym_PIPE_AMP] = ACTIONS(2329), - [anon_sym_AMP_AMP] = ACTIONS(2329), - [anon_sym_PIPE_PIPE] = ACTIONS(2329), - [anon_sym_LT] = ACTIONS(4913), - [anon_sym_GT] = ACTIONS(4913), - [anon_sym_GT_GT] = ACTIONS(4915), - [anon_sym_AMP_GT] = ACTIONS(4913), - [anon_sym_AMP_GT_GT] = ACTIONS(4915), - [anon_sym_LT_AMP] = ACTIONS(4915), - [anon_sym_GT_AMP] = ACTIONS(4915), - [anon_sym_LT_LT] = ACTIONS(337), - [anon_sym_LT_LT_DASH] = ACTIONS(339), - [anon_sym_LT_LT_LT] = ACTIONS(4917), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(2329), - [anon_sym_AMP] = ACTIONS(2331), - }, - [2431] = { - [sym_compound_statement] = STATE(2585), - [anon_sym_LBRACE] = ACTIONS(511), - [sym_comment] = ACTIONS(53), - }, - [2432] = { - [anon_sym_LT] = ACTIONS(5905), - [anon_sym_GT] = ACTIONS(5905), - [anon_sym_GT_GT] = ACTIONS(5907), - [anon_sym_AMP_GT] = ACTIONS(5905), - [anon_sym_AMP_GT_GT] = ACTIONS(5907), - [anon_sym_LT_AMP] = ACTIONS(5907), - [anon_sym_GT_AMP] = ACTIONS(5907), - [sym_comment] = ACTIONS(53), - }, - [2433] = { - [sym_concatenation] = STATE(1135), - [sym_string] = STATE(2588), - [sym_simple_expansion] = STATE(2588), - [sym_string_expansion] = STATE(2588), - [sym_expansion] = STATE(2588), - [sym_command_substitution] = STATE(2588), - [sym_process_substitution] = STATE(2588), - [sym__special_characters] = ACTIONS(5909), - [anon_sym_DQUOTE] = ACTIONS(393), - [anon_sym_DOLLAR] = ACTIONS(395), - [sym_raw_string] = ACTIONS(5911), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(399), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(401), - [anon_sym_BQUOTE] = ACTIONS(403), - [anon_sym_LT_LPAREN] = ACTIONS(405), - [anon_sym_GT_LPAREN] = ACTIONS(405), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5911), - }, - [2434] = { - [anon_sym_LT] = ACTIONS(5913), - [anon_sym_GT] = ACTIONS(5913), - [anon_sym_GT_GT] = ACTIONS(5915), - [anon_sym_AMP_GT] = ACTIONS(5913), - [anon_sym_AMP_GT_GT] = ACTIONS(5915), - [anon_sym_LT_AMP] = ACTIONS(5915), - [anon_sym_GT_AMP] = ACTIONS(5915), - [sym_comment] = ACTIONS(53), - }, - [2435] = { - [sym_concatenation] = STATE(1186), - [sym_string] = STATE(2591), - [sym_simple_expansion] = STATE(2591), - [sym_string_expansion] = STATE(2591), - [sym_expansion] = STATE(2591), - [sym_command_substitution] = STATE(2591), - [sym_process_substitution] = STATE(2591), - [sym__special_characters] = ACTIONS(5917), - [anon_sym_DQUOTE] = ACTIONS(2612), - [anon_sym_DOLLAR] = ACTIONS(2614), - [sym_raw_string] = ACTIONS(5919), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2618), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2620), - [anon_sym_BQUOTE] = ACTIONS(2622), - [anon_sym_LT_LPAREN] = ACTIONS(2624), - [anon_sym_GT_LPAREN] = ACTIONS(2624), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5919), - }, - [2436] = { - [sym_concatenation] = STATE(1190), - [sym_string] = STATE(2593), - [sym_simple_expansion] = STATE(2593), - [sym_string_expansion] = STATE(2593), - [sym_expansion] = STATE(2593), - [sym_command_substitution] = STATE(2593), - [sym_process_substitution] = STATE(2593), - [sym__special_characters] = ACTIONS(5921), - [anon_sym_DQUOTE] = ACTIONS(2612), - [anon_sym_DOLLAR] = ACTIONS(2614), - [sym_raw_string] = ACTIONS(5923), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2618), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2620), - [anon_sym_BQUOTE] = ACTIONS(2622), - [anon_sym_LT_LPAREN] = ACTIONS(2624), - [anon_sym_GT_LPAREN] = ACTIONS(2624), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5923), - }, - [2437] = { - [sym_file_redirect] = STATE(2594), - [sym_heredoc_redirect] = STATE(2594), - [sym_herestring_redirect] = STATE(2594), - [aux_sym_while_statement_repeat1] = STATE(2594), - [sym_file_descriptor] = ACTIONS(5505), - [anon_sym_SEMI] = ACTIONS(2634), - [anon_sym_esac] = ACTIONS(2632), - [anon_sym_PIPE] = ACTIONS(2634), - [anon_sym_SEMI_SEMI] = ACTIONS(2632), - [anon_sym_PIPE_AMP] = ACTIONS(2632), - [anon_sym_AMP_AMP] = ACTIONS(2632), - [anon_sym_PIPE_PIPE] = ACTIONS(2632), - [anon_sym_LT] = ACTIONS(5507), - [anon_sym_GT] = ACTIONS(5507), - [anon_sym_GT_GT] = ACTIONS(5509), - [anon_sym_AMP_GT] = ACTIONS(5507), - [anon_sym_AMP_GT_GT] = ACTIONS(5509), - [anon_sym_LT_AMP] = ACTIONS(5509), - [anon_sym_GT_AMP] = ACTIONS(5509), - [anon_sym_LT_LT] = ACTIONS(1413), - [anon_sym_LT_LT_DASH] = ACTIONS(1415), - [anon_sym_LT_LT_LT] = ACTIONS(5511), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(2632), - [anon_sym_AMP] = ACTIONS(2634), - }, - [2438] = { - [sym_variable_name] = ACTIONS(1071), - [anon_sym_SEMI] = ACTIONS(1073), - [anon_sym_esac] = ACTIONS(1073), - [anon_sym_PIPE] = ACTIONS(1073), - [anon_sym_SEMI_SEMI] = ACTIONS(1071), - [anon_sym_PIPE_AMP] = ACTIONS(1071), - [anon_sym_AMP_AMP] = ACTIONS(1071), - [anon_sym_PIPE_PIPE] = ACTIONS(1071), - [sym__special_characters] = ACTIONS(1071), - [anon_sym_DQUOTE] = ACTIONS(1071), - [anon_sym_DOLLAR] = ACTIONS(1073), - [sym_raw_string] = ACTIONS(1071), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1071), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1071), - [anon_sym_BQUOTE] = ACTIONS(1071), - [anon_sym_LT_LPAREN] = ACTIONS(1071), - [anon_sym_GT_LPAREN] = ACTIONS(1071), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1073), - [sym_word] = ACTIONS(1073), - [anon_sym_LF] = ACTIONS(1071), - [anon_sym_AMP] = ACTIONS(1073), - }, - [2439] = { - [sym_concatenation] = STATE(2596), - [sym_string] = STATE(534), - [sym_simple_expansion] = STATE(534), - [sym_string_expansion] = STATE(534), - [sym_expansion] = STATE(534), - [sym_command_substitution] = STATE(534), - [sym_process_substitution] = STATE(534), - [aux_sym_for_statement_repeat1] = STATE(2596), - [anon_sym_RPAREN] = ACTIONS(5925), - [sym__special_characters] = ACTIONS(1077), - [anon_sym_DQUOTE] = ACTIONS(1079), - [anon_sym_DOLLAR] = ACTIONS(1081), - [sym_raw_string] = ACTIONS(1083), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1085), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1087), - [anon_sym_BQUOTE] = ACTIONS(1089), - [anon_sym_LT_LPAREN] = ACTIONS(1091), - [anon_sym_GT_LPAREN] = ACTIONS(1091), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1083), - }, - [2440] = { - [aux_sym_concatenation_repeat1] = STATE(2263), - [sym__concat] = ACTIONS(5209), - [sym_variable_name] = ACTIONS(1093), - [anon_sym_SEMI] = ACTIONS(1097), - [anon_sym_esac] = ACTIONS(1097), - [anon_sym_PIPE] = ACTIONS(1097), - [anon_sym_SEMI_SEMI] = ACTIONS(1093), - [anon_sym_PIPE_AMP] = ACTIONS(1093), - [anon_sym_AMP_AMP] = ACTIONS(1093), - [anon_sym_PIPE_PIPE] = ACTIONS(1093), - [sym__special_characters] = ACTIONS(1093), - [anon_sym_DQUOTE] = ACTIONS(1093), - [anon_sym_DOLLAR] = ACTIONS(1097), - [sym_raw_string] = ACTIONS(1093), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1093), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1093), - [anon_sym_BQUOTE] = ACTIONS(1093), - [anon_sym_LT_LPAREN] = ACTIONS(1093), - [anon_sym_GT_LPAREN] = ACTIONS(1093), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1097), - [sym_word] = ACTIONS(1097), - [anon_sym_LF] = ACTIONS(1093), - [anon_sym_AMP] = ACTIONS(1097), - }, - [2441] = { - [aux_sym_concatenation_repeat1] = STATE(2263), - [sym__concat] = ACTIONS(5209), - [sym_variable_name] = ACTIONS(1071), - [anon_sym_SEMI] = ACTIONS(1073), - [anon_sym_esac] = ACTIONS(1073), - [anon_sym_PIPE] = ACTIONS(1073), - [anon_sym_SEMI_SEMI] = ACTIONS(1071), - [anon_sym_PIPE_AMP] = ACTIONS(1071), - [anon_sym_AMP_AMP] = ACTIONS(1071), - [anon_sym_PIPE_PIPE] = ACTIONS(1071), - [sym__special_characters] = ACTIONS(1071), - [anon_sym_DQUOTE] = ACTIONS(1071), - [anon_sym_DOLLAR] = ACTIONS(1073), - [sym_raw_string] = ACTIONS(1071), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1071), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1071), - [anon_sym_BQUOTE] = ACTIONS(1071), - [anon_sym_LT_LPAREN] = ACTIONS(1071), - [anon_sym_GT_LPAREN] = ACTIONS(1071), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1073), - [sym_word] = ACTIONS(1073), - [anon_sym_LF] = ACTIONS(1071), - [anon_sym_AMP] = ACTIONS(1073), - }, - [2442] = { - [sym__concat] = ACTIONS(1724), - [sym_variable_name] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_esac] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(1726), - [anon_sym_SEMI_SEMI] = ACTIONS(1724), - [anon_sym_PIPE_AMP] = ACTIONS(1724), - [anon_sym_AMP_AMP] = ACTIONS(1724), - [anon_sym_PIPE_PIPE] = ACTIONS(1724), - [sym__special_characters] = ACTIONS(1724), - [anon_sym_DQUOTE] = ACTIONS(1724), - [anon_sym_DOLLAR] = ACTIONS(1726), - [sym_raw_string] = ACTIONS(1724), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1724), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1724), - [anon_sym_BQUOTE] = ACTIONS(1724), - [anon_sym_LT_LPAREN] = ACTIONS(1724), - [anon_sym_GT_LPAREN] = ACTIONS(1724), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1726), - [sym_word] = ACTIONS(1726), - [anon_sym_LF] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1726), - }, - [2443] = { - [aux_sym_concatenation_repeat1] = STATE(2443), - [sym__concat] = ACTIONS(5927), - [sym_variable_name] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_esac] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(1726), - [anon_sym_SEMI_SEMI] = ACTIONS(1724), - [anon_sym_PIPE_AMP] = ACTIONS(1724), - [anon_sym_AMP_AMP] = ACTIONS(1724), - [anon_sym_PIPE_PIPE] = ACTIONS(1724), - [sym__special_characters] = ACTIONS(1724), - [anon_sym_DQUOTE] = ACTIONS(1724), - [anon_sym_DOLLAR] = ACTIONS(1726), - [sym_raw_string] = ACTIONS(1724), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1724), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1724), - [anon_sym_BQUOTE] = ACTIONS(1724), - [anon_sym_LT_LPAREN] = ACTIONS(1724), - [anon_sym_GT_LPAREN] = ACTIONS(1724), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1726), - [sym_word] = ACTIONS(1726), - [anon_sym_LF] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1726), - }, - [2444] = { - [sym__concat] = ACTIONS(1731), - [sym_variable_name] = ACTIONS(1731), - [anon_sym_SEMI] = ACTIONS(1733), - [anon_sym_esac] = ACTIONS(1733), - [anon_sym_PIPE] = ACTIONS(1733), - [anon_sym_SEMI_SEMI] = ACTIONS(1731), - [anon_sym_PIPE_AMP] = ACTIONS(1731), - [anon_sym_AMP_AMP] = ACTIONS(1731), - [anon_sym_PIPE_PIPE] = ACTIONS(1731), - [sym__special_characters] = ACTIONS(1731), - [anon_sym_DQUOTE] = ACTIONS(1731), - [anon_sym_DOLLAR] = ACTIONS(1733), - [sym_raw_string] = ACTIONS(1731), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1731), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1731), - [anon_sym_BQUOTE] = ACTIONS(1731), - [anon_sym_LT_LPAREN] = ACTIONS(1731), - [anon_sym_GT_LPAREN] = ACTIONS(1731), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1733), - [sym_word] = ACTIONS(1733), - [anon_sym_LF] = ACTIONS(1731), - [anon_sym_AMP] = ACTIONS(1733), - }, - [2445] = { - [anon_sym_DQUOTE] = ACTIONS(5930), - [anon_sym_DOLLAR] = ACTIONS(775), - [sym__string_content] = ACTIONS(777), - [anon_sym_POUND] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(781), - [anon_sym_STAR] = ACTIONS(783), - [anon_sym_AT] = ACTIONS(783), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_0] = ACTIONS(781), - [anon_sym__] = ACTIONS(781), - }, - [2446] = { - [sym_concatenation] = STATE(2601), - [sym_string] = STATE(2600), - [sym_simple_expansion] = STATE(2600), - [sym_string_expansion] = STATE(2600), - [sym_expansion] = STATE(2600), - [sym_command_substitution] = STATE(2600), - [sym_process_substitution] = STATE(2600), - [anon_sym_RBRACE] = ACTIONS(5932), - [sym__special_characters] = ACTIONS(5934), - [anon_sym_DQUOTE] = ACTIONS(1802), - [anon_sym_DOLLAR] = ACTIONS(1804), - [sym_raw_string] = ACTIONS(5936), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1808), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1810), - [anon_sym_BQUOTE] = ACTIONS(1812), - [anon_sym_LT_LPAREN] = ACTIONS(1814), - [anon_sym_GT_LPAREN] = ACTIONS(1814), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5936), - }, - [2447] = { - [anon_sym_LBRACK] = ACTIONS(815), - [anon_sym_EQ] = ACTIONS(5938), - [sym_comment] = ACTIONS(53), - }, - [2448] = { - [sym_concatenation] = STATE(2605), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(2605), - [anon_sym_RBRACE] = ACTIONS(5940), - [anon_sym_EQ] = ACTIONS(5942), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(5944), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(5946), - [anon_sym_COLON] = ACTIONS(5942), - [anon_sym_COLON_QMARK] = ACTIONS(5942), - [anon_sym_COLON_DASH] = ACTIONS(5942), - [anon_sym_PERCENT] = ACTIONS(5942), - [anon_sym_DASH] = ACTIONS(5942), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [2449] = { - [sym_concatenation] = STATE(2607), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(2607), - [anon_sym_RBRACE] = ACTIONS(5932), - [anon_sym_EQ] = ACTIONS(5948), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(5950), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(5952), - [anon_sym_COLON] = ACTIONS(5948), - [anon_sym_COLON_QMARK] = ACTIONS(5948), - [anon_sym_COLON_DASH] = ACTIONS(5948), - [anon_sym_PERCENT] = ACTIONS(5948), - [anon_sym_DASH] = ACTIONS(5948), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [2450] = { - [sym__concat] = ACTIONS(1832), - [sym_variable_name] = ACTIONS(1832), - [anon_sym_SEMI] = ACTIONS(1834), - [anon_sym_esac] = ACTIONS(1834), - [anon_sym_PIPE] = ACTIONS(1834), - [anon_sym_SEMI_SEMI] = ACTIONS(1832), - [anon_sym_PIPE_AMP] = ACTIONS(1832), - [anon_sym_AMP_AMP] = ACTIONS(1832), - [anon_sym_PIPE_PIPE] = ACTIONS(1832), - [sym__special_characters] = ACTIONS(1832), - [anon_sym_DQUOTE] = ACTIONS(1832), - [anon_sym_DOLLAR] = ACTIONS(1834), - [sym_raw_string] = ACTIONS(1832), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1832), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1832), - [anon_sym_BQUOTE] = ACTIONS(1832), - [anon_sym_LT_LPAREN] = ACTIONS(1832), - [anon_sym_GT_LPAREN] = ACTIONS(1832), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1834), - [sym_word] = ACTIONS(1834), - [anon_sym_LF] = ACTIONS(1832), - [anon_sym_AMP] = ACTIONS(1834), - }, - [2451] = { - [sym_comment] = ACTIONS(265), - [sym_regex_without_right_brace] = ACTIONS(5954), - }, - [2452] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(5956), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [2453] = { - [sym__concat] = ACTIONS(1876), - [sym_variable_name] = ACTIONS(1876), - [anon_sym_SEMI] = ACTIONS(1878), - [anon_sym_esac] = ACTIONS(1878), - [anon_sym_PIPE] = ACTIONS(1878), - [anon_sym_SEMI_SEMI] = ACTIONS(1876), - [anon_sym_PIPE_AMP] = ACTIONS(1876), - [anon_sym_AMP_AMP] = ACTIONS(1876), - [anon_sym_PIPE_PIPE] = ACTIONS(1876), - [sym__special_characters] = ACTIONS(1876), - [anon_sym_DQUOTE] = ACTIONS(1876), - [anon_sym_DOLLAR] = ACTIONS(1878), - [sym_raw_string] = ACTIONS(1876), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1876), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1876), - [anon_sym_BQUOTE] = ACTIONS(1876), - [anon_sym_LT_LPAREN] = ACTIONS(1876), - [anon_sym_GT_LPAREN] = ACTIONS(1876), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1878), - [sym_word] = ACTIONS(1878), - [anon_sym_LF] = ACTIONS(1876), - [anon_sym_AMP] = ACTIONS(1878), - }, - [2454] = { - [sym_comment] = ACTIONS(265), - [sym_regex_without_right_brace] = ACTIONS(5958), - }, - [2455] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(5932), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [2456] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(5960), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(901), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), - }, - [2457] = { - [sym__concat] = ACTIONS(1884), - [sym_variable_name] = ACTIONS(1884), - [anon_sym_SEMI] = ACTIONS(1886), - [anon_sym_esac] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(1886), - [anon_sym_SEMI_SEMI] = ACTIONS(1884), - [anon_sym_PIPE_AMP] = ACTIONS(1884), - [anon_sym_AMP_AMP] = ACTIONS(1884), - [anon_sym_PIPE_PIPE] = ACTIONS(1884), - [sym__special_characters] = ACTIONS(1884), - [anon_sym_DQUOTE] = ACTIONS(1884), - [anon_sym_DOLLAR] = ACTIONS(1886), - [sym_raw_string] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1884), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1884), - [anon_sym_BQUOTE] = ACTIONS(1884), - [anon_sym_LT_LPAREN] = ACTIONS(1884), - [anon_sym_GT_LPAREN] = ACTIONS(1884), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1886), - [sym_word] = ACTIONS(1886), - [anon_sym_LF] = ACTIONS(1884), - [anon_sym_AMP] = ACTIONS(1886), - }, - [2458] = { - [anon_sym_SEMI] = ACTIONS(5962), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(5960), - [anon_sym_SEMI_SEMI] = ACTIONS(5964), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(5964), - [anon_sym_AMP] = ACTIONS(5962), - }, - [2459] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(5962), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(5960), - [anon_sym_SEMI_SEMI] = ACTIONS(5964), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(5964), - [anon_sym_AMP] = ACTIONS(5962), - }, - [2460] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(5960), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), - }, - [2461] = { - [anon_sym_SEMI] = ACTIONS(5966), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_SEMI_SEMI] = ACTIONS(5968), - [anon_sym_PIPE_AMP] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(883), - [anon_sym_PIPE_PIPE] = ACTIONS(883), - [anon_sym_BQUOTE] = ACTIONS(5960), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(5968), - [anon_sym_AMP] = ACTIONS(5966), - }, - [2462] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(5966), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_SEMI_SEMI] = ACTIONS(5968), - [anon_sym_PIPE_AMP] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(883), - [anon_sym_PIPE_PIPE] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(5960), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(5968), - [anon_sym_AMP] = ACTIONS(5966), - }, - [2463] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(5970), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(901), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), - }, - [2464] = { - [sym__concat] = ACTIONS(1916), - [sym_variable_name] = ACTIONS(1916), - [anon_sym_SEMI] = ACTIONS(1918), - [anon_sym_esac] = ACTIONS(1918), - [anon_sym_PIPE] = ACTIONS(1918), - [anon_sym_SEMI_SEMI] = ACTIONS(1916), - [anon_sym_PIPE_AMP] = ACTIONS(1916), - [anon_sym_AMP_AMP] = ACTIONS(1916), - [anon_sym_PIPE_PIPE] = ACTIONS(1916), - [sym__special_characters] = ACTIONS(1916), - [anon_sym_DQUOTE] = ACTIONS(1916), - [anon_sym_DOLLAR] = ACTIONS(1918), - [sym_raw_string] = ACTIONS(1916), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1916), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1916), - [anon_sym_BQUOTE] = ACTIONS(1916), - [anon_sym_LT_LPAREN] = ACTIONS(1916), - [anon_sym_GT_LPAREN] = ACTIONS(1916), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1918), - [sym_word] = ACTIONS(1918), - [anon_sym_LF] = ACTIONS(1916), - [anon_sym_AMP] = ACTIONS(1918), - }, - [2465] = { - [anon_sym_SEMI] = ACTIONS(5972), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(5970), - [anon_sym_SEMI_SEMI] = ACTIONS(5974), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(5974), - [anon_sym_AMP] = ACTIONS(5972), - }, - [2466] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(5972), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(5970), - [anon_sym_SEMI_SEMI] = ACTIONS(5974), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(5974), - [anon_sym_AMP] = ACTIONS(5972), - }, - [2467] = { - [sym__concat] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_esac] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(1726), - [anon_sym_SEMI_SEMI] = ACTIONS(1724), - [anon_sym_PIPE_AMP] = ACTIONS(1724), - [anon_sym_AMP_AMP] = ACTIONS(1724), - [anon_sym_PIPE_PIPE] = ACTIONS(1724), - [sym__special_characters] = ACTIONS(1724), - [anon_sym_DQUOTE] = ACTIONS(1724), - [anon_sym_DOLLAR] = ACTIONS(1726), - [sym_raw_string] = ACTIONS(1724), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1724), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1724), - [anon_sym_BQUOTE] = ACTIONS(1724), - [anon_sym_LT_LPAREN] = ACTIONS(1724), - [anon_sym_GT_LPAREN] = ACTIONS(1724), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1726), - [sym_word] = ACTIONS(1726), - [anon_sym_LF] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1726), - }, [2468] = { - [aux_sym_concatenation_repeat1] = STATE(2468), - [sym__concat] = ACTIONS(5976), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_esac] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(1726), - [anon_sym_SEMI_SEMI] = ACTIONS(1724), - [anon_sym_PIPE_AMP] = ACTIONS(1724), - [anon_sym_AMP_AMP] = ACTIONS(1724), - [anon_sym_PIPE_PIPE] = ACTIONS(1724), - [sym__special_characters] = ACTIONS(1724), - [anon_sym_DQUOTE] = ACTIONS(1724), - [anon_sym_DOLLAR] = ACTIONS(1726), - [sym_raw_string] = ACTIONS(1724), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1724), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1724), - [anon_sym_BQUOTE] = ACTIONS(1724), - [anon_sym_LT_LPAREN] = ACTIONS(1724), - [anon_sym_GT_LPAREN] = ACTIONS(1724), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1726), - [sym_word] = ACTIONS(1726), - [anon_sym_LF] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_DQUOTE] = ACTIONS(5950), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym__string_content] = ACTIONS(821), + [anon_sym_POUND] = ACTIONS(815), + [sym_comment] = ACTIONS(281), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(823), + [anon_sym_STAR] = ACTIONS(825), + [anon_sym_AT] = ACTIONS(825), + [anon_sym_QMARK] = ACTIONS(825), + [anon_sym_0] = ACTIONS(823), + [anon_sym__] = ACTIONS(823), }, [2469] = { - [sym__concat] = ACTIONS(1731), - [anon_sym_SEMI] = ACTIONS(1733), - [anon_sym_esac] = ACTIONS(1733), - [anon_sym_PIPE] = ACTIONS(1733), - [anon_sym_SEMI_SEMI] = ACTIONS(1731), - [anon_sym_PIPE_AMP] = ACTIONS(1731), - [anon_sym_AMP_AMP] = ACTIONS(1731), - [anon_sym_PIPE_PIPE] = ACTIONS(1731), - [sym__special_characters] = ACTIONS(1731), - [anon_sym_DQUOTE] = ACTIONS(1731), - [anon_sym_DOLLAR] = ACTIONS(1733), - [sym_raw_string] = ACTIONS(1731), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1731), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1731), - [anon_sym_BQUOTE] = ACTIONS(1731), - [anon_sym_LT_LPAREN] = ACTIONS(1731), - [anon_sym_GT_LPAREN] = ACTIONS(1731), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1733), - [sym_word] = ACTIONS(1733), - [anon_sym_LF] = ACTIONS(1731), - [anon_sym_AMP] = ACTIONS(1733), + [sym_simple_expansion] = STATE(148), + [sym_expansion] = STATE(148), + [sym_command_substitution] = STATE(148), + [aux_sym_string_repeat1] = STATE(473), + [anon_sym_DQUOTE] = ACTIONS(5950), + [anon_sym_DOLLAR] = ACTIONS(5952), + [sym__string_content] = ACTIONS(273), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(277), + [anon_sym_BQUOTE] = ACTIONS(279), + [sym_comment] = ACTIONS(281), }, [2470] = { - [anon_sym_DQUOTE] = ACTIONS(5979), - [anon_sym_DOLLAR] = ACTIONS(775), - [sym__string_content] = ACTIONS(777), - [anon_sym_POUND] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(781), - [anon_sym_STAR] = ACTIONS(783), - [anon_sym_AT] = ACTIONS(783), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_0] = ACTIONS(781), - [anon_sym__] = ACTIONS(781), + [sym_file_descriptor] = ACTIONS(845), + [sym__concat] = ACTIONS(845), + [sym_variable_name] = ACTIONS(845), + [anon_sym_SEMI] = ACTIONS(847), + [anon_sym_esac] = ACTIONS(847), + [anon_sym_PIPE] = ACTIONS(847), + [anon_sym_SEMI_SEMI] = ACTIONS(845), + [anon_sym_PIPE_AMP] = ACTIONS(845), + [anon_sym_AMP_AMP] = ACTIONS(845), + [anon_sym_PIPE_PIPE] = ACTIONS(845), + [anon_sym_LT] = ACTIONS(847), + [anon_sym_GT] = ACTIONS(847), + [anon_sym_GT_GT] = ACTIONS(845), + [anon_sym_AMP_GT] = ACTIONS(847), + [anon_sym_AMP_GT_GT] = ACTIONS(845), + [anon_sym_LT_AMP] = ACTIONS(845), + [anon_sym_GT_AMP] = ACTIONS(845), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(845), + [anon_sym_DOLLAR] = ACTIONS(847), + [sym_raw_string] = ACTIONS(845), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(845), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), + [anon_sym_BQUOTE] = ACTIONS(845), + [anon_sym_LT_LPAREN] = ACTIONS(845), + [anon_sym_GT_LPAREN] = ACTIONS(845), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(847), + [anon_sym_LF] = ACTIONS(845), + [anon_sym_AMP] = ACTIONS(847), }, [2471] = { - [sym_concatenation] = STATE(2620), - [sym_string] = STATE(2619), - [sym_simple_expansion] = STATE(2619), - [sym_string_expansion] = STATE(2619), - [sym_expansion] = STATE(2619), - [sym_command_substitution] = STATE(2619), - [sym_process_substitution] = STATE(2619), - [anon_sym_RBRACE] = ACTIONS(5981), - [sym__special_characters] = ACTIONS(5983), - [anon_sym_DQUOTE] = ACTIONS(1802), - [anon_sym_DOLLAR] = ACTIONS(1804), - [sym_raw_string] = ACTIONS(5985), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1808), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1810), - [anon_sym_BQUOTE] = ACTIONS(1812), - [anon_sym_LT_LPAREN] = ACTIONS(1814), - [anon_sym_GT_LPAREN] = ACTIONS(1814), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5985), + [sym_file_descriptor] = ACTIONS(849), + [sym__concat] = ACTIONS(849), + [sym_variable_name] = ACTIONS(849), + [anon_sym_SEMI] = ACTIONS(851), + [anon_sym_esac] = ACTIONS(851), + [anon_sym_PIPE] = ACTIONS(851), + [anon_sym_SEMI_SEMI] = ACTIONS(849), + [anon_sym_PIPE_AMP] = ACTIONS(849), + [anon_sym_AMP_AMP] = ACTIONS(849), + [anon_sym_PIPE_PIPE] = ACTIONS(849), + [anon_sym_LT] = ACTIONS(851), + [anon_sym_GT] = ACTIONS(851), + [anon_sym_GT_GT] = ACTIONS(849), + [anon_sym_AMP_GT] = ACTIONS(851), + [anon_sym_AMP_GT_GT] = ACTIONS(849), + [anon_sym_LT_AMP] = ACTIONS(849), + [anon_sym_GT_AMP] = ACTIONS(849), + [sym__special_characters] = ACTIONS(849), + [anon_sym_DQUOTE] = ACTIONS(849), + [anon_sym_DOLLAR] = ACTIONS(851), + [sym_raw_string] = ACTIONS(849), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(849), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(849), + [anon_sym_BQUOTE] = ACTIONS(849), + [anon_sym_LT_LPAREN] = ACTIONS(849), + [anon_sym_GT_LPAREN] = ACTIONS(849), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(851), + [anon_sym_LF] = ACTIONS(849), + [anon_sym_AMP] = ACTIONS(851), }, [2472] = { - [anon_sym_LBRACK] = ACTIONS(815), - [anon_sym_EQ] = ACTIONS(5987), - [sym_comment] = ACTIONS(53), + [sym_file_descriptor] = ACTIONS(853), + [sym__concat] = ACTIONS(853), + [sym_variable_name] = ACTIONS(853), + [anon_sym_SEMI] = ACTIONS(855), + [anon_sym_esac] = ACTIONS(855), + [anon_sym_PIPE] = ACTIONS(855), + [anon_sym_SEMI_SEMI] = ACTIONS(853), + [anon_sym_PIPE_AMP] = ACTIONS(853), + [anon_sym_AMP_AMP] = ACTIONS(853), + [anon_sym_PIPE_PIPE] = ACTIONS(853), + [anon_sym_LT] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_GT_GT] = ACTIONS(853), + [anon_sym_AMP_GT] = ACTIONS(855), + [anon_sym_AMP_GT_GT] = ACTIONS(853), + [anon_sym_LT_AMP] = ACTIONS(853), + [anon_sym_GT_AMP] = ACTIONS(853), + [sym__special_characters] = ACTIONS(853), + [anon_sym_DQUOTE] = ACTIONS(853), + [anon_sym_DOLLAR] = ACTIONS(855), + [sym_raw_string] = ACTIONS(853), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(853), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(853), + [anon_sym_BQUOTE] = ACTIONS(853), + [anon_sym_LT_LPAREN] = ACTIONS(853), + [anon_sym_GT_LPAREN] = ACTIONS(853), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(855), + [anon_sym_LF] = ACTIONS(853), + [anon_sym_AMP] = ACTIONS(855), }, [2473] = { - [sym_concatenation] = STATE(2624), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(2624), - [anon_sym_RBRACE] = ACTIONS(5989), - [anon_sym_EQ] = ACTIONS(5991), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(5993), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(5995), - [anon_sym_COLON] = ACTIONS(5991), - [anon_sym_COLON_QMARK] = ACTIONS(5991), - [anon_sym_COLON_DASH] = ACTIONS(5991), - [anon_sym_PERCENT] = ACTIONS(5991), - [anon_sym_DASH] = ACTIONS(5991), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [anon_sym_LBRACK] = ACTIONS(857), + [anon_sym_EQ] = ACTIONS(5954), + [sym_comment] = ACTIONS(55), }, [2474] = { - [sym_concatenation] = STATE(2626), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(2626), - [anon_sym_RBRACE] = ACTIONS(5981), - [anon_sym_EQ] = ACTIONS(5997), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(5999), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(6001), - [anon_sym_COLON] = ACTIONS(5997), - [anon_sym_COLON_QMARK] = ACTIONS(5997), - [anon_sym_COLON_DASH] = ACTIONS(5997), - [anon_sym_PERCENT] = ACTIONS(5997), - [anon_sym_DASH] = ACTIONS(5997), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_subscript] = STATE(2618), + [sym_variable_name] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5958), + [anon_sym_DOLLAR] = ACTIONS(5958), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5960), + [anon_sym_STAR] = ACTIONS(5962), + [anon_sym_AT] = ACTIONS(5962), + [anon_sym_QMARK] = ACTIONS(5962), + [anon_sym_0] = ACTIONS(5960), + [anon_sym__] = ACTIONS(5960), }, [2475] = { - [sym__concat] = ACTIONS(1832), - [anon_sym_SEMI] = ACTIONS(1834), - [anon_sym_esac] = ACTIONS(1834), - [anon_sym_PIPE] = ACTIONS(1834), - [anon_sym_SEMI_SEMI] = ACTIONS(1832), - [anon_sym_PIPE_AMP] = ACTIONS(1832), - [anon_sym_AMP_AMP] = ACTIONS(1832), - [anon_sym_PIPE_PIPE] = ACTIONS(1832), - [sym__special_characters] = ACTIONS(1832), - [anon_sym_DQUOTE] = ACTIONS(1832), - [anon_sym_DOLLAR] = ACTIONS(1834), - [sym_raw_string] = ACTIONS(1832), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1832), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1832), - [anon_sym_BQUOTE] = ACTIONS(1832), - [anon_sym_LT_LPAREN] = ACTIONS(1832), - [anon_sym_GT_LPAREN] = ACTIONS(1832), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1834), - [sym_word] = ACTIONS(1834), - [anon_sym_LF] = ACTIONS(1832), - [anon_sym_AMP] = ACTIONS(1834), + [sym_concatenation] = STATE(2621), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2621), + [anon_sym_RBRACE] = ACTIONS(5964), + [anon_sym_EQ] = ACTIONS(5966), + [anon_sym_DASH] = ACTIONS(5966), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(5968), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(5970), + [anon_sym_COLON] = ACTIONS(5966), + [anon_sym_COLON_QMARK] = ACTIONS(5966), + [anon_sym_COLON_DASH] = ACTIONS(5966), + [anon_sym_PERCENT] = ACTIONS(5966), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2476] = { - [sym_comment] = ACTIONS(265), - [sym_regex_without_right_brace] = ACTIONS(6003), + [sym_concatenation] = STATE(2624), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2624), + [anon_sym_RBRACE] = ACTIONS(5972), + [anon_sym_EQ] = ACTIONS(5974), + [anon_sym_DASH] = ACTIONS(5974), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(5976), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(5978), + [anon_sym_COLON] = ACTIONS(5974), + [anon_sym_COLON_QMARK] = ACTIONS(5974), + [anon_sym_COLON_DASH] = ACTIONS(5974), + [anon_sym_PERCENT] = ACTIONS(5974), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2477] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(6005), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [anon_sym_SEMI] = ACTIONS(5980), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(5982), + [anon_sym_SEMI_SEMI] = ACTIONS(5984), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(5984), + [anon_sym_AMP] = ACTIONS(5980), }, [2478] = { - [sym__concat] = ACTIONS(1876), - [anon_sym_SEMI] = ACTIONS(1878), - [anon_sym_esac] = ACTIONS(1878), - [anon_sym_PIPE] = ACTIONS(1878), - [anon_sym_SEMI_SEMI] = ACTIONS(1876), - [anon_sym_PIPE_AMP] = ACTIONS(1876), - [anon_sym_AMP_AMP] = ACTIONS(1876), - [anon_sym_PIPE_PIPE] = ACTIONS(1876), - [sym__special_characters] = ACTIONS(1876), - [anon_sym_DQUOTE] = ACTIONS(1876), - [anon_sym_DOLLAR] = ACTIONS(1878), - [sym_raw_string] = ACTIONS(1876), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1876), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1876), - [anon_sym_BQUOTE] = ACTIONS(1876), - [anon_sym_LT_LPAREN] = ACTIONS(1876), - [anon_sym_GT_LPAREN] = ACTIONS(1876), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1878), - [sym_word] = ACTIONS(1878), - [anon_sym_LF] = ACTIONS(1876), - [anon_sym_AMP] = ACTIONS(1878), + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(5980), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(5982), + [anon_sym_SEMI_SEMI] = ACTIONS(5984), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(5984), + [anon_sym_AMP] = ACTIONS(5980), }, [2479] = { - [sym_comment] = ACTIONS(265), - [sym_regex_without_right_brace] = ACTIONS(6007), + [sym__terminated_statement] = STATE(198), + [sym_for_statement] = STATE(2627), + [sym_c_style_for_statement] = STATE(2627), + [sym_while_statement] = STATE(2627), + [sym_if_statement] = STATE(2627), + [sym_case_statement] = STATE(2627), + [sym_function_definition] = STATE(2627), + [sym_subshell] = STATE(2627), + [sym_pipeline] = STATE(2627), + [sym_list] = STATE(2627), + [sym_negated_command] = STATE(2627), + [sym_test_command] = STATE(2627), + [sym_declaration_command] = STATE(2627), + [sym_unset_command] = STATE(2627), + [sym_command] = STATE(2627), + [sym_command_name] = STATE(92), + [sym_variable_assignment] = STATE(2628), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(96), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), + [aux_sym__statements_repeat1] = STATE(198), + [aux_sym_command_repeat1] = STATE(96), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(137), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(149), + [anon_sym_declare] = ACTIONS(151), + [anon_sym_typeset] = ACTIONS(151), + [anon_sym_export] = ACTIONS(151), + [anon_sym_readonly] = ACTIONS(151), + [anon_sym_local] = ACTIONS(151), + [anon_sym_unset] = ACTIONS(153), + [anon_sym_unsetenv] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(159), }, [2480] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(5981), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [anon_sym_SEMI] = ACTIONS(5986), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_SEMI_SEMI] = ACTIONS(5988), + [anon_sym_PIPE_AMP] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_BQUOTE] = ACTIONS(5982), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(5988), + [anon_sym_AMP] = ACTIONS(5986), }, [2481] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(6009), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(901), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(5986), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_SEMI_SEMI] = ACTIONS(5988), + [anon_sym_PIPE_AMP] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(5982), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(5988), + [anon_sym_AMP] = ACTIONS(5986), }, [2482] = { - [sym__concat] = ACTIONS(1884), - [anon_sym_SEMI] = ACTIONS(1886), - [anon_sym_esac] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(1886), - [anon_sym_SEMI_SEMI] = ACTIONS(1884), - [anon_sym_PIPE_AMP] = ACTIONS(1884), - [anon_sym_AMP_AMP] = ACTIONS(1884), - [anon_sym_PIPE_PIPE] = ACTIONS(1884), - [sym__special_characters] = ACTIONS(1884), - [anon_sym_DQUOTE] = ACTIONS(1884), - [anon_sym_DOLLAR] = ACTIONS(1886), - [sym_raw_string] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1884), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1884), - [anon_sym_BQUOTE] = ACTIONS(1884), - [anon_sym_LT_LPAREN] = ACTIONS(1884), - [anon_sym_GT_LPAREN] = ACTIONS(1884), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1886), - [sym_word] = ACTIONS(1886), - [anon_sym_LF] = ACTIONS(1884), - [anon_sym_AMP] = ACTIONS(1886), + [sym__terminated_statement] = STATE(198), + [sym_for_statement] = STATE(2630), + [sym_c_style_for_statement] = STATE(2630), + [sym_while_statement] = STATE(2630), + [sym_if_statement] = STATE(2630), + [sym_case_statement] = STATE(2630), + [sym_function_definition] = STATE(2630), + [sym_subshell] = STATE(2630), + [sym_pipeline] = STATE(2630), + [sym_list] = STATE(2630), + [sym_negated_command] = STATE(2630), + [sym_test_command] = STATE(2630), + [sym_declaration_command] = STATE(2630), + [sym_unset_command] = STATE(2630), + [sym_command] = STATE(2630), + [sym_command_name] = STATE(173), + [sym_variable_assignment] = STATE(2631), + [sym_subscript] = STATE(66), + [sym_file_redirect] = STATE(176), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(60), + [sym_simple_expansion] = STATE(60), + [sym_string_expansion] = STATE(60), + [sym_expansion] = STATE(60), + [sym_command_substitution] = STATE(60), + [sym_process_substitution] = STATE(60), + [aux_sym__statements_repeat1] = STATE(198), + [aux_sym_command_repeat1] = STATE(176), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(95), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(305), + [anon_sym_while] = ACTIONS(307), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(311), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(315), + [anon_sym_declare] = ACTIONS(317), + [anon_sym_typeset] = ACTIONS(317), + [anon_sym_export] = ACTIONS(317), + [anon_sym_readonly] = ACTIONS(317), + [anon_sym_local] = ACTIONS(317), + [anon_sym_unset] = ACTIONS(319), + [anon_sym_unsetenv] = ACTIONS(319), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(115), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(321), }, [2483] = { - [anon_sym_SEMI] = ACTIONS(6011), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(6009), - [anon_sym_SEMI_SEMI] = ACTIONS(6013), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(6013), - [anon_sym_AMP] = ACTIONS(6011), + [anon_sym_SEMI] = ACTIONS(5990), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(5992), + [anon_sym_SEMI_SEMI] = ACTIONS(5994), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(5994), + [anon_sym_AMP] = ACTIONS(5990), }, [2484] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(6011), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(6009), - [anon_sym_SEMI_SEMI] = ACTIONS(6013), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(6013), - [anon_sym_AMP] = ACTIONS(6011), + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(5990), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(5992), + [anon_sym_SEMI_SEMI] = ACTIONS(5994), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(5994), + [anon_sym_AMP] = ACTIONS(5990), }, [2485] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(6009), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), + [sym__terminated_statement] = STATE(198), + [sym_for_statement] = STATE(2634), + [sym_c_style_for_statement] = STATE(2634), + [sym_while_statement] = STATE(2634), + [sym_if_statement] = STATE(2634), + [sym_case_statement] = STATE(2634), + [sym_function_definition] = STATE(2634), + [sym_subshell] = STATE(2634), + [sym_pipeline] = STATE(2634), + [sym_list] = STATE(2634), + [sym_negated_command] = STATE(2634), + [sym_test_command] = STATE(2634), + [sym_declaration_command] = STATE(2634), + [sym_unset_command] = STATE(2634), + [sym_command] = STATE(2634), + [sym_command_name] = STATE(92), + [sym_variable_assignment] = STATE(2635), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(96), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), + [aux_sym__statements_repeat1] = STATE(198), + [aux_sym_command_repeat1] = STATE(96), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(137), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(149), + [anon_sym_declare] = ACTIONS(151), + [anon_sym_typeset] = ACTIONS(151), + [anon_sym_export] = ACTIONS(151), + [anon_sym_readonly] = ACTIONS(151), + [anon_sym_local] = ACTIONS(151), + [anon_sym_unset] = ACTIONS(153), + [anon_sym_unsetenv] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(159), }, [2486] = { - [anon_sym_SEMI] = ACTIONS(6015), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_SEMI_SEMI] = ACTIONS(6017), - [anon_sym_PIPE_AMP] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(883), - [anon_sym_PIPE_PIPE] = ACTIONS(883), - [anon_sym_BQUOTE] = ACTIONS(6009), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(6017), - [anon_sym_AMP] = ACTIONS(6015), + [anon_sym_LT] = ACTIONS(5996), + [anon_sym_GT] = ACTIONS(5996), + [anon_sym_GT_GT] = ACTIONS(5998), + [anon_sym_AMP_GT] = ACTIONS(5996), + [anon_sym_AMP_GT_GT] = ACTIONS(5998), + [anon_sym_LT_AMP] = ACTIONS(5998), + [anon_sym_GT_AMP] = ACTIONS(5998), + [sym_comment] = ACTIONS(55), }, [2487] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(6015), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_SEMI_SEMI] = ACTIONS(6017), - [anon_sym_PIPE_AMP] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(883), - [anon_sym_PIPE_PIPE] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(6009), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(6017), - [anon_sym_AMP] = ACTIONS(6015), - }, - [2488] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(6019), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(901), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), - }, - [2489] = { - [sym__concat] = ACTIONS(1916), - [anon_sym_SEMI] = ACTIONS(1918), - [anon_sym_esac] = ACTIONS(1918), - [anon_sym_PIPE] = ACTIONS(1918), - [anon_sym_SEMI_SEMI] = ACTIONS(1916), - [anon_sym_PIPE_AMP] = ACTIONS(1916), - [anon_sym_AMP_AMP] = ACTIONS(1916), - [anon_sym_PIPE_PIPE] = ACTIONS(1916), - [sym__special_characters] = ACTIONS(1916), - [anon_sym_DQUOTE] = ACTIONS(1916), - [anon_sym_DOLLAR] = ACTIONS(1918), - [sym_raw_string] = ACTIONS(1916), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1916), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1916), - [anon_sym_BQUOTE] = ACTIONS(1916), - [anon_sym_LT_LPAREN] = ACTIONS(1916), - [anon_sym_GT_LPAREN] = ACTIONS(1916), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1918), - [sym_word] = ACTIONS(1918), - [anon_sym_LF] = ACTIONS(1916), - [anon_sym_AMP] = ACTIONS(1918), - }, - [2490] = { - [anon_sym_SEMI] = ACTIONS(6021), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(6019), - [anon_sym_SEMI_SEMI] = ACTIONS(6023), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(6023), - [anon_sym_AMP] = ACTIONS(6021), - }, - [2491] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(6021), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(6019), - [anon_sym_SEMI_SEMI] = ACTIONS(6023), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(6023), - [anon_sym_AMP] = ACTIONS(6021), - }, - [2492] = { - [sym__simple_heredoc_body] = ACTIONS(2876), - [sym__heredoc_body_beginning] = ACTIONS(2876), - [sym_file_descriptor] = ACTIONS(2876), - [sym__concat] = ACTIONS(2876), - [anon_sym_SEMI] = ACTIONS(2878), - [anon_sym_esac] = ACTIONS(2878), - [anon_sym_PIPE] = ACTIONS(2878), - [anon_sym_SEMI_SEMI] = ACTIONS(2876), - [anon_sym_PIPE_AMP] = ACTIONS(2876), - [anon_sym_AMP_AMP] = ACTIONS(2876), - [anon_sym_PIPE_PIPE] = ACTIONS(2876), - [anon_sym_EQ_TILDE] = ACTIONS(2878), - [anon_sym_EQ_EQ] = ACTIONS(2878), - [anon_sym_LT] = ACTIONS(2878), - [anon_sym_GT] = ACTIONS(2878), - [anon_sym_GT_GT] = ACTIONS(2876), - [anon_sym_AMP_GT] = ACTIONS(2878), - [anon_sym_AMP_GT_GT] = ACTIONS(2876), - [anon_sym_LT_AMP] = ACTIONS(2876), - [anon_sym_GT_AMP] = ACTIONS(2876), - [anon_sym_LT_LT] = ACTIONS(2878), - [anon_sym_LT_LT_DASH] = ACTIONS(2876), - [anon_sym_LT_LT_LT] = ACTIONS(2876), - [sym__special_characters] = ACTIONS(2876), - [anon_sym_DQUOTE] = ACTIONS(2876), - [anon_sym_DOLLAR] = ACTIONS(2878), - [sym_raw_string] = ACTIONS(2876), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2876), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2876), - [anon_sym_BQUOTE] = ACTIONS(2876), - [anon_sym_LT_LPAREN] = ACTIONS(2876), - [anon_sym_GT_LPAREN] = ACTIONS(2876), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2878), - [anon_sym_LF] = ACTIONS(2876), - [anon_sym_AMP] = ACTIONS(2878), - }, - [2493] = { - [sym__simple_heredoc_body] = ACTIONS(2890), - [sym__heredoc_body_beginning] = ACTIONS(2890), - [sym_file_descriptor] = ACTIONS(2890), - [sym__concat] = ACTIONS(2890), - [anon_sym_SEMI] = ACTIONS(2892), - [anon_sym_esac] = ACTIONS(2892), - [anon_sym_PIPE] = ACTIONS(2892), - [anon_sym_SEMI_SEMI] = ACTIONS(2890), - [anon_sym_PIPE_AMP] = ACTIONS(2890), - [anon_sym_AMP_AMP] = ACTIONS(2890), - [anon_sym_PIPE_PIPE] = ACTIONS(2890), - [anon_sym_EQ_TILDE] = ACTIONS(2892), - [anon_sym_EQ_EQ] = ACTIONS(2892), - [anon_sym_LT] = ACTIONS(2892), - [anon_sym_GT] = ACTIONS(2892), - [anon_sym_GT_GT] = ACTIONS(2890), - [anon_sym_AMP_GT] = ACTIONS(2892), - [anon_sym_AMP_GT_GT] = ACTIONS(2890), - [anon_sym_LT_AMP] = ACTIONS(2890), - [anon_sym_GT_AMP] = ACTIONS(2890), - [anon_sym_LT_LT] = ACTIONS(2892), - [anon_sym_LT_LT_DASH] = ACTIONS(2890), - [anon_sym_LT_LT_LT] = ACTIONS(2890), - [sym__special_characters] = ACTIONS(2890), - [anon_sym_DQUOTE] = ACTIONS(2890), - [anon_sym_DOLLAR] = ACTIONS(2892), - [sym_raw_string] = ACTIONS(2890), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2890), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2890), - [anon_sym_BQUOTE] = ACTIONS(2890), - [anon_sym_LT_LPAREN] = ACTIONS(2890), - [anon_sym_GT_LPAREN] = ACTIONS(2890), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2892), - [anon_sym_LF] = ACTIONS(2890), - [anon_sym_AMP] = ACTIONS(2892), - }, - [2494] = { - [aux_sym_concatenation_repeat1] = STATE(1293), - [sym__concat] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(6025), - [sym_comment] = ACTIONS(53), - }, - [2495] = { - [aux_sym_concatenation_repeat1] = STATE(1293), - [sym__concat] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(6027), - [sym_comment] = ACTIONS(53), - }, - [2496] = { - [anon_sym_RBRACE] = ACTIONS(6027), - [sym_comment] = ACTIONS(53), - }, - [2497] = { - [sym_concatenation] = STATE(2639), + [sym_concatenation] = STATE(1166), [sym_string] = STATE(2638), [sym_simple_expansion] = STATE(2638), [sym_string_expansion] = STATE(2638), [sym_expansion] = STATE(2638), [sym_command_substitution] = STATE(2638), [sym_process_substitution] = STATE(2638), - [anon_sym_RBRACE] = ACTIONS(6027), - [sym__special_characters] = ACTIONS(6029), - [anon_sym_DQUOTE] = ACTIONS(1802), - [anon_sym_DOLLAR] = ACTIONS(1804), - [sym_raw_string] = ACTIONS(6031), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1808), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1810), - [anon_sym_BQUOTE] = ACTIONS(1812), - [anon_sym_LT_LPAREN] = ACTIONS(1814), - [anon_sym_GT_LPAREN] = ACTIONS(1814), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6031), + [sym__special_characters] = ACTIONS(6000), + [anon_sym_DQUOTE] = ACTIONS(2396), + [anon_sym_DOLLAR] = ACTIONS(2398), + [sym_raw_string] = ACTIONS(6002), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2402), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2404), + [anon_sym_BQUOTE] = ACTIONS(2406), + [anon_sym_LT_LPAREN] = ACTIONS(2408), + [anon_sym_GT_LPAREN] = ACTIONS(2408), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(6002), + }, + [2488] = { + [sym_concatenation] = STATE(1170), + [sym_string] = STATE(2640), + [sym_simple_expansion] = STATE(2640), + [sym_string_expansion] = STATE(2640), + [sym_expansion] = STATE(2640), + [sym_command_substitution] = STATE(2640), + [sym_process_substitution] = STATE(2640), + [sym__special_characters] = ACTIONS(6004), + [anon_sym_DQUOTE] = ACTIONS(2396), + [anon_sym_DOLLAR] = ACTIONS(2398), + [sym_raw_string] = ACTIONS(6006), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2402), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2404), + [anon_sym_BQUOTE] = ACTIONS(2406), + [anon_sym_LT_LPAREN] = ACTIONS(2408), + [anon_sym_GT_LPAREN] = ACTIONS(2408), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(6006), + }, + [2489] = { + [sym_file_redirect] = STATE(2641), + [sym_heredoc_redirect] = STATE(2641), + [sym_herestring_redirect] = STATE(2641), + [aux_sym_while_statement_repeat1] = STATE(2641), + [sym_file_descriptor] = ACTIONS(5600), + [anon_sym_SEMI] = ACTIONS(2418), + [anon_sym_esac] = ACTIONS(2416), + [anon_sym_PIPE] = ACTIONS(2418), + [anon_sym_SEMI_SEMI] = ACTIONS(2416), + [anon_sym_PIPE_AMP] = ACTIONS(2416), + [anon_sym_AMP_AMP] = ACTIONS(2416), + [anon_sym_PIPE_PIPE] = ACTIONS(2416), + [anon_sym_LT] = ACTIONS(5602), + [anon_sym_GT] = ACTIONS(5602), + [anon_sym_GT_GT] = ACTIONS(5604), + [anon_sym_AMP_GT] = ACTIONS(5602), + [anon_sym_AMP_GT_GT] = ACTIONS(5604), + [anon_sym_LT_AMP] = ACTIONS(5604), + [anon_sym_GT_AMP] = ACTIONS(5604), + [anon_sym_LT_LT] = ACTIONS(1308), + [anon_sym_LT_LT_DASH] = ACTIONS(1310), + [anon_sym_LT_LT_LT] = ACTIONS(5606), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2416), + [anon_sym_AMP] = ACTIONS(2418), + }, + [2490] = { + [sym_file_redirect] = STATE(2418), + [sym_heredoc_redirect] = STATE(2418), + [sym_heredoc_body] = STATE(1188), + [sym_herestring_redirect] = STATE(2418), + [aux_sym_while_statement_repeat1] = STATE(2418), + [sym__simple_heredoc_body] = ACTIONS(339), + [sym__heredoc_body_beginning] = ACTIONS(341), + [sym_file_descriptor] = ACTIONS(5091), + [anon_sym_SEMI] = ACTIONS(2479), + [anon_sym_esac] = ACTIONS(2477), + [anon_sym_PIPE] = ACTIONS(2479), + [anon_sym_SEMI_SEMI] = ACTIONS(2477), + [anon_sym_PIPE_AMP] = ACTIONS(2477), + [anon_sym_AMP_AMP] = ACTIONS(2477), + [anon_sym_PIPE_PIPE] = ACTIONS(2477), + [anon_sym_LT] = ACTIONS(5095), + [anon_sym_GT] = ACTIONS(5095), + [anon_sym_GT_GT] = ACTIONS(5097), + [anon_sym_AMP_GT] = ACTIONS(5095), + [anon_sym_AMP_GT_GT] = ACTIONS(5097), + [anon_sym_LT_AMP] = ACTIONS(5097), + [anon_sym_GT_AMP] = ACTIONS(5097), + [anon_sym_LT_LT] = ACTIONS(355), + [anon_sym_LT_LT_DASH] = ACTIONS(357), + [anon_sym_LT_LT_LT] = ACTIONS(5099), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2477), + [anon_sym_AMP] = ACTIONS(2479), + }, + [2491] = { + [sym_compound_statement] = STATE(2642), + [anon_sym_LBRACE] = ACTIONS(595), + [sym_comment] = ACTIONS(55), + }, + [2492] = { + [anon_sym_LT] = ACTIONS(6008), + [anon_sym_GT] = ACTIONS(6008), + [anon_sym_GT_GT] = ACTIONS(6010), + [anon_sym_AMP_GT] = ACTIONS(6008), + [anon_sym_AMP_GT_GT] = ACTIONS(6010), + [anon_sym_LT_AMP] = ACTIONS(6010), + [anon_sym_GT_AMP] = ACTIONS(6010), + [sym_comment] = ACTIONS(55), + }, + [2493] = { + [sym_concatenation] = STATE(1238), + [sym_string] = STATE(2645), + [sym_simple_expansion] = STATE(2645), + [sym_string_expansion] = STATE(2645), + [sym_expansion] = STATE(2645), + [sym_command_substitution] = STATE(2645), + [sym_process_substitution] = STATE(2645), + [sym__special_characters] = ACTIONS(6012), + [anon_sym_DQUOTE] = ACTIONS(411), + [anon_sym_DOLLAR] = ACTIONS(413), + [sym_raw_string] = ACTIONS(6014), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), + [anon_sym_BQUOTE] = ACTIONS(421), + [anon_sym_LT_LPAREN] = ACTIONS(423), + [anon_sym_GT_LPAREN] = ACTIONS(423), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(6014), + }, + [2494] = { + [sym_variable_name] = ACTIONS(1106), + [anon_sym_SEMI] = ACTIONS(1108), + [anon_sym_esac] = ACTIONS(1108), + [anon_sym_PIPE] = ACTIONS(1108), + [anon_sym_SEMI_SEMI] = ACTIONS(1106), + [anon_sym_PIPE_AMP] = ACTIONS(1106), + [anon_sym_AMP_AMP] = ACTIONS(1106), + [anon_sym_PIPE_PIPE] = ACTIONS(1106), + [sym__special_characters] = ACTIONS(1106), + [anon_sym_DQUOTE] = ACTIONS(1106), + [anon_sym_DOLLAR] = ACTIONS(1108), + [sym_raw_string] = ACTIONS(1106), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1106), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1106), + [anon_sym_BQUOTE] = ACTIONS(1106), + [anon_sym_LT_LPAREN] = ACTIONS(1106), + [anon_sym_GT_LPAREN] = ACTIONS(1106), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1108), + [sym_word] = ACTIONS(1108), + [anon_sym_LF] = ACTIONS(1106), + [anon_sym_AMP] = ACTIONS(1108), + }, + [2495] = { + [sym_concatenation] = STATE(2647), + [sym_string] = STATE(558), + [sym_simple_expansion] = STATE(558), + [sym_string_expansion] = STATE(558), + [sym_expansion] = STATE(558), + [sym_command_substitution] = STATE(558), + [sym_process_substitution] = STATE(558), + [aux_sym_for_statement_repeat1] = STATE(2647), + [anon_sym_RPAREN] = ACTIONS(6016), + [sym__special_characters] = ACTIONS(1112), + [anon_sym_DQUOTE] = ACTIONS(1114), + [anon_sym_DOLLAR] = ACTIONS(1116), + [sym_raw_string] = ACTIONS(1118), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1120), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1122), + [anon_sym_BQUOTE] = ACTIONS(1124), + [anon_sym_LT_LPAREN] = ACTIONS(1126), + [anon_sym_GT_LPAREN] = ACTIONS(1126), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1118), + }, + [2496] = { + [aux_sym_concatenation_repeat1] = STATE(2332), + [sym__concat] = ACTIONS(5350), + [sym_variable_name] = ACTIONS(1128), + [anon_sym_SEMI] = ACTIONS(1132), + [anon_sym_esac] = ACTIONS(1132), + [anon_sym_PIPE] = ACTIONS(1132), + [anon_sym_SEMI_SEMI] = ACTIONS(1128), + [anon_sym_PIPE_AMP] = ACTIONS(1128), + [anon_sym_AMP_AMP] = ACTIONS(1128), + [anon_sym_PIPE_PIPE] = ACTIONS(1128), + [sym__special_characters] = ACTIONS(1128), + [anon_sym_DQUOTE] = ACTIONS(1128), + [anon_sym_DOLLAR] = ACTIONS(1132), + [sym_raw_string] = ACTIONS(1128), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1128), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1128), + [anon_sym_BQUOTE] = ACTIONS(1128), + [anon_sym_LT_LPAREN] = ACTIONS(1128), + [anon_sym_GT_LPAREN] = ACTIONS(1128), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1132), + [sym_word] = ACTIONS(1132), + [anon_sym_LF] = ACTIONS(1128), + [anon_sym_AMP] = ACTIONS(1132), + }, + [2497] = { + [aux_sym_concatenation_repeat1] = STATE(2332), + [sym__concat] = ACTIONS(5350), + [sym_variable_name] = ACTIONS(1106), + [anon_sym_SEMI] = ACTIONS(1108), + [anon_sym_esac] = ACTIONS(1108), + [anon_sym_PIPE] = ACTIONS(1108), + [anon_sym_SEMI_SEMI] = ACTIONS(1106), + [anon_sym_PIPE_AMP] = ACTIONS(1106), + [anon_sym_AMP_AMP] = ACTIONS(1106), + [anon_sym_PIPE_PIPE] = ACTIONS(1106), + [sym__special_characters] = ACTIONS(1106), + [anon_sym_DQUOTE] = ACTIONS(1106), + [anon_sym_DOLLAR] = ACTIONS(1108), + [sym_raw_string] = ACTIONS(1106), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1106), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1106), + [anon_sym_BQUOTE] = ACTIONS(1106), + [anon_sym_LT_LPAREN] = ACTIONS(1106), + [anon_sym_GT_LPAREN] = ACTIONS(1106), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1108), + [sym_word] = ACTIONS(1108), + [anon_sym_LF] = ACTIONS(1106), + [anon_sym_AMP] = ACTIONS(1108), }, [2498] = { - [sym__simple_heredoc_body] = ACTIONS(2926), - [sym__heredoc_body_beginning] = ACTIONS(2926), - [sym_file_descriptor] = ACTIONS(2926), - [sym__concat] = ACTIONS(2926), - [anon_sym_SEMI] = ACTIONS(2928), - [anon_sym_esac] = ACTIONS(2928), - [anon_sym_PIPE] = ACTIONS(2928), - [anon_sym_SEMI_SEMI] = ACTIONS(2926), - [anon_sym_PIPE_AMP] = ACTIONS(2926), - [anon_sym_AMP_AMP] = ACTIONS(2926), - [anon_sym_PIPE_PIPE] = ACTIONS(2926), - [anon_sym_EQ_TILDE] = ACTIONS(2928), - [anon_sym_EQ_EQ] = ACTIONS(2928), - [anon_sym_LT] = ACTIONS(2928), - [anon_sym_GT] = ACTIONS(2928), - [anon_sym_GT_GT] = ACTIONS(2926), - [anon_sym_AMP_GT] = ACTIONS(2928), - [anon_sym_AMP_GT_GT] = ACTIONS(2926), - [anon_sym_LT_AMP] = ACTIONS(2926), - [anon_sym_GT_AMP] = ACTIONS(2926), - [anon_sym_LT_LT] = ACTIONS(2928), - [anon_sym_LT_LT_DASH] = ACTIONS(2926), - [anon_sym_LT_LT_LT] = ACTIONS(2926), - [sym__special_characters] = ACTIONS(2926), - [anon_sym_DQUOTE] = ACTIONS(2926), - [anon_sym_DOLLAR] = ACTIONS(2928), - [sym_raw_string] = ACTIONS(2926), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2926), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2926), - [anon_sym_BQUOTE] = ACTIONS(2926), - [anon_sym_LT_LPAREN] = ACTIONS(2926), - [anon_sym_GT_LPAREN] = ACTIONS(2926), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2928), - [anon_sym_LF] = ACTIONS(2926), - [anon_sym_AMP] = ACTIONS(2928), + [sym__concat] = ACTIONS(1763), + [sym_variable_name] = ACTIONS(1763), + [anon_sym_SEMI] = ACTIONS(1765), + [anon_sym_esac] = ACTIONS(1765), + [anon_sym_PIPE] = ACTIONS(1765), + [anon_sym_SEMI_SEMI] = ACTIONS(1763), + [anon_sym_PIPE_AMP] = ACTIONS(1763), + [anon_sym_AMP_AMP] = ACTIONS(1763), + [anon_sym_PIPE_PIPE] = ACTIONS(1763), + [sym__special_characters] = ACTIONS(1763), + [anon_sym_DQUOTE] = ACTIONS(1763), + [anon_sym_DOLLAR] = ACTIONS(1765), + [sym_raw_string] = ACTIONS(1763), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1763), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1763), + [anon_sym_BQUOTE] = ACTIONS(1763), + [anon_sym_LT_LPAREN] = ACTIONS(1763), + [anon_sym_GT_LPAREN] = ACTIONS(1763), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1765), + [sym_word] = ACTIONS(1765), + [anon_sym_LF] = ACTIONS(1763), + [anon_sym_AMP] = ACTIONS(1765), }, [2499] = { - [sym_comment] = ACTIONS(265), - [sym_regex_without_right_brace] = ACTIONS(6033), + [aux_sym_concatenation_repeat1] = STATE(2499), + [sym__concat] = ACTIONS(6018), + [sym_variable_name] = ACTIONS(1763), + [anon_sym_SEMI] = ACTIONS(1765), + [anon_sym_esac] = ACTIONS(1765), + [anon_sym_PIPE] = ACTIONS(1765), + [anon_sym_SEMI_SEMI] = ACTIONS(1763), + [anon_sym_PIPE_AMP] = ACTIONS(1763), + [anon_sym_AMP_AMP] = ACTIONS(1763), + [anon_sym_PIPE_PIPE] = ACTIONS(1763), + [sym__special_characters] = ACTIONS(1763), + [anon_sym_DQUOTE] = ACTIONS(1763), + [anon_sym_DOLLAR] = ACTIONS(1765), + [sym_raw_string] = ACTIONS(1763), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1763), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1763), + [anon_sym_BQUOTE] = ACTIONS(1763), + [anon_sym_LT_LPAREN] = ACTIONS(1763), + [anon_sym_GT_LPAREN] = ACTIONS(1763), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1765), + [sym_word] = ACTIONS(1765), + [anon_sym_LF] = ACTIONS(1763), + [anon_sym_AMP] = ACTIONS(1765), }, [2500] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(6035), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym__concat] = ACTIONS(1770), + [sym_variable_name] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(1772), + [anon_sym_esac] = ACTIONS(1772), + [anon_sym_PIPE] = ACTIONS(1772), + [anon_sym_SEMI_SEMI] = ACTIONS(1770), + [anon_sym_PIPE_AMP] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(1770), + [anon_sym_DQUOTE] = ACTIONS(1770), + [anon_sym_DOLLAR] = ACTIONS(1772), + [sym_raw_string] = ACTIONS(1770), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1770), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1770), + [anon_sym_BQUOTE] = ACTIONS(1770), + [anon_sym_LT_LPAREN] = ACTIONS(1770), + [anon_sym_GT_LPAREN] = ACTIONS(1770), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1772), + [sym_word] = ACTIONS(1772), + [anon_sym_LF] = ACTIONS(1770), + [anon_sym_AMP] = ACTIONS(1772), }, [2501] = { - [sym_comment] = ACTIONS(265), - [sym_regex_without_right_brace] = ACTIONS(6037), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_DQUOTE] = ACTIONS(6021), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym__string_content] = ACTIONS(821), + [anon_sym_POUND] = ACTIONS(815), + [sym_comment] = ACTIONS(281), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(823), + [anon_sym_STAR] = ACTIONS(825), + [anon_sym_AT] = ACTIONS(825), + [anon_sym_QMARK] = ACTIONS(825), + [anon_sym_0] = ACTIONS(823), + [anon_sym__] = ACTIONS(823), }, [2502] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(6027), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_concatenation] = STATE(2652), + [sym_string] = STATE(2651), + [sym_simple_expansion] = STATE(2651), + [sym_string_expansion] = STATE(2651), + [sym_expansion] = STATE(2651), + [sym_command_substitution] = STATE(2651), + [sym_process_substitution] = STATE(2651), + [anon_sym_RBRACE] = ACTIONS(6023), + [sym__special_characters] = ACTIONS(6025), + [anon_sym_DQUOTE] = ACTIONS(1841), + [anon_sym_DOLLAR] = ACTIONS(1843), + [sym_raw_string] = ACTIONS(6027), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1849), + [anon_sym_BQUOTE] = ACTIONS(1851), + [anon_sym_LT_LPAREN] = ACTIONS(1853), + [anon_sym_GT_LPAREN] = ACTIONS(1853), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(6027), }, [2503] = { - [sym_concatenation] = STATE(2644), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(2644), - [anon_sym_RBRACE] = ACTIONS(6039), - [anon_sym_EQ] = ACTIONS(6041), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(6043), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(6041), - [anon_sym_COLON_QMARK] = ACTIONS(6041), - [anon_sym_COLON_DASH] = ACTIONS(6041), - [anon_sym_PERCENT] = ACTIONS(6041), - [anon_sym_DASH] = ACTIONS(6041), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [anon_sym_LBRACK] = ACTIONS(857), + [anon_sym_EQ] = ACTIONS(6029), + [sym_comment] = ACTIONS(55), }, [2504] = { - [sym__simple_heredoc_body] = ACTIONS(2990), - [sym__heredoc_body_beginning] = ACTIONS(2990), - [sym_file_descriptor] = ACTIONS(2990), - [sym__concat] = ACTIONS(2990), - [anon_sym_SEMI] = ACTIONS(2992), - [anon_sym_esac] = ACTIONS(2992), - [anon_sym_PIPE] = ACTIONS(2992), - [anon_sym_SEMI_SEMI] = ACTIONS(2990), - [anon_sym_PIPE_AMP] = ACTIONS(2990), - [anon_sym_AMP_AMP] = ACTIONS(2990), - [anon_sym_PIPE_PIPE] = ACTIONS(2990), - [anon_sym_EQ_TILDE] = ACTIONS(2992), - [anon_sym_EQ_EQ] = ACTIONS(2992), - [anon_sym_LT] = ACTIONS(2992), - [anon_sym_GT] = ACTIONS(2992), - [anon_sym_GT_GT] = ACTIONS(2990), - [anon_sym_AMP_GT] = ACTIONS(2992), - [anon_sym_AMP_GT_GT] = ACTIONS(2990), - [anon_sym_LT_AMP] = ACTIONS(2990), - [anon_sym_GT_AMP] = ACTIONS(2990), - [anon_sym_LT_LT] = ACTIONS(2992), - [anon_sym_LT_LT_DASH] = ACTIONS(2990), - [anon_sym_LT_LT_LT] = ACTIONS(2990), - [sym__special_characters] = ACTIONS(2990), - [anon_sym_DQUOTE] = ACTIONS(2990), - [anon_sym_DOLLAR] = ACTIONS(2992), - [sym_raw_string] = ACTIONS(2990), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2990), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2990), - [anon_sym_BQUOTE] = ACTIONS(2990), - [anon_sym_LT_LPAREN] = ACTIONS(2990), - [anon_sym_GT_LPAREN] = ACTIONS(2990), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2992), - [anon_sym_LF] = ACTIONS(2990), - [anon_sym_AMP] = ACTIONS(2992), + [sym_concatenation] = STATE(2656), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2656), + [anon_sym_RBRACE] = ACTIONS(6031), + [anon_sym_EQ] = ACTIONS(6033), + [anon_sym_DASH] = ACTIONS(6033), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(6035), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(6037), + [anon_sym_COLON] = ACTIONS(6033), + [anon_sym_COLON_QMARK] = ACTIONS(6033), + [anon_sym_COLON_DASH] = ACTIONS(6033), + [anon_sym_PERCENT] = ACTIONS(6033), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2505] = { - [sym_concatenation] = STATE(2645), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(2645), - [anon_sym_RBRACE] = ACTIONS(6027), - [anon_sym_EQ] = ACTIONS(6045), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(6047), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(6045), - [anon_sym_COLON_QMARK] = ACTIONS(6045), - [anon_sym_COLON_DASH] = ACTIONS(6045), - [anon_sym_PERCENT] = ACTIONS(6045), - [anon_sym_DASH] = ACTIONS(6045), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_concatenation] = STATE(2658), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2658), + [anon_sym_RBRACE] = ACTIONS(6023), + [anon_sym_EQ] = ACTIONS(6039), + [anon_sym_DASH] = ACTIONS(6039), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(6041), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(6043), + [anon_sym_COLON] = ACTIONS(6039), + [anon_sym_COLON_QMARK] = ACTIONS(6039), + [anon_sym_COLON_DASH] = ACTIONS(6039), + [anon_sym_PERCENT] = ACTIONS(6039), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2506] = { - [sym__simple_heredoc_body] = ACTIONS(3033), - [sym__heredoc_body_beginning] = ACTIONS(3033), - [sym_file_descriptor] = ACTIONS(3033), - [sym__concat] = ACTIONS(3033), - [anon_sym_SEMI] = ACTIONS(3035), - [anon_sym_esac] = ACTIONS(3035), - [anon_sym_PIPE] = ACTIONS(3035), - [anon_sym_SEMI_SEMI] = ACTIONS(3033), - [anon_sym_PIPE_AMP] = ACTIONS(3033), - [anon_sym_AMP_AMP] = ACTIONS(3033), - [anon_sym_PIPE_PIPE] = ACTIONS(3033), - [anon_sym_EQ_TILDE] = ACTIONS(3035), - [anon_sym_EQ_EQ] = ACTIONS(3035), - [anon_sym_LT] = ACTIONS(3035), - [anon_sym_GT] = ACTIONS(3035), - [anon_sym_GT_GT] = ACTIONS(3033), - [anon_sym_AMP_GT] = ACTIONS(3035), - [anon_sym_AMP_GT_GT] = ACTIONS(3033), - [anon_sym_LT_AMP] = ACTIONS(3033), - [anon_sym_GT_AMP] = ACTIONS(3033), - [anon_sym_LT_LT] = ACTIONS(3035), - [anon_sym_LT_LT_DASH] = ACTIONS(3033), - [anon_sym_LT_LT_LT] = ACTIONS(3033), - [sym__special_characters] = ACTIONS(3033), - [anon_sym_DQUOTE] = ACTIONS(3033), - [anon_sym_DOLLAR] = ACTIONS(3035), - [sym_raw_string] = ACTIONS(3033), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3033), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3033), - [anon_sym_BQUOTE] = ACTIONS(3033), - [anon_sym_LT_LPAREN] = ACTIONS(3033), - [anon_sym_GT_LPAREN] = ACTIONS(3033), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3035), - [anon_sym_LF] = ACTIONS(3033), - [anon_sym_AMP] = ACTIONS(3035), + [sym__concat] = ACTIONS(1871), + [sym_variable_name] = ACTIONS(1871), + [anon_sym_SEMI] = ACTIONS(1873), + [anon_sym_esac] = ACTIONS(1873), + [anon_sym_PIPE] = ACTIONS(1873), + [anon_sym_SEMI_SEMI] = ACTIONS(1871), + [anon_sym_PIPE_AMP] = ACTIONS(1871), + [anon_sym_AMP_AMP] = ACTIONS(1871), + [anon_sym_PIPE_PIPE] = ACTIONS(1871), + [sym__special_characters] = ACTIONS(1871), + [anon_sym_DQUOTE] = ACTIONS(1871), + [anon_sym_DOLLAR] = ACTIONS(1873), + [sym_raw_string] = ACTIONS(1871), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1871), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1871), + [anon_sym_BQUOTE] = ACTIONS(1871), + [anon_sym_LT_LPAREN] = ACTIONS(1871), + [anon_sym_GT_LPAREN] = ACTIONS(1871), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1873), + [sym_word] = ACTIONS(1873), + [anon_sym_LF] = ACTIONS(1871), + [anon_sym_AMP] = ACTIONS(1873), }, [2507] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(6049), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(901), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), + [sym_concatenation] = STATE(2661), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2661), + [sym_regex] = ACTIONS(6045), + [anon_sym_RBRACE] = ACTIONS(6047), + [anon_sym_EQ] = ACTIONS(6049), + [anon_sym_DASH] = ACTIONS(6049), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(6051), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(6049), + [anon_sym_COLON_QMARK] = ACTIONS(6049), + [anon_sym_COLON_DASH] = ACTIONS(6049), + [anon_sym_PERCENT] = ACTIONS(6049), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2508] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(6049), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(6047), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2509] = { - [sym__simple_heredoc_body] = ACTIONS(3071), - [sym__heredoc_body_beginning] = ACTIONS(3071), - [sym_file_descriptor] = ACTIONS(3071), - [sym__concat] = ACTIONS(3071), - [anon_sym_SEMI] = ACTIONS(3073), - [anon_sym_esac] = ACTIONS(3073), - [anon_sym_PIPE] = ACTIONS(3073), - [anon_sym_SEMI_SEMI] = ACTIONS(3071), - [anon_sym_PIPE_AMP] = ACTIONS(3071), - [anon_sym_AMP_AMP] = ACTIONS(3071), - [anon_sym_PIPE_PIPE] = ACTIONS(3071), - [anon_sym_EQ_TILDE] = ACTIONS(3073), - [anon_sym_EQ_EQ] = ACTIONS(3073), - [anon_sym_LT] = ACTIONS(3073), - [anon_sym_GT] = ACTIONS(3073), - [anon_sym_GT_GT] = ACTIONS(3071), - [anon_sym_AMP_GT] = ACTIONS(3073), - [anon_sym_AMP_GT_GT] = ACTIONS(3071), - [anon_sym_LT_AMP] = ACTIONS(3071), - [anon_sym_GT_AMP] = ACTIONS(3071), - [anon_sym_LT_LT] = ACTIONS(3073), - [anon_sym_LT_LT_DASH] = ACTIONS(3071), - [anon_sym_LT_LT_LT] = ACTIONS(3071), - [sym__special_characters] = ACTIONS(3071), - [anon_sym_DQUOTE] = ACTIONS(3071), - [anon_sym_DOLLAR] = ACTIONS(3073), - [sym_raw_string] = ACTIONS(3071), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3071), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3071), - [anon_sym_BQUOTE] = ACTIONS(3071), - [anon_sym_LT_LPAREN] = ACTIONS(3071), - [anon_sym_GT_LPAREN] = ACTIONS(3071), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3073), - [anon_sym_LF] = ACTIONS(3071), - [anon_sym_AMP] = ACTIONS(3073), + [sym__concat] = ACTIONS(1919), + [sym_variable_name] = ACTIONS(1919), + [anon_sym_SEMI] = ACTIONS(1921), + [anon_sym_esac] = ACTIONS(1921), + [anon_sym_PIPE] = ACTIONS(1921), + [anon_sym_SEMI_SEMI] = ACTIONS(1919), + [anon_sym_PIPE_AMP] = ACTIONS(1919), + [anon_sym_AMP_AMP] = ACTIONS(1919), + [anon_sym_PIPE_PIPE] = ACTIONS(1919), + [sym__special_characters] = ACTIONS(1919), + [anon_sym_DQUOTE] = ACTIONS(1919), + [anon_sym_DOLLAR] = ACTIONS(1921), + [sym_raw_string] = ACTIONS(1919), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1919), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1919), + [anon_sym_BQUOTE] = ACTIONS(1919), + [anon_sym_LT_LPAREN] = ACTIONS(1919), + [anon_sym_GT_LPAREN] = ACTIONS(1919), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1921), + [sym_word] = ACTIONS(1921), + [anon_sym_LF] = ACTIONS(1919), + [anon_sym_AMP] = ACTIONS(1921), }, [2510] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(6051), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(901), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), + [sym_concatenation] = STATE(2658), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2658), + [sym_regex] = ACTIONS(6053), + [anon_sym_RBRACE] = ACTIONS(6023), + [anon_sym_EQ] = ACTIONS(6039), + [anon_sym_DASH] = ACTIONS(6039), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(6041), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(6039), + [anon_sym_COLON_QMARK] = ACTIONS(6039), + [anon_sym_COLON_DASH] = ACTIONS(6039), + [anon_sym_PERCENT] = ACTIONS(6039), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2511] = { - [sym_file_redirect] = STATE(1363), - [sym_file_descriptor] = ACTIONS(5499), - [anon_sym_SEMI] = ACTIONS(2462), - [anon_sym_esac] = ACTIONS(2460), - [anon_sym_PIPE] = ACTIONS(2462), - [anon_sym_SEMI_SEMI] = ACTIONS(2460), - [anon_sym_PIPE_AMP] = ACTIONS(2460), - [anon_sym_AMP_AMP] = ACTIONS(2460), - [anon_sym_PIPE_PIPE] = ACTIONS(2460), - [anon_sym_LT] = ACTIONS(5501), - [anon_sym_GT] = ACTIONS(5501), - [anon_sym_GT_GT] = ACTIONS(5503), - [anon_sym_AMP_GT] = ACTIONS(5501), - [anon_sym_AMP_GT_GT] = ACTIONS(5503), - [anon_sym_LT_AMP] = ACTIONS(5503), - [anon_sym_GT_AMP] = ACTIONS(5503), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(2460), - [anon_sym_AMP] = ACTIONS(2462), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(6023), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2512] = { - [aux_sym_concatenation_repeat1] = STATE(2515), - [sym__simple_heredoc_body] = ACTIONS(1053), - [sym__heredoc_body_beginning] = ACTIONS(1053), - [sym_file_descriptor] = ACTIONS(1053), - [sym__concat] = ACTIONS(5733), - [anon_sym_SEMI] = ACTIONS(1055), - [anon_sym_esac] = ACTIONS(1053), - [anon_sym_PIPE] = ACTIONS(1055), - [anon_sym_SEMI_SEMI] = ACTIONS(1053), - [anon_sym_PIPE_AMP] = ACTIONS(1053), - [anon_sym_AMP_AMP] = ACTIONS(1053), - [anon_sym_PIPE_PIPE] = ACTIONS(1053), - [anon_sym_LT] = ACTIONS(1055), - [anon_sym_GT] = ACTIONS(1055), - [anon_sym_GT_GT] = ACTIONS(1053), - [anon_sym_AMP_GT] = ACTIONS(1055), - [anon_sym_AMP_GT_GT] = ACTIONS(1053), - [anon_sym_LT_AMP] = ACTIONS(1053), - [anon_sym_GT_AMP] = ACTIONS(1053), - [anon_sym_LT_LT] = ACTIONS(1055), - [anon_sym_LT_LT_DASH] = ACTIONS(1053), - [anon_sym_LT_LT_LT] = ACTIONS(1053), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1053), - [anon_sym_AMP] = ACTIONS(1055), + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(6055), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), }, [2513] = { - [aux_sym_concatenation_repeat1] = STATE(2515), - [sym__simple_heredoc_body] = ACTIONS(1057), - [sym__heredoc_body_beginning] = ACTIONS(1057), - [sym_file_descriptor] = ACTIONS(1057), - [sym__concat] = ACTIONS(5733), - [anon_sym_SEMI] = ACTIONS(1059), - [anon_sym_esac] = ACTIONS(1057), - [anon_sym_PIPE] = ACTIONS(1059), - [anon_sym_SEMI_SEMI] = ACTIONS(1057), - [anon_sym_PIPE_AMP] = ACTIONS(1057), - [anon_sym_AMP_AMP] = ACTIONS(1057), - [anon_sym_PIPE_PIPE] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_GT_GT] = ACTIONS(1057), - [anon_sym_AMP_GT] = ACTIONS(1059), - [anon_sym_AMP_GT_GT] = ACTIONS(1057), - [anon_sym_LT_AMP] = ACTIONS(1057), - [anon_sym_GT_AMP] = ACTIONS(1057), - [anon_sym_LT_LT] = ACTIONS(1059), - [anon_sym_LT_LT_DASH] = ACTIONS(1057), - [anon_sym_LT_LT_LT] = ACTIONS(1057), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), + [sym__concat] = ACTIONS(1927), + [sym_variable_name] = ACTIONS(1927), + [anon_sym_SEMI] = ACTIONS(1929), + [anon_sym_esac] = ACTIONS(1929), + [anon_sym_PIPE] = ACTIONS(1929), + [anon_sym_SEMI_SEMI] = ACTIONS(1927), + [anon_sym_PIPE_AMP] = ACTIONS(1927), + [anon_sym_AMP_AMP] = ACTIONS(1927), + [anon_sym_PIPE_PIPE] = ACTIONS(1927), + [sym__special_characters] = ACTIONS(1927), + [anon_sym_DQUOTE] = ACTIONS(1927), + [anon_sym_DOLLAR] = ACTIONS(1929), + [sym_raw_string] = ACTIONS(1927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1927), + [anon_sym_BQUOTE] = ACTIONS(1927), + [anon_sym_LT_LPAREN] = ACTIONS(1927), + [anon_sym_GT_LPAREN] = ACTIONS(1927), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1929), + [sym_word] = ACTIONS(1929), + [anon_sym_LF] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1929), }, [2514] = { - [sym_string] = STATE(2648), - [sym_simple_expansion] = STATE(2648), - [sym_string_expansion] = STATE(2648), - [sym_expansion] = STATE(2648), - [sym_command_substitution] = STATE(2648), - [sym_process_substitution] = STATE(2648), - [sym__special_characters] = ACTIONS(6053), - [anon_sym_DQUOTE] = ACTIONS(5339), - [anon_sym_DOLLAR] = ACTIONS(5341), - [sym_raw_string] = ACTIONS(6053), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5345), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5347), - [anon_sym_BQUOTE] = ACTIONS(5349), - [anon_sym_LT_LPAREN] = ACTIONS(5351), - [anon_sym_GT_LPAREN] = ACTIONS(5351), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6053), + [anon_sym_SEMI] = ACTIONS(6057), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(6055), + [anon_sym_SEMI_SEMI] = ACTIONS(6059), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(6059), + [anon_sym_AMP] = ACTIONS(6057), }, [2515] = { - [aux_sym_concatenation_repeat1] = STATE(2649), - [sym__simple_heredoc_body] = ACTIONS(765), - [sym__heredoc_body_beginning] = ACTIONS(765), - [sym_file_descriptor] = ACTIONS(765), - [sym__concat] = ACTIONS(5733), - [anon_sym_SEMI] = ACTIONS(767), - [anon_sym_esac] = ACTIONS(765), - [anon_sym_PIPE] = ACTIONS(767), - [anon_sym_SEMI_SEMI] = ACTIONS(765), - [anon_sym_PIPE_AMP] = ACTIONS(765), - [anon_sym_AMP_AMP] = ACTIONS(765), - [anon_sym_PIPE_PIPE] = ACTIONS(765), - [anon_sym_LT] = ACTIONS(767), - [anon_sym_GT] = ACTIONS(767), - [anon_sym_GT_GT] = ACTIONS(765), - [anon_sym_AMP_GT] = ACTIONS(767), - [anon_sym_AMP_GT_GT] = ACTIONS(765), - [anon_sym_LT_AMP] = ACTIONS(765), - [anon_sym_GT_AMP] = ACTIONS(765), - [anon_sym_LT_LT] = ACTIONS(767), - [anon_sym_LT_LT_DASH] = ACTIONS(765), - [anon_sym_LT_LT_LT] = ACTIONS(765), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(765), - [anon_sym_AMP] = ACTIONS(767), + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(6057), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(6055), + [anon_sym_SEMI_SEMI] = ACTIONS(6059), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(6059), + [anon_sym_AMP] = ACTIONS(6057), }, [2516] = { - [sym__simple_heredoc_body] = ACTIONS(769), - [sym__heredoc_body_beginning] = ACTIONS(769), - [sym_file_descriptor] = ACTIONS(769), - [sym__concat] = ACTIONS(769), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_esac] = ACTIONS(769), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_SEMI_SEMI] = ACTIONS(769), - [anon_sym_PIPE_AMP] = ACTIONS(769), - [anon_sym_AMP_AMP] = ACTIONS(769), - [anon_sym_PIPE_PIPE] = ACTIONS(769), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_GT] = ACTIONS(769), - [anon_sym_AMP_GT] = ACTIONS(771), - [anon_sym_AMP_GT_GT] = ACTIONS(769), - [anon_sym_LT_AMP] = ACTIONS(769), - [anon_sym_GT_AMP] = ACTIONS(769), - [anon_sym_LT_LT] = ACTIONS(771), - [anon_sym_LT_LT_DASH] = ACTIONS(769), - [anon_sym_LT_LT_LT] = ACTIONS(769), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(769), - [anon_sym_AMP] = ACTIONS(771), + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(6055), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), }, [2517] = { - [anon_sym_DQUOTE] = ACTIONS(6055), - [anon_sym_DOLLAR] = ACTIONS(775), - [sym__string_content] = ACTIONS(777), - [anon_sym_POUND] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(781), - [anon_sym_STAR] = ACTIONS(783), - [anon_sym_AT] = ACTIONS(783), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_0] = ACTIONS(781), - [anon_sym__] = ACTIONS(781), + [anon_sym_SEMI] = ACTIONS(6061), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_SEMI_SEMI] = ACTIONS(6063), + [anon_sym_PIPE_AMP] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_BQUOTE] = ACTIONS(6055), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(6063), + [anon_sym_AMP] = ACTIONS(6061), }, [2518] = { - [sym_simple_expansion] = STATE(141), - [sym_expansion] = STATE(141), - [sym_command_substitution] = STATE(141), - [aux_sym_string_repeat1] = STATE(450), - [anon_sym_DQUOTE] = ACTIONS(6055), - [anon_sym_DOLLAR] = ACTIONS(6057), - [sym__string_content] = ACTIONS(257), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(261), - [anon_sym_BQUOTE] = ACTIONS(263), - [sym_comment] = ACTIONS(265), + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(6061), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_SEMI_SEMI] = ACTIONS(6063), + [anon_sym_PIPE_AMP] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(6055), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(6063), + [anon_sym_AMP] = ACTIONS(6061), }, [2519] = { - [sym__simple_heredoc_body] = ACTIONS(803), - [sym__heredoc_body_beginning] = ACTIONS(803), - [sym_file_descriptor] = ACTIONS(803), - [sym__concat] = ACTIONS(803), - [anon_sym_SEMI] = ACTIONS(805), - [anon_sym_esac] = ACTIONS(803), - [anon_sym_PIPE] = ACTIONS(805), - [anon_sym_SEMI_SEMI] = ACTIONS(803), - [anon_sym_PIPE_AMP] = ACTIONS(803), - [anon_sym_AMP_AMP] = ACTIONS(803), - [anon_sym_PIPE_PIPE] = ACTIONS(803), - [anon_sym_LT] = ACTIONS(805), - [anon_sym_GT] = ACTIONS(805), - [anon_sym_GT_GT] = ACTIONS(803), - [anon_sym_AMP_GT] = ACTIONS(805), - [anon_sym_AMP_GT_GT] = ACTIONS(803), - [anon_sym_LT_AMP] = ACTIONS(803), - [anon_sym_GT_AMP] = ACTIONS(803), - [anon_sym_LT_LT] = ACTIONS(805), - [anon_sym_LT_LT_DASH] = ACTIONS(803), - [anon_sym_LT_LT_LT] = ACTIONS(803), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(803), - [anon_sym_AMP] = ACTIONS(805), + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(6065), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), }, [2520] = { + [sym__concat] = ACTIONS(1959), + [sym_variable_name] = ACTIONS(1959), + [anon_sym_SEMI] = ACTIONS(1961), + [anon_sym_esac] = ACTIONS(1961), + [anon_sym_PIPE] = ACTIONS(1961), + [anon_sym_SEMI_SEMI] = ACTIONS(1959), + [anon_sym_PIPE_AMP] = ACTIONS(1959), + [anon_sym_AMP_AMP] = ACTIONS(1959), + [anon_sym_PIPE_PIPE] = ACTIONS(1959), + [sym__special_characters] = ACTIONS(1959), + [anon_sym_DQUOTE] = ACTIONS(1959), + [anon_sym_DOLLAR] = ACTIONS(1961), + [sym_raw_string] = ACTIONS(1959), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1959), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1959), + [anon_sym_BQUOTE] = ACTIONS(1959), + [anon_sym_LT_LPAREN] = ACTIONS(1959), + [anon_sym_GT_LPAREN] = ACTIONS(1959), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1961), + [sym_word] = ACTIONS(1961), + [anon_sym_LF] = ACTIONS(1959), + [anon_sym_AMP] = ACTIONS(1961), + }, + [2521] = { + [anon_sym_SEMI] = ACTIONS(6067), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(6065), + [anon_sym_SEMI_SEMI] = ACTIONS(6069), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(6069), + [anon_sym_AMP] = ACTIONS(6067), + }, + [2522] = { + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(6067), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(6065), + [anon_sym_SEMI_SEMI] = ACTIONS(6069), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(6069), + [anon_sym_AMP] = ACTIONS(6067), + }, + [2523] = { + [sym__concat] = ACTIONS(1763), + [anon_sym_SEMI] = ACTIONS(1765), + [anon_sym_esac] = ACTIONS(1765), + [anon_sym_PIPE] = ACTIONS(1765), + [anon_sym_SEMI_SEMI] = ACTIONS(1763), + [anon_sym_PIPE_AMP] = ACTIONS(1763), + [anon_sym_AMP_AMP] = ACTIONS(1763), + [anon_sym_PIPE_PIPE] = ACTIONS(1763), + [sym__special_characters] = ACTIONS(1763), + [anon_sym_DQUOTE] = ACTIONS(1763), + [anon_sym_DOLLAR] = ACTIONS(1765), + [sym_raw_string] = ACTIONS(1763), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1763), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1763), + [anon_sym_BQUOTE] = ACTIONS(1763), + [anon_sym_LT_LPAREN] = ACTIONS(1763), + [anon_sym_GT_LPAREN] = ACTIONS(1763), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1765), + [sym_word] = ACTIONS(1765), + [anon_sym_LF] = ACTIONS(1763), + [anon_sym_AMP] = ACTIONS(1765), + }, + [2524] = { + [aux_sym_concatenation_repeat1] = STATE(2524), + [sym__concat] = ACTIONS(6071), + [anon_sym_SEMI] = ACTIONS(1765), + [anon_sym_esac] = ACTIONS(1765), + [anon_sym_PIPE] = ACTIONS(1765), + [anon_sym_SEMI_SEMI] = ACTIONS(1763), + [anon_sym_PIPE_AMP] = ACTIONS(1763), + [anon_sym_AMP_AMP] = ACTIONS(1763), + [anon_sym_PIPE_PIPE] = ACTIONS(1763), + [sym__special_characters] = ACTIONS(1763), + [anon_sym_DQUOTE] = ACTIONS(1763), + [anon_sym_DOLLAR] = ACTIONS(1765), + [sym_raw_string] = ACTIONS(1763), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1763), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1763), + [anon_sym_BQUOTE] = ACTIONS(1763), + [anon_sym_LT_LPAREN] = ACTIONS(1763), + [anon_sym_GT_LPAREN] = ACTIONS(1763), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1765), + [sym_word] = ACTIONS(1765), + [anon_sym_LF] = ACTIONS(1763), + [anon_sym_AMP] = ACTIONS(1765), + }, + [2525] = { + [sym__concat] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(1772), + [anon_sym_esac] = ACTIONS(1772), + [anon_sym_PIPE] = ACTIONS(1772), + [anon_sym_SEMI_SEMI] = ACTIONS(1770), + [anon_sym_PIPE_AMP] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(1770), + [anon_sym_DQUOTE] = ACTIONS(1770), + [anon_sym_DOLLAR] = ACTIONS(1772), + [sym_raw_string] = ACTIONS(1770), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1770), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1770), + [anon_sym_BQUOTE] = ACTIONS(1770), + [anon_sym_LT_LPAREN] = ACTIONS(1770), + [anon_sym_GT_LPAREN] = ACTIONS(1770), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1772), + [sym_word] = ACTIONS(1772), + [anon_sym_LF] = ACTIONS(1770), + [anon_sym_AMP] = ACTIONS(1772), + }, + [2526] = { + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_DQUOTE] = ACTIONS(6074), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym__string_content] = ACTIONS(821), + [anon_sym_POUND] = ACTIONS(815), + [sym_comment] = ACTIONS(281), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(823), + [anon_sym_STAR] = ACTIONS(825), + [anon_sym_AT] = ACTIONS(825), + [anon_sym_QMARK] = ACTIONS(825), + [anon_sym_0] = ACTIONS(823), + [anon_sym__] = ACTIONS(823), + }, + [2527] = { + [sym_concatenation] = STATE(2672), + [sym_string] = STATE(2671), + [sym_simple_expansion] = STATE(2671), + [sym_string_expansion] = STATE(2671), + [sym_expansion] = STATE(2671), + [sym_command_substitution] = STATE(2671), + [sym_process_substitution] = STATE(2671), + [anon_sym_RBRACE] = ACTIONS(6076), + [sym__special_characters] = ACTIONS(6078), + [anon_sym_DQUOTE] = ACTIONS(1841), + [anon_sym_DOLLAR] = ACTIONS(1843), + [sym_raw_string] = ACTIONS(6080), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1849), + [anon_sym_BQUOTE] = ACTIONS(1851), + [anon_sym_LT_LPAREN] = ACTIONS(1853), + [anon_sym_GT_LPAREN] = ACTIONS(1853), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(6080), + }, + [2528] = { + [anon_sym_LBRACK] = ACTIONS(857), + [anon_sym_EQ] = ACTIONS(6082), + [sym_comment] = ACTIONS(55), + }, + [2529] = { + [sym_concatenation] = STATE(2676), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2676), + [anon_sym_RBRACE] = ACTIONS(6084), + [anon_sym_EQ] = ACTIONS(6086), + [anon_sym_DASH] = ACTIONS(6086), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(6088), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(6090), + [anon_sym_COLON] = ACTIONS(6086), + [anon_sym_COLON_QMARK] = ACTIONS(6086), + [anon_sym_COLON_DASH] = ACTIONS(6086), + [anon_sym_PERCENT] = ACTIONS(6086), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [2530] = { + [sym_concatenation] = STATE(2678), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2678), + [anon_sym_RBRACE] = ACTIONS(6076), + [anon_sym_EQ] = ACTIONS(6092), + [anon_sym_DASH] = ACTIONS(6092), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(6094), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(6096), + [anon_sym_COLON] = ACTIONS(6092), + [anon_sym_COLON_QMARK] = ACTIONS(6092), + [anon_sym_COLON_DASH] = ACTIONS(6092), + [anon_sym_PERCENT] = ACTIONS(6092), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [2531] = { + [sym__concat] = ACTIONS(1871), + [anon_sym_SEMI] = ACTIONS(1873), + [anon_sym_esac] = ACTIONS(1873), + [anon_sym_PIPE] = ACTIONS(1873), + [anon_sym_SEMI_SEMI] = ACTIONS(1871), + [anon_sym_PIPE_AMP] = ACTIONS(1871), + [anon_sym_AMP_AMP] = ACTIONS(1871), + [anon_sym_PIPE_PIPE] = ACTIONS(1871), + [sym__special_characters] = ACTIONS(1871), + [anon_sym_DQUOTE] = ACTIONS(1871), + [anon_sym_DOLLAR] = ACTIONS(1873), + [sym_raw_string] = ACTIONS(1871), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1871), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1871), + [anon_sym_BQUOTE] = ACTIONS(1871), + [anon_sym_LT_LPAREN] = ACTIONS(1871), + [anon_sym_GT_LPAREN] = ACTIONS(1871), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1873), + [sym_word] = ACTIONS(1873), + [anon_sym_LF] = ACTIONS(1871), + [anon_sym_AMP] = ACTIONS(1873), + }, + [2532] = { + [sym_concatenation] = STATE(2681), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2681), + [sym_regex] = ACTIONS(6098), + [anon_sym_RBRACE] = ACTIONS(6100), + [anon_sym_EQ] = ACTIONS(6102), + [anon_sym_DASH] = ACTIONS(6102), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(6104), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(6102), + [anon_sym_COLON_QMARK] = ACTIONS(6102), + [anon_sym_COLON_DASH] = ACTIONS(6102), + [anon_sym_PERCENT] = ACTIONS(6102), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [2533] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(6100), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [2534] = { + [sym__concat] = ACTIONS(1919), + [anon_sym_SEMI] = ACTIONS(1921), + [anon_sym_esac] = ACTIONS(1921), + [anon_sym_PIPE] = ACTIONS(1921), + [anon_sym_SEMI_SEMI] = ACTIONS(1919), + [anon_sym_PIPE_AMP] = ACTIONS(1919), + [anon_sym_AMP_AMP] = ACTIONS(1919), + [anon_sym_PIPE_PIPE] = ACTIONS(1919), + [sym__special_characters] = ACTIONS(1919), + [anon_sym_DQUOTE] = ACTIONS(1919), + [anon_sym_DOLLAR] = ACTIONS(1921), + [sym_raw_string] = ACTIONS(1919), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1919), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1919), + [anon_sym_BQUOTE] = ACTIONS(1919), + [anon_sym_LT_LPAREN] = ACTIONS(1919), + [anon_sym_GT_LPAREN] = ACTIONS(1919), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1921), + [sym_word] = ACTIONS(1921), + [anon_sym_LF] = ACTIONS(1919), + [anon_sym_AMP] = ACTIONS(1921), + }, + [2535] = { + [sym_concatenation] = STATE(2678), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2678), + [sym_regex] = ACTIONS(6106), + [anon_sym_RBRACE] = ACTIONS(6076), + [anon_sym_EQ] = ACTIONS(6092), + [anon_sym_DASH] = ACTIONS(6092), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(6094), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(6092), + [anon_sym_COLON_QMARK] = ACTIONS(6092), + [anon_sym_COLON_DASH] = ACTIONS(6092), + [anon_sym_PERCENT] = ACTIONS(6092), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [2536] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(6076), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [2537] = { + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(6108), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), + }, + [2538] = { + [sym__concat] = ACTIONS(1927), + [anon_sym_SEMI] = ACTIONS(1929), + [anon_sym_esac] = ACTIONS(1929), + [anon_sym_PIPE] = ACTIONS(1929), + [anon_sym_SEMI_SEMI] = ACTIONS(1927), + [anon_sym_PIPE_AMP] = ACTIONS(1927), + [anon_sym_AMP_AMP] = ACTIONS(1927), + [anon_sym_PIPE_PIPE] = ACTIONS(1927), + [sym__special_characters] = ACTIONS(1927), + [anon_sym_DQUOTE] = ACTIONS(1927), + [anon_sym_DOLLAR] = ACTIONS(1929), + [sym_raw_string] = ACTIONS(1927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1927), + [anon_sym_BQUOTE] = ACTIONS(1927), + [anon_sym_LT_LPAREN] = ACTIONS(1927), + [anon_sym_GT_LPAREN] = ACTIONS(1927), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1929), + [sym_word] = ACTIONS(1929), + [anon_sym_LF] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1929), + }, + [2539] = { + [anon_sym_SEMI] = ACTIONS(6110), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(6108), + [anon_sym_SEMI_SEMI] = ACTIONS(6112), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(6112), + [anon_sym_AMP] = ACTIONS(6110), + }, + [2540] = { + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(6110), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(6108), + [anon_sym_SEMI_SEMI] = ACTIONS(6112), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(6112), + [anon_sym_AMP] = ACTIONS(6110), + }, + [2541] = { + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(6108), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), + }, + [2542] = { + [anon_sym_SEMI] = ACTIONS(6114), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_SEMI_SEMI] = ACTIONS(6116), + [anon_sym_PIPE_AMP] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_BQUOTE] = ACTIONS(6108), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(6116), + [anon_sym_AMP] = ACTIONS(6114), + }, + [2543] = { + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(6114), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_SEMI_SEMI] = ACTIONS(6116), + [anon_sym_PIPE_AMP] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(6108), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(6116), + [anon_sym_AMP] = ACTIONS(6114), + }, + [2544] = { + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(6118), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), + }, + [2545] = { + [sym__concat] = ACTIONS(1959), + [anon_sym_SEMI] = ACTIONS(1961), + [anon_sym_esac] = ACTIONS(1961), + [anon_sym_PIPE] = ACTIONS(1961), + [anon_sym_SEMI_SEMI] = ACTIONS(1959), + [anon_sym_PIPE_AMP] = ACTIONS(1959), + [anon_sym_AMP_AMP] = ACTIONS(1959), + [anon_sym_PIPE_PIPE] = ACTIONS(1959), + [sym__special_characters] = ACTIONS(1959), + [anon_sym_DQUOTE] = ACTIONS(1959), + [anon_sym_DOLLAR] = ACTIONS(1961), + [sym_raw_string] = ACTIONS(1959), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1959), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1959), + [anon_sym_BQUOTE] = ACTIONS(1959), + [anon_sym_LT_LPAREN] = ACTIONS(1959), + [anon_sym_GT_LPAREN] = ACTIONS(1959), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1961), + [sym_word] = ACTIONS(1961), + [anon_sym_LF] = ACTIONS(1959), + [anon_sym_AMP] = ACTIONS(1961), + }, + [2546] = { + [anon_sym_SEMI] = ACTIONS(6120), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(6118), + [anon_sym_SEMI_SEMI] = ACTIONS(6122), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(6122), + [anon_sym_AMP] = ACTIONS(6120), + }, + [2547] = { + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(6120), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(6118), + [anon_sym_SEMI_SEMI] = ACTIONS(6122), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(6122), + [anon_sym_AMP] = ACTIONS(6120), + }, + [2548] = { + [sym__simple_heredoc_body] = ACTIONS(2959), + [sym__heredoc_body_beginning] = ACTIONS(2959), + [sym_file_descriptor] = ACTIONS(2959), + [sym__concat] = ACTIONS(2959), + [anon_sym_SEMI] = ACTIONS(2961), + [anon_sym_esac] = ACTIONS(2961), + [anon_sym_PIPE] = ACTIONS(2961), + [anon_sym_SEMI_SEMI] = ACTIONS(2959), + [anon_sym_PIPE_AMP] = ACTIONS(2959), + [anon_sym_AMP_AMP] = ACTIONS(2959), + [anon_sym_PIPE_PIPE] = ACTIONS(2959), + [anon_sym_EQ_TILDE] = ACTIONS(2961), + [anon_sym_EQ_EQ] = ACTIONS(2961), + [anon_sym_LT] = ACTIONS(2961), + [anon_sym_GT] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(2959), + [anon_sym_AMP_GT] = ACTIONS(2961), + [anon_sym_AMP_GT_GT] = ACTIONS(2959), + [anon_sym_LT_AMP] = ACTIONS(2959), + [anon_sym_GT_AMP] = ACTIONS(2959), + [anon_sym_LT_LT] = ACTIONS(2961), + [anon_sym_LT_LT_DASH] = ACTIONS(2959), + [anon_sym_LT_LT_LT] = ACTIONS(2959), + [sym__special_characters] = ACTIONS(2959), + [anon_sym_DQUOTE] = ACTIONS(2959), + [anon_sym_DOLLAR] = ACTIONS(2961), + [sym_raw_string] = ACTIONS(2959), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2959), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2959), + [anon_sym_BQUOTE] = ACTIONS(2959), + [anon_sym_LT_LPAREN] = ACTIONS(2959), + [anon_sym_GT_LPAREN] = ACTIONS(2959), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(2961), + [anon_sym_LF] = ACTIONS(2959), + [anon_sym_AMP] = ACTIONS(2961), + }, + [2549] = { + [sym__simple_heredoc_body] = ACTIONS(2973), + [sym__heredoc_body_beginning] = ACTIONS(2973), + [sym_file_descriptor] = ACTIONS(2973), + [sym__concat] = ACTIONS(2973), + [anon_sym_SEMI] = ACTIONS(2975), + [anon_sym_esac] = ACTIONS(2975), + [anon_sym_PIPE] = ACTIONS(2975), + [anon_sym_SEMI_SEMI] = ACTIONS(2973), + [anon_sym_PIPE_AMP] = ACTIONS(2973), + [anon_sym_AMP_AMP] = ACTIONS(2973), + [anon_sym_PIPE_PIPE] = ACTIONS(2973), + [anon_sym_EQ_TILDE] = ACTIONS(2975), + [anon_sym_EQ_EQ] = ACTIONS(2975), + [anon_sym_LT] = ACTIONS(2975), + [anon_sym_GT] = ACTIONS(2975), + [anon_sym_GT_GT] = ACTIONS(2973), + [anon_sym_AMP_GT] = ACTIONS(2975), + [anon_sym_AMP_GT_GT] = ACTIONS(2973), + [anon_sym_LT_AMP] = ACTIONS(2973), + [anon_sym_GT_AMP] = ACTIONS(2973), + [anon_sym_LT_LT] = ACTIONS(2975), + [anon_sym_LT_LT_DASH] = ACTIONS(2973), + [anon_sym_LT_LT_LT] = ACTIONS(2973), + [sym__special_characters] = ACTIONS(2973), + [anon_sym_DQUOTE] = ACTIONS(2973), + [anon_sym_DOLLAR] = ACTIONS(2975), + [sym_raw_string] = ACTIONS(2973), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2973), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2973), + [anon_sym_BQUOTE] = ACTIONS(2973), + [anon_sym_LT_LPAREN] = ACTIONS(2973), + [anon_sym_GT_LPAREN] = ACTIONS(2973), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(2975), + [anon_sym_LF] = ACTIONS(2973), + [anon_sym_AMP] = ACTIONS(2975), + }, + [2550] = { + [aux_sym_concatenation_repeat1] = STATE(1366), + [sym__concat] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(6124), + [sym_comment] = ACTIONS(55), + }, + [2551] = { + [aux_sym_concatenation_repeat1] = STATE(1366), + [sym__concat] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(6126), + [sym_comment] = ACTIONS(55), + }, + [2552] = { + [anon_sym_RBRACE] = ACTIONS(6126), + [sym_comment] = ACTIONS(55), + }, + [2553] = { + [sym_concatenation] = STATE(2692), + [sym_string] = STATE(2691), + [sym_simple_expansion] = STATE(2691), + [sym_string_expansion] = STATE(2691), + [sym_expansion] = STATE(2691), + [sym_command_substitution] = STATE(2691), + [sym_process_substitution] = STATE(2691), + [anon_sym_RBRACE] = ACTIONS(6126), + [sym__special_characters] = ACTIONS(6128), + [anon_sym_DQUOTE] = ACTIONS(1841), + [anon_sym_DOLLAR] = ACTIONS(1843), + [sym_raw_string] = ACTIONS(6130), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1849), + [anon_sym_BQUOTE] = ACTIONS(1851), + [anon_sym_LT_LPAREN] = ACTIONS(1853), + [anon_sym_GT_LPAREN] = ACTIONS(1853), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(6130), + }, + [2554] = { + [sym__simple_heredoc_body] = ACTIONS(3009), + [sym__heredoc_body_beginning] = ACTIONS(3009), + [sym_file_descriptor] = ACTIONS(3009), + [sym__concat] = ACTIONS(3009), + [anon_sym_SEMI] = ACTIONS(3011), + [anon_sym_esac] = ACTIONS(3011), + [anon_sym_PIPE] = ACTIONS(3011), + [anon_sym_SEMI_SEMI] = ACTIONS(3009), + [anon_sym_PIPE_AMP] = ACTIONS(3009), + [anon_sym_AMP_AMP] = ACTIONS(3009), + [anon_sym_PIPE_PIPE] = ACTIONS(3009), + [anon_sym_EQ_TILDE] = ACTIONS(3011), + [anon_sym_EQ_EQ] = ACTIONS(3011), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_GT] = ACTIONS(3011), + [anon_sym_GT_GT] = ACTIONS(3009), + [anon_sym_AMP_GT] = ACTIONS(3011), + [anon_sym_AMP_GT_GT] = ACTIONS(3009), + [anon_sym_LT_AMP] = ACTIONS(3009), + [anon_sym_GT_AMP] = ACTIONS(3009), + [anon_sym_LT_LT] = ACTIONS(3011), + [anon_sym_LT_LT_DASH] = ACTIONS(3009), + [anon_sym_LT_LT_LT] = ACTIONS(3009), + [sym__special_characters] = ACTIONS(3009), + [anon_sym_DQUOTE] = ACTIONS(3009), + [anon_sym_DOLLAR] = ACTIONS(3011), + [sym_raw_string] = ACTIONS(3009), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3009), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3009), + [anon_sym_BQUOTE] = ACTIONS(3009), + [anon_sym_LT_LPAREN] = ACTIONS(3009), + [anon_sym_GT_LPAREN] = ACTIONS(3009), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(3011), + [anon_sym_LF] = ACTIONS(3009), + [anon_sym_AMP] = ACTIONS(3011), + }, + [2555] = { + [sym_concatenation] = STATE(2695), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2695), + [sym_regex] = ACTIONS(6132), + [anon_sym_RBRACE] = ACTIONS(6134), + [anon_sym_EQ] = ACTIONS(6136), + [anon_sym_DASH] = ACTIONS(6136), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(6138), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(6136), + [anon_sym_COLON_QMARK] = ACTIONS(6136), + [anon_sym_COLON_DASH] = ACTIONS(6136), + [anon_sym_PERCENT] = ACTIONS(6136), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [2556] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(6134), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [2557] = { + [sym_concatenation] = STATE(2697), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2697), + [sym_regex] = ACTIONS(6140), + [anon_sym_RBRACE] = ACTIONS(6126), + [anon_sym_EQ] = ACTIONS(6142), + [anon_sym_DASH] = ACTIONS(6142), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(6144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(6142), + [anon_sym_COLON_QMARK] = ACTIONS(6142), + [anon_sym_COLON_DASH] = ACTIONS(6142), + [anon_sym_PERCENT] = ACTIONS(6142), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [2558] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(6126), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [2559] = { + [sym_concatenation] = STATE(2699), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2699), + [anon_sym_RBRACE] = ACTIONS(6146), + [anon_sym_EQ] = ACTIONS(6148), + [anon_sym_DASH] = ACTIONS(6148), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(6150), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(6148), + [anon_sym_COLON_QMARK] = ACTIONS(6148), + [anon_sym_COLON_DASH] = ACTIONS(6148), + [anon_sym_PERCENT] = ACTIONS(6148), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [2560] = { + [sym__simple_heredoc_body] = ACTIONS(3065), + [sym__heredoc_body_beginning] = ACTIONS(3065), + [sym_file_descriptor] = ACTIONS(3065), + [sym__concat] = ACTIONS(3065), + [anon_sym_SEMI] = ACTIONS(3067), + [anon_sym_esac] = ACTIONS(3067), + [anon_sym_PIPE] = ACTIONS(3067), + [anon_sym_SEMI_SEMI] = ACTIONS(3065), + [anon_sym_PIPE_AMP] = ACTIONS(3065), + [anon_sym_AMP_AMP] = ACTIONS(3065), + [anon_sym_PIPE_PIPE] = ACTIONS(3065), + [anon_sym_EQ_TILDE] = ACTIONS(3067), + [anon_sym_EQ_EQ] = ACTIONS(3067), + [anon_sym_LT] = ACTIONS(3067), + [anon_sym_GT] = ACTIONS(3067), + [anon_sym_GT_GT] = ACTIONS(3065), + [anon_sym_AMP_GT] = ACTIONS(3067), + [anon_sym_AMP_GT_GT] = ACTIONS(3065), + [anon_sym_LT_AMP] = ACTIONS(3065), + [anon_sym_GT_AMP] = ACTIONS(3065), + [anon_sym_LT_LT] = ACTIONS(3067), + [anon_sym_LT_LT_DASH] = ACTIONS(3065), + [anon_sym_LT_LT_LT] = ACTIONS(3065), + [sym__special_characters] = ACTIONS(3065), + [anon_sym_DQUOTE] = ACTIONS(3065), + [anon_sym_DOLLAR] = ACTIONS(3067), + [sym_raw_string] = ACTIONS(3065), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3065), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3065), + [anon_sym_BQUOTE] = ACTIONS(3065), + [anon_sym_LT_LPAREN] = ACTIONS(3065), + [anon_sym_GT_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(3067), + [anon_sym_LF] = ACTIONS(3065), + [anon_sym_AMP] = ACTIONS(3067), + }, + [2561] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(6146), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [2562] = { + [sym_concatenation] = STATE(2697), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2697), + [anon_sym_RBRACE] = ACTIONS(6126), + [anon_sym_EQ] = ACTIONS(6142), + [anon_sym_DASH] = ACTIONS(6142), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(6144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(6142), + [anon_sym_COLON_QMARK] = ACTIONS(6142), + [anon_sym_COLON_DASH] = ACTIONS(6142), + [anon_sym_PERCENT] = ACTIONS(6142), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [2563] = { + [sym__simple_heredoc_body] = ACTIONS(3120), + [sym__heredoc_body_beginning] = ACTIONS(3120), + [sym_file_descriptor] = ACTIONS(3120), + [sym__concat] = ACTIONS(3120), + [anon_sym_SEMI] = ACTIONS(3122), + [anon_sym_esac] = ACTIONS(3122), + [anon_sym_PIPE] = ACTIONS(3122), + [anon_sym_SEMI_SEMI] = ACTIONS(3120), + [anon_sym_PIPE_AMP] = ACTIONS(3120), + [anon_sym_AMP_AMP] = ACTIONS(3120), + [anon_sym_PIPE_PIPE] = ACTIONS(3120), + [anon_sym_EQ_TILDE] = ACTIONS(3122), + [anon_sym_EQ_EQ] = ACTIONS(3122), + [anon_sym_LT] = ACTIONS(3122), + [anon_sym_GT] = ACTIONS(3122), + [anon_sym_GT_GT] = ACTIONS(3120), + [anon_sym_AMP_GT] = ACTIONS(3122), + [anon_sym_AMP_GT_GT] = ACTIONS(3120), + [anon_sym_LT_AMP] = ACTIONS(3120), + [anon_sym_GT_AMP] = ACTIONS(3120), + [anon_sym_LT_LT] = ACTIONS(3122), + [anon_sym_LT_LT_DASH] = ACTIONS(3120), + [anon_sym_LT_LT_LT] = ACTIONS(3120), + [sym__special_characters] = ACTIONS(3120), + [anon_sym_DQUOTE] = ACTIONS(3120), + [anon_sym_DOLLAR] = ACTIONS(3122), + [sym_raw_string] = ACTIONS(3120), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3120), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3120), + [anon_sym_BQUOTE] = ACTIONS(3120), + [anon_sym_LT_LPAREN] = ACTIONS(3120), + [anon_sym_GT_LPAREN] = ACTIONS(3120), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(3122), + [anon_sym_LF] = ACTIONS(3120), + [anon_sym_AMP] = ACTIONS(3122), + }, + [2564] = { + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(6152), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), + }, + [2565] = { + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(6152), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), + }, + [2566] = { + [sym__simple_heredoc_body] = ACTIONS(3158), + [sym__heredoc_body_beginning] = ACTIONS(3158), + [sym_file_descriptor] = ACTIONS(3158), + [sym__concat] = ACTIONS(3158), + [anon_sym_SEMI] = ACTIONS(3160), + [anon_sym_esac] = ACTIONS(3160), + [anon_sym_PIPE] = ACTIONS(3160), + [anon_sym_SEMI_SEMI] = ACTIONS(3158), + [anon_sym_PIPE_AMP] = ACTIONS(3158), + [anon_sym_AMP_AMP] = ACTIONS(3158), + [anon_sym_PIPE_PIPE] = ACTIONS(3158), + [anon_sym_EQ_TILDE] = ACTIONS(3160), + [anon_sym_EQ_EQ] = ACTIONS(3160), + [anon_sym_LT] = ACTIONS(3160), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_GT_GT] = ACTIONS(3158), + [anon_sym_AMP_GT] = ACTIONS(3160), + [anon_sym_AMP_GT_GT] = ACTIONS(3158), + [anon_sym_LT_AMP] = ACTIONS(3158), + [anon_sym_GT_AMP] = ACTIONS(3158), + [anon_sym_LT_LT] = ACTIONS(3160), + [anon_sym_LT_LT_DASH] = ACTIONS(3158), + [anon_sym_LT_LT_LT] = ACTIONS(3158), + [sym__special_characters] = ACTIONS(3158), + [anon_sym_DQUOTE] = ACTIONS(3158), + [anon_sym_DOLLAR] = ACTIONS(3160), + [sym_raw_string] = ACTIONS(3158), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3158), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3158), + [anon_sym_BQUOTE] = ACTIONS(3158), + [anon_sym_LT_LPAREN] = ACTIONS(3158), + [anon_sym_GT_LPAREN] = ACTIONS(3158), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(3160), + [anon_sym_LF] = ACTIONS(3158), + [anon_sym_AMP] = ACTIONS(3160), + }, + [2567] = { + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(6154), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), + }, + [2568] = { + [sym_file_redirect] = STATE(1437), + [sym_file_descriptor] = ACTIONS(5610), + [anon_sym_SEMI] = ACTIONS(2614), + [anon_sym_esac] = ACTIONS(2612), + [anon_sym_PIPE] = ACTIONS(2614), + [anon_sym_SEMI_SEMI] = ACTIONS(2612), + [anon_sym_PIPE_AMP] = ACTIONS(2612), + [anon_sym_AMP_AMP] = ACTIONS(2612), + [anon_sym_PIPE_PIPE] = ACTIONS(2612), + [anon_sym_LT] = ACTIONS(5612), + [anon_sym_GT] = ACTIONS(5612), + [anon_sym_GT_GT] = ACTIONS(5614), + [anon_sym_AMP_GT] = ACTIONS(5612), + [anon_sym_AMP_GT_GT] = ACTIONS(5614), + [anon_sym_LT_AMP] = ACTIONS(5614), + [anon_sym_GT_AMP] = ACTIONS(5614), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2612), + [anon_sym_AMP] = ACTIONS(2614), + }, + [2569] = { + [aux_sym_concatenation_repeat1] = STATE(2572), + [sym__simple_heredoc_body] = ACTIONS(1088), + [sym__heredoc_body_beginning] = ACTIONS(1088), + [sym_file_descriptor] = ACTIONS(1088), + [sym__concat] = ACTIONS(5840), + [anon_sym_SEMI] = ACTIONS(1090), + [anon_sym_esac] = ACTIONS(1088), + [anon_sym_PIPE] = ACTIONS(1090), + [anon_sym_SEMI_SEMI] = ACTIONS(1088), + [anon_sym_PIPE_AMP] = ACTIONS(1088), + [anon_sym_AMP_AMP] = ACTIONS(1088), + [anon_sym_PIPE_PIPE] = ACTIONS(1088), + [anon_sym_LT] = ACTIONS(1090), + [anon_sym_GT] = ACTIONS(1090), + [anon_sym_GT_GT] = ACTIONS(1088), + [anon_sym_AMP_GT] = ACTIONS(1090), + [anon_sym_AMP_GT_GT] = ACTIONS(1088), + [anon_sym_LT_AMP] = ACTIONS(1088), + [anon_sym_GT_AMP] = ACTIONS(1088), + [anon_sym_LT_LT] = ACTIONS(1090), + [anon_sym_LT_LT_DASH] = ACTIONS(1088), + [anon_sym_LT_LT_LT] = ACTIONS(1088), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1088), + [anon_sym_AMP] = ACTIONS(1090), + }, + [2570] = { + [aux_sym_concatenation_repeat1] = STATE(2572), + [sym__simple_heredoc_body] = ACTIONS(1092), + [sym__heredoc_body_beginning] = ACTIONS(1092), + [sym_file_descriptor] = ACTIONS(1092), + [sym__concat] = ACTIONS(5840), + [anon_sym_SEMI] = ACTIONS(1094), + [anon_sym_esac] = ACTIONS(1092), + [anon_sym_PIPE] = ACTIONS(1094), + [anon_sym_SEMI_SEMI] = ACTIONS(1092), + [anon_sym_PIPE_AMP] = ACTIONS(1092), + [anon_sym_AMP_AMP] = ACTIONS(1092), + [anon_sym_PIPE_PIPE] = ACTIONS(1092), + [anon_sym_LT] = ACTIONS(1094), + [anon_sym_GT] = ACTIONS(1094), + [anon_sym_GT_GT] = ACTIONS(1092), + [anon_sym_AMP_GT] = ACTIONS(1094), + [anon_sym_AMP_GT_GT] = ACTIONS(1092), + [anon_sym_LT_AMP] = ACTIONS(1092), + [anon_sym_GT_AMP] = ACTIONS(1092), + [anon_sym_LT_LT] = ACTIONS(1094), + [anon_sym_LT_LT_DASH] = ACTIONS(1092), + [anon_sym_LT_LT_LT] = ACTIONS(1092), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1092), + [anon_sym_AMP] = ACTIONS(1094), + }, + [2571] = { + [sym_string] = STATE(2702), + [sym_simple_expansion] = STATE(2702), + [sym_string_expansion] = STATE(2702), + [sym_expansion] = STATE(2702), + [sym_command_substitution] = STATE(2702), + [sym_process_substitution] = STATE(2702), + [sym__special_characters] = ACTIONS(6156), + [anon_sym_DQUOTE] = ACTIONS(5470), + [anon_sym_DOLLAR] = ACTIONS(5472), + [sym_raw_string] = ACTIONS(6156), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5476), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5478), + [anon_sym_BQUOTE] = ACTIONS(5480), + [anon_sym_LT_LPAREN] = ACTIONS(5482), + [anon_sym_GT_LPAREN] = ACTIONS(5482), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(6156), + }, + [2572] = { + [aux_sym_concatenation_repeat1] = STATE(2703), [sym__simple_heredoc_body] = ACTIONS(807), [sym__heredoc_body_beginning] = ACTIONS(807), [sym_file_descriptor] = ACTIONS(807), - [sym__concat] = ACTIONS(807), + [sym__concat] = ACTIONS(5840), [anon_sym_SEMI] = ACTIONS(809), [anon_sym_esac] = ACTIONS(807), [anon_sym_PIPE] = ACTIONS(809), @@ -69385,11 +74257,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(809), [anon_sym_LT_LT_DASH] = ACTIONS(807), [anon_sym_LT_LT_LT] = ACTIONS(807), - [sym_comment] = ACTIONS(53), + [sym_comment] = ACTIONS(55), [anon_sym_LF] = ACTIONS(807), [anon_sym_AMP] = ACTIONS(809), }, - [2521] = { + [2573] = { [sym__simple_heredoc_body] = ACTIONS(811), [sym__heredoc_body_beginning] = ACTIONS(811), [sym_file_descriptor] = ACTIONS(811), @@ -69411,4165 +74283,2140 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(813), [anon_sym_LT_LT_DASH] = ACTIONS(811), [anon_sym_LT_LT_LT] = ACTIONS(811), - [sym_comment] = ACTIONS(53), + [sym_comment] = ACTIONS(55), [anon_sym_LF] = ACTIONS(811), [anon_sym_AMP] = ACTIONS(813), }, - [2522] = { - [anon_sym_LBRACK] = ACTIONS(815), - [anon_sym_EQ] = ACTIONS(6059), - [sym_comment] = ACTIONS(53), - }, - [2523] = { - [sym_subscript] = STATE(2655), - [sym_variable_name] = ACTIONS(6061), - [anon_sym_DOLLAR] = ACTIONS(6063), - [anon_sym_DASH] = ACTIONS(6063), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6065), - [anon_sym_STAR] = ACTIONS(6067), - [anon_sym_AT] = ACTIONS(6067), - [anon_sym_QMARK] = ACTIONS(6067), - [anon_sym_0] = ACTIONS(6065), - [anon_sym__] = ACTIONS(6065), - }, - [2524] = { - [sym_concatenation] = STATE(2658), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(2658), - [anon_sym_RBRACE] = ACTIONS(6069), - [anon_sym_EQ] = ACTIONS(6071), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(6073), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(6075), - [anon_sym_COLON] = ACTIONS(6071), - [anon_sym_COLON_QMARK] = ACTIONS(6071), - [anon_sym_COLON_DASH] = ACTIONS(6071), - [anon_sym_PERCENT] = ACTIONS(6071), - [anon_sym_DASH] = ACTIONS(6071), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [2525] = { - [sym_concatenation] = STATE(2661), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(2661), - [anon_sym_RBRACE] = ACTIONS(6077), - [anon_sym_EQ] = ACTIONS(6079), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(6081), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(6083), - [anon_sym_COLON] = ACTIONS(6079), - [anon_sym_COLON_QMARK] = ACTIONS(6079), - [anon_sym_COLON_DASH] = ACTIONS(6079), - [anon_sym_PERCENT] = ACTIONS(6079), - [anon_sym_DASH] = ACTIONS(6079), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [2526] = { - [anon_sym_SEMI] = ACTIONS(6085), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(6087), - [anon_sym_SEMI_SEMI] = ACTIONS(6089), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(6089), - [anon_sym_AMP] = ACTIONS(6085), - }, - [2527] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(6085), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(6087), - [anon_sym_SEMI_SEMI] = ACTIONS(6089), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(6089), - [anon_sym_AMP] = ACTIONS(6085), - }, - [2528] = { - [sym__terminated_statement] = STATE(190), - [sym_for_statement] = STATE(2664), - [sym_c_style_for_statement] = STATE(2664), - [sym_while_statement] = STATE(2664), - [sym_if_statement] = STATE(2664), - [sym_case_statement] = STATE(2664), - [sym_function_definition] = STATE(2664), - [sym_subshell] = STATE(2664), - [sym_pipeline] = STATE(2664), - [sym_list] = STATE(2664), - [sym_negated_command] = STATE(2664), - [sym_test_command] = STATE(2664), - [sym_declaration_command] = STATE(2664), - [sym_unset_command] = STATE(2664), - [sym_command] = STATE(2664), - [sym_command_name] = STATE(78), - [sym_variable_assignment] = STATE(2665), - [sym_subscript] = STATE(80), - [sym_file_redirect] = STATE(82), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(75), - [sym_simple_expansion] = STATE(75), - [sym_string_expansion] = STATE(75), - [sym_expansion] = STATE(75), - [sym_command_substitution] = STATE(75), - [sym_process_substitution] = STATE(75), - [aux_sym__statements_repeat1] = STATE(190), - [aux_sym_command_repeat1] = STATE(82), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(111), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(119), - [anon_sym_declare] = ACTIONS(121), - [anon_sym_typeset] = ACTIONS(121), - [anon_sym_export] = ACTIONS(121), - [anon_sym_readonly] = ACTIONS(121), - [anon_sym_local] = ACTIONS(121), - [anon_sym_unset] = ACTIONS(123), - [anon_sym_unsetenv] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), - }, - [2529] = { - [anon_sym_SEMI] = ACTIONS(6091), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_SEMI_SEMI] = ACTIONS(6093), - [anon_sym_PIPE_AMP] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(883), - [anon_sym_PIPE_PIPE] = ACTIONS(883), - [anon_sym_BQUOTE] = ACTIONS(6087), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(6093), - [anon_sym_AMP] = ACTIONS(6091), - }, - [2530] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(6091), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_SEMI_SEMI] = ACTIONS(6093), - [anon_sym_PIPE_AMP] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(883), - [anon_sym_PIPE_PIPE] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(6087), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(6093), - [anon_sym_AMP] = ACTIONS(6091), - }, - [2531] = { - [sym__terminated_statement] = STATE(190), - [sym_for_statement] = STATE(2667), - [sym_c_style_for_statement] = STATE(2667), - [sym_while_statement] = STATE(2667), - [sym_if_statement] = STATE(2667), - [sym_case_statement] = STATE(2667), - [sym_function_definition] = STATE(2667), - [sym_subshell] = STATE(2667), - [sym_pipeline] = STATE(2667), - [sym_list] = STATE(2667), - [sym_negated_command] = STATE(2667), - [sym_test_command] = STATE(2667), - [sym_declaration_command] = STATE(2667), - [sym_unset_command] = STATE(2667), - [sym_command] = STATE(2667), - [sym_command_name] = STATE(165), - [sym_variable_assignment] = STATE(2668), - [sym_subscript] = STATE(53), - [sym_file_redirect] = STATE(168), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(47), - [sym_simple_expansion] = STATE(47), - [sym_string_expansion] = STATE(47), - [sym_expansion] = STATE(47), - [sym_command_substitution] = STATE(47), - [sym_process_substitution] = STATE(47), - [aux_sym__statements_repeat1] = STATE(190), - [aux_sym_command_repeat1] = STATE(168), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(69), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(289), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(291), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(293), - [anon_sym_LBRACK] = ACTIONS(295), - [anon_sym_LBRACK_LBRACK] = ACTIONS(297), - [anon_sym_declare] = ACTIONS(299), - [anon_sym_typeset] = ACTIONS(299), - [anon_sym_export] = ACTIONS(299), - [anon_sym_readonly] = ACTIONS(299), - [anon_sym_local] = ACTIONS(299), - [anon_sym_unset] = ACTIONS(301), - [anon_sym_unsetenv] = ACTIONS(301), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(87), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(303), - }, - [2532] = { - [anon_sym_SEMI] = ACTIONS(6095), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(6097), - [anon_sym_SEMI_SEMI] = ACTIONS(6099), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(6099), - [anon_sym_AMP] = ACTIONS(6095), - }, - [2533] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(6095), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(6097), - [anon_sym_SEMI_SEMI] = ACTIONS(6099), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(6099), - [anon_sym_AMP] = ACTIONS(6095), - }, - [2534] = { - [sym__terminated_statement] = STATE(190), - [sym_for_statement] = STATE(2671), - [sym_c_style_for_statement] = STATE(2671), - [sym_while_statement] = STATE(2671), - [sym_if_statement] = STATE(2671), - [sym_case_statement] = STATE(2671), - [sym_function_definition] = STATE(2671), - [sym_subshell] = STATE(2671), - [sym_pipeline] = STATE(2671), - [sym_list] = STATE(2671), - [sym_negated_command] = STATE(2671), - [sym_test_command] = STATE(2671), - [sym_declaration_command] = STATE(2671), - [sym_unset_command] = STATE(2671), - [sym_command] = STATE(2671), - [sym_command_name] = STATE(78), - [sym_variable_assignment] = STATE(2672), - [sym_subscript] = STATE(80), - [sym_file_redirect] = STATE(82), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(75), - [sym_simple_expansion] = STATE(75), - [sym_string_expansion] = STATE(75), - [sym_expansion] = STATE(75), - [sym_command_substitution] = STATE(75), - [sym_process_substitution] = STATE(75), - [aux_sym__statements_repeat1] = STATE(190), - [aux_sym_command_repeat1] = STATE(82), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(109), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(111), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(119), - [anon_sym_declare] = ACTIONS(121), - [anon_sym_typeset] = ACTIONS(121), - [anon_sym_export] = ACTIONS(121), - [anon_sym_readonly] = ACTIONS(121), - [anon_sym_local] = ACTIONS(121), - [anon_sym_unset] = ACTIONS(123), - [anon_sym_unsetenv] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(125), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(129), - }, - [2535] = { - [sym_file_redirect] = STATE(2349), - [sym_heredoc_redirect] = STATE(2349), - [sym_heredoc_body] = STATE(1375), - [sym_herestring_redirect] = STATE(2349), - [aux_sym_while_statement_repeat1] = STATE(2349), - [sym__simple_heredoc_body] = ACTIONS(321), - [sym__heredoc_body_beginning] = ACTIONS(323), - [sym_file_descriptor] = ACTIONS(4909), - [anon_sym_SEMI] = ACTIONS(3120), - [anon_sym_esac] = ACTIONS(3118), - [anon_sym_PIPE] = ACTIONS(3120), - [anon_sym_SEMI_SEMI] = ACTIONS(3118), - [anon_sym_PIPE_AMP] = ACTIONS(3118), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_PIPE_PIPE] = ACTIONS(3118), - [anon_sym_LT] = ACTIONS(4913), - [anon_sym_GT] = ACTIONS(4913), - [anon_sym_GT_GT] = ACTIONS(4915), - [anon_sym_AMP_GT] = ACTIONS(4913), - [anon_sym_AMP_GT_GT] = ACTIONS(4915), - [anon_sym_LT_AMP] = ACTIONS(4915), - [anon_sym_GT_AMP] = ACTIONS(4915), - [anon_sym_LT_LT] = ACTIONS(337), - [anon_sym_LT_LT_DASH] = ACTIONS(339), - [anon_sym_LT_LT_LT] = ACTIONS(4917), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(3118), - [anon_sym_AMP] = ACTIONS(3120), - }, - [2536] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_esac] = ACTIONS(6101), - [anon_sym_SEMI_SEMI] = ACTIONS(901), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(6103), - [anon_sym_DQUOTE] = ACTIONS(6105), - [anon_sym_DOLLAR] = ACTIONS(6103), - [sym_raw_string] = ACTIONS(6105), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6105), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6105), - [anon_sym_BQUOTE] = ACTIONS(6105), - [anon_sym_LT_LPAREN] = ACTIONS(6105), - [anon_sym_GT_LPAREN] = ACTIONS(6105), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6103), - }, - [2537] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_esac] = ACTIONS(6107), - [anon_sym_SEMI_SEMI] = ACTIONS(901), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(6109), - [anon_sym_DQUOTE] = ACTIONS(6111), - [anon_sym_DOLLAR] = ACTIONS(6109), - [sym_raw_string] = ACTIONS(6111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6111), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6111), - [anon_sym_BQUOTE] = ACTIONS(6111), - [anon_sym_LT_LPAREN] = ACTIONS(6111), - [anon_sym_GT_LPAREN] = ACTIONS(6111), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6109), - }, - [2538] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_SEMI_SEMI] = ACTIONS(901), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(5313), - [anon_sym_DQUOTE] = ACTIONS(5315), - [anon_sym_DOLLAR] = ACTIONS(5313), - [sym_raw_string] = ACTIONS(5315), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5315), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5315), - [anon_sym_BQUOTE] = ACTIONS(5315), - [anon_sym_LT_LPAREN] = ACTIONS(5315), - [anon_sym_GT_LPAREN] = ACTIONS(5315), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5313), - }, - [2539] = { - [sym__special_characters] = ACTIONS(5315), - [anon_sym_DQUOTE] = ACTIONS(5315), - [anon_sym_DOLLAR] = ACTIONS(5313), - [sym_raw_string] = ACTIONS(5315), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5315), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5315), - [anon_sym_BQUOTE] = ACTIONS(5315), - [anon_sym_LT_LPAREN] = ACTIONS(5315), - [anon_sym_GT_LPAREN] = ACTIONS(5315), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5315), - }, - [2540] = { - [anon_sym_SEMI] = ACTIONS(2038), - [anon_sym_PIPE] = ACTIONS(445), - [anon_sym_SEMI_SEMI] = ACTIONS(6113), - [anon_sym_PIPE_AMP] = ACTIONS(449), - [anon_sym_AMP_AMP] = ACTIONS(451), - [anon_sym_PIPE_PIPE] = ACTIONS(451), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(2040), - [anon_sym_AMP] = ACTIONS(2038), - }, - [2541] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(2038), - [anon_sym_PIPE] = ACTIONS(445), - [anon_sym_SEMI_SEMI] = ACTIONS(6113), - [anon_sym_PIPE_AMP] = ACTIONS(449), - [anon_sym_AMP_AMP] = ACTIONS(451), - [anon_sym_PIPE_PIPE] = ACTIONS(451), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(2040), - [anon_sym_AMP] = ACTIONS(2038), - }, - [2542] = { - [sym__terminated_statement] = STATE(2542), - [sym_for_statement] = STATE(521), - [sym_c_style_for_statement] = STATE(521), - [sym_while_statement] = STATE(521), - [sym_if_statement] = STATE(521), - [sym_case_statement] = STATE(521), - [sym_function_definition] = STATE(521), - [sym_subshell] = STATE(521), - [sym_pipeline] = STATE(521), - [sym_list] = STATE(521), - [sym_negated_command] = STATE(521), - [sym_test_command] = STATE(521), - [sym_declaration_command] = STATE(521), - [sym_unset_command] = STATE(521), - [sym_command] = STATE(521), - [sym_command_name] = STATE(51), - [sym_variable_assignment] = STATE(522), - [sym_subscript] = STATE(53), - [sym_file_redirect] = STATE(54), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(47), - [sym_simple_expansion] = STATE(47), - [sym_string_expansion] = STATE(47), - [sym_expansion] = STATE(47), - [sym_command_substitution] = STATE(47), - [sym_process_substitution] = STATE(47), - [aux_sym__statements_repeat1] = STATE(2542), - [aux_sym_command_repeat1] = STATE(54), - [sym_file_descriptor] = ACTIONS(965), - [sym_variable_name] = ACTIONS(968), - [anon_sym_for] = ACTIONS(971), - [anon_sym_while] = ACTIONS(974), - [anon_sym_if] = ACTIONS(977), - [anon_sym_case] = ACTIONS(980), - [anon_sym_SEMI_SEMI] = ACTIONS(3528), - [anon_sym_function] = ACTIONS(983), - [anon_sym_LPAREN] = ACTIONS(986), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_LBRACK] = ACTIONS(992), - [anon_sym_LBRACK_LBRACK] = ACTIONS(995), - [anon_sym_declare] = ACTIONS(998), - [anon_sym_typeset] = ACTIONS(998), - [anon_sym_export] = ACTIONS(998), - [anon_sym_readonly] = ACTIONS(998), - [anon_sym_local] = ACTIONS(998), - [anon_sym_unset] = ACTIONS(1001), - [anon_sym_unsetenv] = ACTIONS(1001), - [anon_sym_LT] = ACTIONS(1004), - [anon_sym_GT] = ACTIONS(1004), - [anon_sym_GT_GT] = ACTIONS(1007), - [anon_sym_AMP_GT] = ACTIONS(1004), - [anon_sym_AMP_GT_GT] = ACTIONS(1007), - [anon_sym_LT_AMP] = ACTIONS(1007), - [anon_sym_GT_AMP] = ACTIONS(1007), - [sym__special_characters] = ACTIONS(1010), - [anon_sym_DQUOTE] = ACTIONS(1013), - [anon_sym_DOLLAR] = ACTIONS(1016), - [sym_raw_string] = ACTIONS(1019), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1022), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1025), - [anon_sym_BQUOTE] = ACTIONS(1028), - [anon_sym_LT_LPAREN] = ACTIONS(1031), - [anon_sym_GT_LPAREN] = ACTIONS(1031), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1034), - }, - [2543] = { - [sym__terminated_statement] = STATE(2542), - [sym_for_statement] = STATE(2675), - [sym_c_style_for_statement] = STATE(2675), - [sym_while_statement] = STATE(2675), - [sym_if_statement] = STATE(2675), - [sym_case_statement] = STATE(2675), - [sym_function_definition] = STATE(2675), - [sym_subshell] = STATE(2675), - [sym_pipeline] = STATE(2675), - [sym_list] = STATE(2675), - [sym_negated_command] = STATE(2675), - [sym_test_command] = STATE(2675), - [sym_declaration_command] = STATE(2675), - [sym_unset_command] = STATE(2675), - [sym_command] = STATE(2675), - [sym_command_name] = STATE(51), - [sym_variable_assignment] = STATE(2676), - [sym_subscript] = STATE(53), - [sym_file_redirect] = STATE(54), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(47), - [sym_simple_expansion] = STATE(47), - [sym_string_expansion] = STATE(47), - [sym_expansion] = STATE(47), - [sym_command_substitution] = STATE(47), - [sym_process_substitution] = STATE(47), - [aux_sym__statements_repeat1] = STATE(2542), - [aux_sym_command_repeat1] = STATE(54), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(69), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(71), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_SEMI_SEMI] = ACTIONS(6115), - [anon_sym_function] = ACTIONS(73), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(75), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_LBRACK_LBRACK] = ACTIONS(79), - [anon_sym_declare] = ACTIONS(81), - [anon_sym_typeset] = ACTIONS(81), - [anon_sym_export] = ACTIONS(81), - [anon_sym_readonly] = ACTIONS(81), - [anon_sym_local] = ACTIONS(81), - [anon_sym_unset] = ACTIONS(83), - [anon_sym_unsetenv] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(87), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(89), - }, - [2544] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_SEMI_SEMI] = ACTIONS(901), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(5365), - [anon_sym_DQUOTE] = ACTIONS(5367), - [anon_sym_DOLLAR] = ACTIONS(5365), - [sym_raw_string] = ACTIONS(5367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5367), - [anon_sym_BQUOTE] = ACTIONS(5367), - [anon_sym_LT_LPAREN] = ACTIONS(5367), - [anon_sym_GT_LPAREN] = ACTIONS(5367), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5365), - }, - [2545] = { - [sym__special_characters] = ACTIONS(5367), - [anon_sym_DQUOTE] = ACTIONS(5367), - [anon_sym_DOLLAR] = ACTIONS(5365), - [sym_raw_string] = ACTIONS(5367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5367), - [anon_sym_BQUOTE] = ACTIONS(5367), - [anon_sym_LT_LPAREN] = ACTIONS(5367), - [anon_sym_GT_LPAREN] = ACTIONS(5367), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5367), - }, - [2546] = { - [anon_sym_SEMI] = ACTIONS(2038), - [anon_sym_PIPE] = ACTIONS(445), - [anon_sym_SEMI_SEMI] = ACTIONS(6117), - [anon_sym_PIPE_AMP] = ACTIONS(449), - [anon_sym_AMP_AMP] = ACTIONS(451), - [anon_sym_PIPE_PIPE] = ACTIONS(451), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(2040), - [anon_sym_AMP] = ACTIONS(2038), - }, - [2547] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(2038), - [anon_sym_PIPE] = ACTIONS(445), - [anon_sym_SEMI_SEMI] = ACTIONS(6117), - [anon_sym_PIPE_AMP] = ACTIONS(449), - [anon_sym_AMP_AMP] = ACTIONS(451), - [anon_sym_PIPE_PIPE] = ACTIONS(451), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(2040), - [anon_sym_AMP] = ACTIONS(2038), - }, - [2548] = { - [sym__terminated_statement] = STATE(2542), - [sym_for_statement] = STATE(2679), - [sym_c_style_for_statement] = STATE(2679), - [sym_while_statement] = STATE(2679), - [sym_if_statement] = STATE(2679), - [sym_case_statement] = STATE(2679), - [sym_function_definition] = STATE(2679), - [sym_subshell] = STATE(2679), - [sym_pipeline] = STATE(2679), - [sym_list] = STATE(2679), - [sym_negated_command] = STATE(2679), - [sym_test_command] = STATE(2679), - [sym_declaration_command] = STATE(2679), - [sym_unset_command] = STATE(2679), - [sym_command] = STATE(2679), - [sym_command_name] = STATE(51), - [sym_variable_assignment] = STATE(2680), - [sym_subscript] = STATE(53), - [sym_file_redirect] = STATE(54), - [sym_concatenation] = STATE(30), - [sym_string] = STATE(47), - [sym_simple_expansion] = STATE(47), - [sym_string_expansion] = STATE(47), - [sym_expansion] = STATE(47), - [sym_command_substitution] = STATE(47), - [sym_process_substitution] = STATE(47), - [aux_sym__statements_repeat1] = STATE(2542), - [aux_sym_command_repeat1] = STATE(54), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(69), - [anon_sym_for] = ACTIONS(11), - [anon_sym_while] = ACTIONS(71), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_SEMI_SEMI] = ACTIONS(6119), - [anon_sym_function] = ACTIONS(73), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(75), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_LBRACK_LBRACK] = ACTIONS(79), - [anon_sym_declare] = ACTIONS(81), - [anon_sym_typeset] = ACTIONS(81), - [anon_sym_export] = ACTIONS(81), - [anon_sym_readonly] = ACTIONS(81), - [anon_sym_local] = ACTIONS(81), - [anon_sym_unset] = ACTIONS(83), - [anon_sym_unsetenv] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(33), - [anon_sym_GT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [sym__special_characters] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_raw_string] = ACTIONS(87), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(89), - }, - [2549] = { - [sym_file_descriptor] = ACTIONS(4568), - [sym__concat] = ACTIONS(4568), - [ts_builtin_sym_end] = ACTIONS(4568), - [anon_sym_SEMI] = ACTIONS(4570), - [anon_sym_esac] = ACTIONS(4568), - [anon_sym_PIPE] = ACTIONS(4570), - [anon_sym_RPAREN] = ACTIONS(4568), - [anon_sym_SEMI_SEMI] = ACTIONS(4568), - [anon_sym_PIPE_AMP] = ACTIONS(4568), - [anon_sym_AMP_AMP] = ACTIONS(4568), - [anon_sym_PIPE_PIPE] = ACTIONS(4568), - [anon_sym_LT] = ACTIONS(4570), - [anon_sym_GT] = ACTIONS(4570), - [anon_sym_GT_GT] = ACTIONS(4568), - [anon_sym_AMP_GT] = ACTIONS(4570), - [anon_sym_AMP_GT_GT] = ACTIONS(4568), - [anon_sym_LT_AMP] = ACTIONS(4568), - [anon_sym_GT_AMP] = ACTIONS(4568), - [anon_sym_LT_LT] = ACTIONS(4570), - [anon_sym_LT_LT_DASH] = ACTIONS(4568), - [anon_sym_LT_LT_LT] = ACTIONS(4568), - [anon_sym_BQUOTE] = ACTIONS(4568), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(4568), - [anon_sym_AMP] = ACTIONS(4570), - }, - [2550] = { - [sym_file_descriptor] = ACTIONS(4572), - [sym__concat] = ACTIONS(4572), - [ts_builtin_sym_end] = ACTIONS(4572), - [anon_sym_SEMI] = ACTIONS(4574), - [anon_sym_esac] = ACTIONS(4572), - [anon_sym_PIPE] = ACTIONS(4574), - [anon_sym_RPAREN] = ACTIONS(4572), - [anon_sym_SEMI_SEMI] = ACTIONS(4572), - [anon_sym_PIPE_AMP] = ACTIONS(4572), - [anon_sym_AMP_AMP] = ACTIONS(4572), - [anon_sym_PIPE_PIPE] = ACTIONS(4572), - [anon_sym_LT] = ACTIONS(4574), - [anon_sym_GT] = ACTIONS(4574), - [anon_sym_GT_GT] = ACTIONS(4572), - [anon_sym_AMP_GT] = ACTIONS(4574), - [anon_sym_AMP_GT_GT] = ACTIONS(4572), - [anon_sym_LT_AMP] = ACTIONS(4572), - [anon_sym_GT_AMP] = ACTIONS(4572), - [anon_sym_LT_LT] = ACTIONS(4574), - [anon_sym_LT_LT_DASH] = ACTIONS(4572), - [anon_sym_LT_LT_LT] = ACTIONS(4572), - [anon_sym_BQUOTE] = ACTIONS(4572), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(4572), - [anon_sym_AMP] = ACTIONS(4574), - }, - [2551] = { - [sym_file_descriptor] = ACTIONS(4576), - [sym__concat] = ACTIONS(4576), - [ts_builtin_sym_end] = ACTIONS(4576), - [anon_sym_SEMI] = ACTIONS(4578), - [anon_sym_esac] = ACTIONS(4576), - [anon_sym_PIPE] = ACTIONS(4578), - [anon_sym_RPAREN] = ACTIONS(4576), - [anon_sym_SEMI_SEMI] = ACTIONS(4576), - [anon_sym_PIPE_AMP] = ACTIONS(4576), - [anon_sym_AMP_AMP] = ACTIONS(4576), - [anon_sym_PIPE_PIPE] = ACTIONS(4576), - [anon_sym_LT] = ACTIONS(4578), - [anon_sym_GT] = ACTIONS(4578), - [anon_sym_GT_GT] = ACTIONS(4576), - [anon_sym_AMP_GT] = ACTIONS(4578), - [anon_sym_AMP_GT_GT] = ACTIONS(4576), - [anon_sym_LT_AMP] = ACTIONS(4576), - [anon_sym_GT_AMP] = ACTIONS(4576), - [anon_sym_LT_LT] = ACTIONS(4578), - [anon_sym_LT_LT_DASH] = ACTIONS(4576), - [anon_sym_LT_LT_LT] = ACTIONS(4576), - [anon_sym_BQUOTE] = ACTIONS(4576), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(4576), - [anon_sym_AMP] = ACTIONS(4578), - }, - [2552] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(6121), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [2553] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(6123), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [2554] = { - [sym_file_descriptor] = ACTIONS(4608), - [sym__concat] = ACTIONS(4608), - [ts_builtin_sym_end] = ACTIONS(4608), - [anon_sym_SEMI] = ACTIONS(4610), - [anon_sym_esac] = ACTIONS(4608), - [anon_sym_PIPE] = ACTIONS(4610), - [anon_sym_RPAREN] = ACTIONS(4608), - [anon_sym_SEMI_SEMI] = ACTIONS(4608), - [anon_sym_PIPE_AMP] = ACTIONS(4608), - [anon_sym_AMP_AMP] = ACTIONS(4608), - [anon_sym_PIPE_PIPE] = ACTIONS(4608), - [anon_sym_LT] = ACTIONS(4610), - [anon_sym_GT] = ACTIONS(4610), - [anon_sym_GT_GT] = ACTIONS(4608), - [anon_sym_AMP_GT] = ACTIONS(4610), - [anon_sym_AMP_GT_GT] = ACTIONS(4608), - [anon_sym_LT_AMP] = ACTIONS(4608), - [anon_sym_GT_AMP] = ACTIONS(4608), - [anon_sym_LT_LT] = ACTIONS(4610), - [anon_sym_LT_LT_DASH] = ACTIONS(4608), - [anon_sym_LT_LT_LT] = ACTIONS(4608), - [anon_sym_BQUOTE] = ACTIONS(4608), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(4608), - [anon_sym_AMP] = ACTIONS(4610), - }, - [2555] = { - [sym__concat] = ACTIONS(5069), - [anon_sym_RBRACE] = ACTIONS(5069), - [sym_comment] = ACTIONS(53), - }, - [2556] = { - [sym__concat] = ACTIONS(5073), - [anon_sym_RBRACE] = ACTIONS(5073), - [sym_comment] = ACTIONS(53), - }, - [2557] = { - [sym__concat] = ACTIONS(5069), - [anon_sym_RPAREN_RPAREN] = ACTIONS(5069), - [anon_sym_AMP_AMP] = ACTIONS(5069), - [anon_sym_PIPE_PIPE] = ACTIONS(5069), - [anon_sym_EQ_TILDE] = ACTIONS(5069), - [anon_sym_EQ_EQ] = ACTIONS(5069), - [anon_sym_EQ] = ACTIONS(5071), - [anon_sym_LT] = ACTIONS(5069), - [anon_sym_GT] = ACTIONS(5069), - [anon_sym_BANG_EQ] = ACTIONS(5069), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(5069), - }, - [2558] = { - [sym__concat] = ACTIONS(5073), - [anon_sym_RPAREN_RPAREN] = ACTIONS(5073), - [anon_sym_AMP_AMP] = ACTIONS(5073), - [anon_sym_PIPE_PIPE] = ACTIONS(5073), - [anon_sym_EQ_TILDE] = ACTIONS(5073), - [anon_sym_EQ_EQ] = ACTIONS(5073), - [anon_sym_EQ] = ACTIONS(5075), - [anon_sym_LT] = ACTIONS(5073), - [anon_sym_GT] = ACTIONS(5073), - [anon_sym_BANG_EQ] = ACTIONS(5073), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(5073), - }, - [2559] = { - [sym_file_descriptor] = ACTIONS(3178), - [sym_variable_name] = ACTIONS(3178), - [anon_sym_SEMI] = ACTIONS(3180), - [anon_sym_esac] = ACTIONS(3180), - [anon_sym_PIPE] = ACTIONS(3180), - [anon_sym_SEMI_SEMI] = ACTIONS(3178), - [anon_sym_PIPE_AMP] = ACTIONS(3178), - [anon_sym_AMP_AMP] = ACTIONS(3178), - [anon_sym_PIPE_PIPE] = ACTIONS(3178), - [anon_sym_LT] = ACTIONS(3180), - [anon_sym_GT] = ACTIONS(3180), - [anon_sym_GT_GT] = ACTIONS(3178), - [anon_sym_AMP_GT] = ACTIONS(3180), - [anon_sym_AMP_GT_GT] = ACTIONS(3178), - [anon_sym_LT_AMP] = ACTIONS(3178), - [anon_sym_GT_AMP] = ACTIONS(3178), - [sym__special_characters] = ACTIONS(3178), - [anon_sym_DQUOTE] = ACTIONS(3178), - [anon_sym_DOLLAR] = ACTIONS(3180), - [sym_raw_string] = ACTIONS(3178), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3178), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3178), - [anon_sym_BQUOTE] = ACTIONS(3178), - [anon_sym_LT_LPAREN] = ACTIONS(3178), - [anon_sym_GT_LPAREN] = ACTIONS(3178), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3180), - [anon_sym_LF] = ACTIONS(3178), - [anon_sym_AMP] = ACTIONS(3180), - }, - [2560] = { - [sym_file_descriptor] = ACTIONS(1724), - [sym__concat] = ACTIONS(1724), - [sym_variable_name] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_esac] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(1726), - [anon_sym_SEMI_SEMI] = ACTIONS(1724), - [anon_sym_PIPE_AMP] = ACTIONS(1724), - [anon_sym_AMP_AMP] = ACTIONS(1724), - [anon_sym_PIPE_PIPE] = ACTIONS(1724), - [anon_sym_LT] = ACTIONS(1726), - [anon_sym_GT] = ACTIONS(1726), - [anon_sym_GT_GT] = ACTIONS(1724), - [anon_sym_AMP_GT] = ACTIONS(1726), - [anon_sym_AMP_GT_GT] = ACTIONS(1724), - [anon_sym_LT_AMP] = ACTIONS(1724), - [anon_sym_GT_AMP] = ACTIONS(1724), - [sym__special_characters] = ACTIONS(1724), - [anon_sym_DQUOTE] = ACTIONS(1724), - [anon_sym_DOLLAR] = ACTIONS(1726), - [sym_raw_string] = ACTIONS(1724), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1724), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1724), - [anon_sym_BQUOTE] = ACTIONS(1724), - [anon_sym_LT_LPAREN] = ACTIONS(1724), - [anon_sym_GT_LPAREN] = ACTIONS(1724), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1726), - [anon_sym_LF] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1726), - }, - [2561] = { - [aux_sym_concatenation_repeat1] = STATE(2561), - [sym_file_descriptor] = ACTIONS(1724), - [sym__concat] = ACTIONS(6125), - [sym_variable_name] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_esac] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(1726), - [anon_sym_SEMI_SEMI] = ACTIONS(1724), - [anon_sym_PIPE_AMP] = ACTIONS(1724), - [anon_sym_AMP_AMP] = ACTIONS(1724), - [anon_sym_PIPE_PIPE] = ACTIONS(1724), - [anon_sym_LT] = ACTIONS(1726), - [anon_sym_GT] = ACTIONS(1726), - [anon_sym_GT_GT] = ACTIONS(1724), - [anon_sym_AMP_GT] = ACTIONS(1726), - [anon_sym_AMP_GT_GT] = ACTIONS(1724), - [anon_sym_LT_AMP] = ACTIONS(1724), - [anon_sym_GT_AMP] = ACTIONS(1724), - [sym__special_characters] = ACTIONS(1724), - [anon_sym_DQUOTE] = ACTIONS(1724), - [anon_sym_DOLLAR] = ACTIONS(1726), - [sym_raw_string] = ACTIONS(1724), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1724), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1724), - [anon_sym_BQUOTE] = ACTIONS(1724), - [anon_sym_LT_LPAREN] = ACTIONS(1724), - [anon_sym_GT_LPAREN] = ACTIONS(1724), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1726), - [anon_sym_LF] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1726), - }, - [2562] = { - [sym_file_descriptor] = ACTIONS(1731), - [sym__concat] = ACTIONS(1731), - [sym_variable_name] = ACTIONS(1731), - [anon_sym_SEMI] = ACTIONS(1733), - [anon_sym_esac] = ACTIONS(1733), - [anon_sym_PIPE] = ACTIONS(1733), - [anon_sym_SEMI_SEMI] = ACTIONS(1731), - [anon_sym_PIPE_AMP] = ACTIONS(1731), - [anon_sym_AMP_AMP] = ACTIONS(1731), - [anon_sym_PIPE_PIPE] = ACTIONS(1731), - [anon_sym_LT] = ACTIONS(1733), - [anon_sym_GT] = ACTIONS(1733), - [anon_sym_GT_GT] = ACTIONS(1731), - [anon_sym_AMP_GT] = ACTIONS(1733), - [anon_sym_AMP_GT_GT] = ACTIONS(1731), - [anon_sym_LT_AMP] = ACTIONS(1731), - [anon_sym_GT_AMP] = ACTIONS(1731), - [sym__special_characters] = ACTIONS(1731), - [anon_sym_DQUOTE] = ACTIONS(1731), - [anon_sym_DOLLAR] = ACTIONS(1733), - [sym_raw_string] = ACTIONS(1731), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1731), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1731), - [anon_sym_BQUOTE] = ACTIONS(1731), - [anon_sym_LT_LPAREN] = ACTIONS(1731), - [anon_sym_GT_LPAREN] = ACTIONS(1731), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1733), - [anon_sym_LF] = ACTIONS(1731), - [anon_sym_AMP] = ACTIONS(1733), - }, - [2563] = { - [anon_sym_DQUOTE] = ACTIONS(6128), - [anon_sym_DOLLAR] = ACTIONS(775), - [sym__string_content] = ACTIONS(777), - [anon_sym_POUND] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(781), - [anon_sym_STAR] = ACTIONS(783), - [anon_sym_AT] = ACTIONS(783), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_0] = ACTIONS(781), - [anon_sym__] = ACTIONS(781), - }, - [2564] = { - [sym_concatenation] = STATE(2687), - [sym_string] = STATE(2686), - [sym_simple_expansion] = STATE(2686), - [sym_string_expansion] = STATE(2686), - [sym_expansion] = STATE(2686), - [sym_command_substitution] = STATE(2686), - [sym_process_substitution] = STATE(2686), - [anon_sym_RBRACE] = ACTIONS(6130), - [sym__special_characters] = ACTIONS(6132), - [anon_sym_DQUOTE] = ACTIONS(1802), - [anon_sym_DOLLAR] = ACTIONS(1804), - [sym_raw_string] = ACTIONS(6134), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1808), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1810), - [anon_sym_BQUOTE] = ACTIONS(1812), - [anon_sym_LT_LPAREN] = ACTIONS(1814), - [anon_sym_GT_LPAREN] = ACTIONS(1814), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6134), - }, - [2565] = { - [anon_sym_LBRACK] = ACTIONS(815), - [anon_sym_EQ] = ACTIONS(6136), - [sym_comment] = ACTIONS(53), - }, - [2566] = { - [sym_concatenation] = STATE(2691), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(2691), - [anon_sym_RBRACE] = ACTIONS(6138), - [anon_sym_EQ] = ACTIONS(6140), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(6142), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(6144), - [anon_sym_COLON] = ACTIONS(6140), - [anon_sym_COLON_QMARK] = ACTIONS(6140), - [anon_sym_COLON_DASH] = ACTIONS(6140), - [anon_sym_PERCENT] = ACTIONS(6140), - [anon_sym_DASH] = ACTIONS(6140), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [2567] = { - [sym_concatenation] = STATE(2693), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(2693), - [anon_sym_RBRACE] = ACTIONS(6130), - [anon_sym_EQ] = ACTIONS(6146), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(6148), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(6150), - [anon_sym_COLON] = ACTIONS(6146), - [anon_sym_COLON_QMARK] = ACTIONS(6146), - [anon_sym_COLON_DASH] = ACTIONS(6146), - [anon_sym_PERCENT] = ACTIONS(6146), - [anon_sym_DASH] = ACTIONS(6146), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [2568] = { - [sym_file_descriptor] = ACTIONS(1832), - [sym__concat] = ACTIONS(1832), - [sym_variable_name] = ACTIONS(1832), - [anon_sym_SEMI] = ACTIONS(1834), - [anon_sym_esac] = ACTIONS(1834), - [anon_sym_PIPE] = ACTIONS(1834), - [anon_sym_SEMI_SEMI] = ACTIONS(1832), - [anon_sym_PIPE_AMP] = ACTIONS(1832), - [anon_sym_AMP_AMP] = ACTIONS(1832), - [anon_sym_PIPE_PIPE] = ACTIONS(1832), - [anon_sym_LT] = ACTIONS(1834), - [anon_sym_GT] = ACTIONS(1834), - [anon_sym_GT_GT] = ACTIONS(1832), - [anon_sym_AMP_GT] = ACTIONS(1834), - [anon_sym_AMP_GT_GT] = ACTIONS(1832), - [anon_sym_LT_AMP] = ACTIONS(1832), - [anon_sym_GT_AMP] = ACTIONS(1832), - [sym__special_characters] = ACTIONS(1832), - [anon_sym_DQUOTE] = ACTIONS(1832), - [anon_sym_DOLLAR] = ACTIONS(1834), - [sym_raw_string] = ACTIONS(1832), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1832), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1832), - [anon_sym_BQUOTE] = ACTIONS(1832), - [anon_sym_LT_LPAREN] = ACTIONS(1832), - [anon_sym_GT_LPAREN] = ACTIONS(1832), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1834), - [anon_sym_LF] = ACTIONS(1832), - [anon_sym_AMP] = ACTIONS(1834), - }, - [2569] = { - [sym_comment] = ACTIONS(265), - [sym_regex_without_right_brace] = ACTIONS(6152), - }, - [2570] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(6154), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [2571] = { - [sym_file_descriptor] = ACTIONS(1876), - [sym__concat] = ACTIONS(1876), - [sym_variable_name] = ACTIONS(1876), - [anon_sym_SEMI] = ACTIONS(1878), - [anon_sym_esac] = ACTIONS(1878), - [anon_sym_PIPE] = ACTIONS(1878), - [anon_sym_SEMI_SEMI] = ACTIONS(1876), - [anon_sym_PIPE_AMP] = ACTIONS(1876), - [anon_sym_AMP_AMP] = ACTIONS(1876), - [anon_sym_PIPE_PIPE] = ACTIONS(1876), - [anon_sym_LT] = ACTIONS(1878), - [anon_sym_GT] = ACTIONS(1878), - [anon_sym_GT_GT] = ACTIONS(1876), - [anon_sym_AMP_GT] = ACTIONS(1878), - [anon_sym_AMP_GT_GT] = ACTIONS(1876), - [anon_sym_LT_AMP] = ACTIONS(1876), - [anon_sym_GT_AMP] = ACTIONS(1876), - [sym__special_characters] = ACTIONS(1876), - [anon_sym_DQUOTE] = ACTIONS(1876), - [anon_sym_DOLLAR] = ACTIONS(1878), - [sym_raw_string] = ACTIONS(1876), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1876), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1876), - [anon_sym_BQUOTE] = ACTIONS(1876), - [anon_sym_LT_LPAREN] = ACTIONS(1876), - [anon_sym_GT_LPAREN] = ACTIONS(1876), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1878), - [anon_sym_LF] = ACTIONS(1876), - [anon_sym_AMP] = ACTIONS(1878), - }, - [2572] = { - [sym_comment] = ACTIONS(265), - [sym_regex_without_right_brace] = ACTIONS(6156), - }, - [2573] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(6130), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, [2574] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(6158), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(901), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_DQUOTE] = ACTIONS(6158), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym__string_content] = ACTIONS(821), + [anon_sym_POUND] = ACTIONS(815), + [sym_comment] = ACTIONS(281), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(823), + [anon_sym_STAR] = ACTIONS(825), + [anon_sym_AT] = ACTIONS(825), + [anon_sym_QMARK] = ACTIONS(825), + [anon_sym_0] = ACTIONS(823), + [anon_sym__] = ACTIONS(823), }, [2575] = { - [sym_file_descriptor] = ACTIONS(1884), - [sym__concat] = ACTIONS(1884), - [sym_variable_name] = ACTIONS(1884), - [anon_sym_SEMI] = ACTIONS(1886), - [anon_sym_esac] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(1886), - [anon_sym_SEMI_SEMI] = ACTIONS(1884), - [anon_sym_PIPE_AMP] = ACTIONS(1884), - [anon_sym_AMP_AMP] = ACTIONS(1884), - [anon_sym_PIPE_PIPE] = ACTIONS(1884), - [anon_sym_LT] = ACTIONS(1886), - [anon_sym_GT] = ACTIONS(1886), - [anon_sym_GT_GT] = ACTIONS(1884), - [anon_sym_AMP_GT] = ACTIONS(1886), - [anon_sym_AMP_GT_GT] = ACTIONS(1884), - [anon_sym_LT_AMP] = ACTIONS(1884), - [anon_sym_GT_AMP] = ACTIONS(1884), - [sym__special_characters] = ACTIONS(1884), - [anon_sym_DQUOTE] = ACTIONS(1884), - [anon_sym_DOLLAR] = ACTIONS(1886), - [sym_raw_string] = ACTIONS(1884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1884), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1884), - [anon_sym_BQUOTE] = ACTIONS(1884), - [anon_sym_LT_LPAREN] = ACTIONS(1884), - [anon_sym_GT_LPAREN] = ACTIONS(1884), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1886), - [anon_sym_LF] = ACTIONS(1884), - [anon_sym_AMP] = ACTIONS(1886), + [sym_simple_expansion] = STATE(148), + [sym_expansion] = STATE(148), + [sym_command_substitution] = STATE(148), + [aux_sym_string_repeat1] = STATE(473), + [anon_sym_DQUOTE] = ACTIONS(6158), + [anon_sym_DOLLAR] = ACTIONS(6160), + [sym__string_content] = ACTIONS(273), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(277), + [anon_sym_BQUOTE] = ACTIONS(279), + [sym_comment] = ACTIONS(281), }, [2576] = { - [anon_sym_SEMI] = ACTIONS(6160), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(6158), - [anon_sym_SEMI_SEMI] = ACTIONS(6162), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(6162), - [anon_sym_AMP] = ACTIONS(6160), + [sym__simple_heredoc_body] = ACTIONS(845), + [sym__heredoc_body_beginning] = ACTIONS(845), + [sym_file_descriptor] = ACTIONS(845), + [sym__concat] = ACTIONS(845), + [anon_sym_SEMI] = ACTIONS(847), + [anon_sym_esac] = ACTIONS(845), + [anon_sym_PIPE] = ACTIONS(847), + [anon_sym_SEMI_SEMI] = ACTIONS(845), + [anon_sym_PIPE_AMP] = ACTIONS(845), + [anon_sym_AMP_AMP] = ACTIONS(845), + [anon_sym_PIPE_PIPE] = ACTIONS(845), + [anon_sym_LT] = ACTIONS(847), + [anon_sym_GT] = ACTIONS(847), + [anon_sym_GT_GT] = ACTIONS(845), + [anon_sym_AMP_GT] = ACTIONS(847), + [anon_sym_AMP_GT_GT] = ACTIONS(845), + [anon_sym_LT_AMP] = ACTIONS(845), + [anon_sym_GT_AMP] = ACTIONS(845), + [anon_sym_LT_LT] = ACTIONS(847), + [anon_sym_LT_LT_DASH] = ACTIONS(845), + [anon_sym_LT_LT_LT] = ACTIONS(845), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(845), + [anon_sym_AMP] = ACTIONS(847), }, [2577] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(6160), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(6158), - [anon_sym_SEMI_SEMI] = ACTIONS(6162), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(6162), - [anon_sym_AMP] = ACTIONS(6160), + [sym__simple_heredoc_body] = ACTIONS(849), + [sym__heredoc_body_beginning] = ACTIONS(849), + [sym_file_descriptor] = ACTIONS(849), + [sym__concat] = ACTIONS(849), + [anon_sym_SEMI] = ACTIONS(851), + [anon_sym_esac] = ACTIONS(849), + [anon_sym_PIPE] = ACTIONS(851), + [anon_sym_SEMI_SEMI] = ACTIONS(849), + [anon_sym_PIPE_AMP] = ACTIONS(849), + [anon_sym_AMP_AMP] = ACTIONS(849), + [anon_sym_PIPE_PIPE] = ACTIONS(849), + [anon_sym_LT] = ACTIONS(851), + [anon_sym_GT] = ACTIONS(851), + [anon_sym_GT_GT] = ACTIONS(849), + [anon_sym_AMP_GT] = ACTIONS(851), + [anon_sym_AMP_GT_GT] = ACTIONS(849), + [anon_sym_LT_AMP] = ACTIONS(849), + [anon_sym_GT_AMP] = ACTIONS(849), + [anon_sym_LT_LT] = ACTIONS(851), + [anon_sym_LT_LT_DASH] = ACTIONS(849), + [anon_sym_LT_LT_LT] = ACTIONS(849), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(849), + [anon_sym_AMP] = ACTIONS(851), }, [2578] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(6158), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), + [sym__simple_heredoc_body] = ACTIONS(853), + [sym__heredoc_body_beginning] = ACTIONS(853), + [sym_file_descriptor] = ACTIONS(853), + [sym__concat] = ACTIONS(853), + [anon_sym_SEMI] = ACTIONS(855), + [anon_sym_esac] = ACTIONS(853), + [anon_sym_PIPE] = ACTIONS(855), + [anon_sym_SEMI_SEMI] = ACTIONS(853), + [anon_sym_PIPE_AMP] = ACTIONS(853), + [anon_sym_AMP_AMP] = ACTIONS(853), + [anon_sym_PIPE_PIPE] = ACTIONS(853), + [anon_sym_LT] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_GT_GT] = ACTIONS(853), + [anon_sym_AMP_GT] = ACTIONS(855), + [anon_sym_AMP_GT_GT] = ACTIONS(853), + [anon_sym_LT_AMP] = ACTIONS(853), + [anon_sym_GT_AMP] = ACTIONS(853), + [anon_sym_LT_LT] = ACTIONS(855), + [anon_sym_LT_LT_DASH] = ACTIONS(853), + [anon_sym_LT_LT_LT] = ACTIONS(853), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(853), + [anon_sym_AMP] = ACTIONS(855), }, [2579] = { - [anon_sym_SEMI] = ACTIONS(6164), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_SEMI_SEMI] = ACTIONS(6166), - [anon_sym_PIPE_AMP] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(883), - [anon_sym_PIPE_PIPE] = ACTIONS(883), - [anon_sym_BQUOTE] = ACTIONS(6158), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(6166), - [anon_sym_AMP] = ACTIONS(6164), + [anon_sym_LBRACK] = ACTIONS(857), + [anon_sym_EQ] = ACTIONS(6162), + [sym_comment] = ACTIONS(55), }, [2580] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(6164), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_SEMI_SEMI] = ACTIONS(6166), - [anon_sym_PIPE_AMP] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(883), - [anon_sym_PIPE_PIPE] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(6158), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(6166), - [anon_sym_AMP] = ACTIONS(6164), + [sym_subscript] = STATE(2709), + [sym_variable_name] = ACTIONS(6164), + [anon_sym_DASH] = ACTIONS(6166), + [anon_sym_DOLLAR] = ACTIONS(6166), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6168), + [anon_sym_STAR] = ACTIONS(6170), + [anon_sym_AT] = ACTIONS(6170), + [anon_sym_QMARK] = ACTIONS(6170), + [anon_sym_0] = ACTIONS(6168), + [anon_sym__] = ACTIONS(6168), }, [2581] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(6168), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(901), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), + [sym_concatenation] = STATE(2712), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2712), + [anon_sym_RBRACE] = ACTIONS(6172), + [anon_sym_EQ] = ACTIONS(6174), + [anon_sym_DASH] = ACTIONS(6174), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(6176), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(6178), + [anon_sym_COLON] = ACTIONS(6174), + [anon_sym_COLON_QMARK] = ACTIONS(6174), + [anon_sym_COLON_DASH] = ACTIONS(6174), + [anon_sym_PERCENT] = ACTIONS(6174), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2582] = { - [sym_file_descriptor] = ACTIONS(1916), - [sym__concat] = ACTIONS(1916), - [sym_variable_name] = ACTIONS(1916), - [anon_sym_SEMI] = ACTIONS(1918), - [anon_sym_esac] = ACTIONS(1918), - [anon_sym_PIPE] = ACTIONS(1918), - [anon_sym_SEMI_SEMI] = ACTIONS(1916), - [anon_sym_PIPE_AMP] = ACTIONS(1916), - [anon_sym_AMP_AMP] = ACTIONS(1916), - [anon_sym_PIPE_PIPE] = ACTIONS(1916), - [anon_sym_LT] = ACTIONS(1918), - [anon_sym_GT] = ACTIONS(1918), - [anon_sym_GT_GT] = ACTIONS(1916), - [anon_sym_AMP_GT] = ACTIONS(1918), - [anon_sym_AMP_GT_GT] = ACTIONS(1916), - [anon_sym_LT_AMP] = ACTIONS(1916), - [anon_sym_GT_AMP] = ACTIONS(1916), - [sym__special_characters] = ACTIONS(1916), - [anon_sym_DQUOTE] = ACTIONS(1916), - [anon_sym_DOLLAR] = ACTIONS(1918), - [sym_raw_string] = ACTIONS(1916), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1916), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1916), - [anon_sym_BQUOTE] = ACTIONS(1916), - [anon_sym_LT_LPAREN] = ACTIONS(1916), - [anon_sym_GT_LPAREN] = ACTIONS(1916), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1918), - [anon_sym_LF] = ACTIONS(1916), - [anon_sym_AMP] = ACTIONS(1918), + [sym_concatenation] = STATE(2715), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2715), + [anon_sym_RBRACE] = ACTIONS(6180), + [anon_sym_EQ] = ACTIONS(6182), + [anon_sym_DASH] = ACTIONS(6182), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(6184), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(6186), + [anon_sym_COLON] = ACTIONS(6182), + [anon_sym_COLON_QMARK] = ACTIONS(6182), + [anon_sym_COLON_DASH] = ACTIONS(6182), + [anon_sym_PERCENT] = ACTIONS(6182), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2583] = { - [anon_sym_SEMI] = ACTIONS(6170), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(6168), - [anon_sym_SEMI_SEMI] = ACTIONS(6172), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(6172), - [anon_sym_AMP] = ACTIONS(6170), + [anon_sym_SEMI] = ACTIONS(6188), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(6190), + [anon_sym_SEMI_SEMI] = ACTIONS(6192), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(6192), + [anon_sym_AMP] = ACTIONS(6188), }, [2584] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(6170), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(6168), - [anon_sym_SEMI_SEMI] = ACTIONS(6172), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(6172), - [anon_sym_AMP] = ACTIONS(6170), + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(6188), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(6190), + [anon_sym_SEMI_SEMI] = ACTIONS(6192), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(6192), + [anon_sym_AMP] = ACTIONS(6188), }, [2585] = { - [sym_file_redirect] = STATE(1541), - [sym_file_descriptor] = ACTIONS(5499), - [anon_sym_SEMI] = ACTIONS(3522), - [anon_sym_esac] = ACTIONS(3520), - [anon_sym_PIPE] = ACTIONS(3522), - [anon_sym_SEMI_SEMI] = ACTIONS(3520), - [anon_sym_PIPE_AMP] = ACTIONS(3520), - [anon_sym_AMP_AMP] = ACTIONS(3520), - [anon_sym_PIPE_PIPE] = ACTIONS(3520), - [anon_sym_LT] = ACTIONS(5501), - [anon_sym_GT] = ACTIONS(5501), - [anon_sym_GT_GT] = ACTIONS(5503), - [anon_sym_AMP_GT] = ACTIONS(5501), - [anon_sym_AMP_GT_GT] = ACTIONS(5503), - [anon_sym_LT_AMP] = ACTIONS(5503), - [anon_sym_GT_AMP] = ACTIONS(5503), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(3520), - [anon_sym_AMP] = ACTIONS(3522), + [sym__terminated_statement] = STATE(198), + [sym_for_statement] = STATE(2718), + [sym_c_style_for_statement] = STATE(2718), + [sym_while_statement] = STATE(2718), + [sym_if_statement] = STATE(2718), + [sym_case_statement] = STATE(2718), + [sym_function_definition] = STATE(2718), + [sym_subshell] = STATE(2718), + [sym_pipeline] = STATE(2718), + [sym_list] = STATE(2718), + [sym_negated_command] = STATE(2718), + [sym_test_command] = STATE(2718), + [sym_declaration_command] = STATE(2718), + [sym_unset_command] = STATE(2718), + [sym_command] = STATE(2718), + [sym_command_name] = STATE(92), + [sym_variable_assignment] = STATE(2719), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(96), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), + [aux_sym__statements_repeat1] = STATE(198), + [aux_sym_command_repeat1] = STATE(96), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(137), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(149), + [anon_sym_declare] = ACTIONS(151), + [anon_sym_typeset] = ACTIONS(151), + [anon_sym_export] = ACTIONS(151), + [anon_sym_readonly] = ACTIONS(151), + [anon_sym_local] = ACTIONS(151), + [anon_sym_unset] = ACTIONS(153), + [anon_sym_unsetenv] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(159), }, [2586] = { - [sym_concatenation] = STATE(1544), - [sym_string] = STATE(2703), - [sym_simple_expansion] = STATE(2703), - [sym_string_expansion] = STATE(2703), - [sym_expansion] = STATE(2703), - [sym_command_substitution] = STATE(2703), - [sym_process_substitution] = STATE(2703), - [sym__special_characters] = ACTIONS(6174), - [anon_sym_DQUOTE] = ACTIONS(393), - [anon_sym_DOLLAR] = ACTIONS(395), - [sym_raw_string] = ACTIONS(6176), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(399), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(401), - [anon_sym_BQUOTE] = ACTIONS(403), - [anon_sym_LT_LPAREN] = ACTIONS(405), - [anon_sym_GT_LPAREN] = ACTIONS(405), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6176), + [anon_sym_SEMI] = ACTIONS(6194), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_SEMI_SEMI] = ACTIONS(6196), + [anon_sym_PIPE_AMP] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_BQUOTE] = ACTIONS(6190), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(6196), + [anon_sym_AMP] = ACTIONS(6194), }, [2587] = { - [aux_sym_concatenation_repeat1] = STATE(2704), - [sym__concat] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(735), - [anon_sym_esac] = ACTIONS(731), - [anon_sym_PIPE] = ACTIONS(735), - [anon_sym_SEMI_SEMI] = ACTIONS(731), - [anon_sym_PIPE_AMP] = ACTIONS(731), - [anon_sym_AMP_AMP] = ACTIONS(731), - [anon_sym_PIPE_PIPE] = ACTIONS(731), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(731), - [anon_sym_AMP] = ACTIONS(735), + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(6194), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_SEMI_SEMI] = ACTIONS(6196), + [anon_sym_PIPE_AMP] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(6190), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(6196), + [anon_sym_AMP] = ACTIONS(6194), }, [2588] = { - [aux_sym_concatenation_repeat1] = STATE(2704), - [sym__concat] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(751), - [anon_sym_esac] = ACTIONS(749), - [anon_sym_PIPE] = ACTIONS(751), - [anon_sym_SEMI_SEMI] = ACTIONS(749), - [anon_sym_PIPE_AMP] = ACTIONS(749), - [anon_sym_AMP_AMP] = ACTIONS(749), - [anon_sym_PIPE_PIPE] = ACTIONS(749), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(749), - [anon_sym_AMP] = ACTIONS(751), + [sym__terminated_statement] = STATE(198), + [sym_for_statement] = STATE(2721), + [sym_c_style_for_statement] = STATE(2721), + [sym_while_statement] = STATE(2721), + [sym_if_statement] = STATE(2721), + [sym_case_statement] = STATE(2721), + [sym_function_definition] = STATE(2721), + [sym_subshell] = STATE(2721), + [sym_pipeline] = STATE(2721), + [sym_list] = STATE(2721), + [sym_negated_command] = STATE(2721), + [sym_test_command] = STATE(2721), + [sym_declaration_command] = STATE(2721), + [sym_unset_command] = STATE(2721), + [sym_command] = STATE(2721), + [sym_command_name] = STATE(173), + [sym_variable_assignment] = STATE(2722), + [sym_subscript] = STATE(66), + [sym_file_redirect] = STATE(176), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(60), + [sym_simple_expansion] = STATE(60), + [sym_string_expansion] = STATE(60), + [sym_expansion] = STATE(60), + [sym_command_substitution] = STATE(60), + [sym_process_substitution] = STATE(60), + [aux_sym__statements_repeat1] = STATE(198), + [aux_sym_command_repeat1] = STATE(176), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(95), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(305), + [anon_sym_while] = ACTIONS(307), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(311), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(315), + [anon_sym_declare] = ACTIONS(317), + [anon_sym_typeset] = ACTIONS(317), + [anon_sym_export] = ACTIONS(317), + [anon_sym_readonly] = ACTIONS(317), + [anon_sym_local] = ACTIONS(317), + [anon_sym_unset] = ACTIONS(319), + [anon_sym_unsetenv] = ACTIONS(319), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(115), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(321), }, [2589] = { - [sym_concatenation] = STATE(1574), - [sym_string] = STATE(2706), - [sym_simple_expansion] = STATE(2706), - [sym_string_expansion] = STATE(2706), - [sym_expansion] = STATE(2706), - [sym_command_substitution] = STATE(2706), - [sym_process_substitution] = STATE(2706), - [sym__special_characters] = ACTIONS(6178), - [anon_sym_DQUOTE] = ACTIONS(2612), - [anon_sym_DOLLAR] = ACTIONS(2614), - [sym_raw_string] = ACTIONS(6180), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2618), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2620), - [anon_sym_BQUOTE] = ACTIONS(2622), - [anon_sym_LT_LPAREN] = ACTIONS(2624), - [anon_sym_GT_LPAREN] = ACTIONS(2624), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6180), + [anon_sym_SEMI] = ACTIONS(6198), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(6200), + [anon_sym_SEMI_SEMI] = ACTIONS(6202), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(6202), + [anon_sym_AMP] = ACTIONS(6198), }, [2590] = { - [aux_sym_concatenation_repeat1] = STATE(2707), - [sym_file_descriptor] = ACTIONS(731), - [sym__concat] = ACTIONS(3592), - [anon_sym_SEMI] = ACTIONS(735), - [anon_sym_esac] = ACTIONS(731), - [anon_sym_PIPE] = ACTIONS(735), - [anon_sym_SEMI_SEMI] = ACTIONS(731), - [anon_sym_PIPE_AMP] = ACTIONS(731), - [anon_sym_AMP_AMP] = ACTIONS(731), - [anon_sym_PIPE_PIPE] = ACTIONS(731), - [anon_sym_LT] = ACTIONS(735), - [anon_sym_GT] = ACTIONS(735), - [anon_sym_GT_GT] = ACTIONS(731), - [anon_sym_AMP_GT] = ACTIONS(735), - [anon_sym_AMP_GT_GT] = ACTIONS(731), - [anon_sym_LT_AMP] = ACTIONS(731), - [anon_sym_GT_AMP] = ACTIONS(731), - [anon_sym_LT_LT] = ACTIONS(735), - [anon_sym_LT_LT_DASH] = ACTIONS(731), - [anon_sym_LT_LT_LT] = ACTIONS(731), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(731), - [anon_sym_AMP] = ACTIONS(735), + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(6198), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(6200), + [anon_sym_SEMI_SEMI] = ACTIONS(6202), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(6202), + [anon_sym_AMP] = ACTIONS(6198), }, [2591] = { - [aux_sym_concatenation_repeat1] = STATE(2707), - [sym_file_descriptor] = ACTIONS(749), - [sym__concat] = ACTIONS(3592), - [anon_sym_SEMI] = ACTIONS(751), - [anon_sym_esac] = ACTIONS(749), - [anon_sym_PIPE] = ACTIONS(751), - [anon_sym_SEMI_SEMI] = ACTIONS(749), - [anon_sym_PIPE_AMP] = ACTIONS(749), - [anon_sym_AMP_AMP] = ACTIONS(749), - [anon_sym_PIPE_PIPE] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(751), - [anon_sym_GT] = ACTIONS(751), - [anon_sym_GT_GT] = ACTIONS(749), - [anon_sym_AMP_GT] = ACTIONS(751), - [anon_sym_AMP_GT_GT] = ACTIONS(749), - [anon_sym_LT_AMP] = ACTIONS(749), - [anon_sym_GT_AMP] = ACTIONS(749), - [anon_sym_LT_LT] = ACTIONS(751), - [anon_sym_LT_LT_DASH] = ACTIONS(749), - [anon_sym_LT_LT_LT] = ACTIONS(749), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(749), - [anon_sym_AMP] = ACTIONS(751), + [sym__terminated_statement] = STATE(198), + [sym_for_statement] = STATE(2725), + [sym_c_style_for_statement] = STATE(2725), + [sym_while_statement] = STATE(2725), + [sym_if_statement] = STATE(2725), + [sym_case_statement] = STATE(2725), + [sym_function_definition] = STATE(2725), + [sym_subshell] = STATE(2725), + [sym_pipeline] = STATE(2725), + [sym_list] = STATE(2725), + [sym_negated_command] = STATE(2725), + [sym_test_command] = STATE(2725), + [sym_declaration_command] = STATE(2725), + [sym_unset_command] = STATE(2725), + [sym_command] = STATE(2725), + [sym_command_name] = STATE(92), + [sym_variable_assignment] = STATE(2726), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(96), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(89), + [sym_simple_expansion] = STATE(89), + [sym_string_expansion] = STATE(89), + [sym_expansion] = STATE(89), + [sym_command_substitution] = STATE(89), + [sym_process_substitution] = STATE(89), + [aux_sym__statements_repeat1] = STATE(198), + [aux_sym_command_repeat1] = STATE(96), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(137), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(139), + [anon_sym_while] = ACTIONS(141), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(145), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(149), + [anon_sym_declare] = ACTIONS(151), + [anon_sym_typeset] = ACTIONS(151), + [anon_sym_export] = ACTIONS(151), + [anon_sym_readonly] = ACTIONS(151), + [anon_sym_local] = ACTIONS(151), + [anon_sym_unset] = ACTIONS(153), + [anon_sym_unsetenv] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(159), }, [2592] = { - [aux_sym_concatenation_repeat1] = STATE(2707), - [sym_file_descriptor] = ACTIONS(1972), - [sym__concat] = ACTIONS(3592), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_esac] = ACTIONS(1972), - [anon_sym_PIPE] = ACTIONS(1974), - [anon_sym_SEMI_SEMI] = ACTIONS(1972), - [anon_sym_PIPE_AMP] = ACTIONS(1972), - [anon_sym_AMP_AMP] = ACTIONS(1972), - [anon_sym_PIPE_PIPE] = ACTIONS(1972), - [anon_sym_LT] = ACTIONS(1974), - [anon_sym_GT] = ACTIONS(1974), - [anon_sym_GT_GT] = ACTIONS(1972), - [anon_sym_AMP_GT] = ACTIONS(1974), - [anon_sym_AMP_GT_GT] = ACTIONS(1972), - [anon_sym_LT_AMP] = ACTIONS(1972), - [anon_sym_GT_AMP] = ACTIONS(1972), - [anon_sym_LT_LT] = ACTIONS(1974), - [anon_sym_LT_LT_DASH] = ACTIONS(1972), - [anon_sym_LT_LT_LT] = ACTIONS(1972), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1972), - [anon_sym_AMP] = ACTIONS(1974), + [sym_file_redirect] = STATE(2418), + [sym_heredoc_redirect] = STATE(2418), + [sym_heredoc_body] = STATE(1449), + [sym_herestring_redirect] = STATE(2418), + [aux_sym_while_statement_repeat1] = STATE(2418), + [sym__simple_heredoc_body] = ACTIONS(339), + [sym__heredoc_body_beginning] = ACTIONS(341), + [sym_file_descriptor] = ACTIONS(5091), + [anon_sym_SEMI] = ACTIONS(3207), + [anon_sym_esac] = ACTIONS(3205), + [anon_sym_PIPE] = ACTIONS(3207), + [anon_sym_SEMI_SEMI] = ACTIONS(3205), + [anon_sym_PIPE_AMP] = ACTIONS(3205), + [anon_sym_AMP_AMP] = ACTIONS(3205), + [anon_sym_PIPE_PIPE] = ACTIONS(3205), + [anon_sym_LT] = ACTIONS(5095), + [anon_sym_GT] = ACTIONS(5095), + [anon_sym_GT_GT] = ACTIONS(5097), + [anon_sym_AMP_GT] = ACTIONS(5095), + [anon_sym_AMP_GT_GT] = ACTIONS(5097), + [anon_sym_LT_AMP] = ACTIONS(5097), + [anon_sym_GT_AMP] = ACTIONS(5097), + [anon_sym_LT_LT] = ACTIONS(355), + [anon_sym_LT_LT_DASH] = ACTIONS(357), + [anon_sym_LT_LT_LT] = ACTIONS(5099), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(3205), + [anon_sym_AMP] = ACTIONS(3207), }, [2593] = { - [aux_sym_concatenation_repeat1] = STATE(2707), - [sym_file_descriptor] = ACTIONS(1976), - [sym__concat] = ACTIONS(3592), - [anon_sym_SEMI] = ACTIONS(1978), - [anon_sym_esac] = ACTIONS(1976), - [anon_sym_PIPE] = ACTIONS(1978), - [anon_sym_SEMI_SEMI] = ACTIONS(1976), - [anon_sym_PIPE_AMP] = ACTIONS(1976), - [anon_sym_AMP_AMP] = ACTIONS(1976), - [anon_sym_PIPE_PIPE] = ACTIONS(1976), - [anon_sym_LT] = ACTIONS(1978), - [anon_sym_GT] = ACTIONS(1978), - [anon_sym_GT_GT] = ACTIONS(1976), - [anon_sym_AMP_GT] = ACTIONS(1978), - [anon_sym_AMP_GT_GT] = ACTIONS(1976), - [anon_sym_LT_AMP] = ACTIONS(1976), - [anon_sym_GT_AMP] = ACTIONS(1976), - [anon_sym_LT_LT] = ACTIONS(1978), - [anon_sym_LT_LT_DASH] = ACTIONS(1976), - [anon_sym_LT_LT_LT] = ACTIONS(1976), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1978), + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_esac] = ACTIONS(6204), + [anon_sym_SEMI_SEMI] = ACTIONS(943), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(6206), + [anon_sym_DQUOTE] = ACTIONS(6208), + [anon_sym_DOLLAR] = ACTIONS(6206), + [sym_raw_string] = ACTIONS(6208), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6208), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6208), + [anon_sym_BQUOTE] = ACTIONS(6208), + [anon_sym_LT_LPAREN] = ACTIONS(6208), + [anon_sym_GT_LPAREN] = ACTIONS(6208), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(6206), }, [2594] = { - [sym_file_redirect] = STATE(2594), - [sym_heredoc_redirect] = STATE(2594), - [sym_herestring_redirect] = STATE(2594), - [aux_sym_while_statement_repeat1] = STATE(2594), - [sym_file_descriptor] = ACTIONS(6182), - [anon_sym_SEMI] = ACTIONS(1989), - [anon_sym_esac] = ACTIONS(1984), - [anon_sym_PIPE] = ACTIONS(1989), - [anon_sym_SEMI_SEMI] = ACTIONS(1984), - [anon_sym_PIPE_AMP] = ACTIONS(1984), - [anon_sym_AMP_AMP] = ACTIONS(1984), - [anon_sym_PIPE_PIPE] = ACTIONS(1984), - [anon_sym_LT] = ACTIONS(6185), - [anon_sym_GT] = ACTIONS(6185), - [anon_sym_GT_GT] = ACTIONS(6188), - [anon_sym_AMP_GT] = ACTIONS(6185), - [anon_sym_AMP_GT_GT] = ACTIONS(6188), - [anon_sym_LT_AMP] = ACTIONS(6188), - [anon_sym_GT_AMP] = ACTIONS(6188), - [anon_sym_LT_LT] = ACTIONS(3625), - [anon_sym_LT_LT_DASH] = ACTIONS(3628), - [anon_sym_LT_LT_LT] = ACTIONS(6191), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1984), - [anon_sym_AMP] = ACTIONS(1989), + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_esac] = ACTIONS(6210), + [anon_sym_SEMI_SEMI] = ACTIONS(943), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(6212), + [anon_sym_DQUOTE] = ACTIONS(6214), + [anon_sym_DOLLAR] = ACTIONS(6212), + [sym_raw_string] = ACTIONS(6214), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6214), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6214), + [anon_sym_BQUOTE] = ACTIONS(6214), + [anon_sym_LT_LPAREN] = ACTIONS(6214), + [anon_sym_GT_LPAREN] = ACTIONS(6214), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(6212), }, [2595] = { - [sym_variable_name] = ACTIONS(2056), - [anon_sym_SEMI] = ACTIONS(2058), - [anon_sym_esac] = ACTIONS(2058), - [anon_sym_PIPE] = ACTIONS(2058), - [anon_sym_SEMI_SEMI] = ACTIONS(2056), - [anon_sym_PIPE_AMP] = ACTIONS(2056), - [anon_sym_AMP_AMP] = ACTIONS(2056), - [anon_sym_PIPE_PIPE] = ACTIONS(2056), - [sym__special_characters] = ACTIONS(2056), - [anon_sym_DQUOTE] = ACTIONS(2056), - [anon_sym_DOLLAR] = ACTIONS(2058), - [sym_raw_string] = ACTIONS(2056), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2056), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2056), - [anon_sym_BQUOTE] = ACTIONS(2056), - [anon_sym_LT_LPAREN] = ACTIONS(2056), - [anon_sym_GT_LPAREN] = ACTIONS(2056), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2058), - [sym_word] = ACTIONS(2058), - [anon_sym_LF] = ACTIONS(2056), - [anon_sym_AMP] = ACTIONS(2058), + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_SEMI_SEMI] = ACTIONS(943), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(5454), + [anon_sym_DQUOTE] = ACTIONS(5456), + [anon_sym_DOLLAR] = ACTIONS(5454), + [sym_raw_string] = ACTIONS(5456), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5456), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5456), + [anon_sym_BQUOTE] = ACTIONS(5456), + [anon_sym_LT_LPAREN] = ACTIONS(5456), + [anon_sym_GT_LPAREN] = ACTIONS(5456), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(5454), }, [2596] = { - [sym_concatenation] = STATE(977), - [sym_string] = STATE(534), - [sym_simple_expansion] = STATE(534), - [sym_string_expansion] = STATE(534), - [sym_expansion] = STATE(534), - [sym_command_substitution] = STATE(534), - [sym_process_substitution] = STATE(534), - [aux_sym_for_statement_repeat1] = STATE(977), - [anon_sym_RPAREN] = ACTIONS(6194), - [sym__special_characters] = ACTIONS(1077), - [anon_sym_DQUOTE] = ACTIONS(1079), - [anon_sym_DOLLAR] = ACTIONS(1081), - [sym_raw_string] = ACTIONS(1083), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1085), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1087), - [anon_sym_BQUOTE] = ACTIONS(1089), - [anon_sym_LT_LPAREN] = ACTIONS(1091), - [anon_sym_GT_LPAREN] = ACTIONS(1091), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1083), + [sym__special_characters] = ACTIONS(5456), + [anon_sym_DQUOTE] = ACTIONS(5456), + [anon_sym_DOLLAR] = ACTIONS(5454), + [sym_raw_string] = ACTIONS(5456), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5456), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5456), + [anon_sym_BQUOTE] = ACTIONS(5456), + [anon_sym_LT_LPAREN] = ACTIONS(5456), + [anon_sym_GT_LPAREN] = ACTIONS(5456), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(5456), }, [2597] = { - [sym__concat] = ACTIONS(2876), - [sym_variable_name] = ACTIONS(2876), - [anon_sym_SEMI] = ACTIONS(2878), - [anon_sym_esac] = ACTIONS(2878), - [anon_sym_PIPE] = ACTIONS(2878), - [anon_sym_SEMI_SEMI] = ACTIONS(2876), - [anon_sym_PIPE_AMP] = ACTIONS(2876), - [anon_sym_AMP_AMP] = ACTIONS(2876), - [anon_sym_PIPE_PIPE] = ACTIONS(2876), - [sym__special_characters] = ACTIONS(2876), - [anon_sym_DQUOTE] = ACTIONS(2876), - [anon_sym_DOLLAR] = ACTIONS(2878), - [sym_raw_string] = ACTIONS(2876), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2876), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2876), - [anon_sym_BQUOTE] = ACTIONS(2876), - [anon_sym_LT_LPAREN] = ACTIONS(2876), - [anon_sym_GT_LPAREN] = ACTIONS(2876), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2878), - [sym_word] = ACTIONS(2878), - [anon_sym_LF] = ACTIONS(2876), - [anon_sym_AMP] = ACTIONS(2878), + [anon_sym_SEMI] = ACTIONS(2081), + [anon_sym_PIPE] = ACTIONS(529), + [anon_sym_SEMI_SEMI] = ACTIONS(6216), + [anon_sym_PIPE_AMP] = ACTIONS(533), + [anon_sym_AMP_AMP] = ACTIONS(535), + [anon_sym_PIPE_PIPE] = ACTIONS(535), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2083), + [anon_sym_AMP] = ACTIONS(2081), }, [2598] = { - [sym__concat] = ACTIONS(2890), - [sym_variable_name] = ACTIONS(2890), - [anon_sym_SEMI] = ACTIONS(2892), - [anon_sym_esac] = ACTIONS(2892), - [anon_sym_PIPE] = ACTIONS(2892), - [anon_sym_SEMI_SEMI] = ACTIONS(2890), - [anon_sym_PIPE_AMP] = ACTIONS(2890), - [anon_sym_AMP_AMP] = ACTIONS(2890), - [anon_sym_PIPE_PIPE] = ACTIONS(2890), - [sym__special_characters] = ACTIONS(2890), - [anon_sym_DQUOTE] = ACTIONS(2890), - [anon_sym_DOLLAR] = ACTIONS(2892), - [sym_raw_string] = ACTIONS(2890), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2890), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2890), - [anon_sym_BQUOTE] = ACTIONS(2890), - [anon_sym_LT_LPAREN] = ACTIONS(2890), - [anon_sym_GT_LPAREN] = ACTIONS(2890), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2892), - [sym_word] = ACTIONS(2892), - [anon_sym_LF] = ACTIONS(2890), - [anon_sym_AMP] = ACTIONS(2892), + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(2081), + [anon_sym_PIPE] = ACTIONS(529), + [anon_sym_SEMI_SEMI] = ACTIONS(6216), + [anon_sym_PIPE_AMP] = ACTIONS(533), + [anon_sym_AMP_AMP] = ACTIONS(535), + [anon_sym_PIPE_PIPE] = ACTIONS(535), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(2083), + [anon_sym_AMP] = ACTIONS(2081), }, [2599] = { - [aux_sym_concatenation_repeat1] = STATE(1293), - [sym__concat] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(6196), - [sym_comment] = ACTIONS(53), + [sym__terminated_statement] = STATE(2599), + [sym_for_statement] = STATE(545), + [sym_c_style_for_statement] = STATE(545), + [sym_while_statement] = STATE(545), + [sym_if_statement] = STATE(545), + [sym_case_statement] = STATE(545), + [sym_function_definition] = STATE(545), + [sym_subshell] = STATE(545), + [sym_pipeline] = STATE(545), + [sym_list] = STATE(545), + [sym_negated_command] = STATE(545), + [sym_test_command] = STATE(545), + [sym_declaration_command] = STATE(545), + [sym_unset_command] = STATE(545), + [sym_command] = STATE(545), + [sym_command_name] = STATE(64), + [sym_variable_assignment] = STATE(546), + [sym_subscript] = STATE(66), + [sym_file_redirect] = STATE(67), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(60), + [sym_simple_expansion] = STATE(60), + [sym_string_expansion] = STATE(60), + [sym_expansion] = STATE(60), + [sym_command_substitution] = STATE(60), + [sym_process_substitution] = STATE(60), + [aux_sym__statements_repeat1] = STATE(2599), + [aux_sym_command_repeat1] = STATE(67), + [sym_file_descriptor] = ACTIONS(997), + [sym_variable_name] = ACTIONS(1000), + [anon_sym_for] = ACTIONS(1003), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1006), + [anon_sym_while] = ACTIONS(1009), + [anon_sym_if] = ACTIONS(1012), + [anon_sym_case] = ACTIONS(1015), + [anon_sym_SEMI_SEMI] = ACTIONS(3728), + [anon_sym_function] = ACTIONS(1018), + [anon_sym_LPAREN] = ACTIONS(1021), + [anon_sym_BANG] = ACTIONS(1024), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1030), + [anon_sym_declare] = ACTIONS(1033), + [anon_sym_typeset] = ACTIONS(1033), + [anon_sym_export] = ACTIONS(1033), + [anon_sym_readonly] = ACTIONS(1033), + [anon_sym_local] = ACTIONS(1033), + [anon_sym_unset] = ACTIONS(1036), + [anon_sym_unsetenv] = ACTIONS(1036), + [anon_sym_LT] = ACTIONS(1039), + [anon_sym_GT] = ACTIONS(1039), + [anon_sym_GT_GT] = ACTIONS(1042), + [anon_sym_AMP_GT] = ACTIONS(1039), + [anon_sym_AMP_GT_GT] = ACTIONS(1042), + [anon_sym_LT_AMP] = ACTIONS(1042), + [anon_sym_GT_AMP] = ACTIONS(1042), + [sym__special_characters] = ACTIONS(1045), + [anon_sym_DQUOTE] = ACTIONS(1048), + [anon_sym_DOLLAR] = ACTIONS(1051), + [sym_raw_string] = ACTIONS(1054), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1057), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1060), + [anon_sym_BQUOTE] = ACTIONS(1063), + [anon_sym_LT_LPAREN] = ACTIONS(1066), + [anon_sym_GT_LPAREN] = ACTIONS(1066), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1069), }, [2600] = { - [aux_sym_concatenation_repeat1] = STATE(1293), - [sym__concat] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(6198), - [sym_comment] = ACTIONS(53), + [sym__terminated_statement] = STATE(2599), + [sym_for_statement] = STATE(2729), + [sym_c_style_for_statement] = STATE(2729), + [sym_while_statement] = STATE(2729), + [sym_if_statement] = STATE(2729), + [sym_case_statement] = STATE(2729), + [sym_function_definition] = STATE(2729), + [sym_subshell] = STATE(2729), + [sym_pipeline] = STATE(2729), + [sym_list] = STATE(2729), + [sym_negated_command] = STATE(2729), + [sym_test_command] = STATE(2729), + [sym_declaration_command] = STATE(2729), + [sym_unset_command] = STATE(2729), + [sym_command] = STATE(2729), + [sym_command_name] = STATE(64), + [sym_variable_assignment] = STATE(2730), + [sym_subscript] = STATE(66), + [sym_file_redirect] = STATE(67), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(60), + [sym_simple_expansion] = STATE(60), + [sym_string_expansion] = STATE(60), + [sym_expansion] = STATE(60), + [sym_command_substitution] = STATE(60), + [sym_process_substitution] = STATE(60), + [aux_sym__statements_repeat1] = STATE(2599), + [aux_sym_command_repeat1] = STATE(67), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(95), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(97), + [anon_sym_while] = ACTIONS(99), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_SEMI_SEMI] = ACTIONS(6218), + [anon_sym_function] = ACTIONS(101), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_LBRACK] = ACTIONS(107), + [anon_sym_declare] = ACTIONS(109), + [anon_sym_typeset] = ACTIONS(109), + [anon_sym_export] = ACTIONS(109), + [anon_sym_readonly] = ACTIONS(109), + [anon_sym_local] = ACTIONS(109), + [anon_sym_unset] = ACTIONS(111), + [anon_sym_unsetenv] = ACTIONS(111), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(115), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(117), }, [2601] = { - [anon_sym_RBRACE] = ACTIONS(6198), - [sym_comment] = ACTIONS(53), + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_SEMI_SEMI] = ACTIONS(943), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(5496), + [anon_sym_DQUOTE] = ACTIONS(5498), + [anon_sym_DOLLAR] = ACTIONS(5496), + [sym_raw_string] = ACTIONS(5498), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5498), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5498), + [anon_sym_BQUOTE] = ACTIONS(5498), + [anon_sym_LT_LPAREN] = ACTIONS(5498), + [anon_sym_GT_LPAREN] = ACTIONS(5498), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(5496), }, [2602] = { - [sym_concatenation] = STATE(2713), - [sym_string] = STATE(2712), - [sym_simple_expansion] = STATE(2712), - [sym_string_expansion] = STATE(2712), - [sym_expansion] = STATE(2712), - [sym_command_substitution] = STATE(2712), - [sym_process_substitution] = STATE(2712), - [anon_sym_RBRACE] = ACTIONS(6198), - [sym__special_characters] = ACTIONS(6200), - [anon_sym_DQUOTE] = ACTIONS(1802), - [anon_sym_DOLLAR] = ACTIONS(1804), - [sym_raw_string] = ACTIONS(6202), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1808), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1810), - [anon_sym_BQUOTE] = ACTIONS(1812), - [anon_sym_LT_LPAREN] = ACTIONS(1814), - [anon_sym_GT_LPAREN] = ACTIONS(1814), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6202), + [sym__special_characters] = ACTIONS(5498), + [anon_sym_DQUOTE] = ACTIONS(5498), + [anon_sym_DOLLAR] = ACTIONS(5496), + [sym_raw_string] = ACTIONS(5498), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5498), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5498), + [anon_sym_BQUOTE] = ACTIONS(5498), + [anon_sym_LT_LPAREN] = ACTIONS(5498), + [anon_sym_GT_LPAREN] = ACTIONS(5498), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(5498), }, [2603] = { - [sym__concat] = ACTIONS(2926), - [sym_variable_name] = ACTIONS(2926), - [anon_sym_SEMI] = ACTIONS(2928), - [anon_sym_esac] = ACTIONS(2928), - [anon_sym_PIPE] = ACTIONS(2928), - [anon_sym_SEMI_SEMI] = ACTIONS(2926), - [anon_sym_PIPE_AMP] = ACTIONS(2926), - [anon_sym_AMP_AMP] = ACTIONS(2926), - [anon_sym_PIPE_PIPE] = ACTIONS(2926), - [sym__special_characters] = ACTIONS(2926), - [anon_sym_DQUOTE] = ACTIONS(2926), - [anon_sym_DOLLAR] = ACTIONS(2928), - [sym_raw_string] = ACTIONS(2926), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2926), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2926), - [anon_sym_BQUOTE] = ACTIONS(2926), - [anon_sym_LT_LPAREN] = ACTIONS(2926), - [anon_sym_GT_LPAREN] = ACTIONS(2926), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2928), - [sym_word] = ACTIONS(2928), - [anon_sym_LF] = ACTIONS(2926), - [anon_sym_AMP] = ACTIONS(2928), + [anon_sym_SEMI] = ACTIONS(2081), + [anon_sym_PIPE] = ACTIONS(529), + [anon_sym_SEMI_SEMI] = ACTIONS(6220), + [anon_sym_PIPE_AMP] = ACTIONS(533), + [anon_sym_AMP_AMP] = ACTIONS(535), + [anon_sym_PIPE_PIPE] = ACTIONS(535), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2083), + [anon_sym_AMP] = ACTIONS(2081), }, [2604] = { - [sym_comment] = ACTIONS(265), - [sym_regex_without_right_brace] = ACTIONS(6204), + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(2081), + [anon_sym_PIPE] = ACTIONS(529), + [anon_sym_SEMI_SEMI] = ACTIONS(6220), + [anon_sym_PIPE_AMP] = ACTIONS(533), + [anon_sym_AMP_AMP] = ACTIONS(535), + [anon_sym_PIPE_PIPE] = ACTIONS(535), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(2083), + [anon_sym_AMP] = ACTIONS(2081), }, [2605] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(6206), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym__terminated_statement] = STATE(2599), + [sym_for_statement] = STATE(2733), + [sym_c_style_for_statement] = STATE(2733), + [sym_while_statement] = STATE(2733), + [sym_if_statement] = STATE(2733), + [sym_case_statement] = STATE(2733), + [sym_function_definition] = STATE(2733), + [sym_subshell] = STATE(2733), + [sym_pipeline] = STATE(2733), + [sym_list] = STATE(2733), + [sym_negated_command] = STATE(2733), + [sym_test_command] = STATE(2733), + [sym_declaration_command] = STATE(2733), + [sym_unset_command] = STATE(2733), + [sym_command] = STATE(2733), + [sym_command_name] = STATE(64), + [sym_variable_assignment] = STATE(2734), + [sym_subscript] = STATE(66), + [sym_file_redirect] = STATE(67), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(60), + [sym_simple_expansion] = STATE(60), + [sym_string_expansion] = STATE(60), + [sym_expansion] = STATE(60), + [sym_command_substitution] = STATE(60), + [sym_process_substitution] = STATE(60), + [aux_sym__statements_repeat1] = STATE(2599), + [aux_sym_command_repeat1] = STATE(67), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(95), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(97), + [anon_sym_while] = ACTIONS(99), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_SEMI_SEMI] = ACTIONS(6222), + [anon_sym_function] = ACTIONS(101), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(105), + [anon_sym_LBRACK_LBRACK] = ACTIONS(107), + [anon_sym_declare] = ACTIONS(109), + [anon_sym_typeset] = ACTIONS(109), + [anon_sym_export] = ACTIONS(109), + [anon_sym_readonly] = ACTIONS(109), + [anon_sym_local] = ACTIONS(109), + [anon_sym_unset] = ACTIONS(111), + [anon_sym_unsetenv] = ACTIONS(111), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(35), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [sym__special_characters] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [sym_raw_string] = ACTIONS(115), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(117), }, [2606] = { - [sym_comment] = ACTIONS(265), - [sym_regex_without_right_brace] = ACTIONS(6208), + [sym__concat] = ACTIONS(5202), + [anon_sym_RBRACE] = ACTIONS(5202), + [sym_comment] = ACTIONS(55), }, [2607] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(6198), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym__concat] = ACTIONS(5206), + [anon_sym_RBRACE] = ACTIONS(5206), + [sym_comment] = ACTIONS(55), }, [2608] = { - [sym_concatenation] = STATE(2718), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(2718), - [anon_sym_RBRACE] = ACTIONS(6210), - [anon_sym_EQ] = ACTIONS(6212), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(6214), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(6212), - [anon_sym_COLON_QMARK] = ACTIONS(6212), - [anon_sym_COLON_DASH] = ACTIONS(6212), - [anon_sym_PERCENT] = ACTIONS(6212), - [anon_sym_DASH] = ACTIONS(6212), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_file_descriptor] = ACTIONS(5202), + [sym__concat] = ACTIONS(5202), + [ts_builtin_sym_end] = ACTIONS(5202), + [anon_sym_SEMI] = ACTIONS(5204), + [anon_sym_esac] = ACTIONS(5202), + [anon_sym_PIPE] = ACTIONS(5204), + [anon_sym_RPAREN] = ACTIONS(5202), + [anon_sym_SEMI_SEMI] = ACTIONS(5202), + [anon_sym_PIPE_AMP] = ACTIONS(5202), + [anon_sym_AMP_AMP] = ACTIONS(5202), + [anon_sym_PIPE_PIPE] = ACTIONS(5202), + [anon_sym_LT] = ACTIONS(5204), + [anon_sym_GT] = ACTIONS(5204), + [anon_sym_GT_GT] = ACTIONS(5202), + [anon_sym_AMP_GT] = ACTIONS(5204), + [anon_sym_AMP_GT_GT] = ACTIONS(5202), + [anon_sym_LT_AMP] = ACTIONS(5202), + [anon_sym_GT_AMP] = ACTIONS(5202), + [anon_sym_LT_LT] = ACTIONS(5204), + [anon_sym_LT_LT_DASH] = ACTIONS(5202), + [anon_sym_LT_LT_LT] = ACTIONS(5202), + [anon_sym_BQUOTE] = ACTIONS(5202), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(5202), + [anon_sym_AMP] = ACTIONS(5204), }, [2609] = { - [sym__concat] = ACTIONS(2990), - [sym_variable_name] = ACTIONS(2990), - [anon_sym_SEMI] = ACTIONS(2992), - [anon_sym_esac] = ACTIONS(2992), - [anon_sym_PIPE] = ACTIONS(2992), - [anon_sym_SEMI_SEMI] = ACTIONS(2990), - [anon_sym_PIPE_AMP] = ACTIONS(2990), - [anon_sym_AMP_AMP] = ACTIONS(2990), - [anon_sym_PIPE_PIPE] = ACTIONS(2990), - [sym__special_characters] = ACTIONS(2990), - [anon_sym_DQUOTE] = ACTIONS(2990), - [anon_sym_DOLLAR] = ACTIONS(2992), - [sym_raw_string] = ACTIONS(2990), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2990), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2990), - [anon_sym_BQUOTE] = ACTIONS(2990), - [anon_sym_LT_LPAREN] = ACTIONS(2990), - [anon_sym_GT_LPAREN] = ACTIONS(2990), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2992), - [sym_word] = ACTIONS(2992), - [anon_sym_LF] = ACTIONS(2990), - [anon_sym_AMP] = ACTIONS(2992), + [sym_file_descriptor] = ACTIONS(5206), + [sym__concat] = ACTIONS(5206), + [ts_builtin_sym_end] = ACTIONS(5206), + [anon_sym_SEMI] = ACTIONS(5208), + [anon_sym_esac] = ACTIONS(5206), + [anon_sym_PIPE] = ACTIONS(5208), + [anon_sym_RPAREN] = ACTIONS(5206), + [anon_sym_SEMI_SEMI] = ACTIONS(5206), + [anon_sym_PIPE_AMP] = ACTIONS(5206), + [anon_sym_AMP_AMP] = ACTIONS(5206), + [anon_sym_PIPE_PIPE] = ACTIONS(5206), + [anon_sym_LT] = ACTIONS(5208), + [anon_sym_GT] = ACTIONS(5208), + [anon_sym_GT_GT] = ACTIONS(5206), + [anon_sym_AMP_GT] = ACTIONS(5208), + [anon_sym_AMP_GT_GT] = ACTIONS(5206), + [anon_sym_LT_AMP] = ACTIONS(5206), + [anon_sym_GT_AMP] = ACTIONS(5206), + [anon_sym_LT_LT] = ACTIONS(5208), + [anon_sym_LT_LT_DASH] = ACTIONS(5206), + [anon_sym_LT_LT_LT] = ACTIONS(5206), + [anon_sym_BQUOTE] = ACTIONS(5206), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(5206), + [anon_sym_AMP] = ACTIONS(5208), }, [2610] = { - [sym_concatenation] = STATE(2719), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(2719), - [anon_sym_RBRACE] = ACTIONS(6198), - [anon_sym_EQ] = ACTIONS(6216), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(6218), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(6216), - [anon_sym_COLON_QMARK] = ACTIONS(6216), - [anon_sym_COLON_DASH] = ACTIONS(6216), - [anon_sym_PERCENT] = ACTIONS(6216), - [anon_sym_DASH] = ACTIONS(6216), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_file_descriptor] = ACTIONS(3265), + [sym_variable_name] = ACTIONS(3265), + [anon_sym_SEMI] = ACTIONS(3267), + [anon_sym_esac] = ACTIONS(3267), + [anon_sym_PIPE] = ACTIONS(3267), + [anon_sym_SEMI_SEMI] = ACTIONS(3265), + [anon_sym_PIPE_AMP] = ACTIONS(3265), + [anon_sym_AMP_AMP] = ACTIONS(3265), + [anon_sym_PIPE_PIPE] = ACTIONS(3265), + [anon_sym_LT] = ACTIONS(3267), + [anon_sym_GT] = ACTIONS(3267), + [anon_sym_GT_GT] = ACTIONS(3265), + [anon_sym_AMP_GT] = ACTIONS(3267), + [anon_sym_AMP_GT_GT] = ACTIONS(3265), + [anon_sym_LT_AMP] = ACTIONS(3265), + [anon_sym_GT_AMP] = ACTIONS(3265), + [sym__special_characters] = ACTIONS(3265), + [anon_sym_DQUOTE] = ACTIONS(3265), + [anon_sym_DOLLAR] = ACTIONS(3267), + [sym_raw_string] = ACTIONS(3265), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3265), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3265), + [anon_sym_BQUOTE] = ACTIONS(3265), + [anon_sym_LT_LPAREN] = ACTIONS(3265), + [anon_sym_GT_LPAREN] = ACTIONS(3265), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(3267), + [anon_sym_LF] = ACTIONS(3265), + [anon_sym_AMP] = ACTIONS(3267), }, [2611] = { - [sym__concat] = ACTIONS(3033), - [sym_variable_name] = ACTIONS(3033), - [anon_sym_SEMI] = ACTIONS(3035), - [anon_sym_esac] = ACTIONS(3035), - [anon_sym_PIPE] = ACTIONS(3035), - [anon_sym_SEMI_SEMI] = ACTIONS(3033), - [anon_sym_PIPE_AMP] = ACTIONS(3033), - [anon_sym_AMP_AMP] = ACTIONS(3033), - [anon_sym_PIPE_PIPE] = ACTIONS(3033), - [sym__special_characters] = ACTIONS(3033), - [anon_sym_DQUOTE] = ACTIONS(3033), - [anon_sym_DOLLAR] = ACTIONS(3035), - [sym_raw_string] = ACTIONS(3033), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3033), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3033), - [anon_sym_BQUOTE] = ACTIONS(3033), - [anon_sym_LT_LPAREN] = ACTIONS(3033), - [anon_sym_GT_LPAREN] = ACTIONS(3033), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3035), - [sym_word] = ACTIONS(3035), - [anon_sym_LF] = ACTIONS(3033), - [anon_sym_AMP] = ACTIONS(3035), + [sym_file_descriptor] = ACTIONS(1763), + [sym__concat] = ACTIONS(1763), + [sym_variable_name] = ACTIONS(1763), + [anon_sym_SEMI] = ACTIONS(1765), + [anon_sym_esac] = ACTIONS(1765), + [anon_sym_PIPE] = ACTIONS(1765), + [anon_sym_SEMI_SEMI] = ACTIONS(1763), + [anon_sym_PIPE_AMP] = ACTIONS(1763), + [anon_sym_AMP_AMP] = ACTIONS(1763), + [anon_sym_PIPE_PIPE] = ACTIONS(1763), + [anon_sym_LT] = ACTIONS(1765), + [anon_sym_GT] = ACTIONS(1765), + [anon_sym_GT_GT] = ACTIONS(1763), + [anon_sym_AMP_GT] = ACTIONS(1765), + [anon_sym_AMP_GT_GT] = ACTIONS(1763), + [anon_sym_LT_AMP] = ACTIONS(1763), + [anon_sym_GT_AMP] = ACTIONS(1763), + [sym__special_characters] = ACTIONS(1763), + [anon_sym_DQUOTE] = ACTIONS(1763), + [anon_sym_DOLLAR] = ACTIONS(1765), + [sym_raw_string] = ACTIONS(1763), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1763), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1763), + [anon_sym_BQUOTE] = ACTIONS(1763), + [anon_sym_LT_LPAREN] = ACTIONS(1763), + [anon_sym_GT_LPAREN] = ACTIONS(1763), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1765), + [anon_sym_LF] = ACTIONS(1763), + [anon_sym_AMP] = ACTIONS(1765), }, [2612] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(6220), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(901), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), + [aux_sym_concatenation_repeat1] = STATE(2612), + [sym_file_descriptor] = ACTIONS(1763), + [sym__concat] = ACTIONS(6224), + [sym_variable_name] = ACTIONS(1763), + [anon_sym_SEMI] = ACTIONS(1765), + [anon_sym_esac] = ACTIONS(1765), + [anon_sym_PIPE] = ACTIONS(1765), + [anon_sym_SEMI_SEMI] = ACTIONS(1763), + [anon_sym_PIPE_AMP] = ACTIONS(1763), + [anon_sym_AMP_AMP] = ACTIONS(1763), + [anon_sym_PIPE_PIPE] = ACTIONS(1763), + [anon_sym_LT] = ACTIONS(1765), + [anon_sym_GT] = ACTIONS(1765), + [anon_sym_GT_GT] = ACTIONS(1763), + [anon_sym_AMP_GT] = ACTIONS(1765), + [anon_sym_AMP_GT_GT] = ACTIONS(1763), + [anon_sym_LT_AMP] = ACTIONS(1763), + [anon_sym_GT_AMP] = ACTIONS(1763), + [sym__special_characters] = ACTIONS(1763), + [anon_sym_DQUOTE] = ACTIONS(1763), + [anon_sym_DOLLAR] = ACTIONS(1765), + [sym_raw_string] = ACTIONS(1763), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1763), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1763), + [anon_sym_BQUOTE] = ACTIONS(1763), + [anon_sym_LT_LPAREN] = ACTIONS(1763), + [anon_sym_GT_LPAREN] = ACTIONS(1763), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1765), + [anon_sym_LF] = ACTIONS(1763), + [anon_sym_AMP] = ACTIONS(1765), }, [2613] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(6220), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), + [sym_file_descriptor] = ACTIONS(1770), + [sym__concat] = ACTIONS(1770), + [sym_variable_name] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(1772), + [anon_sym_esac] = ACTIONS(1772), + [anon_sym_PIPE] = ACTIONS(1772), + [anon_sym_SEMI_SEMI] = ACTIONS(1770), + [anon_sym_PIPE_AMP] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1772), + [anon_sym_GT] = ACTIONS(1772), + [anon_sym_GT_GT] = ACTIONS(1770), + [anon_sym_AMP_GT] = ACTIONS(1772), + [anon_sym_AMP_GT_GT] = ACTIONS(1770), + [anon_sym_LT_AMP] = ACTIONS(1770), + [anon_sym_GT_AMP] = ACTIONS(1770), + [sym__special_characters] = ACTIONS(1770), + [anon_sym_DQUOTE] = ACTIONS(1770), + [anon_sym_DOLLAR] = ACTIONS(1772), + [sym_raw_string] = ACTIONS(1770), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1770), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1770), + [anon_sym_BQUOTE] = ACTIONS(1770), + [anon_sym_LT_LPAREN] = ACTIONS(1770), + [anon_sym_GT_LPAREN] = ACTIONS(1770), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1772), + [anon_sym_LF] = ACTIONS(1770), + [anon_sym_AMP] = ACTIONS(1772), }, [2614] = { - [sym__concat] = ACTIONS(3071), - [sym_variable_name] = ACTIONS(3071), - [anon_sym_SEMI] = ACTIONS(3073), - [anon_sym_esac] = ACTIONS(3073), - [anon_sym_PIPE] = ACTIONS(3073), - [anon_sym_SEMI_SEMI] = ACTIONS(3071), - [anon_sym_PIPE_AMP] = ACTIONS(3071), - [anon_sym_AMP_AMP] = ACTIONS(3071), - [anon_sym_PIPE_PIPE] = ACTIONS(3071), - [sym__special_characters] = ACTIONS(3071), - [anon_sym_DQUOTE] = ACTIONS(3071), - [anon_sym_DOLLAR] = ACTIONS(3073), - [sym_raw_string] = ACTIONS(3071), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3071), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3071), - [anon_sym_BQUOTE] = ACTIONS(3071), - [anon_sym_LT_LPAREN] = ACTIONS(3071), - [anon_sym_GT_LPAREN] = ACTIONS(3071), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3073), - [sym_word] = ACTIONS(3073), - [anon_sym_LF] = ACTIONS(3071), - [anon_sym_AMP] = ACTIONS(3073), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_DQUOTE] = ACTIONS(6227), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym__string_content] = ACTIONS(821), + [anon_sym_POUND] = ACTIONS(815), + [sym_comment] = ACTIONS(281), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(823), + [anon_sym_STAR] = ACTIONS(825), + [anon_sym_AT] = ACTIONS(825), + [anon_sym_QMARK] = ACTIONS(825), + [anon_sym_0] = ACTIONS(823), + [anon_sym__] = ACTIONS(823), }, [2615] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(6222), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(901), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), + [sym_concatenation] = STATE(2739), + [sym_string] = STATE(2738), + [sym_simple_expansion] = STATE(2738), + [sym_string_expansion] = STATE(2738), + [sym_expansion] = STATE(2738), + [sym_command_substitution] = STATE(2738), + [sym_process_substitution] = STATE(2738), + [anon_sym_RBRACE] = ACTIONS(6229), + [sym__special_characters] = ACTIONS(6231), + [anon_sym_DQUOTE] = ACTIONS(1841), + [anon_sym_DOLLAR] = ACTIONS(1843), + [sym_raw_string] = ACTIONS(6233), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1849), + [anon_sym_BQUOTE] = ACTIONS(1851), + [anon_sym_LT_LPAREN] = ACTIONS(1853), + [anon_sym_GT_LPAREN] = ACTIONS(1853), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(6233), }, [2616] = { - [sym__concat] = ACTIONS(2876), - [anon_sym_SEMI] = ACTIONS(2878), - [anon_sym_esac] = ACTIONS(2878), - [anon_sym_PIPE] = ACTIONS(2878), - [anon_sym_SEMI_SEMI] = ACTIONS(2876), - [anon_sym_PIPE_AMP] = ACTIONS(2876), - [anon_sym_AMP_AMP] = ACTIONS(2876), - [anon_sym_PIPE_PIPE] = ACTIONS(2876), - [sym__special_characters] = ACTIONS(2876), - [anon_sym_DQUOTE] = ACTIONS(2876), - [anon_sym_DOLLAR] = ACTIONS(2878), - [sym_raw_string] = ACTIONS(2876), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2876), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2876), - [anon_sym_BQUOTE] = ACTIONS(2876), - [anon_sym_LT_LPAREN] = ACTIONS(2876), - [anon_sym_GT_LPAREN] = ACTIONS(2876), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2878), - [sym_word] = ACTIONS(2878), - [anon_sym_LF] = ACTIONS(2876), - [anon_sym_AMP] = ACTIONS(2878), + [anon_sym_LBRACK] = ACTIONS(857), + [anon_sym_EQ] = ACTIONS(6235), + [sym_comment] = ACTIONS(55), }, [2617] = { - [sym__concat] = ACTIONS(2890), - [anon_sym_SEMI] = ACTIONS(2892), - [anon_sym_esac] = ACTIONS(2892), - [anon_sym_PIPE] = ACTIONS(2892), - [anon_sym_SEMI_SEMI] = ACTIONS(2890), - [anon_sym_PIPE_AMP] = ACTIONS(2890), - [anon_sym_AMP_AMP] = ACTIONS(2890), - [anon_sym_PIPE_PIPE] = ACTIONS(2890), - [sym__special_characters] = ACTIONS(2890), - [anon_sym_DQUOTE] = ACTIONS(2890), - [anon_sym_DOLLAR] = ACTIONS(2892), - [sym_raw_string] = ACTIONS(2890), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2890), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2890), - [anon_sym_BQUOTE] = ACTIONS(2890), - [anon_sym_LT_LPAREN] = ACTIONS(2890), - [anon_sym_GT_LPAREN] = ACTIONS(2890), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2892), - [sym_word] = ACTIONS(2892), - [anon_sym_LF] = ACTIONS(2890), - [anon_sym_AMP] = ACTIONS(2892), + [sym_concatenation] = STATE(2743), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2743), + [anon_sym_RBRACE] = ACTIONS(6237), + [anon_sym_EQ] = ACTIONS(6239), + [anon_sym_DASH] = ACTIONS(6239), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(6241), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(6243), + [anon_sym_COLON] = ACTIONS(6239), + [anon_sym_COLON_QMARK] = ACTIONS(6239), + [anon_sym_COLON_DASH] = ACTIONS(6239), + [anon_sym_PERCENT] = ACTIONS(6239), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2618] = { - [aux_sym_concatenation_repeat1] = STATE(1293), - [sym__concat] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(6224), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(2745), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2745), + [anon_sym_RBRACE] = ACTIONS(6229), + [anon_sym_EQ] = ACTIONS(6245), + [anon_sym_DASH] = ACTIONS(6245), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(6247), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(6249), + [anon_sym_COLON] = ACTIONS(6245), + [anon_sym_COLON_QMARK] = ACTIONS(6245), + [anon_sym_COLON_DASH] = ACTIONS(6245), + [anon_sym_PERCENT] = ACTIONS(6245), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2619] = { - [aux_sym_concatenation_repeat1] = STATE(1293), - [sym__concat] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(6226), - [sym_comment] = ACTIONS(53), + [sym_file_descriptor] = ACTIONS(1871), + [sym__concat] = ACTIONS(1871), + [sym_variable_name] = ACTIONS(1871), + [anon_sym_SEMI] = ACTIONS(1873), + [anon_sym_esac] = ACTIONS(1873), + [anon_sym_PIPE] = ACTIONS(1873), + [anon_sym_SEMI_SEMI] = ACTIONS(1871), + [anon_sym_PIPE_AMP] = ACTIONS(1871), + [anon_sym_AMP_AMP] = ACTIONS(1871), + [anon_sym_PIPE_PIPE] = ACTIONS(1871), + [anon_sym_LT] = ACTIONS(1873), + [anon_sym_GT] = ACTIONS(1873), + [anon_sym_GT_GT] = ACTIONS(1871), + [anon_sym_AMP_GT] = ACTIONS(1873), + [anon_sym_AMP_GT_GT] = ACTIONS(1871), + [anon_sym_LT_AMP] = ACTIONS(1871), + [anon_sym_GT_AMP] = ACTIONS(1871), + [sym__special_characters] = ACTIONS(1871), + [anon_sym_DQUOTE] = ACTIONS(1871), + [anon_sym_DOLLAR] = ACTIONS(1873), + [sym_raw_string] = ACTIONS(1871), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1871), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1871), + [anon_sym_BQUOTE] = ACTIONS(1871), + [anon_sym_LT_LPAREN] = ACTIONS(1871), + [anon_sym_GT_LPAREN] = ACTIONS(1871), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1873), + [anon_sym_LF] = ACTIONS(1871), + [anon_sym_AMP] = ACTIONS(1873), }, [2620] = { - [anon_sym_RBRACE] = ACTIONS(6226), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(2748), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2748), + [sym_regex] = ACTIONS(6251), + [anon_sym_RBRACE] = ACTIONS(6253), + [anon_sym_EQ] = ACTIONS(6255), + [anon_sym_DASH] = ACTIONS(6255), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(6257), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(6255), + [anon_sym_COLON_QMARK] = ACTIONS(6255), + [anon_sym_COLON_DASH] = ACTIONS(6255), + [anon_sym_PERCENT] = ACTIONS(6255), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2621] = { - [sym_concatenation] = STATE(2726), - [sym_string] = STATE(2725), - [sym_simple_expansion] = STATE(2725), - [sym_string_expansion] = STATE(2725), - [sym_expansion] = STATE(2725), - [sym_command_substitution] = STATE(2725), - [sym_process_substitution] = STATE(2725), - [anon_sym_RBRACE] = ACTIONS(6226), - [sym__special_characters] = ACTIONS(6228), - [anon_sym_DQUOTE] = ACTIONS(1802), - [anon_sym_DOLLAR] = ACTIONS(1804), - [sym_raw_string] = ACTIONS(6230), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1808), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1810), - [anon_sym_BQUOTE] = ACTIONS(1812), - [anon_sym_LT_LPAREN] = ACTIONS(1814), - [anon_sym_GT_LPAREN] = ACTIONS(1814), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6230), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(6253), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2622] = { - [sym__concat] = ACTIONS(2926), - [anon_sym_SEMI] = ACTIONS(2928), - [anon_sym_esac] = ACTIONS(2928), - [anon_sym_PIPE] = ACTIONS(2928), - [anon_sym_SEMI_SEMI] = ACTIONS(2926), - [anon_sym_PIPE_AMP] = ACTIONS(2926), - [anon_sym_AMP_AMP] = ACTIONS(2926), - [anon_sym_PIPE_PIPE] = ACTIONS(2926), - [sym__special_characters] = ACTIONS(2926), - [anon_sym_DQUOTE] = ACTIONS(2926), - [anon_sym_DOLLAR] = ACTIONS(2928), - [sym_raw_string] = ACTIONS(2926), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2926), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2926), - [anon_sym_BQUOTE] = ACTIONS(2926), - [anon_sym_LT_LPAREN] = ACTIONS(2926), - [anon_sym_GT_LPAREN] = ACTIONS(2926), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2928), - [sym_word] = ACTIONS(2928), - [anon_sym_LF] = ACTIONS(2926), - [anon_sym_AMP] = ACTIONS(2928), + [sym_file_descriptor] = ACTIONS(1919), + [sym__concat] = ACTIONS(1919), + [sym_variable_name] = ACTIONS(1919), + [anon_sym_SEMI] = ACTIONS(1921), + [anon_sym_esac] = ACTIONS(1921), + [anon_sym_PIPE] = ACTIONS(1921), + [anon_sym_SEMI_SEMI] = ACTIONS(1919), + [anon_sym_PIPE_AMP] = ACTIONS(1919), + [anon_sym_AMP_AMP] = ACTIONS(1919), + [anon_sym_PIPE_PIPE] = ACTIONS(1919), + [anon_sym_LT] = ACTIONS(1921), + [anon_sym_GT] = ACTIONS(1921), + [anon_sym_GT_GT] = ACTIONS(1919), + [anon_sym_AMP_GT] = ACTIONS(1921), + [anon_sym_AMP_GT_GT] = ACTIONS(1919), + [anon_sym_LT_AMP] = ACTIONS(1919), + [anon_sym_GT_AMP] = ACTIONS(1919), + [sym__special_characters] = ACTIONS(1919), + [anon_sym_DQUOTE] = ACTIONS(1919), + [anon_sym_DOLLAR] = ACTIONS(1921), + [sym_raw_string] = ACTIONS(1919), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1919), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1919), + [anon_sym_BQUOTE] = ACTIONS(1919), + [anon_sym_LT_LPAREN] = ACTIONS(1919), + [anon_sym_GT_LPAREN] = ACTIONS(1919), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1921), + [anon_sym_LF] = ACTIONS(1919), + [anon_sym_AMP] = ACTIONS(1921), }, [2623] = { - [sym_comment] = ACTIONS(265), - [sym_regex_without_right_brace] = ACTIONS(6232), + [sym_concatenation] = STATE(2745), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2745), + [sym_regex] = ACTIONS(6259), + [anon_sym_RBRACE] = ACTIONS(6229), + [anon_sym_EQ] = ACTIONS(6245), + [anon_sym_DASH] = ACTIONS(6245), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(6247), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(6245), + [anon_sym_COLON_QMARK] = ACTIONS(6245), + [anon_sym_COLON_DASH] = ACTIONS(6245), + [anon_sym_PERCENT] = ACTIONS(6245), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2624] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(6234), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(6229), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2625] = { - [sym_comment] = ACTIONS(265), - [sym_regex_without_right_brace] = ACTIONS(6236), + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(6261), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), }, [2626] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(6226), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_file_descriptor] = ACTIONS(1927), + [sym__concat] = ACTIONS(1927), + [sym_variable_name] = ACTIONS(1927), + [anon_sym_SEMI] = ACTIONS(1929), + [anon_sym_esac] = ACTIONS(1929), + [anon_sym_PIPE] = ACTIONS(1929), + [anon_sym_SEMI_SEMI] = ACTIONS(1927), + [anon_sym_PIPE_AMP] = ACTIONS(1927), + [anon_sym_AMP_AMP] = ACTIONS(1927), + [anon_sym_PIPE_PIPE] = ACTIONS(1927), + [anon_sym_LT] = ACTIONS(1929), + [anon_sym_GT] = ACTIONS(1929), + [anon_sym_GT_GT] = ACTIONS(1927), + [anon_sym_AMP_GT] = ACTIONS(1929), + [anon_sym_AMP_GT_GT] = ACTIONS(1927), + [anon_sym_LT_AMP] = ACTIONS(1927), + [anon_sym_GT_AMP] = ACTIONS(1927), + [sym__special_characters] = ACTIONS(1927), + [anon_sym_DQUOTE] = ACTIONS(1927), + [anon_sym_DOLLAR] = ACTIONS(1929), + [sym_raw_string] = ACTIONS(1927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1927), + [anon_sym_BQUOTE] = ACTIONS(1927), + [anon_sym_LT_LPAREN] = ACTIONS(1927), + [anon_sym_GT_LPAREN] = ACTIONS(1927), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1929), + [anon_sym_LF] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1929), }, [2627] = { - [sym_concatenation] = STATE(2731), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(2731), - [anon_sym_RBRACE] = ACTIONS(6238), - [anon_sym_EQ] = ACTIONS(6240), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(6242), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(6240), - [anon_sym_COLON_QMARK] = ACTIONS(6240), - [anon_sym_COLON_DASH] = ACTIONS(6240), - [anon_sym_PERCENT] = ACTIONS(6240), - [anon_sym_DASH] = ACTIONS(6240), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [anon_sym_SEMI] = ACTIONS(6263), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(6261), + [anon_sym_SEMI_SEMI] = ACTIONS(6265), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(6265), + [anon_sym_AMP] = ACTIONS(6263), }, [2628] = { - [sym__concat] = ACTIONS(2990), - [anon_sym_SEMI] = ACTIONS(2992), - [anon_sym_esac] = ACTIONS(2992), - [anon_sym_PIPE] = ACTIONS(2992), - [anon_sym_SEMI_SEMI] = ACTIONS(2990), - [anon_sym_PIPE_AMP] = ACTIONS(2990), - [anon_sym_AMP_AMP] = ACTIONS(2990), - [anon_sym_PIPE_PIPE] = ACTIONS(2990), - [sym__special_characters] = ACTIONS(2990), - [anon_sym_DQUOTE] = ACTIONS(2990), - [anon_sym_DOLLAR] = ACTIONS(2992), - [sym_raw_string] = ACTIONS(2990), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2990), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2990), - [anon_sym_BQUOTE] = ACTIONS(2990), - [anon_sym_LT_LPAREN] = ACTIONS(2990), - [anon_sym_GT_LPAREN] = ACTIONS(2990), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2992), - [sym_word] = ACTIONS(2992), - [anon_sym_LF] = ACTIONS(2990), - [anon_sym_AMP] = ACTIONS(2992), + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(6263), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(6261), + [anon_sym_SEMI_SEMI] = ACTIONS(6265), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(6265), + [anon_sym_AMP] = ACTIONS(6263), }, [2629] = { - [sym_concatenation] = STATE(2732), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(2732), - [anon_sym_RBRACE] = ACTIONS(6226), - [anon_sym_EQ] = ACTIONS(6244), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(6246), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(6244), - [anon_sym_COLON_QMARK] = ACTIONS(6244), - [anon_sym_COLON_DASH] = ACTIONS(6244), - [anon_sym_PERCENT] = ACTIONS(6244), - [anon_sym_DASH] = ACTIONS(6244), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(6261), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), }, [2630] = { - [sym__concat] = ACTIONS(3033), - [anon_sym_SEMI] = ACTIONS(3035), - [anon_sym_esac] = ACTIONS(3035), - [anon_sym_PIPE] = ACTIONS(3035), - [anon_sym_SEMI_SEMI] = ACTIONS(3033), - [anon_sym_PIPE_AMP] = ACTIONS(3033), - [anon_sym_AMP_AMP] = ACTIONS(3033), - [anon_sym_PIPE_PIPE] = ACTIONS(3033), - [sym__special_characters] = ACTIONS(3033), - [anon_sym_DQUOTE] = ACTIONS(3033), - [anon_sym_DOLLAR] = ACTIONS(3035), - [sym_raw_string] = ACTIONS(3033), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3033), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3033), - [anon_sym_BQUOTE] = ACTIONS(3033), - [anon_sym_LT_LPAREN] = ACTIONS(3033), - [anon_sym_GT_LPAREN] = ACTIONS(3033), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3035), - [sym_word] = ACTIONS(3035), - [anon_sym_LF] = ACTIONS(3033), - [anon_sym_AMP] = ACTIONS(3035), + [anon_sym_SEMI] = ACTIONS(6267), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_SEMI_SEMI] = ACTIONS(6269), + [anon_sym_PIPE_AMP] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_BQUOTE] = ACTIONS(6261), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(6269), + [anon_sym_AMP] = ACTIONS(6267), }, [2631] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(6248), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(901), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(6267), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_SEMI_SEMI] = ACTIONS(6269), + [anon_sym_PIPE_AMP] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(6261), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(6269), + [anon_sym_AMP] = ACTIONS(6267), }, [2632] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(6248), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(6271), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), }, [2633] = { - [sym__concat] = ACTIONS(3071), - [anon_sym_SEMI] = ACTIONS(3073), - [anon_sym_esac] = ACTIONS(3073), - [anon_sym_PIPE] = ACTIONS(3073), - [anon_sym_SEMI_SEMI] = ACTIONS(3071), - [anon_sym_PIPE_AMP] = ACTIONS(3071), - [anon_sym_AMP_AMP] = ACTIONS(3071), - [anon_sym_PIPE_PIPE] = ACTIONS(3071), - [sym__special_characters] = ACTIONS(3071), - [anon_sym_DQUOTE] = ACTIONS(3071), - [anon_sym_DOLLAR] = ACTIONS(3073), - [sym_raw_string] = ACTIONS(3071), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3071), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3071), - [anon_sym_BQUOTE] = ACTIONS(3071), - [anon_sym_LT_LPAREN] = ACTIONS(3071), - [anon_sym_GT_LPAREN] = ACTIONS(3071), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3073), - [sym_word] = ACTIONS(3073), - [anon_sym_LF] = ACTIONS(3071), - [anon_sym_AMP] = ACTIONS(3073), + [sym_file_descriptor] = ACTIONS(1959), + [sym__concat] = ACTIONS(1959), + [sym_variable_name] = ACTIONS(1959), + [anon_sym_SEMI] = ACTIONS(1961), + [anon_sym_esac] = ACTIONS(1961), + [anon_sym_PIPE] = ACTIONS(1961), + [anon_sym_SEMI_SEMI] = ACTIONS(1959), + [anon_sym_PIPE_AMP] = ACTIONS(1959), + [anon_sym_AMP_AMP] = ACTIONS(1959), + [anon_sym_PIPE_PIPE] = ACTIONS(1959), + [anon_sym_LT] = ACTIONS(1961), + [anon_sym_GT] = ACTIONS(1961), + [anon_sym_GT_GT] = ACTIONS(1959), + [anon_sym_AMP_GT] = ACTIONS(1961), + [anon_sym_AMP_GT_GT] = ACTIONS(1959), + [anon_sym_LT_AMP] = ACTIONS(1959), + [anon_sym_GT_AMP] = ACTIONS(1959), + [sym__special_characters] = ACTIONS(1959), + [anon_sym_DQUOTE] = ACTIONS(1959), + [anon_sym_DOLLAR] = ACTIONS(1961), + [sym_raw_string] = ACTIONS(1959), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1959), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1959), + [anon_sym_BQUOTE] = ACTIONS(1959), + [anon_sym_LT_LPAREN] = ACTIONS(1959), + [anon_sym_GT_LPAREN] = ACTIONS(1959), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1961), + [anon_sym_LF] = ACTIONS(1959), + [anon_sym_AMP] = ACTIONS(1961), }, [2634] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(6250), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(901), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), + [anon_sym_SEMI] = ACTIONS(6273), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(6271), + [anon_sym_SEMI_SEMI] = ACTIONS(6275), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(6275), + [anon_sym_AMP] = ACTIONS(6273), }, [2635] = { - [sym__simple_heredoc_body] = ACTIONS(3788), - [sym__heredoc_body_beginning] = ACTIONS(3788), - [sym_file_descriptor] = ACTIONS(3788), - [sym__concat] = ACTIONS(3788), - [anon_sym_SEMI] = ACTIONS(3790), - [anon_sym_esac] = ACTIONS(3790), - [anon_sym_PIPE] = ACTIONS(3790), - [anon_sym_SEMI_SEMI] = ACTIONS(3788), - [anon_sym_PIPE_AMP] = ACTIONS(3788), - [anon_sym_AMP_AMP] = ACTIONS(3788), - [anon_sym_PIPE_PIPE] = ACTIONS(3788), - [anon_sym_EQ_TILDE] = ACTIONS(3790), - [anon_sym_EQ_EQ] = ACTIONS(3790), - [anon_sym_LT] = ACTIONS(3790), - [anon_sym_GT] = ACTIONS(3790), - [anon_sym_GT_GT] = ACTIONS(3788), - [anon_sym_AMP_GT] = ACTIONS(3790), - [anon_sym_AMP_GT_GT] = ACTIONS(3788), - [anon_sym_LT_AMP] = ACTIONS(3788), - [anon_sym_GT_AMP] = ACTIONS(3788), - [anon_sym_LT_LT] = ACTIONS(3790), - [anon_sym_LT_LT_DASH] = ACTIONS(3788), - [anon_sym_LT_LT_LT] = ACTIONS(3788), - [sym__special_characters] = ACTIONS(3788), - [anon_sym_DQUOTE] = ACTIONS(3788), - [anon_sym_DOLLAR] = ACTIONS(3790), - [sym_raw_string] = ACTIONS(3788), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3788), - [anon_sym_BQUOTE] = ACTIONS(3788), - [anon_sym_LT_LPAREN] = ACTIONS(3788), - [anon_sym_GT_LPAREN] = ACTIONS(3788), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3790), - [anon_sym_LF] = ACTIONS(3788), - [anon_sym_AMP] = ACTIONS(3790), + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(6273), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(6271), + [anon_sym_SEMI_SEMI] = ACTIONS(6275), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(6275), + [anon_sym_AMP] = ACTIONS(6273), }, [2636] = { - [sym__simple_heredoc_body] = ACTIONS(3796), - [sym__heredoc_body_beginning] = ACTIONS(3796), - [sym_file_descriptor] = ACTIONS(3796), - [sym__concat] = ACTIONS(3796), - [anon_sym_SEMI] = ACTIONS(3798), - [anon_sym_esac] = ACTIONS(3798), - [anon_sym_PIPE] = ACTIONS(3798), - [anon_sym_SEMI_SEMI] = ACTIONS(3796), - [anon_sym_PIPE_AMP] = ACTIONS(3796), - [anon_sym_AMP_AMP] = ACTIONS(3796), - [anon_sym_PIPE_PIPE] = ACTIONS(3796), - [anon_sym_EQ_TILDE] = ACTIONS(3798), - [anon_sym_EQ_EQ] = ACTIONS(3798), - [anon_sym_LT] = ACTIONS(3798), - [anon_sym_GT] = ACTIONS(3798), - [anon_sym_GT_GT] = ACTIONS(3796), - [anon_sym_AMP_GT] = ACTIONS(3798), - [anon_sym_AMP_GT_GT] = ACTIONS(3796), - [anon_sym_LT_AMP] = ACTIONS(3796), - [anon_sym_GT_AMP] = ACTIONS(3796), - [anon_sym_LT_LT] = ACTIONS(3798), - [anon_sym_LT_LT_DASH] = ACTIONS(3796), - [anon_sym_LT_LT_LT] = ACTIONS(3796), - [sym__special_characters] = ACTIONS(3796), - [anon_sym_DQUOTE] = ACTIONS(3796), - [anon_sym_DOLLAR] = ACTIONS(3798), - [sym_raw_string] = ACTIONS(3796), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3796), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3796), - [anon_sym_BQUOTE] = ACTIONS(3796), - [anon_sym_LT_LPAREN] = ACTIONS(3796), - [anon_sym_GT_LPAREN] = ACTIONS(3796), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3798), - [anon_sym_LF] = ACTIONS(3796), - [anon_sym_AMP] = ACTIONS(3798), + [sym_concatenation] = STATE(1586), + [sym_string] = STATE(2756), + [sym_simple_expansion] = STATE(2756), + [sym_string_expansion] = STATE(2756), + [sym_expansion] = STATE(2756), + [sym_command_substitution] = STATE(2756), + [sym_process_substitution] = STATE(2756), + [sym__special_characters] = ACTIONS(6277), + [anon_sym_DQUOTE] = ACTIONS(2396), + [anon_sym_DOLLAR] = ACTIONS(2398), + [sym_raw_string] = ACTIONS(6279), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2402), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2404), + [anon_sym_BQUOTE] = ACTIONS(2406), + [anon_sym_LT_LPAREN] = ACTIONS(2408), + [anon_sym_GT_LPAREN] = ACTIONS(2408), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(6279), }, [2637] = { - [aux_sym_concatenation_repeat1] = STATE(1293), - [sym__concat] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(6252), - [sym_comment] = ACTIONS(53), + [aux_sym_concatenation_repeat1] = STATE(2757), + [sym_file_descriptor] = ACTIONS(773), + [sym__concat] = ACTIONS(3579), + [anon_sym_SEMI] = ACTIONS(777), + [anon_sym_esac] = ACTIONS(773), + [anon_sym_PIPE] = ACTIONS(777), + [anon_sym_SEMI_SEMI] = ACTIONS(773), + [anon_sym_PIPE_AMP] = ACTIONS(773), + [anon_sym_AMP_AMP] = ACTIONS(773), + [anon_sym_PIPE_PIPE] = ACTIONS(773), + [anon_sym_LT] = ACTIONS(777), + [anon_sym_GT] = ACTIONS(777), + [anon_sym_GT_GT] = ACTIONS(773), + [anon_sym_AMP_GT] = ACTIONS(777), + [anon_sym_AMP_GT_GT] = ACTIONS(773), + [anon_sym_LT_AMP] = ACTIONS(773), + [anon_sym_GT_AMP] = ACTIONS(773), + [anon_sym_LT_LT] = ACTIONS(777), + [anon_sym_LT_LT_DASH] = ACTIONS(773), + [anon_sym_LT_LT_LT] = ACTIONS(773), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(773), + [anon_sym_AMP] = ACTIONS(777), }, [2638] = { - [aux_sym_concatenation_repeat1] = STATE(1293), - [sym__concat] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(6254), - [sym_comment] = ACTIONS(53), + [aux_sym_concatenation_repeat1] = STATE(2757), + [sym_file_descriptor] = ACTIONS(791), + [sym__concat] = ACTIONS(3579), + [anon_sym_SEMI] = ACTIONS(793), + [anon_sym_esac] = ACTIONS(791), + [anon_sym_PIPE] = ACTIONS(793), + [anon_sym_SEMI_SEMI] = ACTIONS(791), + [anon_sym_PIPE_AMP] = ACTIONS(791), + [anon_sym_AMP_AMP] = ACTIONS(791), + [anon_sym_PIPE_PIPE] = ACTIONS(791), + [anon_sym_LT] = ACTIONS(793), + [anon_sym_GT] = ACTIONS(793), + [anon_sym_GT_GT] = ACTIONS(791), + [anon_sym_AMP_GT] = ACTIONS(793), + [anon_sym_AMP_GT_GT] = ACTIONS(791), + [anon_sym_LT_AMP] = ACTIONS(791), + [anon_sym_GT_AMP] = ACTIONS(791), + [anon_sym_LT_LT] = ACTIONS(793), + [anon_sym_LT_LT_DASH] = ACTIONS(791), + [anon_sym_LT_LT_LT] = ACTIONS(791), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(791), + [anon_sym_AMP] = ACTIONS(793), }, [2639] = { - [anon_sym_RBRACE] = ACTIONS(6254), - [sym_comment] = ACTIONS(53), + [aux_sym_concatenation_repeat1] = STATE(2757), + [sym_file_descriptor] = ACTIONS(2015), + [sym__concat] = ACTIONS(3579), + [anon_sym_SEMI] = ACTIONS(2017), + [anon_sym_esac] = ACTIONS(2015), + [anon_sym_PIPE] = ACTIONS(2017), + [anon_sym_SEMI_SEMI] = ACTIONS(2015), + [anon_sym_PIPE_AMP] = ACTIONS(2015), + [anon_sym_AMP_AMP] = ACTIONS(2015), + [anon_sym_PIPE_PIPE] = ACTIONS(2015), + [anon_sym_LT] = ACTIONS(2017), + [anon_sym_GT] = ACTIONS(2017), + [anon_sym_GT_GT] = ACTIONS(2015), + [anon_sym_AMP_GT] = ACTIONS(2017), + [anon_sym_AMP_GT_GT] = ACTIONS(2015), + [anon_sym_LT_AMP] = ACTIONS(2015), + [anon_sym_GT_AMP] = ACTIONS(2015), + [anon_sym_LT_LT] = ACTIONS(2017), + [anon_sym_LT_LT_DASH] = ACTIONS(2015), + [anon_sym_LT_LT_LT] = ACTIONS(2015), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2017), }, [2640] = { - [sym_concatenation] = STATE(2738), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(2738), - [anon_sym_RBRACE] = ACTIONS(6256), - [anon_sym_EQ] = ACTIONS(6258), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(6260), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(6258), - [anon_sym_COLON_QMARK] = ACTIONS(6258), - [anon_sym_COLON_DASH] = ACTIONS(6258), - [anon_sym_PERCENT] = ACTIONS(6258), - [anon_sym_DASH] = ACTIONS(6258), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [aux_sym_concatenation_repeat1] = STATE(2757), + [sym_file_descriptor] = ACTIONS(2019), + [sym__concat] = ACTIONS(3579), + [anon_sym_SEMI] = ACTIONS(2021), + [anon_sym_esac] = ACTIONS(2019), + [anon_sym_PIPE] = ACTIONS(2021), + [anon_sym_SEMI_SEMI] = ACTIONS(2019), + [anon_sym_PIPE_AMP] = ACTIONS(2019), + [anon_sym_AMP_AMP] = ACTIONS(2019), + [anon_sym_PIPE_PIPE] = ACTIONS(2019), + [anon_sym_LT] = ACTIONS(2021), + [anon_sym_GT] = ACTIONS(2021), + [anon_sym_GT_GT] = ACTIONS(2019), + [anon_sym_AMP_GT] = ACTIONS(2021), + [anon_sym_AMP_GT_GT] = ACTIONS(2019), + [anon_sym_LT_AMP] = ACTIONS(2019), + [anon_sym_GT_AMP] = ACTIONS(2019), + [anon_sym_LT_LT] = ACTIONS(2021), + [anon_sym_LT_LT_DASH] = ACTIONS(2019), + [anon_sym_LT_LT_LT] = ACTIONS(2019), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2019), + [anon_sym_AMP] = ACTIONS(2021), }, [2641] = { - [sym__simple_heredoc_body] = ACTIONS(3852), - [sym__heredoc_body_beginning] = ACTIONS(3852), - [sym_file_descriptor] = ACTIONS(3852), - [sym__concat] = ACTIONS(3852), - [anon_sym_SEMI] = ACTIONS(3854), - [anon_sym_esac] = ACTIONS(3854), - [anon_sym_PIPE] = ACTIONS(3854), - [anon_sym_SEMI_SEMI] = ACTIONS(3852), - [anon_sym_PIPE_AMP] = ACTIONS(3852), - [anon_sym_AMP_AMP] = ACTIONS(3852), - [anon_sym_PIPE_PIPE] = ACTIONS(3852), - [anon_sym_EQ_TILDE] = ACTIONS(3854), - [anon_sym_EQ_EQ] = ACTIONS(3854), - [anon_sym_LT] = ACTIONS(3854), - [anon_sym_GT] = ACTIONS(3854), - [anon_sym_GT_GT] = ACTIONS(3852), - [anon_sym_AMP_GT] = ACTIONS(3854), - [anon_sym_AMP_GT_GT] = ACTIONS(3852), - [anon_sym_LT_AMP] = ACTIONS(3852), - [anon_sym_GT_AMP] = ACTIONS(3852), - [anon_sym_LT_LT] = ACTIONS(3854), - [anon_sym_LT_LT_DASH] = ACTIONS(3852), - [anon_sym_LT_LT_LT] = ACTIONS(3852), - [sym__special_characters] = ACTIONS(3852), - [anon_sym_DQUOTE] = ACTIONS(3852), - [anon_sym_DOLLAR] = ACTIONS(3854), - [sym_raw_string] = ACTIONS(3852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3852), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3852), - [anon_sym_BQUOTE] = ACTIONS(3852), - [anon_sym_LT_LPAREN] = ACTIONS(3852), - [anon_sym_GT_LPAREN] = ACTIONS(3852), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3854), - [anon_sym_LF] = ACTIONS(3852), - [anon_sym_AMP] = ACTIONS(3854), + [sym_file_redirect] = STATE(2641), + [sym_heredoc_redirect] = STATE(2641), + [sym_herestring_redirect] = STATE(2641), + [aux_sym_while_statement_repeat1] = STATE(2641), + [sym_file_descriptor] = ACTIONS(6281), + [anon_sym_SEMI] = ACTIONS(2032), + [anon_sym_esac] = ACTIONS(2027), + [anon_sym_PIPE] = ACTIONS(2032), + [anon_sym_SEMI_SEMI] = ACTIONS(2027), + [anon_sym_PIPE_AMP] = ACTIONS(2027), + [anon_sym_AMP_AMP] = ACTIONS(2027), + [anon_sym_PIPE_PIPE] = ACTIONS(2027), + [anon_sym_LT] = ACTIONS(6284), + [anon_sym_GT] = ACTIONS(6284), + [anon_sym_GT_GT] = ACTIONS(6287), + [anon_sym_AMP_GT] = ACTIONS(6284), + [anon_sym_AMP_GT_GT] = ACTIONS(6287), + [anon_sym_LT_AMP] = ACTIONS(6287), + [anon_sym_GT_AMP] = ACTIONS(6287), + [anon_sym_LT_LT] = ACTIONS(3612), + [anon_sym_LT_LT_DASH] = ACTIONS(3615), + [anon_sym_LT_LT_LT] = ACTIONS(6290), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2027), + [anon_sym_AMP] = ACTIONS(2032), }, [2642] = { - [sym_concatenation] = STATE(2739), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(2739), - [anon_sym_RBRACE] = ACTIONS(6254), - [anon_sym_EQ] = ACTIONS(6262), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(6264), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(6262), - [anon_sym_COLON_QMARK] = ACTIONS(6262), - [anon_sym_COLON_DASH] = ACTIONS(6262), - [anon_sym_PERCENT] = ACTIONS(6262), - [anon_sym_DASH] = ACTIONS(6262), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_file_redirect] = STATE(1651), + [sym_file_descriptor] = ACTIONS(5610), + [anon_sym_SEMI] = ACTIONS(3722), + [anon_sym_esac] = ACTIONS(3720), + [anon_sym_PIPE] = ACTIONS(3722), + [anon_sym_SEMI_SEMI] = ACTIONS(3720), + [anon_sym_PIPE_AMP] = ACTIONS(3720), + [anon_sym_AMP_AMP] = ACTIONS(3720), + [anon_sym_PIPE_PIPE] = ACTIONS(3720), + [anon_sym_LT] = ACTIONS(5612), + [anon_sym_GT] = ACTIONS(5612), + [anon_sym_GT_GT] = ACTIONS(5614), + [anon_sym_AMP_GT] = ACTIONS(5612), + [anon_sym_AMP_GT_GT] = ACTIONS(5614), + [anon_sym_LT_AMP] = ACTIONS(5614), + [anon_sym_GT_AMP] = ACTIONS(5614), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(3720), + [anon_sym_AMP] = ACTIONS(3722), }, [2643] = { - [sym__simple_heredoc_body] = ACTIONS(3893), - [sym__heredoc_body_beginning] = ACTIONS(3893), - [sym_file_descriptor] = ACTIONS(3893), - [sym__concat] = ACTIONS(3893), - [anon_sym_SEMI] = ACTIONS(3895), - [anon_sym_esac] = ACTIONS(3895), - [anon_sym_PIPE] = ACTIONS(3895), - [anon_sym_SEMI_SEMI] = ACTIONS(3893), - [anon_sym_PIPE_AMP] = ACTIONS(3893), - [anon_sym_AMP_AMP] = ACTIONS(3893), - [anon_sym_PIPE_PIPE] = ACTIONS(3893), - [anon_sym_EQ_TILDE] = ACTIONS(3895), - [anon_sym_EQ_EQ] = ACTIONS(3895), - [anon_sym_LT] = ACTIONS(3895), - [anon_sym_GT] = ACTIONS(3895), - [anon_sym_GT_GT] = ACTIONS(3893), - [anon_sym_AMP_GT] = ACTIONS(3895), - [anon_sym_AMP_GT_GT] = ACTIONS(3893), - [anon_sym_LT_AMP] = ACTIONS(3893), - [anon_sym_GT_AMP] = ACTIONS(3893), - [anon_sym_LT_LT] = ACTIONS(3895), - [anon_sym_LT_LT_DASH] = ACTIONS(3893), - [anon_sym_LT_LT_LT] = ACTIONS(3893), - [sym__special_characters] = ACTIONS(3893), - [anon_sym_DQUOTE] = ACTIONS(3893), - [anon_sym_DOLLAR] = ACTIONS(3895), - [sym_raw_string] = ACTIONS(3893), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3893), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3893), - [anon_sym_BQUOTE] = ACTIONS(3893), - [anon_sym_LT_LPAREN] = ACTIONS(3893), - [anon_sym_GT_LPAREN] = ACTIONS(3893), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3895), - [anon_sym_LF] = ACTIONS(3893), - [anon_sym_AMP] = ACTIONS(3895), + [sym_concatenation] = STATE(1654), + [sym_string] = STATE(2759), + [sym_simple_expansion] = STATE(2759), + [sym_string_expansion] = STATE(2759), + [sym_expansion] = STATE(2759), + [sym_command_substitution] = STATE(2759), + [sym_process_substitution] = STATE(2759), + [sym__special_characters] = ACTIONS(6293), + [anon_sym_DQUOTE] = ACTIONS(411), + [anon_sym_DOLLAR] = ACTIONS(413), + [sym_raw_string] = ACTIONS(6295), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), + [anon_sym_BQUOTE] = ACTIONS(421), + [anon_sym_LT_LPAREN] = ACTIONS(423), + [anon_sym_GT_LPAREN] = ACTIONS(423), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(6295), }, [2644] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(6266), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [aux_sym_concatenation_repeat1] = STATE(2760), + [sym__concat] = ACTIONS(1160), + [anon_sym_SEMI] = ACTIONS(777), + [anon_sym_esac] = ACTIONS(773), + [anon_sym_PIPE] = ACTIONS(777), + [anon_sym_SEMI_SEMI] = ACTIONS(773), + [anon_sym_PIPE_AMP] = ACTIONS(773), + [anon_sym_AMP_AMP] = ACTIONS(773), + [anon_sym_PIPE_PIPE] = ACTIONS(773), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(773), + [anon_sym_AMP] = ACTIONS(777), }, [2645] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(6254), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [aux_sym_concatenation_repeat1] = STATE(2760), + [sym__concat] = ACTIONS(1160), + [anon_sym_SEMI] = ACTIONS(793), + [anon_sym_esac] = ACTIONS(791), + [anon_sym_PIPE] = ACTIONS(793), + [anon_sym_SEMI_SEMI] = ACTIONS(791), + [anon_sym_PIPE_AMP] = ACTIONS(791), + [anon_sym_AMP_AMP] = ACTIONS(791), + [anon_sym_PIPE_PIPE] = ACTIONS(791), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(791), + [anon_sym_AMP] = ACTIONS(793), }, [2646] = { - [sym__simple_heredoc_body] = ACTIONS(3915), - [sym__heredoc_body_beginning] = ACTIONS(3915), - [sym_file_descriptor] = ACTIONS(3915), - [sym__concat] = ACTIONS(3915), - [anon_sym_SEMI] = ACTIONS(3917), - [anon_sym_esac] = ACTIONS(3917), - [anon_sym_PIPE] = ACTIONS(3917), - [anon_sym_SEMI_SEMI] = ACTIONS(3915), - [anon_sym_PIPE_AMP] = ACTIONS(3915), - [anon_sym_AMP_AMP] = ACTIONS(3915), - [anon_sym_PIPE_PIPE] = ACTIONS(3915), - [anon_sym_EQ_TILDE] = ACTIONS(3917), - [anon_sym_EQ_EQ] = ACTIONS(3917), - [anon_sym_LT] = ACTIONS(3917), - [anon_sym_GT] = ACTIONS(3917), - [anon_sym_GT_GT] = ACTIONS(3915), - [anon_sym_AMP_GT] = ACTIONS(3917), - [anon_sym_AMP_GT_GT] = ACTIONS(3915), - [anon_sym_LT_AMP] = ACTIONS(3915), - [anon_sym_GT_AMP] = ACTIONS(3915), - [anon_sym_LT_LT] = ACTIONS(3917), - [anon_sym_LT_LT_DASH] = ACTIONS(3915), - [anon_sym_LT_LT_LT] = ACTIONS(3915), - [sym__special_characters] = ACTIONS(3915), - [anon_sym_DQUOTE] = ACTIONS(3915), - [anon_sym_DOLLAR] = ACTIONS(3917), - [sym_raw_string] = ACTIONS(3915), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3915), - [anon_sym_BQUOTE] = ACTIONS(3915), - [anon_sym_LT_LPAREN] = ACTIONS(3915), - [anon_sym_GT_LPAREN] = ACTIONS(3915), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3917), - [anon_sym_LF] = ACTIONS(3915), - [anon_sym_AMP] = ACTIONS(3917), + [sym_variable_name] = ACTIONS(2099), + [anon_sym_SEMI] = ACTIONS(2101), + [anon_sym_esac] = ACTIONS(2101), + [anon_sym_PIPE] = ACTIONS(2101), + [anon_sym_SEMI_SEMI] = ACTIONS(2099), + [anon_sym_PIPE_AMP] = ACTIONS(2099), + [anon_sym_AMP_AMP] = ACTIONS(2099), + [anon_sym_PIPE_PIPE] = ACTIONS(2099), + [sym__special_characters] = ACTIONS(2099), + [anon_sym_DQUOTE] = ACTIONS(2099), + [anon_sym_DOLLAR] = ACTIONS(2101), + [sym_raw_string] = ACTIONS(2099), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2099), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2099), + [anon_sym_BQUOTE] = ACTIONS(2099), + [anon_sym_LT_LPAREN] = ACTIONS(2099), + [anon_sym_GT_LPAREN] = ACTIONS(2099), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2101), + [sym_word] = ACTIONS(2101), + [anon_sym_LF] = ACTIONS(2099), + [anon_sym_AMP] = ACTIONS(2101), }, [2647] = { - [sym__simple_heredoc_body] = ACTIONS(3939), - [sym__heredoc_body_beginning] = ACTIONS(3939), - [sym_file_descriptor] = ACTIONS(3939), - [sym__concat] = ACTIONS(3939), - [anon_sym_SEMI] = ACTIONS(3941), - [anon_sym_esac] = ACTIONS(3941), - [anon_sym_PIPE] = ACTIONS(3941), - [anon_sym_SEMI_SEMI] = ACTIONS(3939), - [anon_sym_PIPE_AMP] = ACTIONS(3939), - [anon_sym_AMP_AMP] = ACTIONS(3939), - [anon_sym_PIPE_PIPE] = ACTIONS(3939), - [anon_sym_EQ_TILDE] = ACTIONS(3941), - [anon_sym_EQ_EQ] = ACTIONS(3941), - [anon_sym_LT] = ACTIONS(3941), - [anon_sym_GT] = ACTIONS(3941), - [anon_sym_GT_GT] = ACTIONS(3939), - [anon_sym_AMP_GT] = ACTIONS(3941), - [anon_sym_AMP_GT_GT] = ACTIONS(3939), - [anon_sym_LT_AMP] = ACTIONS(3939), - [anon_sym_GT_AMP] = ACTIONS(3939), - [anon_sym_LT_LT] = ACTIONS(3941), - [anon_sym_LT_LT_DASH] = ACTIONS(3939), - [anon_sym_LT_LT_LT] = ACTIONS(3939), - [sym__special_characters] = ACTIONS(3939), - [anon_sym_DQUOTE] = ACTIONS(3939), - [anon_sym_DOLLAR] = ACTIONS(3941), - [sym_raw_string] = ACTIONS(3939), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3939), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3939), - [anon_sym_BQUOTE] = ACTIONS(3939), - [anon_sym_LT_LPAREN] = ACTIONS(3939), - [anon_sym_GT_LPAREN] = ACTIONS(3939), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3941), - [anon_sym_LF] = ACTIONS(3939), - [anon_sym_AMP] = ACTIONS(3941), + [sym_concatenation] = STATE(1026), + [sym_string] = STATE(558), + [sym_simple_expansion] = STATE(558), + [sym_string_expansion] = STATE(558), + [sym_expansion] = STATE(558), + [sym_command_substitution] = STATE(558), + [sym_process_substitution] = STATE(558), + [aux_sym_for_statement_repeat1] = STATE(1026), + [anon_sym_RPAREN] = ACTIONS(6297), + [sym__special_characters] = ACTIONS(1112), + [anon_sym_DQUOTE] = ACTIONS(1114), + [anon_sym_DOLLAR] = ACTIONS(1116), + [sym_raw_string] = ACTIONS(1118), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1120), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1122), + [anon_sym_BQUOTE] = ACTIONS(1124), + [anon_sym_LT_LPAREN] = ACTIONS(1126), + [anon_sym_GT_LPAREN] = ACTIONS(1126), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(1118), }, [2648] = { - [sym__simple_heredoc_body] = ACTIONS(1724), - [sym__heredoc_body_beginning] = ACTIONS(1724), - [sym_file_descriptor] = ACTIONS(1724), - [sym__concat] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_esac] = ACTIONS(1724), - [anon_sym_PIPE] = ACTIONS(1726), - [anon_sym_SEMI_SEMI] = ACTIONS(1724), - [anon_sym_PIPE_AMP] = ACTIONS(1724), - [anon_sym_AMP_AMP] = ACTIONS(1724), - [anon_sym_PIPE_PIPE] = ACTIONS(1724), - [anon_sym_LT] = ACTIONS(1726), - [anon_sym_GT] = ACTIONS(1726), - [anon_sym_GT_GT] = ACTIONS(1724), - [anon_sym_AMP_GT] = ACTIONS(1726), - [anon_sym_AMP_GT_GT] = ACTIONS(1724), - [anon_sym_LT_AMP] = ACTIONS(1724), - [anon_sym_GT_AMP] = ACTIONS(1724), - [anon_sym_LT_LT] = ACTIONS(1726), - [anon_sym_LT_LT_DASH] = ACTIONS(1724), - [anon_sym_LT_LT_LT] = ACTIONS(1724), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1726), + [sym__concat] = ACTIONS(2959), + [sym_variable_name] = ACTIONS(2959), + [anon_sym_SEMI] = ACTIONS(2961), + [anon_sym_esac] = ACTIONS(2961), + [anon_sym_PIPE] = ACTIONS(2961), + [anon_sym_SEMI_SEMI] = ACTIONS(2959), + [anon_sym_PIPE_AMP] = ACTIONS(2959), + [anon_sym_AMP_AMP] = ACTIONS(2959), + [anon_sym_PIPE_PIPE] = ACTIONS(2959), + [sym__special_characters] = ACTIONS(2959), + [anon_sym_DQUOTE] = ACTIONS(2959), + [anon_sym_DOLLAR] = ACTIONS(2961), + [sym_raw_string] = ACTIONS(2959), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2959), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2959), + [anon_sym_BQUOTE] = ACTIONS(2959), + [anon_sym_LT_LPAREN] = ACTIONS(2959), + [anon_sym_GT_LPAREN] = ACTIONS(2959), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2961), + [sym_word] = ACTIONS(2961), + [anon_sym_LF] = ACTIONS(2959), + [anon_sym_AMP] = ACTIONS(2961), }, [2649] = { - [aux_sym_concatenation_repeat1] = STATE(2649), - [sym__simple_heredoc_body] = ACTIONS(1724), - [sym__heredoc_body_beginning] = ACTIONS(1724), - [sym_file_descriptor] = ACTIONS(1724), - [sym__concat] = ACTIONS(6268), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_esac] = ACTIONS(1724), - [anon_sym_PIPE] = ACTIONS(1726), - [anon_sym_SEMI_SEMI] = ACTIONS(1724), - [anon_sym_PIPE_AMP] = ACTIONS(1724), - [anon_sym_AMP_AMP] = ACTIONS(1724), - [anon_sym_PIPE_PIPE] = ACTIONS(1724), - [anon_sym_LT] = ACTIONS(1726), - [anon_sym_GT] = ACTIONS(1726), - [anon_sym_GT_GT] = ACTIONS(1724), - [anon_sym_AMP_GT] = ACTIONS(1726), - [anon_sym_AMP_GT_GT] = ACTIONS(1724), - [anon_sym_LT_AMP] = ACTIONS(1724), - [anon_sym_GT_AMP] = ACTIONS(1724), - [anon_sym_LT_LT] = ACTIONS(1726), - [anon_sym_LT_LT_DASH] = ACTIONS(1724), - [anon_sym_LT_LT_LT] = ACTIONS(1724), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1726), + [sym__concat] = ACTIONS(2973), + [sym_variable_name] = ACTIONS(2973), + [anon_sym_SEMI] = ACTIONS(2975), + [anon_sym_esac] = ACTIONS(2975), + [anon_sym_PIPE] = ACTIONS(2975), + [anon_sym_SEMI_SEMI] = ACTIONS(2973), + [anon_sym_PIPE_AMP] = ACTIONS(2973), + [anon_sym_AMP_AMP] = ACTIONS(2973), + [anon_sym_PIPE_PIPE] = ACTIONS(2973), + [sym__special_characters] = ACTIONS(2973), + [anon_sym_DQUOTE] = ACTIONS(2973), + [anon_sym_DOLLAR] = ACTIONS(2975), + [sym_raw_string] = ACTIONS(2973), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2973), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2973), + [anon_sym_BQUOTE] = ACTIONS(2973), + [anon_sym_LT_LPAREN] = ACTIONS(2973), + [anon_sym_GT_LPAREN] = ACTIONS(2973), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2975), + [sym_word] = ACTIONS(2975), + [anon_sym_LF] = ACTIONS(2973), + [anon_sym_AMP] = ACTIONS(2975), }, [2650] = { - [sym__simple_heredoc_body] = ACTIONS(1731), - [sym__heredoc_body_beginning] = ACTIONS(1731), - [sym_file_descriptor] = ACTIONS(1731), - [sym__concat] = ACTIONS(1731), - [anon_sym_SEMI] = ACTIONS(1733), - [anon_sym_esac] = ACTIONS(1731), - [anon_sym_PIPE] = ACTIONS(1733), - [anon_sym_SEMI_SEMI] = ACTIONS(1731), - [anon_sym_PIPE_AMP] = ACTIONS(1731), - [anon_sym_AMP_AMP] = ACTIONS(1731), - [anon_sym_PIPE_PIPE] = ACTIONS(1731), - [anon_sym_LT] = ACTIONS(1733), - [anon_sym_GT] = ACTIONS(1733), - [anon_sym_GT_GT] = ACTIONS(1731), - [anon_sym_AMP_GT] = ACTIONS(1733), - [anon_sym_AMP_GT_GT] = ACTIONS(1731), - [anon_sym_LT_AMP] = ACTIONS(1731), - [anon_sym_GT_AMP] = ACTIONS(1731), - [anon_sym_LT_LT] = ACTIONS(1733), - [anon_sym_LT_LT_DASH] = ACTIONS(1731), - [anon_sym_LT_LT_LT] = ACTIONS(1731), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1731), - [anon_sym_AMP] = ACTIONS(1733), + [aux_sym_concatenation_repeat1] = STATE(1366), + [sym__concat] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(6299), + [sym_comment] = ACTIONS(55), }, [2651] = { - [anon_sym_DQUOTE] = ACTIONS(6271), - [anon_sym_DOLLAR] = ACTIONS(775), - [sym__string_content] = ACTIONS(777), - [anon_sym_POUND] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [sym_comment] = ACTIONS(265), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(781), - [anon_sym_STAR] = ACTIONS(783), - [anon_sym_AT] = ACTIONS(783), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_0] = ACTIONS(781), - [anon_sym__] = ACTIONS(781), + [aux_sym_concatenation_repeat1] = STATE(1366), + [sym__concat] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(6301), + [sym_comment] = ACTIONS(55), }, [2652] = { - [sym_concatenation] = STATE(2745), - [sym_string] = STATE(2744), - [sym_simple_expansion] = STATE(2744), - [sym_string_expansion] = STATE(2744), - [sym_expansion] = STATE(2744), - [sym_command_substitution] = STATE(2744), - [sym_process_substitution] = STATE(2744), - [anon_sym_RBRACE] = ACTIONS(6273), - [sym__special_characters] = ACTIONS(6275), - [anon_sym_DQUOTE] = ACTIONS(1802), - [anon_sym_DOLLAR] = ACTIONS(1804), - [sym_raw_string] = ACTIONS(6277), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1808), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1810), - [anon_sym_BQUOTE] = ACTIONS(1812), - [anon_sym_LT_LPAREN] = ACTIONS(1814), - [anon_sym_GT_LPAREN] = ACTIONS(1814), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6277), + [anon_sym_RBRACE] = ACTIONS(6301), + [sym_comment] = ACTIONS(55), }, [2653] = { - [anon_sym_LBRACK] = ACTIONS(815), - [anon_sym_EQ] = ACTIONS(6279), - [sym_comment] = ACTIONS(53), - }, - [2654] = { - [sym_concatenation] = STATE(2749), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(2749), - [anon_sym_RBRACE] = ACTIONS(6281), - [anon_sym_EQ] = ACTIONS(6283), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(6285), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(6287), - [anon_sym_COLON] = ACTIONS(6283), - [anon_sym_COLON_QMARK] = ACTIONS(6283), - [anon_sym_COLON_DASH] = ACTIONS(6283), - [anon_sym_PERCENT] = ACTIONS(6283), - [anon_sym_DASH] = ACTIONS(6283), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [2655] = { - [sym_concatenation] = STATE(2751), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(2751), - [anon_sym_RBRACE] = ACTIONS(6273), - [anon_sym_EQ] = ACTIONS(6289), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(6291), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(6293), - [anon_sym_COLON] = ACTIONS(6289), - [anon_sym_COLON_QMARK] = ACTIONS(6289), - [anon_sym_COLON_DASH] = ACTIONS(6289), - [anon_sym_PERCENT] = ACTIONS(6289), - [anon_sym_DASH] = ACTIONS(6289), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [2656] = { - [sym__simple_heredoc_body] = ACTIONS(1832), - [sym__heredoc_body_beginning] = ACTIONS(1832), - [sym_file_descriptor] = ACTIONS(1832), - [sym__concat] = ACTIONS(1832), - [anon_sym_SEMI] = ACTIONS(1834), - [anon_sym_esac] = ACTIONS(1832), - [anon_sym_PIPE] = ACTIONS(1834), - [anon_sym_SEMI_SEMI] = ACTIONS(1832), - [anon_sym_PIPE_AMP] = ACTIONS(1832), - [anon_sym_AMP_AMP] = ACTIONS(1832), - [anon_sym_PIPE_PIPE] = ACTIONS(1832), - [anon_sym_LT] = ACTIONS(1834), - [anon_sym_GT] = ACTIONS(1834), - [anon_sym_GT_GT] = ACTIONS(1832), - [anon_sym_AMP_GT] = ACTIONS(1834), - [anon_sym_AMP_GT_GT] = ACTIONS(1832), - [anon_sym_LT_AMP] = ACTIONS(1832), - [anon_sym_GT_AMP] = ACTIONS(1832), - [anon_sym_LT_LT] = ACTIONS(1834), - [anon_sym_LT_LT_DASH] = ACTIONS(1832), - [anon_sym_LT_LT_LT] = ACTIONS(1832), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1832), - [anon_sym_AMP] = ACTIONS(1834), - }, - [2657] = { - [sym_comment] = ACTIONS(265), - [sym_regex_without_right_brace] = ACTIONS(6295), - }, - [2658] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(6297), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [2659] = { - [sym__simple_heredoc_body] = ACTIONS(1876), - [sym__heredoc_body_beginning] = ACTIONS(1876), - [sym_file_descriptor] = ACTIONS(1876), - [sym__concat] = ACTIONS(1876), - [anon_sym_SEMI] = ACTIONS(1878), - [anon_sym_esac] = ACTIONS(1876), - [anon_sym_PIPE] = ACTIONS(1878), - [anon_sym_SEMI_SEMI] = ACTIONS(1876), - [anon_sym_PIPE_AMP] = ACTIONS(1876), - [anon_sym_AMP_AMP] = ACTIONS(1876), - [anon_sym_PIPE_PIPE] = ACTIONS(1876), - [anon_sym_LT] = ACTIONS(1878), - [anon_sym_GT] = ACTIONS(1878), - [anon_sym_GT_GT] = ACTIONS(1876), - [anon_sym_AMP_GT] = ACTIONS(1878), - [anon_sym_AMP_GT_GT] = ACTIONS(1876), - [anon_sym_LT_AMP] = ACTIONS(1876), - [anon_sym_GT_AMP] = ACTIONS(1876), - [anon_sym_LT_LT] = ACTIONS(1878), - [anon_sym_LT_LT_DASH] = ACTIONS(1876), - [anon_sym_LT_LT_LT] = ACTIONS(1876), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1876), - [anon_sym_AMP] = ACTIONS(1878), - }, - [2660] = { - [sym_comment] = ACTIONS(265), - [sym_regex_without_right_brace] = ACTIONS(6299), - }, - [2661] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(6273), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [2662] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(6301), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(901), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), - }, - [2663] = { - [sym__simple_heredoc_body] = ACTIONS(1884), - [sym__heredoc_body_beginning] = ACTIONS(1884), - [sym_file_descriptor] = ACTIONS(1884), - [sym__concat] = ACTIONS(1884), - [anon_sym_SEMI] = ACTIONS(1886), - [anon_sym_esac] = ACTIONS(1884), - [anon_sym_PIPE] = ACTIONS(1886), - [anon_sym_SEMI_SEMI] = ACTIONS(1884), - [anon_sym_PIPE_AMP] = ACTIONS(1884), - [anon_sym_AMP_AMP] = ACTIONS(1884), - [anon_sym_PIPE_PIPE] = ACTIONS(1884), - [anon_sym_LT] = ACTIONS(1886), - [anon_sym_GT] = ACTIONS(1886), - [anon_sym_GT_GT] = ACTIONS(1884), - [anon_sym_AMP_GT] = ACTIONS(1886), - [anon_sym_AMP_GT_GT] = ACTIONS(1884), - [anon_sym_LT_AMP] = ACTIONS(1884), - [anon_sym_GT_AMP] = ACTIONS(1884), - [anon_sym_LT_LT] = ACTIONS(1886), - [anon_sym_LT_LT_DASH] = ACTIONS(1884), - [anon_sym_LT_LT_LT] = ACTIONS(1884), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1884), - [anon_sym_AMP] = ACTIONS(1886), - }, - [2664] = { - [anon_sym_SEMI] = ACTIONS(6303), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(6301), - [anon_sym_SEMI_SEMI] = ACTIONS(6305), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(6305), - [anon_sym_AMP] = ACTIONS(6303), - }, - [2665] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(6303), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(6301), - [anon_sym_SEMI_SEMI] = ACTIONS(6305), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(6305), - [anon_sym_AMP] = ACTIONS(6303), - }, - [2666] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(6301), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), - }, - [2667] = { - [anon_sym_SEMI] = ACTIONS(6307), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_SEMI_SEMI] = ACTIONS(6309), - [anon_sym_PIPE_AMP] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(883), - [anon_sym_PIPE_PIPE] = ACTIONS(883), - [anon_sym_BQUOTE] = ACTIONS(6301), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(6309), - [anon_sym_AMP] = ACTIONS(6307), - }, - [2668] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(6307), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_SEMI_SEMI] = ACTIONS(6309), - [anon_sym_PIPE_AMP] = ACTIONS(881), - [anon_sym_AMP_AMP] = ACTIONS(883), - [anon_sym_PIPE_PIPE] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(6301), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(6309), - [anon_sym_AMP] = ACTIONS(6307), - }, - [2669] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(6311), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(901), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), - }, - [2670] = { - [sym__simple_heredoc_body] = ACTIONS(1916), - [sym__heredoc_body_beginning] = ACTIONS(1916), - [sym_file_descriptor] = ACTIONS(1916), - [sym__concat] = ACTIONS(1916), - [anon_sym_SEMI] = ACTIONS(1918), - [anon_sym_esac] = ACTIONS(1916), - [anon_sym_PIPE] = ACTIONS(1918), - [anon_sym_SEMI_SEMI] = ACTIONS(1916), - [anon_sym_PIPE_AMP] = ACTIONS(1916), - [anon_sym_AMP_AMP] = ACTIONS(1916), - [anon_sym_PIPE_PIPE] = ACTIONS(1916), - [anon_sym_LT] = ACTIONS(1918), - [anon_sym_GT] = ACTIONS(1918), - [anon_sym_GT_GT] = ACTIONS(1916), - [anon_sym_AMP_GT] = ACTIONS(1918), - [anon_sym_AMP_GT_GT] = ACTIONS(1916), - [anon_sym_LT_AMP] = ACTIONS(1916), - [anon_sym_GT_AMP] = ACTIONS(1916), - [anon_sym_LT_LT] = ACTIONS(1918), - [anon_sym_LT_LT_DASH] = ACTIONS(1916), - [anon_sym_LT_LT_LT] = ACTIONS(1916), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1916), - [anon_sym_AMP] = ACTIONS(1918), - }, - [2671] = { - [anon_sym_SEMI] = ACTIONS(6313), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(6311), - [anon_sym_SEMI_SEMI] = ACTIONS(6315), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(6315), - [anon_sym_AMP] = ACTIONS(6313), - }, - [2672] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(6313), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_RPAREN] = ACTIONS(6311), - [anon_sym_SEMI_SEMI] = ACTIONS(6315), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(6315), - [anon_sym_AMP] = ACTIONS(6313), - }, - [2673] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_SEMI_SEMI] = ACTIONS(901), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(5801), - [anon_sym_DQUOTE] = ACTIONS(5803), - [anon_sym_DOLLAR] = ACTIONS(5801), - [sym_raw_string] = ACTIONS(5803), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5803), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5803), - [anon_sym_BQUOTE] = ACTIONS(5803), - [anon_sym_LT_LPAREN] = ACTIONS(5803), - [anon_sym_GT_LPAREN] = ACTIONS(5803), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5801), - }, - [2674] = { - [sym__special_characters] = ACTIONS(5803), - [anon_sym_DQUOTE] = ACTIONS(5803), - [anon_sym_DOLLAR] = ACTIONS(5801), - [sym_raw_string] = ACTIONS(5803), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5803), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5803), - [anon_sym_BQUOTE] = ACTIONS(5803), - [anon_sym_LT_LPAREN] = ACTIONS(5803), - [anon_sym_GT_LPAREN] = ACTIONS(5803), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5803), - }, - [2675] = { - [anon_sym_SEMI] = ACTIONS(2038), - [anon_sym_PIPE] = ACTIONS(445), - [anon_sym_SEMI_SEMI] = ACTIONS(6317), - [anon_sym_PIPE_AMP] = ACTIONS(449), - [anon_sym_AMP_AMP] = ACTIONS(451), - [anon_sym_PIPE_PIPE] = ACTIONS(451), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(2040), - [anon_sym_AMP] = ACTIONS(2038), - }, - [2676] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(2038), - [anon_sym_PIPE] = ACTIONS(445), - [anon_sym_SEMI_SEMI] = ACTIONS(6317), - [anon_sym_PIPE_AMP] = ACTIONS(449), - [anon_sym_AMP_AMP] = ACTIONS(451), - [anon_sym_PIPE_PIPE] = ACTIONS(451), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(2040), - [anon_sym_AMP] = ACTIONS(2038), - }, - [2677] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_SEMI_SEMI] = ACTIONS(901), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(5811), - [anon_sym_DQUOTE] = ACTIONS(5813), - [anon_sym_DOLLAR] = ACTIONS(5811), - [sym_raw_string] = ACTIONS(5813), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5813), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5813), - [anon_sym_BQUOTE] = ACTIONS(5813), - [anon_sym_LT_LPAREN] = ACTIONS(5813), - [anon_sym_GT_LPAREN] = ACTIONS(5813), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5811), - }, - [2678] = { - [sym__special_characters] = ACTIONS(5813), - [anon_sym_DQUOTE] = ACTIONS(5813), - [anon_sym_DOLLAR] = ACTIONS(5811), - [sym_raw_string] = ACTIONS(5813), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5813), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5813), - [anon_sym_BQUOTE] = ACTIONS(5813), - [anon_sym_LT_LPAREN] = ACTIONS(5813), - [anon_sym_GT_LPAREN] = ACTIONS(5813), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5813), - }, - [2679] = { - [anon_sym_SEMI] = ACTIONS(2038), - [anon_sym_PIPE] = ACTIONS(445), - [anon_sym_SEMI_SEMI] = ACTIONS(6319), - [anon_sym_PIPE_AMP] = ACTIONS(449), - [anon_sym_AMP_AMP] = ACTIONS(451), - [anon_sym_PIPE_PIPE] = ACTIONS(451), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(2040), - [anon_sym_AMP] = ACTIONS(2038), - }, - [2680] = { - [sym_file_descriptor] = ACTIONS(349), - [sym_variable_name] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(2038), - [anon_sym_PIPE] = ACTIONS(445), - [anon_sym_SEMI_SEMI] = ACTIONS(6319), - [anon_sym_PIPE_AMP] = ACTIONS(449), - [anon_sym_AMP_AMP] = ACTIONS(451), - [anon_sym_PIPE_PIPE] = ACTIONS(451), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(349), - [anon_sym_LT_AMP] = ACTIONS(349), - [anon_sym_GT_AMP] = ACTIONS(349), - [sym__special_characters] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(351), - [sym_raw_string] = ACTIONS(349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_BQUOTE] = ACTIONS(349), - [anon_sym_LT_LPAREN] = ACTIONS(349), - [anon_sym_GT_LPAREN] = ACTIONS(349), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(351), - [anon_sym_LF] = ACTIONS(2040), - [anon_sym_AMP] = ACTIONS(2038), - }, - [2681] = { - [sym_file_descriptor] = ACTIONS(5069), - [sym__concat] = ACTIONS(5069), - [ts_builtin_sym_end] = ACTIONS(5069), - [anon_sym_SEMI] = ACTIONS(5071), - [anon_sym_esac] = ACTIONS(5069), - [anon_sym_PIPE] = ACTIONS(5071), - [anon_sym_RPAREN] = ACTIONS(5069), - [anon_sym_SEMI_SEMI] = ACTIONS(5069), - [anon_sym_PIPE_AMP] = ACTIONS(5069), - [anon_sym_AMP_AMP] = ACTIONS(5069), - [anon_sym_PIPE_PIPE] = ACTIONS(5069), - [anon_sym_LT] = ACTIONS(5071), - [anon_sym_GT] = ACTIONS(5071), - [anon_sym_GT_GT] = ACTIONS(5069), - [anon_sym_AMP_GT] = ACTIONS(5071), - [anon_sym_AMP_GT_GT] = ACTIONS(5069), - [anon_sym_LT_AMP] = ACTIONS(5069), - [anon_sym_GT_AMP] = ACTIONS(5069), - [anon_sym_LT_LT] = ACTIONS(5071), - [anon_sym_LT_LT_DASH] = ACTIONS(5069), - [anon_sym_LT_LT_LT] = ACTIONS(5069), - [anon_sym_BQUOTE] = ACTIONS(5069), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(5069), - [anon_sym_AMP] = ACTIONS(5071), - }, - [2682] = { - [sym_file_descriptor] = ACTIONS(5073), - [sym__concat] = ACTIONS(5073), - [ts_builtin_sym_end] = ACTIONS(5073), - [anon_sym_SEMI] = ACTIONS(5075), - [anon_sym_esac] = ACTIONS(5073), - [anon_sym_PIPE] = ACTIONS(5075), - [anon_sym_RPAREN] = ACTIONS(5073), - [anon_sym_SEMI_SEMI] = ACTIONS(5073), - [anon_sym_PIPE_AMP] = ACTIONS(5073), - [anon_sym_AMP_AMP] = ACTIONS(5073), - [anon_sym_PIPE_PIPE] = ACTIONS(5073), - [anon_sym_LT] = ACTIONS(5075), - [anon_sym_GT] = ACTIONS(5075), - [anon_sym_GT_GT] = ACTIONS(5073), - [anon_sym_AMP_GT] = ACTIONS(5075), - [anon_sym_AMP_GT_GT] = ACTIONS(5073), - [anon_sym_LT_AMP] = ACTIONS(5073), - [anon_sym_GT_AMP] = ACTIONS(5073), - [anon_sym_LT_LT] = ACTIONS(5075), - [anon_sym_LT_LT_DASH] = ACTIONS(5073), - [anon_sym_LT_LT_LT] = ACTIONS(5073), - [anon_sym_BQUOTE] = ACTIONS(5073), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(5073), - [anon_sym_AMP] = ACTIONS(5075), - }, - [2683] = { - [sym_file_descriptor] = ACTIONS(2876), - [sym__concat] = ACTIONS(2876), - [sym_variable_name] = ACTIONS(2876), - [anon_sym_SEMI] = ACTIONS(2878), - [anon_sym_esac] = ACTIONS(2878), - [anon_sym_PIPE] = ACTIONS(2878), - [anon_sym_SEMI_SEMI] = ACTIONS(2876), - [anon_sym_PIPE_AMP] = ACTIONS(2876), - [anon_sym_AMP_AMP] = ACTIONS(2876), - [anon_sym_PIPE_PIPE] = ACTIONS(2876), - [anon_sym_LT] = ACTIONS(2878), - [anon_sym_GT] = ACTIONS(2878), - [anon_sym_GT_GT] = ACTIONS(2876), - [anon_sym_AMP_GT] = ACTIONS(2878), - [anon_sym_AMP_GT_GT] = ACTIONS(2876), - [anon_sym_LT_AMP] = ACTIONS(2876), - [anon_sym_GT_AMP] = ACTIONS(2876), - [sym__special_characters] = ACTIONS(2876), - [anon_sym_DQUOTE] = ACTIONS(2876), - [anon_sym_DOLLAR] = ACTIONS(2878), - [sym_raw_string] = ACTIONS(2876), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2876), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2876), - [anon_sym_BQUOTE] = ACTIONS(2876), - [anon_sym_LT_LPAREN] = ACTIONS(2876), - [anon_sym_GT_LPAREN] = ACTIONS(2876), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2878), - [anon_sym_LF] = ACTIONS(2876), - [anon_sym_AMP] = ACTIONS(2878), - }, - [2684] = { - [sym_file_descriptor] = ACTIONS(2890), - [sym__concat] = ACTIONS(2890), - [sym_variable_name] = ACTIONS(2890), - [anon_sym_SEMI] = ACTIONS(2892), - [anon_sym_esac] = ACTIONS(2892), - [anon_sym_PIPE] = ACTIONS(2892), - [anon_sym_SEMI_SEMI] = ACTIONS(2890), - [anon_sym_PIPE_AMP] = ACTIONS(2890), - [anon_sym_AMP_AMP] = ACTIONS(2890), - [anon_sym_PIPE_PIPE] = ACTIONS(2890), - [anon_sym_LT] = ACTIONS(2892), - [anon_sym_GT] = ACTIONS(2892), - [anon_sym_GT_GT] = ACTIONS(2890), - [anon_sym_AMP_GT] = ACTIONS(2892), - [anon_sym_AMP_GT_GT] = ACTIONS(2890), - [anon_sym_LT_AMP] = ACTIONS(2890), - [anon_sym_GT_AMP] = ACTIONS(2890), - [sym__special_characters] = ACTIONS(2890), - [anon_sym_DQUOTE] = ACTIONS(2890), - [anon_sym_DOLLAR] = ACTIONS(2892), - [sym_raw_string] = ACTIONS(2890), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2890), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2890), - [anon_sym_BQUOTE] = ACTIONS(2890), - [anon_sym_LT_LPAREN] = ACTIONS(2890), - [anon_sym_GT_LPAREN] = ACTIONS(2890), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2892), - [anon_sym_LF] = ACTIONS(2890), - [anon_sym_AMP] = ACTIONS(2892), - }, - [2685] = { - [aux_sym_concatenation_repeat1] = STATE(1293), - [sym__concat] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(6321), - [sym_comment] = ACTIONS(53), - }, - [2686] = { - [aux_sym_concatenation_repeat1] = STATE(1293), - [sym__concat] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(6323), - [sym_comment] = ACTIONS(53), - }, - [2687] = { - [anon_sym_RBRACE] = ACTIONS(6323), - [sym_comment] = ACTIONS(53), - }, - [2688] = { [sym_concatenation] = STATE(2766), [sym_string] = STATE(2765), [sym_simple_expansion] = STATE(2765), @@ -73577,3407 +76424,5948 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(2765), [sym_command_substitution] = STATE(2765), [sym_process_substitution] = STATE(2765), - [anon_sym_RBRACE] = ACTIONS(6323), - [sym__special_characters] = ACTIONS(6325), - [anon_sym_DQUOTE] = ACTIONS(1802), - [anon_sym_DOLLAR] = ACTIONS(1804), - [sym_raw_string] = ACTIONS(6327), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1808), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1810), - [anon_sym_BQUOTE] = ACTIONS(1812), - [anon_sym_LT_LPAREN] = ACTIONS(1814), - [anon_sym_GT_LPAREN] = ACTIONS(1814), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6327), + [anon_sym_RBRACE] = ACTIONS(6301), + [sym__special_characters] = ACTIONS(6303), + [anon_sym_DQUOTE] = ACTIONS(1841), + [anon_sym_DOLLAR] = ACTIONS(1843), + [sym_raw_string] = ACTIONS(6305), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1849), + [anon_sym_BQUOTE] = ACTIONS(1851), + [anon_sym_LT_LPAREN] = ACTIONS(1853), + [anon_sym_GT_LPAREN] = ACTIONS(1853), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(6305), }, - [2689] = { - [sym_file_descriptor] = ACTIONS(2926), - [sym__concat] = ACTIONS(2926), - [sym_variable_name] = ACTIONS(2926), - [anon_sym_SEMI] = ACTIONS(2928), - [anon_sym_esac] = ACTIONS(2928), - [anon_sym_PIPE] = ACTIONS(2928), - [anon_sym_SEMI_SEMI] = ACTIONS(2926), - [anon_sym_PIPE_AMP] = ACTIONS(2926), - [anon_sym_AMP_AMP] = ACTIONS(2926), - [anon_sym_PIPE_PIPE] = ACTIONS(2926), - [anon_sym_LT] = ACTIONS(2928), - [anon_sym_GT] = ACTIONS(2928), - [anon_sym_GT_GT] = ACTIONS(2926), - [anon_sym_AMP_GT] = ACTIONS(2928), - [anon_sym_AMP_GT_GT] = ACTIONS(2926), - [anon_sym_LT_AMP] = ACTIONS(2926), - [anon_sym_GT_AMP] = ACTIONS(2926), - [sym__special_characters] = ACTIONS(2926), - [anon_sym_DQUOTE] = ACTIONS(2926), - [anon_sym_DOLLAR] = ACTIONS(2928), - [sym_raw_string] = ACTIONS(2926), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2926), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2926), - [anon_sym_BQUOTE] = ACTIONS(2926), - [anon_sym_LT_LPAREN] = ACTIONS(2926), - [anon_sym_GT_LPAREN] = ACTIONS(2926), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2928), - [anon_sym_LF] = ACTIONS(2926), - [anon_sym_AMP] = ACTIONS(2928), + [2654] = { + [sym__concat] = ACTIONS(3009), + [sym_variable_name] = ACTIONS(3009), + [anon_sym_SEMI] = ACTIONS(3011), + [anon_sym_esac] = ACTIONS(3011), + [anon_sym_PIPE] = ACTIONS(3011), + [anon_sym_SEMI_SEMI] = ACTIONS(3009), + [anon_sym_PIPE_AMP] = ACTIONS(3009), + [anon_sym_AMP_AMP] = ACTIONS(3009), + [anon_sym_PIPE_PIPE] = ACTIONS(3009), + [sym__special_characters] = ACTIONS(3009), + [anon_sym_DQUOTE] = ACTIONS(3009), + [anon_sym_DOLLAR] = ACTIONS(3011), + [sym_raw_string] = ACTIONS(3009), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3009), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3009), + [anon_sym_BQUOTE] = ACTIONS(3009), + [anon_sym_LT_LPAREN] = ACTIONS(3009), + [anon_sym_GT_LPAREN] = ACTIONS(3009), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3011), + [sym_word] = ACTIONS(3011), + [anon_sym_LF] = ACTIONS(3009), + [anon_sym_AMP] = ACTIONS(3011), }, - [2690] = { - [sym_comment] = ACTIONS(265), - [sym_regex_without_right_brace] = ACTIONS(6329), + [2655] = { + [sym_concatenation] = STATE(2769), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2769), + [sym_regex] = ACTIONS(6307), + [anon_sym_RBRACE] = ACTIONS(6309), + [anon_sym_EQ] = ACTIONS(6311), + [anon_sym_DASH] = ACTIONS(6311), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(6313), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(6311), + [anon_sym_COLON_QMARK] = ACTIONS(6311), + [anon_sym_COLON_DASH] = ACTIONS(6311), + [anon_sym_PERCENT] = ACTIONS(6311), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, - [2691] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(6331), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [2656] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(6309), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, - [2692] = { - [sym_comment] = ACTIONS(265), - [sym_regex_without_right_brace] = ACTIONS(6333), - }, - [2693] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(6323), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), - }, - [2694] = { + [2657] = { [sym_concatenation] = STATE(2771), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), [aux_sym_expansion_repeat1] = STATE(2771), - [anon_sym_RBRACE] = ACTIONS(6335), - [anon_sym_EQ] = ACTIONS(6337), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(6339), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(6337), - [anon_sym_COLON_QMARK] = ACTIONS(6337), - [anon_sym_COLON_DASH] = ACTIONS(6337), - [anon_sym_PERCENT] = ACTIONS(6337), - [anon_sym_DASH] = ACTIONS(6337), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_regex] = ACTIONS(6315), + [anon_sym_RBRACE] = ACTIONS(6301), + [anon_sym_EQ] = ACTIONS(6317), + [anon_sym_DASH] = ACTIONS(6317), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(6319), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(6317), + [anon_sym_COLON_QMARK] = ACTIONS(6317), + [anon_sym_COLON_DASH] = ACTIONS(6317), + [anon_sym_PERCENT] = ACTIONS(6317), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, - [2695] = { - [sym_file_descriptor] = ACTIONS(2990), - [sym__concat] = ACTIONS(2990), - [sym_variable_name] = ACTIONS(2990), - [anon_sym_SEMI] = ACTIONS(2992), - [anon_sym_esac] = ACTIONS(2992), - [anon_sym_PIPE] = ACTIONS(2992), - [anon_sym_SEMI_SEMI] = ACTIONS(2990), - [anon_sym_PIPE_AMP] = ACTIONS(2990), - [anon_sym_AMP_AMP] = ACTIONS(2990), - [anon_sym_PIPE_PIPE] = ACTIONS(2990), - [anon_sym_LT] = ACTIONS(2992), - [anon_sym_GT] = ACTIONS(2992), - [anon_sym_GT_GT] = ACTIONS(2990), - [anon_sym_AMP_GT] = ACTIONS(2992), - [anon_sym_AMP_GT_GT] = ACTIONS(2990), - [anon_sym_LT_AMP] = ACTIONS(2990), - [anon_sym_GT_AMP] = ACTIONS(2990), - [sym__special_characters] = ACTIONS(2990), - [anon_sym_DQUOTE] = ACTIONS(2990), - [anon_sym_DOLLAR] = ACTIONS(2992), - [sym_raw_string] = ACTIONS(2990), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2990), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2990), - [anon_sym_BQUOTE] = ACTIONS(2990), - [anon_sym_LT_LPAREN] = ACTIONS(2990), - [anon_sym_GT_LPAREN] = ACTIONS(2990), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2992), - [anon_sym_LF] = ACTIONS(2990), - [anon_sym_AMP] = ACTIONS(2992), + [2658] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(6301), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, - [2696] = { - [sym_concatenation] = STATE(2772), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(2772), - [anon_sym_RBRACE] = ACTIONS(6323), - [anon_sym_EQ] = ACTIONS(6341), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(6343), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(6341), - [anon_sym_COLON_QMARK] = ACTIONS(6341), - [anon_sym_COLON_DASH] = ACTIONS(6341), - [anon_sym_PERCENT] = ACTIONS(6341), - [anon_sym_DASH] = ACTIONS(6341), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [2659] = { + [sym_concatenation] = STATE(2773), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2773), + [anon_sym_RBRACE] = ACTIONS(6321), + [anon_sym_EQ] = ACTIONS(6323), + [anon_sym_DASH] = ACTIONS(6323), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(6325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(6323), + [anon_sym_COLON_QMARK] = ACTIONS(6323), + [anon_sym_COLON_DASH] = ACTIONS(6323), + [anon_sym_PERCENT] = ACTIONS(6323), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, - [2697] = { - [sym_file_descriptor] = ACTIONS(3033), - [sym__concat] = ACTIONS(3033), - [sym_variable_name] = ACTIONS(3033), - [anon_sym_SEMI] = ACTIONS(3035), - [anon_sym_esac] = ACTIONS(3035), - [anon_sym_PIPE] = ACTIONS(3035), - [anon_sym_SEMI_SEMI] = ACTIONS(3033), - [anon_sym_PIPE_AMP] = ACTIONS(3033), - [anon_sym_AMP_AMP] = ACTIONS(3033), - [anon_sym_PIPE_PIPE] = ACTIONS(3033), - [anon_sym_LT] = ACTIONS(3035), - [anon_sym_GT] = ACTIONS(3035), - [anon_sym_GT_GT] = ACTIONS(3033), - [anon_sym_AMP_GT] = ACTIONS(3035), - [anon_sym_AMP_GT_GT] = ACTIONS(3033), - [anon_sym_LT_AMP] = ACTIONS(3033), - [anon_sym_GT_AMP] = ACTIONS(3033), - [sym__special_characters] = ACTIONS(3033), - [anon_sym_DQUOTE] = ACTIONS(3033), - [anon_sym_DOLLAR] = ACTIONS(3035), - [sym_raw_string] = ACTIONS(3033), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3033), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3033), - [anon_sym_BQUOTE] = ACTIONS(3033), - [anon_sym_LT_LPAREN] = ACTIONS(3033), - [anon_sym_GT_LPAREN] = ACTIONS(3033), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3035), - [anon_sym_LF] = ACTIONS(3033), - [anon_sym_AMP] = ACTIONS(3035), + [2660] = { + [sym__concat] = ACTIONS(3065), + [sym_variable_name] = ACTIONS(3065), + [anon_sym_SEMI] = ACTIONS(3067), + [anon_sym_esac] = ACTIONS(3067), + [anon_sym_PIPE] = ACTIONS(3067), + [anon_sym_SEMI_SEMI] = ACTIONS(3065), + [anon_sym_PIPE_AMP] = ACTIONS(3065), + [anon_sym_AMP_AMP] = ACTIONS(3065), + [anon_sym_PIPE_PIPE] = ACTIONS(3065), + [sym__special_characters] = ACTIONS(3065), + [anon_sym_DQUOTE] = ACTIONS(3065), + [anon_sym_DOLLAR] = ACTIONS(3067), + [sym_raw_string] = ACTIONS(3065), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3065), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3065), + [anon_sym_BQUOTE] = ACTIONS(3065), + [anon_sym_LT_LPAREN] = ACTIONS(3065), + [anon_sym_GT_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3067), + [sym_word] = ACTIONS(3067), + [anon_sym_LF] = ACTIONS(3065), + [anon_sym_AMP] = ACTIONS(3067), }, - [2698] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(6345), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(901), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), + [2661] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(6321), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, - [2699] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(6345), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), + [2662] = { + [sym_concatenation] = STATE(2771), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2771), + [anon_sym_RBRACE] = ACTIONS(6301), + [anon_sym_EQ] = ACTIONS(6317), + [anon_sym_DASH] = ACTIONS(6317), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(6319), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(6317), + [anon_sym_COLON_QMARK] = ACTIONS(6317), + [anon_sym_COLON_DASH] = ACTIONS(6317), + [anon_sym_PERCENT] = ACTIONS(6317), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, - [2700] = { - [sym_file_descriptor] = ACTIONS(3071), - [sym__concat] = ACTIONS(3071), - [sym_variable_name] = ACTIONS(3071), - [anon_sym_SEMI] = ACTIONS(3073), - [anon_sym_esac] = ACTIONS(3073), - [anon_sym_PIPE] = ACTIONS(3073), - [anon_sym_SEMI_SEMI] = ACTIONS(3071), - [anon_sym_PIPE_AMP] = ACTIONS(3071), - [anon_sym_AMP_AMP] = ACTIONS(3071), - [anon_sym_PIPE_PIPE] = ACTIONS(3071), - [anon_sym_LT] = ACTIONS(3073), - [anon_sym_GT] = ACTIONS(3073), - [anon_sym_GT_GT] = ACTIONS(3071), - [anon_sym_AMP_GT] = ACTIONS(3073), - [anon_sym_AMP_GT_GT] = ACTIONS(3071), - [anon_sym_LT_AMP] = ACTIONS(3071), - [anon_sym_GT_AMP] = ACTIONS(3071), - [sym__special_characters] = ACTIONS(3071), - [anon_sym_DQUOTE] = ACTIONS(3071), - [anon_sym_DOLLAR] = ACTIONS(3073), - [sym_raw_string] = ACTIONS(3071), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3071), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3071), - [anon_sym_BQUOTE] = ACTIONS(3071), - [anon_sym_LT_LPAREN] = ACTIONS(3071), - [anon_sym_GT_LPAREN] = ACTIONS(3071), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3073), - [anon_sym_LF] = ACTIONS(3071), - [anon_sym_AMP] = ACTIONS(3073), + [2663] = { + [sym__concat] = ACTIONS(3120), + [sym_variable_name] = ACTIONS(3120), + [anon_sym_SEMI] = ACTIONS(3122), + [anon_sym_esac] = ACTIONS(3122), + [anon_sym_PIPE] = ACTIONS(3122), + [anon_sym_SEMI_SEMI] = ACTIONS(3120), + [anon_sym_PIPE_AMP] = ACTIONS(3120), + [anon_sym_AMP_AMP] = ACTIONS(3120), + [anon_sym_PIPE_PIPE] = ACTIONS(3120), + [sym__special_characters] = ACTIONS(3120), + [anon_sym_DQUOTE] = ACTIONS(3120), + [anon_sym_DOLLAR] = ACTIONS(3122), + [sym_raw_string] = ACTIONS(3120), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3120), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3120), + [anon_sym_BQUOTE] = ACTIONS(3120), + [anon_sym_LT_LPAREN] = ACTIONS(3120), + [anon_sym_GT_LPAREN] = ACTIONS(3120), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3122), + [sym_word] = ACTIONS(3122), + [anon_sym_LF] = ACTIONS(3120), + [anon_sym_AMP] = ACTIONS(3122), }, - [2701] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(6347), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(901), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), + [2664] = { + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(6327), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), }, - [2702] = { - [aux_sym_concatenation_repeat1] = STATE(2704), - [sym__concat] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(1055), - [anon_sym_esac] = ACTIONS(1053), - [anon_sym_PIPE] = ACTIONS(1055), - [anon_sym_SEMI_SEMI] = ACTIONS(1053), - [anon_sym_PIPE_AMP] = ACTIONS(1053), - [anon_sym_AMP_AMP] = ACTIONS(1053), - [anon_sym_PIPE_PIPE] = ACTIONS(1053), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1053), - [anon_sym_AMP] = ACTIONS(1055), + [2665] = { + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(6327), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), }, - [2703] = { - [aux_sym_concatenation_repeat1] = STATE(2704), - [sym__concat] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(1059), - [anon_sym_esac] = ACTIONS(1057), - [anon_sym_PIPE] = ACTIONS(1059), - [anon_sym_SEMI_SEMI] = ACTIONS(1057), - [anon_sym_PIPE_AMP] = ACTIONS(1057), - [anon_sym_AMP_AMP] = ACTIONS(1057), - [anon_sym_PIPE_PIPE] = ACTIONS(1057), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), + [2666] = { + [sym__concat] = ACTIONS(3158), + [sym_variable_name] = ACTIONS(3158), + [anon_sym_SEMI] = ACTIONS(3160), + [anon_sym_esac] = ACTIONS(3160), + [anon_sym_PIPE] = ACTIONS(3160), + [anon_sym_SEMI_SEMI] = ACTIONS(3158), + [anon_sym_PIPE_AMP] = ACTIONS(3158), + [anon_sym_AMP_AMP] = ACTIONS(3158), + [anon_sym_PIPE_PIPE] = ACTIONS(3158), + [sym__special_characters] = ACTIONS(3158), + [anon_sym_DQUOTE] = ACTIONS(3158), + [anon_sym_DOLLAR] = ACTIONS(3160), + [sym_raw_string] = ACTIONS(3158), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3158), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3158), + [anon_sym_BQUOTE] = ACTIONS(3158), + [anon_sym_LT_LPAREN] = ACTIONS(3158), + [anon_sym_GT_LPAREN] = ACTIONS(3158), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3160), + [sym_word] = ACTIONS(3160), + [anon_sym_LF] = ACTIONS(3158), + [anon_sym_AMP] = ACTIONS(3160), }, - [2704] = { - [aux_sym_concatenation_repeat1] = STATE(2775), - [sym__concat] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(767), - [anon_sym_esac] = ACTIONS(765), - [anon_sym_PIPE] = ACTIONS(767), - [anon_sym_SEMI_SEMI] = ACTIONS(765), - [anon_sym_PIPE_AMP] = ACTIONS(765), - [anon_sym_AMP_AMP] = ACTIONS(765), - [anon_sym_PIPE_PIPE] = ACTIONS(765), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(765), - [anon_sym_AMP] = ACTIONS(767), + [2667] = { + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(6329), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), }, - [2705] = { - [aux_sym_concatenation_repeat1] = STATE(2707), - [sym_file_descriptor] = ACTIONS(1053), - [sym__concat] = ACTIONS(3592), - [anon_sym_SEMI] = ACTIONS(1055), - [anon_sym_esac] = ACTIONS(1053), - [anon_sym_PIPE] = ACTIONS(1055), - [anon_sym_SEMI_SEMI] = ACTIONS(1053), - [anon_sym_PIPE_AMP] = ACTIONS(1053), - [anon_sym_AMP_AMP] = ACTIONS(1053), - [anon_sym_PIPE_PIPE] = ACTIONS(1053), - [anon_sym_LT] = ACTIONS(1055), - [anon_sym_GT] = ACTIONS(1055), - [anon_sym_GT_GT] = ACTIONS(1053), - [anon_sym_AMP_GT] = ACTIONS(1055), - [anon_sym_AMP_GT_GT] = ACTIONS(1053), - [anon_sym_LT_AMP] = ACTIONS(1053), - [anon_sym_GT_AMP] = ACTIONS(1053), - [anon_sym_LT_LT] = ACTIONS(1055), - [anon_sym_LT_LT_DASH] = ACTIONS(1053), - [anon_sym_LT_LT_LT] = ACTIONS(1053), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1053), - [anon_sym_AMP] = ACTIONS(1055), + [2668] = { + [sym__concat] = ACTIONS(2959), + [anon_sym_SEMI] = ACTIONS(2961), + [anon_sym_esac] = ACTIONS(2961), + [anon_sym_PIPE] = ACTIONS(2961), + [anon_sym_SEMI_SEMI] = ACTIONS(2959), + [anon_sym_PIPE_AMP] = ACTIONS(2959), + [anon_sym_AMP_AMP] = ACTIONS(2959), + [anon_sym_PIPE_PIPE] = ACTIONS(2959), + [sym__special_characters] = ACTIONS(2959), + [anon_sym_DQUOTE] = ACTIONS(2959), + [anon_sym_DOLLAR] = ACTIONS(2961), + [sym_raw_string] = ACTIONS(2959), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2959), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2959), + [anon_sym_BQUOTE] = ACTIONS(2959), + [anon_sym_LT_LPAREN] = ACTIONS(2959), + [anon_sym_GT_LPAREN] = ACTIONS(2959), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2961), + [sym_word] = ACTIONS(2961), + [anon_sym_LF] = ACTIONS(2959), + [anon_sym_AMP] = ACTIONS(2961), }, - [2706] = { - [aux_sym_concatenation_repeat1] = STATE(2707), - [sym_file_descriptor] = ACTIONS(1057), - [sym__concat] = ACTIONS(3592), - [anon_sym_SEMI] = ACTIONS(1059), - [anon_sym_esac] = ACTIONS(1057), - [anon_sym_PIPE] = ACTIONS(1059), - [anon_sym_SEMI_SEMI] = ACTIONS(1057), - [anon_sym_PIPE_AMP] = ACTIONS(1057), - [anon_sym_AMP_AMP] = ACTIONS(1057), - [anon_sym_PIPE_PIPE] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_GT_GT] = ACTIONS(1057), - [anon_sym_AMP_GT] = ACTIONS(1059), - [anon_sym_AMP_GT_GT] = ACTIONS(1057), - [anon_sym_LT_AMP] = ACTIONS(1057), - [anon_sym_GT_AMP] = ACTIONS(1057), - [anon_sym_LT_LT] = ACTIONS(1059), - [anon_sym_LT_LT_DASH] = ACTIONS(1057), - [anon_sym_LT_LT_LT] = ACTIONS(1057), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), + [2669] = { + [sym__concat] = ACTIONS(2973), + [anon_sym_SEMI] = ACTIONS(2975), + [anon_sym_esac] = ACTIONS(2975), + [anon_sym_PIPE] = ACTIONS(2975), + [anon_sym_SEMI_SEMI] = ACTIONS(2973), + [anon_sym_PIPE_AMP] = ACTIONS(2973), + [anon_sym_AMP_AMP] = ACTIONS(2973), + [anon_sym_PIPE_PIPE] = ACTIONS(2973), + [sym__special_characters] = ACTIONS(2973), + [anon_sym_DQUOTE] = ACTIONS(2973), + [anon_sym_DOLLAR] = ACTIONS(2975), + [sym_raw_string] = ACTIONS(2973), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2973), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2973), + [anon_sym_BQUOTE] = ACTIONS(2973), + [anon_sym_LT_LPAREN] = ACTIONS(2973), + [anon_sym_GT_LPAREN] = ACTIONS(2973), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2975), + [sym_word] = ACTIONS(2975), + [anon_sym_LF] = ACTIONS(2973), + [anon_sym_AMP] = ACTIONS(2975), }, - [2707] = { - [aux_sym_concatenation_repeat1] = STATE(2776), - [sym_file_descriptor] = ACTIONS(765), - [sym__concat] = ACTIONS(3592), - [anon_sym_SEMI] = ACTIONS(767), - [anon_sym_esac] = ACTIONS(765), - [anon_sym_PIPE] = ACTIONS(767), - [anon_sym_SEMI_SEMI] = ACTIONS(765), - [anon_sym_PIPE_AMP] = ACTIONS(765), - [anon_sym_AMP_AMP] = ACTIONS(765), - [anon_sym_PIPE_PIPE] = ACTIONS(765), - [anon_sym_LT] = ACTIONS(767), - [anon_sym_GT] = ACTIONS(767), - [anon_sym_GT_GT] = ACTIONS(765), - [anon_sym_AMP_GT] = ACTIONS(767), - [anon_sym_AMP_GT_GT] = ACTIONS(765), - [anon_sym_LT_AMP] = ACTIONS(765), - [anon_sym_GT_AMP] = ACTIONS(765), - [anon_sym_LT_LT] = ACTIONS(767), - [anon_sym_LT_LT_DASH] = ACTIONS(765), - [anon_sym_LT_LT_LT] = ACTIONS(765), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(765), - [anon_sym_AMP] = ACTIONS(767), + [2670] = { + [aux_sym_concatenation_repeat1] = STATE(1366), + [sym__concat] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(6331), + [sym_comment] = ACTIONS(55), }, - [2708] = { - [sym_variable_name] = ACTIONS(3178), - [anon_sym_SEMI] = ACTIONS(3180), - [anon_sym_esac] = ACTIONS(3180), - [anon_sym_PIPE] = ACTIONS(3180), - [anon_sym_SEMI_SEMI] = ACTIONS(3178), - [anon_sym_PIPE_AMP] = ACTIONS(3178), - [anon_sym_AMP_AMP] = ACTIONS(3178), - [anon_sym_PIPE_PIPE] = ACTIONS(3178), - [sym__special_characters] = ACTIONS(3178), - [anon_sym_DQUOTE] = ACTIONS(3178), - [anon_sym_DOLLAR] = ACTIONS(3180), - [sym_raw_string] = ACTIONS(3178), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3178), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3178), - [anon_sym_BQUOTE] = ACTIONS(3178), - [anon_sym_LT_LPAREN] = ACTIONS(3178), - [anon_sym_GT_LPAREN] = ACTIONS(3178), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3180), - [sym_word] = ACTIONS(3180), - [anon_sym_LF] = ACTIONS(3178), - [anon_sym_AMP] = ACTIONS(3180), + [2671] = { + [aux_sym_concatenation_repeat1] = STATE(1366), + [sym__concat] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(6333), + [sym_comment] = ACTIONS(55), }, - [2709] = { - [sym__concat] = ACTIONS(3788), - [sym_variable_name] = ACTIONS(3788), - [anon_sym_SEMI] = ACTIONS(3790), - [anon_sym_esac] = ACTIONS(3790), - [anon_sym_PIPE] = ACTIONS(3790), - [anon_sym_SEMI_SEMI] = ACTIONS(3788), - [anon_sym_PIPE_AMP] = ACTIONS(3788), - [anon_sym_AMP_AMP] = ACTIONS(3788), - [anon_sym_PIPE_PIPE] = ACTIONS(3788), - [sym__special_characters] = ACTIONS(3788), - [anon_sym_DQUOTE] = ACTIONS(3788), - [anon_sym_DOLLAR] = ACTIONS(3790), - [sym_raw_string] = ACTIONS(3788), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3788), - [anon_sym_BQUOTE] = ACTIONS(3788), - [anon_sym_LT_LPAREN] = ACTIONS(3788), - [anon_sym_GT_LPAREN] = ACTIONS(3788), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3790), - [sym_word] = ACTIONS(3790), - [anon_sym_LF] = ACTIONS(3788), - [anon_sym_AMP] = ACTIONS(3790), + [2672] = { + [anon_sym_RBRACE] = ACTIONS(6333), + [sym_comment] = ACTIONS(55), }, - [2710] = { - [sym__concat] = ACTIONS(3796), - [sym_variable_name] = ACTIONS(3796), - [anon_sym_SEMI] = ACTIONS(3798), - [anon_sym_esac] = ACTIONS(3798), - [anon_sym_PIPE] = ACTIONS(3798), - [anon_sym_SEMI_SEMI] = ACTIONS(3796), - [anon_sym_PIPE_AMP] = ACTIONS(3796), - [anon_sym_AMP_AMP] = ACTIONS(3796), - [anon_sym_PIPE_PIPE] = ACTIONS(3796), - [sym__special_characters] = ACTIONS(3796), - [anon_sym_DQUOTE] = ACTIONS(3796), - [anon_sym_DOLLAR] = ACTIONS(3798), - [sym_raw_string] = ACTIONS(3796), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3796), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3796), - [anon_sym_BQUOTE] = ACTIONS(3796), - [anon_sym_LT_LPAREN] = ACTIONS(3796), - [anon_sym_GT_LPAREN] = ACTIONS(3796), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3798), - [sym_word] = ACTIONS(3798), - [anon_sym_LF] = ACTIONS(3796), - [anon_sym_AMP] = ACTIONS(3798), - }, - [2711] = { - [aux_sym_concatenation_repeat1] = STATE(1293), - [sym__concat] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(6349), - [sym_comment] = ACTIONS(53), - }, - [2712] = { - [aux_sym_concatenation_repeat1] = STATE(1293), - [sym__concat] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(6351), - [sym_comment] = ACTIONS(53), - }, - [2713] = { - [anon_sym_RBRACE] = ACTIONS(6351), - [sym_comment] = ACTIONS(53), - }, - [2714] = { + [2673] = { [sym_concatenation] = STATE(2780), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(2780), + [sym_string] = STATE(2779), + [sym_simple_expansion] = STATE(2779), + [sym_string_expansion] = STATE(2779), + [sym_expansion] = STATE(2779), + [sym_command_substitution] = STATE(2779), + [sym_process_substitution] = STATE(2779), + [anon_sym_RBRACE] = ACTIONS(6333), + [sym__special_characters] = ACTIONS(6335), + [anon_sym_DQUOTE] = ACTIONS(1841), + [anon_sym_DOLLAR] = ACTIONS(1843), + [sym_raw_string] = ACTIONS(6337), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1849), + [anon_sym_BQUOTE] = ACTIONS(1851), + [anon_sym_LT_LPAREN] = ACTIONS(1853), + [anon_sym_GT_LPAREN] = ACTIONS(1853), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(6337), + }, + [2674] = { + [sym__concat] = ACTIONS(3009), + [anon_sym_SEMI] = ACTIONS(3011), + [anon_sym_esac] = ACTIONS(3011), + [anon_sym_PIPE] = ACTIONS(3011), + [anon_sym_SEMI_SEMI] = ACTIONS(3009), + [anon_sym_PIPE_AMP] = ACTIONS(3009), + [anon_sym_AMP_AMP] = ACTIONS(3009), + [anon_sym_PIPE_PIPE] = ACTIONS(3009), + [sym__special_characters] = ACTIONS(3009), + [anon_sym_DQUOTE] = ACTIONS(3009), + [anon_sym_DOLLAR] = ACTIONS(3011), + [sym_raw_string] = ACTIONS(3009), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3009), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3009), + [anon_sym_BQUOTE] = ACTIONS(3009), + [anon_sym_LT_LPAREN] = ACTIONS(3009), + [anon_sym_GT_LPAREN] = ACTIONS(3009), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3011), + [sym_word] = ACTIONS(3011), + [anon_sym_LF] = ACTIONS(3009), + [anon_sym_AMP] = ACTIONS(3011), + }, + [2675] = { + [sym_concatenation] = STATE(2783), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2783), + [sym_regex] = ACTIONS(6339), + [anon_sym_RBRACE] = ACTIONS(6341), + [anon_sym_EQ] = ACTIONS(6343), + [anon_sym_DASH] = ACTIONS(6343), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(6345), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(6343), + [anon_sym_COLON_QMARK] = ACTIONS(6343), + [anon_sym_COLON_DASH] = ACTIONS(6343), + [anon_sym_PERCENT] = ACTIONS(6343), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [2676] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(6341), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [2677] = { + [sym_concatenation] = STATE(2785), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2785), + [sym_regex] = ACTIONS(6347), + [anon_sym_RBRACE] = ACTIONS(6333), + [anon_sym_EQ] = ACTIONS(6349), + [anon_sym_DASH] = ACTIONS(6349), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(6351), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(6349), + [anon_sym_COLON_QMARK] = ACTIONS(6349), + [anon_sym_COLON_DASH] = ACTIONS(6349), + [anon_sym_PERCENT] = ACTIONS(6349), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [2678] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(6333), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [2679] = { + [sym_concatenation] = STATE(2787), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2787), [anon_sym_RBRACE] = ACTIONS(6353), [anon_sym_EQ] = ACTIONS(6355), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), + [anon_sym_DASH] = ACTIONS(6355), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), [anon_sym_POUND] = ACTIONS(6357), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), [anon_sym_COLON] = ACTIONS(6355), [anon_sym_COLON_QMARK] = ACTIONS(6355), [anon_sym_COLON_DASH] = ACTIONS(6355), [anon_sym_PERCENT] = ACTIONS(6355), - [anon_sym_DASH] = ACTIONS(6355), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [2680] = { + [sym__concat] = ACTIONS(3065), + [anon_sym_SEMI] = ACTIONS(3067), + [anon_sym_esac] = ACTIONS(3067), + [anon_sym_PIPE] = ACTIONS(3067), + [anon_sym_SEMI_SEMI] = ACTIONS(3065), + [anon_sym_PIPE_AMP] = ACTIONS(3065), + [anon_sym_AMP_AMP] = ACTIONS(3065), + [anon_sym_PIPE_PIPE] = ACTIONS(3065), + [sym__special_characters] = ACTIONS(3065), + [anon_sym_DQUOTE] = ACTIONS(3065), + [anon_sym_DOLLAR] = ACTIONS(3067), + [sym_raw_string] = ACTIONS(3065), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3065), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3065), + [anon_sym_BQUOTE] = ACTIONS(3065), + [anon_sym_LT_LPAREN] = ACTIONS(3065), + [anon_sym_GT_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3067), + [sym_word] = ACTIONS(3067), + [anon_sym_LF] = ACTIONS(3065), + [anon_sym_AMP] = ACTIONS(3067), + }, + [2681] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(6353), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [2682] = { + [sym_concatenation] = STATE(2785), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2785), + [anon_sym_RBRACE] = ACTIONS(6333), + [anon_sym_EQ] = ACTIONS(6349), + [anon_sym_DASH] = ACTIONS(6349), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(6351), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(6349), + [anon_sym_COLON_QMARK] = ACTIONS(6349), + [anon_sym_COLON_DASH] = ACTIONS(6349), + [anon_sym_PERCENT] = ACTIONS(6349), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [2683] = { + [sym__concat] = ACTIONS(3120), + [anon_sym_SEMI] = ACTIONS(3122), + [anon_sym_esac] = ACTIONS(3122), + [anon_sym_PIPE] = ACTIONS(3122), + [anon_sym_SEMI_SEMI] = ACTIONS(3120), + [anon_sym_PIPE_AMP] = ACTIONS(3120), + [anon_sym_AMP_AMP] = ACTIONS(3120), + [anon_sym_PIPE_PIPE] = ACTIONS(3120), + [sym__special_characters] = ACTIONS(3120), + [anon_sym_DQUOTE] = ACTIONS(3120), + [anon_sym_DOLLAR] = ACTIONS(3122), + [sym_raw_string] = ACTIONS(3120), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3120), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3120), + [anon_sym_BQUOTE] = ACTIONS(3120), + [anon_sym_LT_LPAREN] = ACTIONS(3120), + [anon_sym_GT_LPAREN] = ACTIONS(3120), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3122), + [sym_word] = ACTIONS(3122), + [anon_sym_LF] = ACTIONS(3120), + [anon_sym_AMP] = ACTIONS(3122), + }, + [2684] = { + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(6359), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), + }, + [2685] = { + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(6359), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), + }, + [2686] = { + [sym__concat] = ACTIONS(3158), + [anon_sym_SEMI] = ACTIONS(3160), + [anon_sym_esac] = ACTIONS(3160), + [anon_sym_PIPE] = ACTIONS(3160), + [anon_sym_SEMI_SEMI] = ACTIONS(3158), + [anon_sym_PIPE_AMP] = ACTIONS(3158), + [anon_sym_AMP_AMP] = ACTIONS(3158), + [anon_sym_PIPE_PIPE] = ACTIONS(3158), + [sym__special_characters] = ACTIONS(3158), + [anon_sym_DQUOTE] = ACTIONS(3158), + [anon_sym_DOLLAR] = ACTIONS(3160), + [sym_raw_string] = ACTIONS(3158), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3158), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3158), + [anon_sym_BQUOTE] = ACTIONS(3158), + [anon_sym_LT_LPAREN] = ACTIONS(3158), + [anon_sym_GT_LPAREN] = ACTIONS(3158), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3160), + [sym_word] = ACTIONS(3160), + [anon_sym_LF] = ACTIONS(3158), + [anon_sym_AMP] = ACTIONS(3160), + }, + [2687] = { + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(6361), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), + }, + [2688] = { + [sym__simple_heredoc_body] = ACTIONS(3934), + [sym__heredoc_body_beginning] = ACTIONS(3934), + [sym_file_descriptor] = ACTIONS(3934), + [sym__concat] = ACTIONS(3934), + [anon_sym_SEMI] = ACTIONS(3936), + [anon_sym_esac] = ACTIONS(3936), + [anon_sym_PIPE] = ACTIONS(3936), + [anon_sym_SEMI_SEMI] = ACTIONS(3934), + [anon_sym_PIPE_AMP] = ACTIONS(3934), + [anon_sym_AMP_AMP] = ACTIONS(3934), + [anon_sym_PIPE_PIPE] = ACTIONS(3934), + [anon_sym_EQ_TILDE] = ACTIONS(3936), + [anon_sym_EQ_EQ] = ACTIONS(3936), + [anon_sym_LT] = ACTIONS(3936), + [anon_sym_GT] = ACTIONS(3936), + [anon_sym_GT_GT] = ACTIONS(3934), + [anon_sym_AMP_GT] = ACTIONS(3936), + [anon_sym_AMP_GT_GT] = ACTIONS(3934), + [anon_sym_LT_AMP] = ACTIONS(3934), + [anon_sym_GT_AMP] = ACTIONS(3934), + [anon_sym_LT_LT] = ACTIONS(3936), + [anon_sym_LT_LT_DASH] = ACTIONS(3934), + [anon_sym_LT_LT_LT] = ACTIONS(3934), + [sym__special_characters] = ACTIONS(3934), + [anon_sym_DQUOTE] = ACTIONS(3934), + [anon_sym_DOLLAR] = ACTIONS(3936), + [sym_raw_string] = ACTIONS(3934), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3934), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3934), + [anon_sym_BQUOTE] = ACTIONS(3934), + [anon_sym_LT_LPAREN] = ACTIONS(3934), + [anon_sym_GT_LPAREN] = ACTIONS(3934), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(3936), + [anon_sym_LF] = ACTIONS(3934), + [anon_sym_AMP] = ACTIONS(3936), + }, + [2689] = { + [sym__simple_heredoc_body] = ACTIONS(3942), + [sym__heredoc_body_beginning] = ACTIONS(3942), + [sym_file_descriptor] = ACTIONS(3942), + [sym__concat] = ACTIONS(3942), + [anon_sym_SEMI] = ACTIONS(3944), + [anon_sym_esac] = ACTIONS(3944), + [anon_sym_PIPE] = ACTIONS(3944), + [anon_sym_SEMI_SEMI] = ACTIONS(3942), + [anon_sym_PIPE_AMP] = ACTIONS(3942), + [anon_sym_AMP_AMP] = ACTIONS(3942), + [anon_sym_PIPE_PIPE] = ACTIONS(3942), + [anon_sym_EQ_TILDE] = ACTIONS(3944), + [anon_sym_EQ_EQ] = ACTIONS(3944), + [anon_sym_LT] = ACTIONS(3944), + [anon_sym_GT] = ACTIONS(3944), + [anon_sym_GT_GT] = ACTIONS(3942), + [anon_sym_AMP_GT] = ACTIONS(3944), + [anon_sym_AMP_GT_GT] = ACTIONS(3942), + [anon_sym_LT_AMP] = ACTIONS(3942), + [anon_sym_GT_AMP] = ACTIONS(3942), + [anon_sym_LT_LT] = ACTIONS(3944), + [anon_sym_LT_LT_DASH] = ACTIONS(3942), + [anon_sym_LT_LT_LT] = ACTIONS(3942), + [sym__special_characters] = ACTIONS(3942), + [anon_sym_DQUOTE] = ACTIONS(3942), + [anon_sym_DOLLAR] = ACTIONS(3944), + [sym_raw_string] = ACTIONS(3942), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3942), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3942), + [anon_sym_BQUOTE] = ACTIONS(3942), + [anon_sym_LT_LPAREN] = ACTIONS(3942), + [anon_sym_GT_LPAREN] = ACTIONS(3942), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(3944), + [anon_sym_LF] = ACTIONS(3942), + [anon_sym_AMP] = ACTIONS(3944), + }, + [2690] = { + [aux_sym_concatenation_repeat1] = STATE(1366), + [sym__concat] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(6363), + [sym_comment] = ACTIONS(55), + }, + [2691] = { + [aux_sym_concatenation_repeat1] = STATE(1366), + [sym__concat] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(6365), + [sym_comment] = ACTIONS(55), + }, + [2692] = { + [anon_sym_RBRACE] = ACTIONS(6365), + [sym_comment] = ACTIONS(55), + }, + [2693] = { + [sym_concatenation] = STATE(2793), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2793), + [anon_sym_RBRACE] = ACTIONS(6367), + [anon_sym_EQ] = ACTIONS(6369), + [anon_sym_DASH] = ACTIONS(6369), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(6371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(6369), + [anon_sym_COLON_QMARK] = ACTIONS(6369), + [anon_sym_COLON_DASH] = ACTIONS(6369), + [anon_sym_PERCENT] = ACTIONS(6369), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [2694] = { + [sym__simple_heredoc_body] = ACTIONS(3998), + [sym__heredoc_body_beginning] = ACTIONS(3998), + [sym_file_descriptor] = ACTIONS(3998), + [sym__concat] = ACTIONS(3998), + [anon_sym_SEMI] = ACTIONS(4000), + [anon_sym_esac] = ACTIONS(4000), + [anon_sym_PIPE] = ACTIONS(4000), + [anon_sym_SEMI_SEMI] = ACTIONS(3998), + [anon_sym_PIPE_AMP] = ACTIONS(3998), + [anon_sym_AMP_AMP] = ACTIONS(3998), + [anon_sym_PIPE_PIPE] = ACTIONS(3998), + [anon_sym_EQ_TILDE] = ACTIONS(4000), + [anon_sym_EQ_EQ] = ACTIONS(4000), + [anon_sym_LT] = ACTIONS(4000), + [anon_sym_GT] = ACTIONS(4000), + [anon_sym_GT_GT] = ACTIONS(3998), + [anon_sym_AMP_GT] = ACTIONS(4000), + [anon_sym_AMP_GT_GT] = ACTIONS(3998), + [anon_sym_LT_AMP] = ACTIONS(3998), + [anon_sym_GT_AMP] = ACTIONS(3998), + [anon_sym_LT_LT] = ACTIONS(4000), + [anon_sym_LT_LT_DASH] = ACTIONS(3998), + [anon_sym_LT_LT_LT] = ACTIONS(3998), + [sym__special_characters] = ACTIONS(3998), + [anon_sym_DQUOTE] = ACTIONS(3998), + [anon_sym_DOLLAR] = ACTIONS(4000), + [sym_raw_string] = ACTIONS(3998), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3998), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3998), + [anon_sym_BQUOTE] = ACTIONS(3998), + [anon_sym_LT_LPAREN] = ACTIONS(3998), + [anon_sym_GT_LPAREN] = ACTIONS(3998), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(4000), + [anon_sym_LF] = ACTIONS(3998), + [anon_sym_AMP] = ACTIONS(4000), + }, + [2695] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(6367), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [2696] = { + [sym_concatenation] = STATE(2794), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2794), + [anon_sym_RBRACE] = ACTIONS(6365), + [anon_sym_EQ] = ACTIONS(6373), + [anon_sym_DASH] = ACTIONS(6373), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(6375), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(6373), + [anon_sym_COLON_QMARK] = ACTIONS(6373), + [anon_sym_COLON_DASH] = ACTIONS(6373), + [anon_sym_PERCENT] = ACTIONS(6373), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [2697] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(6365), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [2698] = { + [sym__simple_heredoc_body] = ACTIONS(4043), + [sym__heredoc_body_beginning] = ACTIONS(4043), + [sym_file_descriptor] = ACTIONS(4043), + [sym__concat] = ACTIONS(4043), + [anon_sym_SEMI] = ACTIONS(4045), + [anon_sym_esac] = ACTIONS(4045), + [anon_sym_PIPE] = ACTIONS(4045), + [anon_sym_SEMI_SEMI] = ACTIONS(4043), + [anon_sym_PIPE_AMP] = ACTIONS(4043), + [anon_sym_AMP_AMP] = ACTIONS(4043), + [anon_sym_PIPE_PIPE] = ACTIONS(4043), + [anon_sym_EQ_TILDE] = ACTIONS(4045), + [anon_sym_EQ_EQ] = ACTIONS(4045), + [anon_sym_LT] = ACTIONS(4045), + [anon_sym_GT] = ACTIONS(4045), + [anon_sym_GT_GT] = ACTIONS(4043), + [anon_sym_AMP_GT] = ACTIONS(4045), + [anon_sym_AMP_GT_GT] = ACTIONS(4043), + [anon_sym_LT_AMP] = ACTIONS(4043), + [anon_sym_GT_AMP] = ACTIONS(4043), + [anon_sym_LT_LT] = ACTIONS(4045), + [anon_sym_LT_LT_DASH] = ACTIONS(4043), + [anon_sym_LT_LT_LT] = ACTIONS(4043), + [sym__special_characters] = ACTIONS(4043), + [anon_sym_DQUOTE] = ACTIONS(4043), + [anon_sym_DOLLAR] = ACTIONS(4045), + [sym_raw_string] = ACTIONS(4043), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4043), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4043), + [anon_sym_BQUOTE] = ACTIONS(4043), + [anon_sym_LT_LPAREN] = ACTIONS(4043), + [anon_sym_GT_LPAREN] = ACTIONS(4043), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(4045), + [anon_sym_LF] = ACTIONS(4043), + [anon_sym_AMP] = ACTIONS(4045), + }, + [2699] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(6377), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [2700] = { + [sym__simple_heredoc_body] = ACTIONS(4065), + [sym__heredoc_body_beginning] = ACTIONS(4065), + [sym_file_descriptor] = ACTIONS(4065), + [sym__concat] = ACTIONS(4065), + [anon_sym_SEMI] = ACTIONS(4067), + [anon_sym_esac] = ACTIONS(4067), + [anon_sym_PIPE] = ACTIONS(4067), + [anon_sym_SEMI_SEMI] = ACTIONS(4065), + [anon_sym_PIPE_AMP] = ACTIONS(4065), + [anon_sym_AMP_AMP] = ACTIONS(4065), + [anon_sym_PIPE_PIPE] = ACTIONS(4065), + [anon_sym_EQ_TILDE] = ACTIONS(4067), + [anon_sym_EQ_EQ] = ACTIONS(4067), + [anon_sym_LT] = ACTIONS(4067), + [anon_sym_GT] = ACTIONS(4067), + [anon_sym_GT_GT] = ACTIONS(4065), + [anon_sym_AMP_GT] = ACTIONS(4067), + [anon_sym_AMP_GT_GT] = ACTIONS(4065), + [anon_sym_LT_AMP] = ACTIONS(4065), + [anon_sym_GT_AMP] = ACTIONS(4065), + [anon_sym_LT_LT] = ACTIONS(4067), + [anon_sym_LT_LT_DASH] = ACTIONS(4065), + [anon_sym_LT_LT_LT] = ACTIONS(4065), + [sym__special_characters] = ACTIONS(4065), + [anon_sym_DQUOTE] = ACTIONS(4065), + [anon_sym_DOLLAR] = ACTIONS(4067), + [sym_raw_string] = ACTIONS(4065), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4065), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4065), + [anon_sym_BQUOTE] = ACTIONS(4065), + [anon_sym_LT_LPAREN] = ACTIONS(4065), + [anon_sym_GT_LPAREN] = ACTIONS(4065), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(4067), + [anon_sym_LF] = ACTIONS(4065), + [anon_sym_AMP] = ACTIONS(4067), + }, + [2701] = { + [sym__simple_heredoc_body] = ACTIONS(4089), + [sym__heredoc_body_beginning] = ACTIONS(4089), + [sym_file_descriptor] = ACTIONS(4089), + [sym__concat] = ACTIONS(4089), + [anon_sym_SEMI] = ACTIONS(4091), + [anon_sym_esac] = ACTIONS(4091), + [anon_sym_PIPE] = ACTIONS(4091), + [anon_sym_SEMI_SEMI] = ACTIONS(4089), + [anon_sym_PIPE_AMP] = ACTIONS(4089), + [anon_sym_AMP_AMP] = ACTIONS(4089), + [anon_sym_PIPE_PIPE] = ACTIONS(4089), + [anon_sym_EQ_TILDE] = ACTIONS(4091), + [anon_sym_EQ_EQ] = ACTIONS(4091), + [anon_sym_LT] = ACTIONS(4091), + [anon_sym_GT] = ACTIONS(4091), + [anon_sym_GT_GT] = ACTIONS(4089), + [anon_sym_AMP_GT] = ACTIONS(4091), + [anon_sym_AMP_GT_GT] = ACTIONS(4089), + [anon_sym_LT_AMP] = ACTIONS(4089), + [anon_sym_GT_AMP] = ACTIONS(4089), + [anon_sym_LT_LT] = ACTIONS(4091), + [anon_sym_LT_LT_DASH] = ACTIONS(4089), + [anon_sym_LT_LT_LT] = ACTIONS(4089), + [sym__special_characters] = ACTIONS(4089), + [anon_sym_DQUOTE] = ACTIONS(4089), + [anon_sym_DOLLAR] = ACTIONS(4091), + [sym_raw_string] = ACTIONS(4089), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4089), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4089), + [anon_sym_BQUOTE] = ACTIONS(4089), + [anon_sym_LT_LPAREN] = ACTIONS(4089), + [anon_sym_GT_LPAREN] = ACTIONS(4089), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(4091), + [anon_sym_LF] = ACTIONS(4089), + [anon_sym_AMP] = ACTIONS(4091), + }, + [2702] = { + [sym__simple_heredoc_body] = ACTIONS(1763), + [sym__heredoc_body_beginning] = ACTIONS(1763), + [sym_file_descriptor] = ACTIONS(1763), + [sym__concat] = ACTIONS(1763), + [anon_sym_SEMI] = ACTIONS(1765), + [anon_sym_esac] = ACTIONS(1763), + [anon_sym_PIPE] = ACTIONS(1765), + [anon_sym_SEMI_SEMI] = ACTIONS(1763), + [anon_sym_PIPE_AMP] = ACTIONS(1763), + [anon_sym_AMP_AMP] = ACTIONS(1763), + [anon_sym_PIPE_PIPE] = ACTIONS(1763), + [anon_sym_LT] = ACTIONS(1765), + [anon_sym_GT] = ACTIONS(1765), + [anon_sym_GT_GT] = ACTIONS(1763), + [anon_sym_AMP_GT] = ACTIONS(1765), + [anon_sym_AMP_GT_GT] = ACTIONS(1763), + [anon_sym_LT_AMP] = ACTIONS(1763), + [anon_sym_GT_AMP] = ACTIONS(1763), + [anon_sym_LT_LT] = ACTIONS(1765), + [anon_sym_LT_LT_DASH] = ACTIONS(1763), + [anon_sym_LT_LT_LT] = ACTIONS(1763), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1763), + [anon_sym_AMP] = ACTIONS(1765), + }, + [2703] = { + [aux_sym_concatenation_repeat1] = STATE(2703), + [sym__simple_heredoc_body] = ACTIONS(1763), + [sym__heredoc_body_beginning] = ACTIONS(1763), + [sym_file_descriptor] = ACTIONS(1763), + [sym__concat] = ACTIONS(6379), + [anon_sym_SEMI] = ACTIONS(1765), + [anon_sym_esac] = ACTIONS(1763), + [anon_sym_PIPE] = ACTIONS(1765), + [anon_sym_SEMI_SEMI] = ACTIONS(1763), + [anon_sym_PIPE_AMP] = ACTIONS(1763), + [anon_sym_AMP_AMP] = ACTIONS(1763), + [anon_sym_PIPE_PIPE] = ACTIONS(1763), + [anon_sym_LT] = ACTIONS(1765), + [anon_sym_GT] = ACTIONS(1765), + [anon_sym_GT_GT] = ACTIONS(1763), + [anon_sym_AMP_GT] = ACTIONS(1765), + [anon_sym_AMP_GT_GT] = ACTIONS(1763), + [anon_sym_LT_AMP] = ACTIONS(1763), + [anon_sym_GT_AMP] = ACTIONS(1763), + [anon_sym_LT_LT] = ACTIONS(1765), + [anon_sym_LT_LT_DASH] = ACTIONS(1763), + [anon_sym_LT_LT_LT] = ACTIONS(1763), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1763), + [anon_sym_AMP] = ACTIONS(1765), + }, + [2704] = { + [sym__simple_heredoc_body] = ACTIONS(1770), + [sym__heredoc_body_beginning] = ACTIONS(1770), + [sym_file_descriptor] = ACTIONS(1770), + [sym__concat] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(1772), + [anon_sym_esac] = ACTIONS(1770), + [anon_sym_PIPE] = ACTIONS(1772), + [anon_sym_SEMI_SEMI] = ACTIONS(1770), + [anon_sym_PIPE_AMP] = ACTIONS(1770), + [anon_sym_AMP_AMP] = ACTIONS(1770), + [anon_sym_PIPE_PIPE] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1772), + [anon_sym_GT] = ACTIONS(1772), + [anon_sym_GT_GT] = ACTIONS(1770), + [anon_sym_AMP_GT] = ACTIONS(1772), + [anon_sym_AMP_GT_GT] = ACTIONS(1770), + [anon_sym_LT_AMP] = ACTIONS(1770), + [anon_sym_GT_AMP] = ACTIONS(1770), + [anon_sym_LT_LT] = ACTIONS(1772), + [anon_sym_LT_LT_DASH] = ACTIONS(1770), + [anon_sym_LT_LT_LT] = ACTIONS(1770), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1770), + [anon_sym_AMP] = ACTIONS(1772), + }, + [2705] = { + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_DQUOTE] = ACTIONS(6382), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym__string_content] = ACTIONS(821), + [anon_sym_POUND] = ACTIONS(815), + [sym_comment] = ACTIONS(281), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(823), + [anon_sym_STAR] = ACTIONS(825), + [anon_sym_AT] = ACTIONS(825), + [anon_sym_QMARK] = ACTIONS(825), + [anon_sym_0] = ACTIONS(823), + [anon_sym__] = ACTIONS(823), + }, + [2706] = { + [sym_concatenation] = STATE(2800), + [sym_string] = STATE(2799), + [sym_simple_expansion] = STATE(2799), + [sym_string_expansion] = STATE(2799), + [sym_expansion] = STATE(2799), + [sym_command_substitution] = STATE(2799), + [sym_process_substitution] = STATE(2799), + [anon_sym_RBRACE] = ACTIONS(6384), + [sym__special_characters] = ACTIONS(6386), + [anon_sym_DQUOTE] = ACTIONS(1841), + [anon_sym_DOLLAR] = ACTIONS(1843), + [sym_raw_string] = ACTIONS(6388), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1849), + [anon_sym_BQUOTE] = ACTIONS(1851), + [anon_sym_LT_LPAREN] = ACTIONS(1853), + [anon_sym_GT_LPAREN] = ACTIONS(1853), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(6388), + }, + [2707] = { + [anon_sym_LBRACK] = ACTIONS(857), + [anon_sym_EQ] = ACTIONS(6390), + [sym_comment] = ACTIONS(55), + }, + [2708] = { + [sym_concatenation] = STATE(2804), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2804), + [anon_sym_RBRACE] = ACTIONS(6392), + [anon_sym_EQ] = ACTIONS(6394), + [anon_sym_DASH] = ACTIONS(6394), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(6396), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(6398), + [anon_sym_COLON] = ACTIONS(6394), + [anon_sym_COLON_QMARK] = ACTIONS(6394), + [anon_sym_COLON_DASH] = ACTIONS(6394), + [anon_sym_PERCENT] = ACTIONS(6394), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [2709] = { + [sym_concatenation] = STATE(2806), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2806), + [anon_sym_RBRACE] = ACTIONS(6384), + [anon_sym_EQ] = ACTIONS(6400), + [anon_sym_DASH] = ACTIONS(6400), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(6402), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(6404), + [anon_sym_COLON] = ACTIONS(6400), + [anon_sym_COLON_QMARK] = ACTIONS(6400), + [anon_sym_COLON_DASH] = ACTIONS(6400), + [anon_sym_PERCENT] = ACTIONS(6400), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [2710] = { + [sym__simple_heredoc_body] = ACTIONS(1871), + [sym__heredoc_body_beginning] = ACTIONS(1871), + [sym_file_descriptor] = ACTIONS(1871), + [sym__concat] = ACTIONS(1871), + [anon_sym_SEMI] = ACTIONS(1873), + [anon_sym_esac] = ACTIONS(1871), + [anon_sym_PIPE] = ACTIONS(1873), + [anon_sym_SEMI_SEMI] = ACTIONS(1871), + [anon_sym_PIPE_AMP] = ACTIONS(1871), + [anon_sym_AMP_AMP] = ACTIONS(1871), + [anon_sym_PIPE_PIPE] = ACTIONS(1871), + [anon_sym_LT] = ACTIONS(1873), + [anon_sym_GT] = ACTIONS(1873), + [anon_sym_GT_GT] = ACTIONS(1871), + [anon_sym_AMP_GT] = ACTIONS(1873), + [anon_sym_AMP_GT_GT] = ACTIONS(1871), + [anon_sym_LT_AMP] = ACTIONS(1871), + [anon_sym_GT_AMP] = ACTIONS(1871), + [anon_sym_LT_LT] = ACTIONS(1873), + [anon_sym_LT_LT_DASH] = ACTIONS(1871), + [anon_sym_LT_LT_LT] = ACTIONS(1871), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1871), + [anon_sym_AMP] = ACTIONS(1873), + }, + [2711] = { + [sym_concatenation] = STATE(2809), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2809), + [sym_regex] = ACTIONS(6406), + [anon_sym_RBRACE] = ACTIONS(6408), + [anon_sym_EQ] = ACTIONS(6410), + [anon_sym_DASH] = ACTIONS(6410), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(6412), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(6410), + [anon_sym_COLON_QMARK] = ACTIONS(6410), + [anon_sym_COLON_DASH] = ACTIONS(6410), + [anon_sym_PERCENT] = ACTIONS(6410), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [2712] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(6408), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [2713] = { + [sym__simple_heredoc_body] = ACTIONS(1919), + [sym__heredoc_body_beginning] = ACTIONS(1919), + [sym_file_descriptor] = ACTIONS(1919), + [sym__concat] = ACTIONS(1919), + [anon_sym_SEMI] = ACTIONS(1921), + [anon_sym_esac] = ACTIONS(1919), + [anon_sym_PIPE] = ACTIONS(1921), + [anon_sym_SEMI_SEMI] = ACTIONS(1919), + [anon_sym_PIPE_AMP] = ACTIONS(1919), + [anon_sym_AMP_AMP] = ACTIONS(1919), + [anon_sym_PIPE_PIPE] = ACTIONS(1919), + [anon_sym_LT] = ACTIONS(1921), + [anon_sym_GT] = ACTIONS(1921), + [anon_sym_GT_GT] = ACTIONS(1919), + [anon_sym_AMP_GT] = ACTIONS(1921), + [anon_sym_AMP_GT_GT] = ACTIONS(1919), + [anon_sym_LT_AMP] = ACTIONS(1919), + [anon_sym_GT_AMP] = ACTIONS(1919), + [anon_sym_LT_LT] = ACTIONS(1921), + [anon_sym_LT_LT_DASH] = ACTIONS(1919), + [anon_sym_LT_LT_LT] = ACTIONS(1919), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1919), + [anon_sym_AMP] = ACTIONS(1921), + }, + [2714] = { + [sym_concatenation] = STATE(2806), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2806), + [sym_regex] = ACTIONS(6414), + [anon_sym_RBRACE] = ACTIONS(6384), + [anon_sym_EQ] = ACTIONS(6400), + [anon_sym_DASH] = ACTIONS(6400), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(6402), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(6400), + [anon_sym_COLON_QMARK] = ACTIONS(6400), + [anon_sym_COLON_DASH] = ACTIONS(6400), + [anon_sym_PERCENT] = ACTIONS(6400), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2715] = { - [sym__concat] = ACTIONS(3852), - [sym_variable_name] = ACTIONS(3852), - [anon_sym_SEMI] = ACTIONS(3854), - [anon_sym_esac] = ACTIONS(3854), - [anon_sym_PIPE] = ACTIONS(3854), - [anon_sym_SEMI_SEMI] = ACTIONS(3852), - [anon_sym_PIPE_AMP] = ACTIONS(3852), - [anon_sym_AMP_AMP] = ACTIONS(3852), - [anon_sym_PIPE_PIPE] = ACTIONS(3852), - [sym__special_characters] = ACTIONS(3852), - [anon_sym_DQUOTE] = ACTIONS(3852), - [anon_sym_DOLLAR] = ACTIONS(3854), - [sym_raw_string] = ACTIONS(3852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3852), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3852), - [anon_sym_BQUOTE] = ACTIONS(3852), - [anon_sym_LT_LPAREN] = ACTIONS(3852), - [anon_sym_GT_LPAREN] = ACTIONS(3852), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3854), - [sym_word] = ACTIONS(3854), - [anon_sym_LF] = ACTIONS(3852), - [anon_sym_AMP] = ACTIONS(3854), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(6384), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2716] = { - [sym_concatenation] = STATE(2781), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(2781), - [anon_sym_RBRACE] = ACTIONS(6351), - [anon_sym_EQ] = ACTIONS(6359), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(6361), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(6359), - [anon_sym_COLON_QMARK] = ACTIONS(6359), - [anon_sym_COLON_DASH] = ACTIONS(6359), - [anon_sym_PERCENT] = ACTIONS(6359), - [anon_sym_DASH] = ACTIONS(6359), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(6416), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), }, [2717] = { - [sym__concat] = ACTIONS(3893), - [sym_variable_name] = ACTIONS(3893), - [anon_sym_SEMI] = ACTIONS(3895), - [anon_sym_esac] = ACTIONS(3895), - [anon_sym_PIPE] = ACTIONS(3895), - [anon_sym_SEMI_SEMI] = ACTIONS(3893), - [anon_sym_PIPE_AMP] = ACTIONS(3893), - [anon_sym_AMP_AMP] = ACTIONS(3893), - [anon_sym_PIPE_PIPE] = ACTIONS(3893), - [sym__special_characters] = ACTIONS(3893), - [anon_sym_DQUOTE] = ACTIONS(3893), - [anon_sym_DOLLAR] = ACTIONS(3895), - [sym_raw_string] = ACTIONS(3893), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3893), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3893), - [anon_sym_BQUOTE] = ACTIONS(3893), - [anon_sym_LT_LPAREN] = ACTIONS(3893), - [anon_sym_GT_LPAREN] = ACTIONS(3893), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3895), - [sym_word] = ACTIONS(3895), - [anon_sym_LF] = ACTIONS(3893), - [anon_sym_AMP] = ACTIONS(3895), + [sym__simple_heredoc_body] = ACTIONS(1927), + [sym__heredoc_body_beginning] = ACTIONS(1927), + [sym_file_descriptor] = ACTIONS(1927), + [sym__concat] = ACTIONS(1927), + [anon_sym_SEMI] = ACTIONS(1929), + [anon_sym_esac] = ACTIONS(1927), + [anon_sym_PIPE] = ACTIONS(1929), + [anon_sym_SEMI_SEMI] = ACTIONS(1927), + [anon_sym_PIPE_AMP] = ACTIONS(1927), + [anon_sym_AMP_AMP] = ACTIONS(1927), + [anon_sym_PIPE_PIPE] = ACTIONS(1927), + [anon_sym_LT] = ACTIONS(1929), + [anon_sym_GT] = ACTIONS(1929), + [anon_sym_GT_GT] = ACTIONS(1927), + [anon_sym_AMP_GT] = ACTIONS(1929), + [anon_sym_AMP_GT_GT] = ACTIONS(1927), + [anon_sym_LT_AMP] = ACTIONS(1927), + [anon_sym_GT_AMP] = ACTIONS(1927), + [anon_sym_LT_LT] = ACTIONS(1929), + [anon_sym_LT_LT_DASH] = ACTIONS(1927), + [anon_sym_LT_LT_LT] = ACTIONS(1927), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1929), }, [2718] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(6363), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [anon_sym_SEMI] = ACTIONS(6418), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(6416), + [anon_sym_SEMI_SEMI] = ACTIONS(6420), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(6420), + [anon_sym_AMP] = ACTIONS(6418), }, [2719] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(6351), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(6418), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(6416), + [anon_sym_SEMI_SEMI] = ACTIONS(6420), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(6420), + [anon_sym_AMP] = ACTIONS(6418), }, [2720] = { - [sym__concat] = ACTIONS(3915), - [sym_variable_name] = ACTIONS(3915), - [anon_sym_SEMI] = ACTIONS(3917), - [anon_sym_esac] = ACTIONS(3917), - [anon_sym_PIPE] = ACTIONS(3917), - [anon_sym_SEMI_SEMI] = ACTIONS(3915), - [anon_sym_PIPE_AMP] = ACTIONS(3915), - [anon_sym_AMP_AMP] = ACTIONS(3915), - [anon_sym_PIPE_PIPE] = ACTIONS(3915), - [sym__special_characters] = ACTIONS(3915), - [anon_sym_DQUOTE] = ACTIONS(3915), - [anon_sym_DOLLAR] = ACTIONS(3917), - [sym_raw_string] = ACTIONS(3915), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3915), - [anon_sym_BQUOTE] = ACTIONS(3915), - [anon_sym_LT_LPAREN] = ACTIONS(3915), - [anon_sym_GT_LPAREN] = ACTIONS(3915), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3917), - [sym_word] = ACTIONS(3917), - [anon_sym_LF] = ACTIONS(3915), - [anon_sym_AMP] = ACTIONS(3917), + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(6416), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), }, [2721] = { - [sym__concat] = ACTIONS(3939), - [sym_variable_name] = ACTIONS(3939), - [anon_sym_SEMI] = ACTIONS(3941), - [anon_sym_esac] = ACTIONS(3941), - [anon_sym_PIPE] = ACTIONS(3941), - [anon_sym_SEMI_SEMI] = ACTIONS(3939), - [anon_sym_PIPE_AMP] = ACTIONS(3939), - [anon_sym_AMP_AMP] = ACTIONS(3939), - [anon_sym_PIPE_PIPE] = ACTIONS(3939), - [sym__special_characters] = ACTIONS(3939), - [anon_sym_DQUOTE] = ACTIONS(3939), - [anon_sym_DOLLAR] = ACTIONS(3941), - [sym_raw_string] = ACTIONS(3939), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3939), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3939), - [anon_sym_BQUOTE] = ACTIONS(3939), - [anon_sym_LT_LPAREN] = ACTIONS(3939), - [anon_sym_GT_LPAREN] = ACTIONS(3939), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3941), - [sym_word] = ACTIONS(3941), - [anon_sym_LF] = ACTIONS(3939), - [anon_sym_AMP] = ACTIONS(3941), + [anon_sym_SEMI] = ACTIONS(6422), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_SEMI_SEMI] = ACTIONS(6424), + [anon_sym_PIPE_AMP] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_BQUOTE] = ACTIONS(6416), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(6424), + [anon_sym_AMP] = ACTIONS(6422), }, [2722] = { - [sym__concat] = ACTIONS(3788), - [anon_sym_SEMI] = ACTIONS(3790), - [anon_sym_esac] = ACTIONS(3790), - [anon_sym_PIPE] = ACTIONS(3790), - [anon_sym_SEMI_SEMI] = ACTIONS(3788), - [anon_sym_PIPE_AMP] = ACTIONS(3788), - [anon_sym_AMP_AMP] = ACTIONS(3788), - [anon_sym_PIPE_PIPE] = ACTIONS(3788), - [sym__special_characters] = ACTIONS(3788), - [anon_sym_DQUOTE] = ACTIONS(3788), - [anon_sym_DOLLAR] = ACTIONS(3790), - [sym_raw_string] = ACTIONS(3788), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3788), - [anon_sym_BQUOTE] = ACTIONS(3788), - [anon_sym_LT_LPAREN] = ACTIONS(3788), - [anon_sym_GT_LPAREN] = ACTIONS(3788), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3790), - [sym_word] = ACTIONS(3790), - [anon_sym_LF] = ACTIONS(3788), - [anon_sym_AMP] = ACTIONS(3790), + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(6422), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_SEMI_SEMI] = ACTIONS(6424), + [anon_sym_PIPE_AMP] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(6416), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(6424), + [anon_sym_AMP] = ACTIONS(6422), }, [2723] = { - [sym__concat] = ACTIONS(3796), - [anon_sym_SEMI] = ACTIONS(3798), - [anon_sym_esac] = ACTIONS(3798), - [anon_sym_PIPE] = ACTIONS(3798), - [anon_sym_SEMI_SEMI] = ACTIONS(3796), - [anon_sym_PIPE_AMP] = ACTIONS(3796), - [anon_sym_AMP_AMP] = ACTIONS(3796), - [anon_sym_PIPE_PIPE] = ACTIONS(3796), - [sym__special_characters] = ACTIONS(3796), - [anon_sym_DQUOTE] = ACTIONS(3796), - [anon_sym_DOLLAR] = ACTIONS(3798), - [sym_raw_string] = ACTIONS(3796), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3796), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3796), - [anon_sym_BQUOTE] = ACTIONS(3796), - [anon_sym_LT_LPAREN] = ACTIONS(3796), - [anon_sym_GT_LPAREN] = ACTIONS(3796), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3798), - [sym_word] = ACTIONS(3798), - [anon_sym_LF] = ACTIONS(3796), - [anon_sym_AMP] = ACTIONS(3798), + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(6426), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), }, [2724] = { - [aux_sym_concatenation_repeat1] = STATE(1293), - [sym__concat] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(6365), - [sym_comment] = ACTIONS(53), + [sym__simple_heredoc_body] = ACTIONS(1959), + [sym__heredoc_body_beginning] = ACTIONS(1959), + [sym_file_descriptor] = ACTIONS(1959), + [sym__concat] = ACTIONS(1959), + [anon_sym_SEMI] = ACTIONS(1961), + [anon_sym_esac] = ACTIONS(1959), + [anon_sym_PIPE] = ACTIONS(1961), + [anon_sym_SEMI_SEMI] = ACTIONS(1959), + [anon_sym_PIPE_AMP] = ACTIONS(1959), + [anon_sym_AMP_AMP] = ACTIONS(1959), + [anon_sym_PIPE_PIPE] = ACTIONS(1959), + [anon_sym_LT] = ACTIONS(1961), + [anon_sym_GT] = ACTIONS(1961), + [anon_sym_GT_GT] = ACTIONS(1959), + [anon_sym_AMP_GT] = ACTIONS(1961), + [anon_sym_AMP_GT_GT] = ACTIONS(1959), + [anon_sym_LT_AMP] = ACTIONS(1959), + [anon_sym_GT_AMP] = ACTIONS(1959), + [anon_sym_LT_LT] = ACTIONS(1961), + [anon_sym_LT_LT_DASH] = ACTIONS(1959), + [anon_sym_LT_LT_LT] = ACTIONS(1959), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1959), + [anon_sym_AMP] = ACTIONS(1961), }, [2725] = { - [aux_sym_concatenation_repeat1] = STATE(1293), - [sym__concat] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(6367), - [sym_comment] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(6428), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(6426), + [anon_sym_SEMI_SEMI] = ACTIONS(6430), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(6430), + [anon_sym_AMP] = ACTIONS(6428), }, [2726] = { - [anon_sym_RBRACE] = ACTIONS(6367), - [sym_comment] = ACTIONS(53), + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(6428), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(6426), + [anon_sym_SEMI_SEMI] = ACTIONS(6430), + [anon_sym_PIPE_AMP] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(6430), + [anon_sym_AMP] = ACTIONS(6428), }, [2727] = { - [sym_concatenation] = STATE(2786), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(2786), - [anon_sym_RBRACE] = ACTIONS(6369), - [anon_sym_EQ] = ACTIONS(6371), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(6373), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(6371), - [anon_sym_COLON_QMARK] = ACTIONS(6371), - [anon_sym_COLON_DASH] = ACTIONS(6371), - [anon_sym_PERCENT] = ACTIONS(6371), - [anon_sym_DASH] = ACTIONS(6371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_SEMI_SEMI] = ACTIONS(943), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(5908), + [anon_sym_DQUOTE] = ACTIONS(5910), + [anon_sym_DOLLAR] = ACTIONS(5908), + [sym_raw_string] = ACTIONS(5910), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5910), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5910), + [anon_sym_BQUOTE] = ACTIONS(5910), + [anon_sym_LT_LPAREN] = ACTIONS(5910), + [anon_sym_GT_LPAREN] = ACTIONS(5910), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(5908), }, [2728] = { - [sym__concat] = ACTIONS(3852), - [anon_sym_SEMI] = ACTIONS(3854), - [anon_sym_esac] = ACTIONS(3854), - [anon_sym_PIPE] = ACTIONS(3854), - [anon_sym_SEMI_SEMI] = ACTIONS(3852), - [anon_sym_PIPE_AMP] = ACTIONS(3852), - [anon_sym_AMP_AMP] = ACTIONS(3852), - [anon_sym_PIPE_PIPE] = ACTIONS(3852), - [sym__special_characters] = ACTIONS(3852), - [anon_sym_DQUOTE] = ACTIONS(3852), - [anon_sym_DOLLAR] = ACTIONS(3854), - [sym_raw_string] = ACTIONS(3852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3852), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3852), - [anon_sym_BQUOTE] = ACTIONS(3852), - [anon_sym_LT_LPAREN] = ACTIONS(3852), - [anon_sym_GT_LPAREN] = ACTIONS(3852), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3854), - [sym_word] = ACTIONS(3854), - [anon_sym_LF] = ACTIONS(3852), - [anon_sym_AMP] = ACTIONS(3854), + [sym__special_characters] = ACTIONS(5910), + [anon_sym_DQUOTE] = ACTIONS(5910), + [anon_sym_DOLLAR] = ACTIONS(5908), + [sym_raw_string] = ACTIONS(5910), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5910), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5910), + [anon_sym_BQUOTE] = ACTIONS(5910), + [anon_sym_LT_LPAREN] = ACTIONS(5910), + [anon_sym_GT_LPAREN] = ACTIONS(5910), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(5910), }, [2729] = { - [sym_concatenation] = STATE(2787), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(2787), - [anon_sym_RBRACE] = ACTIONS(6367), - [anon_sym_EQ] = ACTIONS(6375), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(6377), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(6375), - [anon_sym_COLON_QMARK] = ACTIONS(6375), - [anon_sym_COLON_DASH] = ACTIONS(6375), - [anon_sym_PERCENT] = ACTIONS(6375), - [anon_sym_DASH] = ACTIONS(6375), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [anon_sym_SEMI] = ACTIONS(2081), + [anon_sym_PIPE] = ACTIONS(529), + [anon_sym_SEMI_SEMI] = ACTIONS(6432), + [anon_sym_PIPE_AMP] = ACTIONS(533), + [anon_sym_AMP_AMP] = ACTIONS(535), + [anon_sym_PIPE_PIPE] = ACTIONS(535), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2083), + [anon_sym_AMP] = ACTIONS(2081), }, [2730] = { - [sym__concat] = ACTIONS(3893), - [anon_sym_SEMI] = ACTIONS(3895), - [anon_sym_esac] = ACTIONS(3895), - [anon_sym_PIPE] = ACTIONS(3895), - [anon_sym_SEMI_SEMI] = ACTIONS(3893), - [anon_sym_PIPE_AMP] = ACTIONS(3893), - [anon_sym_AMP_AMP] = ACTIONS(3893), - [anon_sym_PIPE_PIPE] = ACTIONS(3893), - [sym__special_characters] = ACTIONS(3893), - [anon_sym_DQUOTE] = ACTIONS(3893), - [anon_sym_DOLLAR] = ACTIONS(3895), - [sym_raw_string] = ACTIONS(3893), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3893), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3893), - [anon_sym_BQUOTE] = ACTIONS(3893), - [anon_sym_LT_LPAREN] = ACTIONS(3893), - [anon_sym_GT_LPAREN] = ACTIONS(3893), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3895), - [sym_word] = ACTIONS(3895), - [anon_sym_LF] = ACTIONS(3893), - [anon_sym_AMP] = ACTIONS(3895), + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(2081), + [anon_sym_PIPE] = ACTIONS(529), + [anon_sym_SEMI_SEMI] = ACTIONS(6432), + [anon_sym_PIPE_AMP] = ACTIONS(533), + [anon_sym_AMP_AMP] = ACTIONS(535), + [anon_sym_PIPE_PIPE] = ACTIONS(535), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(2083), + [anon_sym_AMP] = ACTIONS(2081), }, [2731] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(6379), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_SEMI_SEMI] = ACTIONS(943), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(5918), + [anon_sym_DQUOTE] = ACTIONS(5920), + [anon_sym_DOLLAR] = ACTIONS(5918), + [sym_raw_string] = ACTIONS(5920), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5920), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5920), + [anon_sym_BQUOTE] = ACTIONS(5920), + [anon_sym_LT_LPAREN] = ACTIONS(5920), + [anon_sym_GT_LPAREN] = ACTIONS(5920), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(5918), }, [2732] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(6367), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym__special_characters] = ACTIONS(5920), + [anon_sym_DQUOTE] = ACTIONS(5920), + [anon_sym_DOLLAR] = ACTIONS(5918), + [sym_raw_string] = ACTIONS(5920), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5920), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5920), + [anon_sym_BQUOTE] = ACTIONS(5920), + [anon_sym_LT_LPAREN] = ACTIONS(5920), + [anon_sym_GT_LPAREN] = ACTIONS(5920), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(5920), }, [2733] = { - [sym__concat] = ACTIONS(3915), - [anon_sym_SEMI] = ACTIONS(3917), - [anon_sym_esac] = ACTIONS(3917), - [anon_sym_PIPE] = ACTIONS(3917), - [anon_sym_SEMI_SEMI] = ACTIONS(3915), - [anon_sym_PIPE_AMP] = ACTIONS(3915), - [anon_sym_AMP_AMP] = ACTIONS(3915), - [anon_sym_PIPE_PIPE] = ACTIONS(3915), - [sym__special_characters] = ACTIONS(3915), - [anon_sym_DQUOTE] = ACTIONS(3915), - [anon_sym_DOLLAR] = ACTIONS(3917), - [sym_raw_string] = ACTIONS(3915), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3915), - [anon_sym_BQUOTE] = ACTIONS(3915), - [anon_sym_LT_LPAREN] = ACTIONS(3915), - [anon_sym_GT_LPAREN] = ACTIONS(3915), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3917), - [sym_word] = ACTIONS(3917), - [anon_sym_LF] = ACTIONS(3915), - [anon_sym_AMP] = ACTIONS(3917), + [anon_sym_SEMI] = ACTIONS(2081), + [anon_sym_PIPE] = ACTIONS(529), + [anon_sym_SEMI_SEMI] = ACTIONS(6434), + [anon_sym_PIPE_AMP] = ACTIONS(533), + [anon_sym_AMP_AMP] = ACTIONS(535), + [anon_sym_PIPE_PIPE] = ACTIONS(535), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2083), + [anon_sym_AMP] = ACTIONS(2081), }, [2734] = { - [sym__concat] = ACTIONS(3939), - [anon_sym_SEMI] = ACTIONS(3941), - [anon_sym_esac] = ACTIONS(3941), - [anon_sym_PIPE] = ACTIONS(3941), - [anon_sym_SEMI_SEMI] = ACTIONS(3939), - [anon_sym_PIPE_AMP] = ACTIONS(3939), - [anon_sym_AMP_AMP] = ACTIONS(3939), - [anon_sym_PIPE_PIPE] = ACTIONS(3939), - [sym__special_characters] = ACTIONS(3939), - [anon_sym_DQUOTE] = ACTIONS(3939), - [anon_sym_DOLLAR] = ACTIONS(3941), - [sym_raw_string] = ACTIONS(3939), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3939), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3939), - [anon_sym_BQUOTE] = ACTIONS(3939), - [anon_sym_LT_LPAREN] = ACTIONS(3939), - [anon_sym_GT_LPAREN] = ACTIONS(3939), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3941), - [sym_word] = ACTIONS(3941), - [anon_sym_LF] = ACTIONS(3939), - [anon_sym_AMP] = ACTIONS(3941), + [sym_file_descriptor] = ACTIONS(367), + [sym_variable_name] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(2081), + [anon_sym_PIPE] = ACTIONS(529), + [anon_sym_SEMI_SEMI] = ACTIONS(6434), + [anon_sym_PIPE_AMP] = ACTIONS(533), + [anon_sym_AMP_AMP] = ACTIONS(535), + [anon_sym_PIPE_PIPE] = ACTIONS(535), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(367), + [anon_sym_LT_AMP] = ACTIONS(367), + [anon_sym_GT_AMP] = ACTIONS(367), + [sym__special_characters] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_raw_string] = ACTIONS(367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(367), + [anon_sym_LT_LPAREN] = ACTIONS(367), + [anon_sym_GT_LPAREN] = ACTIONS(367), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(2083), + [anon_sym_AMP] = ACTIONS(2081), }, [2735] = { - [sym__simple_heredoc_body] = ACTIONS(4568), - [sym__heredoc_body_beginning] = ACTIONS(4568), - [sym_file_descriptor] = ACTIONS(4568), - [sym__concat] = ACTIONS(4568), - [anon_sym_SEMI] = ACTIONS(4570), - [anon_sym_esac] = ACTIONS(4570), - [anon_sym_PIPE] = ACTIONS(4570), - [anon_sym_SEMI_SEMI] = ACTIONS(4568), - [anon_sym_PIPE_AMP] = ACTIONS(4568), - [anon_sym_AMP_AMP] = ACTIONS(4568), - [anon_sym_PIPE_PIPE] = ACTIONS(4568), - [anon_sym_EQ_TILDE] = ACTIONS(4570), - [anon_sym_EQ_EQ] = ACTIONS(4570), - [anon_sym_LT] = ACTIONS(4570), - [anon_sym_GT] = ACTIONS(4570), - [anon_sym_GT_GT] = ACTIONS(4568), - [anon_sym_AMP_GT] = ACTIONS(4570), - [anon_sym_AMP_GT_GT] = ACTIONS(4568), - [anon_sym_LT_AMP] = ACTIONS(4568), - [anon_sym_GT_AMP] = ACTIONS(4568), - [anon_sym_LT_LT] = ACTIONS(4570), - [anon_sym_LT_LT_DASH] = ACTIONS(4568), - [anon_sym_LT_LT_LT] = ACTIONS(4568), - [sym__special_characters] = ACTIONS(4568), - [anon_sym_DQUOTE] = ACTIONS(4568), - [anon_sym_DOLLAR] = ACTIONS(4570), - [sym_raw_string] = ACTIONS(4568), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4568), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4568), - [anon_sym_BQUOTE] = ACTIONS(4568), - [anon_sym_LT_LPAREN] = ACTIONS(4568), - [anon_sym_GT_LPAREN] = ACTIONS(4568), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4570), - [anon_sym_LF] = ACTIONS(4568), - [anon_sym_AMP] = ACTIONS(4570), + [sym_file_descriptor] = ACTIONS(2959), + [sym__concat] = ACTIONS(2959), + [sym_variable_name] = ACTIONS(2959), + [anon_sym_SEMI] = ACTIONS(2961), + [anon_sym_esac] = ACTIONS(2961), + [anon_sym_PIPE] = ACTIONS(2961), + [anon_sym_SEMI_SEMI] = ACTIONS(2959), + [anon_sym_PIPE_AMP] = ACTIONS(2959), + [anon_sym_AMP_AMP] = ACTIONS(2959), + [anon_sym_PIPE_PIPE] = ACTIONS(2959), + [anon_sym_LT] = ACTIONS(2961), + [anon_sym_GT] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(2959), + [anon_sym_AMP_GT] = ACTIONS(2961), + [anon_sym_AMP_GT_GT] = ACTIONS(2959), + [anon_sym_LT_AMP] = ACTIONS(2959), + [anon_sym_GT_AMP] = ACTIONS(2959), + [sym__special_characters] = ACTIONS(2959), + [anon_sym_DQUOTE] = ACTIONS(2959), + [anon_sym_DOLLAR] = ACTIONS(2961), + [sym_raw_string] = ACTIONS(2959), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2959), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2959), + [anon_sym_BQUOTE] = ACTIONS(2959), + [anon_sym_LT_LPAREN] = ACTIONS(2959), + [anon_sym_GT_LPAREN] = ACTIONS(2959), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(2961), + [anon_sym_LF] = ACTIONS(2959), + [anon_sym_AMP] = ACTIONS(2961), }, [2736] = { - [sym__simple_heredoc_body] = ACTIONS(4572), - [sym__heredoc_body_beginning] = ACTIONS(4572), - [sym_file_descriptor] = ACTIONS(4572), - [sym__concat] = ACTIONS(4572), - [anon_sym_SEMI] = ACTIONS(4574), - [anon_sym_esac] = ACTIONS(4574), - [anon_sym_PIPE] = ACTIONS(4574), - [anon_sym_SEMI_SEMI] = ACTIONS(4572), - [anon_sym_PIPE_AMP] = ACTIONS(4572), - [anon_sym_AMP_AMP] = ACTIONS(4572), - [anon_sym_PIPE_PIPE] = ACTIONS(4572), - [anon_sym_EQ_TILDE] = ACTIONS(4574), - [anon_sym_EQ_EQ] = ACTIONS(4574), - [anon_sym_LT] = ACTIONS(4574), - [anon_sym_GT] = ACTIONS(4574), - [anon_sym_GT_GT] = ACTIONS(4572), - [anon_sym_AMP_GT] = ACTIONS(4574), - [anon_sym_AMP_GT_GT] = ACTIONS(4572), - [anon_sym_LT_AMP] = ACTIONS(4572), - [anon_sym_GT_AMP] = ACTIONS(4572), - [anon_sym_LT_LT] = ACTIONS(4574), - [anon_sym_LT_LT_DASH] = ACTIONS(4572), - [anon_sym_LT_LT_LT] = ACTIONS(4572), - [sym__special_characters] = ACTIONS(4572), - [anon_sym_DQUOTE] = ACTIONS(4572), - [anon_sym_DOLLAR] = ACTIONS(4574), - [sym_raw_string] = ACTIONS(4572), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4572), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4572), - [anon_sym_BQUOTE] = ACTIONS(4572), - [anon_sym_LT_LPAREN] = ACTIONS(4572), - [anon_sym_GT_LPAREN] = ACTIONS(4572), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4574), - [anon_sym_LF] = ACTIONS(4572), - [anon_sym_AMP] = ACTIONS(4574), + [sym_file_descriptor] = ACTIONS(2973), + [sym__concat] = ACTIONS(2973), + [sym_variable_name] = ACTIONS(2973), + [anon_sym_SEMI] = ACTIONS(2975), + [anon_sym_esac] = ACTIONS(2975), + [anon_sym_PIPE] = ACTIONS(2975), + [anon_sym_SEMI_SEMI] = ACTIONS(2973), + [anon_sym_PIPE_AMP] = ACTIONS(2973), + [anon_sym_AMP_AMP] = ACTIONS(2973), + [anon_sym_PIPE_PIPE] = ACTIONS(2973), + [anon_sym_LT] = ACTIONS(2975), + [anon_sym_GT] = ACTIONS(2975), + [anon_sym_GT_GT] = ACTIONS(2973), + [anon_sym_AMP_GT] = ACTIONS(2975), + [anon_sym_AMP_GT_GT] = ACTIONS(2973), + [anon_sym_LT_AMP] = ACTIONS(2973), + [anon_sym_GT_AMP] = ACTIONS(2973), + [sym__special_characters] = ACTIONS(2973), + [anon_sym_DQUOTE] = ACTIONS(2973), + [anon_sym_DOLLAR] = ACTIONS(2975), + [sym_raw_string] = ACTIONS(2973), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2973), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2973), + [anon_sym_BQUOTE] = ACTIONS(2973), + [anon_sym_LT_LPAREN] = ACTIONS(2973), + [anon_sym_GT_LPAREN] = ACTIONS(2973), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(2975), + [anon_sym_LF] = ACTIONS(2973), + [anon_sym_AMP] = ACTIONS(2975), }, [2737] = { - [sym__simple_heredoc_body] = ACTIONS(4576), - [sym__heredoc_body_beginning] = ACTIONS(4576), - [sym_file_descriptor] = ACTIONS(4576), - [sym__concat] = ACTIONS(4576), - [anon_sym_SEMI] = ACTIONS(4578), - [anon_sym_esac] = ACTIONS(4578), - [anon_sym_PIPE] = ACTIONS(4578), - [anon_sym_SEMI_SEMI] = ACTIONS(4576), - [anon_sym_PIPE_AMP] = ACTIONS(4576), - [anon_sym_AMP_AMP] = ACTIONS(4576), - [anon_sym_PIPE_PIPE] = ACTIONS(4576), - [anon_sym_EQ_TILDE] = ACTIONS(4578), - [anon_sym_EQ_EQ] = ACTIONS(4578), - [anon_sym_LT] = ACTIONS(4578), - [anon_sym_GT] = ACTIONS(4578), - [anon_sym_GT_GT] = ACTIONS(4576), - [anon_sym_AMP_GT] = ACTIONS(4578), - [anon_sym_AMP_GT_GT] = ACTIONS(4576), - [anon_sym_LT_AMP] = ACTIONS(4576), - [anon_sym_GT_AMP] = ACTIONS(4576), - [anon_sym_LT_LT] = ACTIONS(4578), - [anon_sym_LT_LT_DASH] = ACTIONS(4576), - [anon_sym_LT_LT_LT] = ACTIONS(4576), - [sym__special_characters] = ACTIONS(4576), - [anon_sym_DQUOTE] = ACTIONS(4576), - [anon_sym_DOLLAR] = ACTIONS(4578), - [sym_raw_string] = ACTIONS(4576), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4576), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4576), - [anon_sym_BQUOTE] = ACTIONS(4576), - [anon_sym_LT_LPAREN] = ACTIONS(4576), - [anon_sym_GT_LPAREN] = ACTIONS(4576), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4578), - [anon_sym_LF] = ACTIONS(4576), - [anon_sym_AMP] = ACTIONS(4578), + [aux_sym_concatenation_repeat1] = STATE(1366), + [sym__concat] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(6436), + [sym_comment] = ACTIONS(55), }, [2738] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(6381), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [aux_sym_concatenation_repeat1] = STATE(1366), + [sym__concat] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(6438), + [sym_comment] = ACTIONS(55), }, [2739] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(6383), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [anon_sym_RBRACE] = ACTIONS(6438), + [sym_comment] = ACTIONS(55), }, [2740] = { - [sym__simple_heredoc_body] = ACTIONS(4608), - [sym__heredoc_body_beginning] = ACTIONS(4608), - [sym_file_descriptor] = ACTIONS(4608), - [sym__concat] = ACTIONS(4608), - [anon_sym_SEMI] = ACTIONS(4610), - [anon_sym_esac] = ACTIONS(4610), - [anon_sym_PIPE] = ACTIONS(4610), - [anon_sym_SEMI_SEMI] = ACTIONS(4608), - [anon_sym_PIPE_AMP] = ACTIONS(4608), - [anon_sym_AMP_AMP] = ACTIONS(4608), - [anon_sym_PIPE_PIPE] = ACTIONS(4608), - [anon_sym_EQ_TILDE] = ACTIONS(4610), - [anon_sym_EQ_EQ] = ACTIONS(4610), - [anon_sym_LT] = ACTIONS(4610), - [anon_sym_GT] = ACTIONS(4610), - [anon_sym_GT_GT] = ACTIONS(4608), - [anon_sym_AMP_GT] = ACTIONS(4610), - [anon_sym_AMP_GT_GT] = ACTIONS(4608), - [anon_sym_LT_AMP] = ACTIONS(4608), - [anon_sym_GT_AMP] = ACTIONS(4608), - [anon_sym_LT_LT] = ACTIONS(4610), - [anon_sym_LT_LT_DASH] = ACTIONS(4608), - [anon_sym_LT_LT_LT] = ACTIONS(4608), - [sym__special_characters] = ACTIONS(4608), - [anon_sym_DQUOTE] = ACTIONS(4608), - [anon_sym_DOLLAR] = ACTIONS(4610), - [sym_raw_string] = ACTIONS(4608), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4608), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4608), - [anon_sym_BQUOTE] = ACTIONS(4608), - [anon_sym_LT_LPAREN] = ACTIONS(4608), - [anon_sym_GT_LPAREN] = ACTIONS(4608), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4610), - [anon_sym_LF] = ACTIONS(4608), - [anon_sym_AMP] = ACTIONS(4610), + [sym_concatenation] = STATE(2822), + [sym_string] = STATE(2821), + [sym_simple_expansion] = STATE(2821), + [sym_string_expansion] = STATE(2821), + [sym_expansion] = STATE(2821), + [sym_command_substitution] = STATE(2821), + [sym_process_substitution] = STATE(2821), + [anon_sym_RBRACE] = ACTIONS(6438), + [sym__special_characters] = ACTIONS(6440), + [anon_sym_DQUOTE] = ACTIONS(1841), + [anon_sym_DOLLAR] = ACTIONS(1843), + [sym_raw_string] = ACTIONS(6442), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1849), + [anon_sym_BQUOTE] = ACTIONS(1851), + [anon_sym_LT_LPAREN] = ACTIONS(1853), + [anon_sym_GT_LPAREN] = ACTIONS(1853), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(6442), }, [2741] = { - [sym__simple_heredoc_body] = ACTIONS(2876), - [sym__heredoc_body_beginning] = ACTIONS(2876), - [sym_file_descriptor] = ACTIONS(2876), - [sym__concat] = ACTIONS(2876), - [anon_sym_SEMI] = ACTIONS(2878), - [anon_sym_esac] = ACTIONS(2876), - [anon_sym_PIPE] = ACTIONS(2878), - [anon_sym_SEMI_SEMI] = ACTIONS(2876), - [anon_sym_PIPE_AMP] = ACTIONS(2876), - [anon_sym_AMP_AMP] = ACTIONS(2876), - [anon_sym_PIPE_PIPE] = ACTIONS(2876), - [anon_sym_LT] = ACTIONS(2878), - [anon_sym_GT] = ACTIONS(2878), - [anon_sym_GT_GT] = ACTIONS(2876), - [anon_sym_AMP_GT] = ACTIONS(2878), - [anon_sym_AMP_GT_GT] = ACTIONS(2876), - [anon_sym_LT_AMP] = ACTIONS(2876), - [anon_sym_GT_AMP] = ACTIONS(2876), - [anon_sym_LT_LT] = ACTIONS(2878), - [anon_sym_LT_LT_DASH] = ACTIONS(2876), - [anon_sym_LT_LT_LT] = ACTIONS(2876), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(2876), - [anon_sym_AMP] = ACTIONS(2878), + [sym_file_descriptor] = ACTIONS(3009), + [sym__concat] = ACTIONS(3009), + [sym_variable_name] = ACTIONS(3009), + [anon_sym_SEMI] = ACTIONS(3011), + [anon_sym_esac] = ACTIONS(3011), + [anon_sym_PIPE] = ACTIONS(3011), + [anon_sym_SEMI_SEMI] = ACTIONS(3009), + [anon_sym_PIPE_AMP] = ACTIONS(3009), + [anon_sym_AMP_AMP] = ACTIONS(3009), + [anon_sym_PIPE_PIPE] = ACTIONS(3009), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_GT] = ACTIONS(3011), + [anon_sym_GT_GT] = ACTIONS(3009), + [anon_sym_AMP_GT] = ACTIONS(3011), + [anon_sym_AMP_GT_GT] = ACTIONS(3009), + [anon_sym_LT_AMP] = ACTIONS(3009), + [anon_sym_GT_AMP] = ACTIONS(3009), + [sym__special_characters] = ACTIONS(3009), + [anon_sym_DQUOTE] = ACTIONS(3009), + [anon_sym_DOLLAR] = ACTIONS(3011), + [sym_raw_string] = ACTIONS(3009), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3009), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3009), + [anon_sym_BQUOTE] = ACTIONS(3009), + [anon_sym_LT_LPAREN] = ACTIONS(3009), + [anon_sym_GT_LPAREN] = ACTIONS(3009), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(3011), + [anon_sym_LF] = ACTIONS(3009), + [anon_sym_AMP] = ACTIONS(3011), }, [2742] = { - [sym__simple_heredoc_body] = ACTIONS(2890), - [sym__heredoc_body_beginning] = ACTIONS(2890), - [sym_file_descriptor] = ACTIONS(2890), - [sym__concat] = ACTIONS(2890), - [anon_sym_SEMI] = ACTIONS(2892), - [anon_sym_esac] = ACTIONS(2890), - [anon_sym_PIPE] = ACTIONS(2892), - [anon_sym_SEMI_SEMI] = ACTIONS(2890), - [anon_sym_PIPE_AMP] = ACTIONS(2890), - [anon_sym_AMP_AMP] = ACTIONS(2890), - [anon_sym_PIPE_PIPE] = ACTIONS(2890), - [anon_sym_LT] = ACTIONS(2892), - [anon_sym_GT] = ACTIONS(2892), - [anon_sym_GT_GT] = ACTIONS(2890), - [anon_sym_AMP_GT] = ACTIONS(2892), - [anon_sym_AMP_GT_GT] = ACTIONS(2890), - [anon_sym_LT_AMP] = ACTIONS(2890), - [anon_sym_GT_AMP] = ACTIONS(2890), - [anon_sym_LT_LT] = ACTIONS(2892), - [anon_sym_LT_LT_DASH] = ACTIONS(2890), - [anon_sym_LT_LT_LT] = ACTIONS(2890), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(2890), - [anon_sym_AMP] = ACTIONS(2892), + [sym_concatenation] = STATE(2825), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2825), + [sym_regex] = ACTIONS(6444), + [anon_sym_RBRACE] = ACTIONS(6446), + [anon_sym_EQ] = ACTIONS(6448), + [anon_sym_DASH] = ACTIONS(6448), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(6450), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(6448), + [anon_sym_COLON_QMARK] = ACTIONS(6448), + [anon_sym_COLON_DASH] = ACTIONS(6448), + [anon_sym_PERCENT] = ACTIONS(6448), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2743] = { - [aux_sym_concatenation_repeat1] = STATE(1293), - [sym__concat] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(6385), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(6446), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2744] = { - [aux_sym_concatenation_repeat1] = STATE(1293), - [sym__concat] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(6387), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(2827), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2827), + [sym_regex] = ACTIONS(6452), + [anon_sym_RBRACE] = ACTIONS(6438), + [anon_sym_EQ] = ACTIONS(6454), + [anon_sym_DASH] = ACTIONS(6454), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(6456), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(6454), + [anon_sym_COLON_QMARK] = ACTIONS(6454), + [anon_sym_COLON_DASH] = ACTIONS(6454), + [anon_sym_PERCENT] = ACTIONS(6454), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2745] = { - [anon_sym_RBRACE] = ACTIONS(6387), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(6438), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2746] = { - [sym_concatenation] = STATE(2795), - [sym_string] = STATE(2794), - [sym_simple_expansion] = STATE(2794), - [sym_string_expansion] = STATE(2794), - [sym_expansion] = STATE(2794), - [sym_command_substitution] = STATE(2794), - [sym_process_substitution] = STATE(2794), - [anon_sym_RBRACE] = ACTIONS(6387), - [sym__special_characters] = ACTIONS(6389), - [anon_sym_DQUOTE] = ACTIONS(1802), - [anon_sym_DOLLAR] = ACTIONS(1804), - [sym_raw_string] = ACTIONS(6391), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1808), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1810), - [anon_sym_BQUOTE] = ACTIONS(1812), - [anon_sym_LT_LPAREN] = ACTIONS(1814), - [anon_sym_GT_LPAREN] = ACTIONS(1814), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6391), + [sym_concatenation] = STATE(2829), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2829), + [anon_sym_RBRACE] = ACTIONS(6458), + [anon_sym_EQ] = ACTIONS(6460), + [anon_sym_DASH] = ACTIONS(6460), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(6462), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(6460), + [anon_sym_COLON_QMARK] = ACTIONS(6460), + [anon_sym_COLON_DASH] = ACTIONS(6460), + [anon_sym_PERCENT] = ACTIONS(6460), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2747] = { - [sym__simple_heredoc_body] = ACTIONS(2926), - [sym__heredoc_body_beginning] = ACTIONS(2926), - [sym_file_descriptor] = ACTIONS(2926), - [sym__concat] = ACTIONS(2926), - [anon_sym_SEMI] = ACTIONS(2928), - [anon_sym_esac] = ACTIONS(2926), - [anon_sym_PIPE] = ACTIONS(2928), - [anon_sym_SEMI_SEMI] = ACTIONS(2926), - [anon_sym_PIPE_AMP] = ACTIONS(2926), - [anon_sym_AMP_AMP] = ACTIONS(2926), - [anon_sym_PIPE_PIPE] = ACTIONS(2926), - [anon_sym_LT] = ACTIONS(2928), - [anon_sym_GT] = ACTIONS(2928), - [anon_sym_GT_GT] = ACTIONS(2926), - [anon_sym_AMP_GT] = ACTIONS(2928), - [anon_sym_AMP_GT_GT] = ACTIONS(2926), - [anon_sym_LT_AMP] = ACTIONS(2926), - [anon_sym_GT_AMP] = ACTIONS(2926), - [anon_sym_LT_LT] = ACTIONS(2928), - [anon_sym_LT_LT_DASH] = ACTIONS(2926), - [anon_sym_LT_LT_LT] = ACTIONS(2926), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(2926), - [anon_sym_AMP] = ACTIONS(2928), + [sym_file_descriptor] = ACTIONS(3065), + [sym__concat] = ACTIONS(3065), + [sym_variable_name] = ACTIONS(3065), + [anon_sym_SEMI] = ACTIONS(3067), + [anon_sym_esac] = ACTIONS(3067), + [anon_sym_PIPE] = ACTIONS(3067), + [anon_sym_SEMI_SEMI] = ACTIONS(3065), + [anon_sym_PIPE_AMP] = ACTIONS(3065), + [anon_sym_AMP_AMP] = ACTIONS(3065), + [anon_sym_PIPE_PIPE] = ACTIONS(3065), + [anon_sym_LT] = ACTIONS(3067), + [anon_sym_GT] = ACTIONS(3067), + [anon_sym_GT_GT] = ACTIONS(3065), + [anon_sym_AMP_GT] = ACTIONS(3067), + [anon_sym_AMP_GT_GT] = ACTIONS(3065), + [anon_sym_LT_AMP] = ACTIONS(3065), + [anon_sym_GT_AMP] = ACTIONS(3065), + [sym__special_characters] = ACTIONS(3065), + [anon_sym_DQUOTE] = ACTIONS(3065), + [anon_sym_DOLLAR] = ACTIONS(3067), + [sym_raw_string] = ACTIONS(3065), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3065), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3065), + [anon_sym_BQUOTE] = ACTIONS(3065), + [anon_sym_LT_LPAREN] = ACTIONS(3065), + [anon_sym_GT_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(3067), + [anon_sym_LF] = ACTIONS(3065), + [anon_sym_AMP] = ACTIONS(3067), }, [2748] = { - [sym_comment] = ACTIONS(265), - [sym_regex_without_right_brace] = ACTIONS(6393), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(6458), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2749] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(6395), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_concatenation] = STATE(2827), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2827), + [anon_sym_RBRACE] = ACTIONS(6438), + [anon_sym_EQ] = ACTIONS(6454), + [anon_sym_DASH] = ACTIONS(6454), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(6456), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(6454), + [anon_sym_COLON_QMARK] = ACTIONS(6454), + [anon_sym_COLON_DASH] = ACTIONS(6454), + [anon_sym_PERCENT] = ACTIONS(6454), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2750] = { - [sym_comment] = ACTIONS(265), - [sym_regex_without_right_brace] = ACTIONS(6397), + [sym_file_descriptor] = ACTIONS(3120), + [sym__concat] = ACTIONS(3120), + [sym_variable_name] = ACTIONS(3120), + [anon_sym_SEMI] = ACTIONS(3122), + [anon_sym_esac] = ACTIONS(3122), + [anon_sym_PIPE] = ACTIONS(3122), + [anon_sym_SEMI_SEMI] = ACTIONS(3120), + [anon_sym_PIPE_AMP] = ACTIONS(3120), + [anon_sym_AMP_AMP] = ACTIONS(3120), + [anon_sym_PIPE_PIPE] = ACTIONS(3120), + [anon_sym_LT] = ACTIONS(3122), + [anon_sym_GT] = ACTIONS(3122), + [anon_sym_GT_GT] = ACTIONS(3120), + [anon_sym_AMP_GT] = ACTIONS(3122), + [anon_sym_AMP_GT_GT] = ACTIONS(3120), + [anon_sym_LT_AMP] = ACTIONS(3120), + [anon_sym_GT_AMP] = ACTIONS(3120), + [sym__special_characters] = ACTIONS(3120), + [anon_sym_DQUOTE] = ACTIONS(3120), + [anon_sym_DOLLAR] = ACTIONS(3122), + [sym_raw_string] = ACTIONS(3120), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3120), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3120), + [anon_sym_BQUOTE] = ACTIONS(3120), + [anon_sym_LT_LPAREN] = ACTIONS(3120), + [anon_sym_GT_LPAREN] = ACTIONS(3120), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(3122), + [anon_sym_LF] = ACTIONS(3120), + [anon_sym_AMP] = ACTIONS(3122), }, [2751] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(6387), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(6464), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), }, [2752] = { - [sym_concatenation] = STATE(2800), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(2800), - [anon_sym_RBRACE] = ACTIONS(6399), - [anon_sym_EQ] = ACTIONS(6401), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(6403), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(6401), - [anon_sym_COLON_QMARK] = ACTIONS(6401), - [anon_sym_COLON_DASH] = ACTIONS(6401), - [anon_sym_PERCENT] = ACTIONS(6401), - [anon_sym_DASH] = ACTIONS(6401), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(6464), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), }, [2753] = { - [sym__simple_heredoc_body] = ACTIONS(2990), - [sym__heredoc_body_beginning] = ACTIONS(2990), - [sym_file_descriptor] = ACTIONS(2990), - [sym__concat] = ACTIONS(2990), - [anon_sym_SEMI] = ACTIONS(2992), - [anon_sym_esac] = ACTIONS(2990), - [anon_sym_PIPE] = ACTIONS(2992), - [anon_sym_SEMI_SEMI] = ACTIONS(2990), - [anon_sym_PIPE_AMP] = ACTIONS(2990), - [anon_sym_AMP_AMP] = ACTIONS(2990), - [anon_sym_PIPE_PIPE] = ACTIONS(2990), - [anon_sym_LT] = ACTIONS(2992), - [anon_sym_GT] = ACTIONS(2992), - [anon_sym_GT_GT] = ACTIONS(2990), - [anon_sym_AMP_GT] = ACTIONS(2992), - [anon_sym_AMP_GT_GT] = ACTIONS(2990), - [anon_sym_LT_AMP] = ACTIONS(2990), - [anon_sym_GT_AMP] = ACTIONS(2990), - [anon_sym_LT_LT] = ACTIONS(2992), - [anon_sym_LT_LT_DASH] = ACTIONS(2990), - [anon_sym_LT_LT_LT] = ACTIONS(2990), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(2990), - [anon_sym_AMP] = ACTIONS(2992), + [sym_file_descriptor] = ACTIONS(3158), + [sym__concat] = ACTIONS(3158), + [sym_variable_name] = ACTIONS(3158), + [anon_sym_SEMI] = ACTIONS(3160), + [anon_sym_esac] = ACTIONS(3160), + [anon_sym_PIPE] = ACTIONS(3160), + [anon_sym_SEMI_SEMI] = ACTIONS(3158), + [anon_sym_PIPE_AMP] = ACTIONS(3158), + [anon_sym_AMP_AMP] = ACTIONS(3158), + [anon_sym_PIPE_PIPE] = ACTIONS(3158), + [anon_sym_LT] = ACTIONS(3160), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_GT_GT] = ACTIONS(3158), + [anon_sym_AMP_GT] = ACTIONS(3160), + [anon_sym_AMP_GT_GT] = ACTIONS(3158), + [anon_sym_LT_AMP] = ACTIONS(3158), + [anon_sym_GT_AMP] = ACTIONS(3158), + [sym__special_characters] = ACTIONS(3158), + [anon_sym_DQUOTE] = ACTIONS(3158), + [anon_sym_DOLLAR] = ACTIONS(3160), + [sym_raw_string] = ACTIONS(3158), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3158), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3158), + [anon_sym_BQUOTE] = ACTIONS(3158), + [anon_sym_LT_LPAREN] = ACTIONS(3158), + [anon_sym_GT_LPAREN] = ACTIONS(3158), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(3160), + [anon_sym_LF] = ACTIONS(3158), + [anon_sym_AMP] = ACTIONS(3160), }, [2754] = { - [sym_concatenation] = STATE(2801), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(2801), - [anon_sym_RBRACE] = ACTIONS(6387), - [anon_sym_EQ] = ACTIONS(6405), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(6407), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(6405), - [anon_sym_COLON_QMARK] = ACTIONS(6405), - [anon_sym_COLON_DASH] = ACTIONS(6405), - [anon_sym_PERCENT] = ACTIONS(6405), - [anon_sym_DASH] = ACTIONS(6405), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(6466), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), }, [2755] = { - [sym__simple_heredoc_body] = ACTIONS(3033), - [sym__heredoc_body_beginning] = ACTIONS(3033), - [sym_file_descriptor] = ACTIONS(3033), - [sym__concat] = ACTIONS(3033), - [anon_sym_SEMI] = ACTIONS(3035), - [anon_sym_esac] = ACTIONS(3033), - [anon_sym_PIPE] = ACTIONS(3035), - [anon_sym_SEMI_SEMI] = ACTIONS(3033), - [anon_sym_PIPE_AMP] = ACTIONS(3033), - [anon_sym_AMP_AMP] = ACTIONS(3033), - [anon_sym_PIPE_PIPE] = ACTIONS(3033), - [anon_sym_LT] = ACTIONS(3035), - [anon_sym_GT] = ACTIONS(3035), - [anon_sym_GT_GT] = ACTIONS(3033), - [anon_sym_AMP_GT] = ACTIONS(3035), - [anon_sym_AMP_GT_GT] = ACTIONS(3033), - [anon_sym_LT_AMP] = ACTIONS(3033), - [anon_sym_GT_AMP] = ACTIONS(3033), - [anon_sym_LT_LT] = ACTIONS(3035), - [anon_sym_LT_LT_DASH] = ACTIONS(3033), - [anon_sym_LT_LT_LT] = ACTIONS(3033), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(3033), - [anon_sym_AMP] = ACTIONS(3035), + [aux_sym_concatenation_repeat1] = STATE(2757), + [sym_file_descriptor] = ACTIONS(1088), + [sym__concat] = ACTIONS(3579), + [anon_sym_SEMI] = ACTIONS(1090), + [anon_sym_esac] = ACTIONS(1088), + [anon_sym_PIPE] = ACTIONS(1090), + [anon_sym_SEMI_SEMI] = ACTIONS(1088), + [anon_sym_PIPE_AMP] = ACTIONS(1088), + [anon_sym_AMP_AMP] = ACTIONS(1088), + [anon_sym_PIPE_PIPE] = ACTIONS(1088), + [anon_sym_LT] = ACTIONS(1090), + [anon_sym_GT] = ACTIONS(1090), + [anon_sym_GT_GT] = ACTIONS(1088), + [anon_sym_AMP_GT] = ACTIONS(1090), + [anon_sym_AMP_GT_GT] = ACTIONS(1088), + [anon_sym_LT_AMP] = ACTIONS(1088), + [anon_sym_GT_AMP] = ACTIONS(1088), + [anon_sym_LT_LT] = ACTIONS(1090), + [anon_sym_LT_LT_DASH] = ACTIONS(1088), + [anon_sym_LT_LT_LT] = ACTIONS(1088), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1088), + [anon_sym_AMP] = ACTIONS(1090), }, [2756] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(6409), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(901), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), + [aux_sym_concatenation_repeat1] = STATE(2757), + [sym_file_descriptor] = ACTIONS(1092), + [sym__concat] = ACTIONS(3579), + [anon_sym_SEMI] = ACTIONS(1094), + [anon_sym_esac] = ACTIONS(1092), + [anon_sym_PIPE] = ACTIONS(1094), + [anon_sym_SEMI_SEMI] = ACTIONS(1092), + [anon_sym_PIPE_AMP] = ACTIONS(1092), + [anon_sym_AMP_AMP] = ACTIONS(1092), + [anon_sym_PIPE_PIPE] = ACTIONS(1092), + [anon_sym_LT] = ACTIONS(1094), + [anon_sym_GT] = ACTIONS(1094), + [anon_sym_GT_GT] = ACTIONS(1092), + [anon_sym_AMP_GT] = ACTIONS(1094), + [anon_sym_AMP_GT_GT] = ACTIONS(1092), + [anon_sym_LT_AMP] = ACTIONS(1092), + [anon_sym_GT_AMP] = ACTIONS(1092), + [anon_sym_LT_LT] = ACTIONS(1094), + [anon_sym_LT_LT_DASH] = ACTIONS(1092), + [anon_sym_LT_LT_LT] = ACTIONS(1092), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1092), + [anon_sym_AMP] = ACTIONS(1094), }, [2757] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(6409), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), + [aux_sym_concatenation_repeat1] = STATE(2832), + [sym_file_descriptor] = ACTIONS(807), + [sym__concat] = ACTIONS(3579), + [anon_sym_SEMI] = ACTIONS(809), + [anon_sym_esac] = ACTIONS(807), + [anon_sym_PIPE] = ACTIONS(809), + [anon_sym_SEMI_SEMI] = ACTIONS(807), + [anon_sym_PIPE_AMP] = ACTIONS(807), + [anon_sym_AMP_AMP] = ACTIONS(807), + [anon_sym_PIPE_PIPE] = ACTIONS(807), + [anon_sym_LT] = ACTIONS(809), + [anon_sym_GT] = ACTIONS(809), + [anon_sym_GT_GT] = ACTIONS(807), + [anon_sym_AMP_GT] = ACTIONS(809), + [anon_sym_AMP_GT_GT] = ACTIONS(807), + [anon_sym_LT_AMP] = ACTIONS(807), + [anon_sym_GT_AMP] = ACTIONS(807), + [anon_sym_LT_LT] = ACTIONS(809), + [anon_sym_LT_LT_DASH] = ACTIONS(807), + [anon_sym_LT_LT_LT] = ACTIONS(807), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(807), + [anon_sym_AMP] = ACTIONS(809), }, [2758] = { - [sym__simple_heredoc_body] = ACTIONS(3071), - [sym__heredoc_body_beginning] = ACTIONS(3071), - [sym_file_descriptor] = ACTIONS(3071), - [sym__concat] = ACTIONS(3071), - [anon_sym_SEMI] = ACTIONS(3073), - [anon_sym_esac] = ACTIONS(3071), - [anon_sym_PIPE] = ACTIONS(3073), - [anon_sym_SEMI_SEMI] = ACTIONS(3071), - [anon_sym_PIPE_AMP] = ACTIONS(3071), - [anon_sym_AMP_AMP] = ACTIONS(3071), - [anon_sym_PIPE_PIPE] = ACTIONS(3071), - [anon_sym_LT] = ACTIONS(3073), - [anon_sym_GT] = ACTIONS(3073), - [anon_sym_GT_GT] = ACTIONS(3071), - [anon_sym_AMP_GT] = ACTIONS(3073), - [anon_sym_AMP_GT_GT] = ACTIONS(3071), - [anon_sym_LT_AMP] = ACTIONS(3071), - [anon_sym_GT_AMP] = ACTIONS(3071), - [anon_sym_LT_LT] = ACTIONS(3073), - [anon_sym_LT_LT_DASH] = ACTIONS(3071), - [anon_sym_LT_LT_LT] = ACTIONS(3071), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(3071), - [anon_sym_AMP] = ACTIONS(3073), + [aux_sym_concatenation_repeat1] = STATE(2760), + [sym__concat] = ACTIONS(1160), + [anon_sym_SEMI] = ACTIONS(1090), + [anon_sym_esac] = ACTIONS(1088), + [anon_sym_PIPE] = ACTIONS(1090), + [anon_sym_SEMI_SEMI] = ACTIONS(1088), + [anon_sym_PIPE_AMP] = ACTIONS(1088), + [anon_sym_AMP_AMP] = ACTIONS(1088), + [anon_sym_PIPE_PIPE] = ACTIONS(1088), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1088), + [anon_sym_AMP] = ACTIONS(1090), }, [2759] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(6411), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DOLLAR] = ACTIONS(905), - [sym_raw_string] = ACTIONS(901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(901), - [anon_sym_BQUOTE] = ACTIONS(901), - [anon_sym_LT_LPAREN] = ACTIONS(901), - [anon_sym_GT_LPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(905), + [aux_sym_concatenation_repeat1] = STATE(2760), + [sym__concat] = ACTIONS(1160), + [anon_sym_SEMI] = ACTIONS(1094), + [anon_sym_esac] = ACTIONS(1092), + [anon_sym_PIPE] = ACTIONS(1094), + [anon_sym_SEMI_SEMI] = ACTIONS(1092), + [anon_sym_PIPE_AMP] = ACTIONS(1092), + [anon_sym_AMP_AMP] = ACTIONS(1092), + [anon_sym_PIPE_PIPE] = ACTIONS(1092), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1092), + [anon_sym_AMP] = ACTIONS(1094), }, [2760] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_SEMI_SEMI] = ACTIONS(901), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(6103), - [anon_sym_DQUOTE] = ACTIONS(6105), - [anon_sym_DOLLAR] = ACTIONS(6103), - [sym_raw_string] = ACTIONS(6105), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6105), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6105), - [anon_sym_BQUOTE] = ACTIONS(6105), - [anon_sym_LT_LPAREN] = ACTIONS(6105), - [anon_sym_GT_LPAREN] = ACTIONS(6105), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6103), + [aux_sym_concatenation_repeat1] = STATE(2833), + [sym__concat] = ACTIONS(1160), + [anon_sym_SEMI] = ACTIONS(809), + [anon_sym_esac] = ACTIONS(807), + [anon_sym_PIPE] = ACTIONS(809), + [anon_sym_SEMI_SEMI] = ACTIONS(807), + [anon_sym_PIPE_AMP] = ACTIONS(807), + [anon_sym_AMP_AMP] = ACTIONS(807), + [anon_sym_PIPE_PIPE] = ACTIONS(807), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(807), + [anon_sym_AMP] = ACTIONS(809), }, [2761] = { - [sym_file_descriptor] = ACTIONS(901), - [sym_variable_name] = ACTIONS(901), - [anon_sym_for] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_case] = ACTIONS(905), - [anon_sym_SEMI_SEMI] = ACTIONS(901), - [anon_sym_function] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_LBRACK_LBRACK] = ACTIONS(901), - [anon_sym_declare] = ACTIONS(905), - [anon_sym_typeset] = ACTIONS(905), - [anon_sym_export] = ACTIONS(905), - [anon_sym_readonly] = ACTIONS(905), - [anon_sym_local] = ACTIONS(905), - [anon_sym_unset] = ACTIONS(905), - [anon_sym_unsetenv] = ACTIONS(905), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(901), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(901), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [sym__special_characters] = ACTIONS(6109), - [anon_sym_DQUOTE] = ACTIONS(6111), - [anon_sym_DOLLAR] = ACTIONS(6109), - [sym_raw_string] = ACTIONS(6111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6111), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6111), - [anon_sym_BQUOTE] = ACTIONS(6111), - [anon_sym_LT_LPAREN] = ACTIONS(6111), - [anon_sym_GT_LPAREN] = ACTIONS(6111), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6109), + [sym_variable_name] = ACTIONS(3265), + [anon_sym_SEMI] = ACTIONS(3267), + [anon_sym_esac] = ACTIONS(3267), + [anon_sym_PIPE] = ACTIONS(3267), + [anon_sym_SEMI_SEMI] = ACTIONS(3265), + [anon_sym_PIPE_AMP] = ACTIONS(3265), + [anon_sym_AMP_AMP] = ACTIONS(3265), + [anon_sym_PIPE_PIPE] = ACTIONS(3265), + [sym__special_characters] = ACTIONS(3265), + [anon_sym_DQUOTE] = ACTIONS(3265), + [anon_sym_DOLLAR] = ACTIONS(3267), + [sym_raw_string] = ACTIONS(3265), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3265), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3265), + [anon_sym_BQUOTE] = ACTIONS(3265), + [anon_sym_LT_LPAREN] = ACTIONS(3265), + [anon_sym_GT_LPAREN] = ACTIONS(3265), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3267), + [sym_word] = ACTIONS(3267), + [anon_sym_LF] = ACTIONS(3265), + [anon_sym_AMP] = ACTIONS(3267), }, [2762] = { - [sym_file_descriptor] = ACTIONS(3788), - [sym__concat] = ACTIONS(3788), - [sym_variable_name] = ACTIONS(3788), - [anon_sym_SEMI] = ACTIONS(3790), - [anon_sym_esac] = ACTIONS(3790), - [anon_sym_PIPE] = ACTIONS(3790), - [anon_sym_SEMI_SEMI] = ACTIONS(3788), - [anon_sym_PIPE_AMP] = ACTIONS(3788), - [anon_sym_AMP_AMP] = ACTIONS(3788), - [anon_sym_PIPE_PIPE] = ACTIONS(3788), - [anon_sym_LT] = ACTIONS(3790), - [anon_sym_GT] = ACTIONS(3790), - [anon_sym_GT_GT] = ACTIONS(3788), - [anon_sym_AMP_GT] = ACTIONS(3790), - [anon_sym_AMP_GT_GT] = ACTIONS(3788), - [anon_sym_LT_AMP] = ACTIONS(3788), - [anon_sym_GT_AMP] = ACTIONS(3788), - [sym__special_characters] = ACTIONS(3788), - [anon_sym_DQUOTE] = ACTIONS(3788), - [anon_sym_DOLLAR] = ACTIONS(3790), - [sym_raw_string] = ACTIONS(3788), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3788), - [anon_sym_BQUOTE] = ACTIONS(3788), - [anon_sym_LT_LPAREN] = ACTIONS(3788), - [anon_sym_GT_LPAREN] = ACTIONS(3788), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3790), - [anon_sym_LF] = ACTIONS(3788), - [anon_sym_AMP] = ACTIONS(3790), + [sym__concat] = ACTIONS(3934), + [sym_variable_name] = ACTIONS(3934), + [anon_sym_SEMI] = ACTIONS(3936), + [anon_sym_esac] = ACTIONS(3936), + [anon_sym_PIPE] = ACTIONS(3936), + [anon_sym_SEMI_SEMI] = ACTIONS(3934), + [anon_sym_PIPE_AMP] = ACTIONS(3934), + [anon_sym_AMP_AMP] = ACTIONS(3934), + [anon_sym_PIPE_PIPE] = ACTIONS(3934), + [sym__special_characters] = ACTIONS(3934), + [anon_sym_DQUOTE] = ACTIONS(3934), + [anon_sym_DOLLAR] = ACTIONS(3936), + [sym_raw_string] = ACTIONS(3934), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3934), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3934), + [anon_sym_BQUOTE] = ACTIONS(3934), + [anon_sym_LT_LPAREN] = ACTIONS(3934), + [anon_sym_GT_LPAREN] = ACTIONS(3934), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3936), + [sym_word] = ACTIONS(3936), + [anon_sym_LF] = ACTIONS(3934), + [anon_sym_AMP] = ACTIONS(3936), }, [2763] = { - [sym_file_descriptor] = ACTIONS(3796), - [sym__concat] = ACTIONS(3796), - [sym_variable_name] = ACTIONS(3796), - [anon_sym_SEMI] = ACTIONS(3798), - [anon_sym_esac] = ACTIONS(3798), - [anon_sym_PIPE] = ACTIONS(3798), - [anon_sym_SEMI_SEMI] = ACTIONS(3796), - [anon_sym_PIPE_AMP] = ACTIONS(3796), - [anon_sym_AMP_AMP] = ACTIONS(3796), - [anon_sym_PIPE_PIPE] = ACTIONS(3796), - [anon_sym_LT] = ACTIONS(3798), - [anon_sym_GT] = ACTIONS(3798), - [anon_sym_GT_GT] = ACTIONS(3796), - [anon_sym_AMP_GT] = ACTIONS(3798), - [anon_sym_AMP_GT_GT] = ACTIONS(3796), - [anon_sym_LT_AMP] = ACTIONS(3796), - [anon_sym_GT_AMP] = ACTIONS(3796), - [sym__special_characters] = ACTIONS(3796), - [anon_sym_DQUOTE] = ACTIONS(3796), - [anon_sym_DOLLAR] = ACTIONS(3798), - [sym_raw_string] = ACTIONS(3796), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3796), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3796), - [anon_sym_BQUOTE] = ACTIONS(3796), - [anon_sym_LT_LPAREN] = ACTIONS(3796), - [anon_sym_GT_LPAREN] = ACTIONS(3796), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3798), - [anon_sym_LF] = ACTIONS(3796), - [anon_sym_AMP] = ACTIONS(3798), + [sym__concat] = ACTIONS(3942), + [sym_variable_name] = ACTIONS(3942), + [anon_sym_SEMI] = ACTIONS(3944), + [anon_sym_esac] = ACTIONS(3944), + [anon_sym_PIPE] = ACTIONS(3944), + [anon_sym_SEMI_SEMI] = ACTIONS(3942), + [anon_sym_PIPE_AMP] = ACTIONS(3942), + [anon_sym_AMP_AMP] = ACTIONS(3942), + [anon_sym_PIPE_PIPE] = ACTIONS(3942), + [sym__special_characters] = ACTIONS(3942), + [anon_sym_DQUOTE] = ACTIONS(3942), + [anon_sym_DOLLAR] = ACTIONS(3944), + [sym_raw_string] = ACTIONS(3942), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3942), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3942), + [anon_sym_BQUOTE] = ACTIONS(3942), + [anon_sym_LT_LPAREN] = ACTIONS(3942), + [anon_sym_GT_LPAREN] = ACTIONS(3942), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3944), + [sym_word] = ACTIONS(3944), + [anon_sym_LF] = ACTIONS(3942), + [anon_sym_AMP] = ACTIONS(3944), }, [2764] = { - [aux_sym_concatenation_repeat1] = STATE(1293), - [sym__concat] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(6413), - [sym_comment] = ACTIONS(53), + [aux_sym_concatenation_repeat1] = STATE(1366), + [sym__concat] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(6468), + [sym_comment] = ACTIONS(55), }, [2765] = { - [aux_sym_concatenation_repeat1] = STATE(1293), - [sym__concat] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(6415), - [sym_comment] = ACTIONS(53), + [aux_sym_concatenation_repeat1] = STATE(1366), + [sym__concat] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(6470), + [sym_comment] = ACTIONS(55), }, [2766] = { - [anon_sym_RBRACE] = ACTIONS(6415), - [sym_comment] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(6470), + [sym_comment] = ACTIONS(55), }, [2767] = { - [sym_concatenation] = STATE(2807), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(2807), - [anon_sym_RBRACE] = ACTIONS(6417), - [anon_sym_EQ] = ACTIONS(6419), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(6421), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(6419), - [anon_sym_COLON_QMARK] = ACTIONS(6419), - [anon_sym_COLON_DASH] = ACTIONS(6419), - [anon_sym_PERCENT] = ACTIONS(6419), - [anon_sym_DASH] = ACTIONS(6419), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_concatenation] = STATE(2837), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2837), + [anon_sym_RBRACE] = ACTIONS(6472), + [anon_sym_EQ] = ACTIONS(6474), + [anon_sym_DASH] = ACTIONS(6474), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(6476), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(6474), + [anon_sym_COLON_QMARK] = ACTIONS(6474), + [anon_sym_COLON_DASH] = ACTIONS(6474), + [anon_sym_PERCENT] = ACTIONS(6474), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2768] = { - [sym_file_descriptor] = ACTIONS(3852), - [sym__concat] = ACTIONS(3852), - [sym_variable_name] = ACTIONS(3852), - [anon_sym_SEMI] = ACTIONS(3854), - [anon_sym_esac] = ACTIONS(3854), - [anon_sym_PIPE] = ACTIONS(3854), - [anon_sym_SEMI_SEMI] = ACTIONS(3852), - [anon_sym_PIPE_AMP] = ACTIONS(3852), - [anon_sym_AMP_AMP] = ACTIONS(3852), - [anon_sym_PIPE_PIPE] = ACTIONS(3852), - [anon_sym_LT] = ACTIONS(3854), - [anon_sym_GT] = ACTIONS(3854), - [anon_sym_GT_GT] = ACTIONS(3852), - [anon_sym_AMP_GT] = ACTIONS(3854), - [anon_sym_AMP_GT_GT] = ACTIONS(3852), - [anon_sym_LT_AMP] = ACTIONS(3852), - [anon_sym_GT_AMP] = ACTIONS(3852), - [sym__special_characters] = ACTIONS(3852), - [anon_sym_DQUOTE] = ACTIONS(3852), - [anon_sym_DOLLAR] = ACTIONS(3854), - [sym_raw_string] = ACTIONS(3852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3852), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3852), - [anon_sym_BQUOTE] = ACTIONS(3852), - [anon_sym_LT_LPAREN] = ACTIONS(3852), - [anon_sym_GT_LPAREN] = ACTIONS(3852), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3854), - [anon_sym_LF] = ACTIONS(3852), - [anon_sym_AMP] = ACTIONS(3854), + [sym__concat] = ACTIONS(3998), + [sym_variable_name] = ACTIONS(3998), + [anon_sym_SEMI] = ACTIONS(4000), + [anon_sym_esac] = ACTIONS(4000), + [anon_sym_PIPE] = ACTIONS(4000), + [anon_sym_SEMI_SEMI] = ACTIONS(3998), + [anon_sym_PIPE_AMP] = ACTIONS(3998), + [anon_sym_AMP_AMP] = ACTIONS(3998), + [anon_sym_PIPE_PIPE] = ACTIONS(3998), + [sym__special_characters] = ACTIONS(3998), + [anon_sym_DQUOTE] = ACTIONS(3998), + [anon_sym_DOLLAR] = ACTIONS(4000), + [sym_raw_string] = ACTIONS(3998), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3998), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3998), + [anon_sym_BQUOTE] = ACTIONS(3998), + [anon_sym_LT_LPAREN] = ACTIONS(3998), + [anon_sym_GT_LPAREN] = ACTIONS(3998), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4000), + [sym_word] = ACTIONS(4000), + [anon_sym_LF] = ACTIONS(3998), + [anon_sym_AMP] = ACTIONS(4000), }, [2769] = { - [sym_concatenation] = STATE(2808), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(2808), - [anon_sym_RBRACE] = ACTIONS(6415), - [anon_sym_EQ] = ACTIONS(6423), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(6425), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(6423), - [anon_sym_COLON_QMARK] = ACTIONS(6423), - [anon_sym_COLON_DASH] = ACTIONS(6423), - [anon_sym_PERCENT] = ACTIONS(6423), - [anon_sym_DASH] = ACTIONS(6423), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(6472), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2770] = { - [sym_file_descriptor] = ACTIONS(3893), - [sym__concat] = ACTIONS(3893), - [sym_variable_name] = ACTIONS(3893), - [anon_sym_SEMI] = ACTIONS(3895), - [anon_sym_esac] = ACTIONS(3895), - [anon_sym_PIPE] = ACTIONS(3895), - [anon_sym_SEMI_SEMI] = ACTIONS(3893), - [anon_sym_PIPE_AMP] = ACTIONS(3893), - [anon_sym_AMP_AMP] = ACTIONS(3893), - [anon_sym_PIPE_PIPE] = ACTIONS(3893), - [anon_sym_LT] = ACTIONS(3895), - [anon_sym_GT] = ACTIONS(3895), - [anon_sym_GT_GT] = ACTIONS(3893), - [anon_sym_AMP_GT] = ACTIONS(3895), - [anon_sym_AMP_GT_GT] = ACTIONS(3893), - [anon_sym_LT_AMP] = ACTIONS(3893), - [anon_sym_GT_AMP] = ACTIONS(3893), - [sym__special_characters] = ACTIONS(3893), - [anon_sym_DQUOTE] = ACTIONS(3893), - [anon_sym_DOLLAR] = ACTIONS(3895), - [sym_raw_string] = ACTIONS(3893), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3893), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3893), - [anon_sym_BQUOTE] = ACTIONS(3893), - [anon_sym_LT_LPAREN] = ACTIONS(3893), - [anon_sym_GT_LPAREN] = ACTIONS(3893), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3895), - [anon_sym_LF] = ACTIONS(3893), - [anon_sym_AMP] = ACTIONS(3895), + [sym_concatenation] = STATE(2838), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2838), + [anon_sym_RBRACE] = ACTIONS(6470), + [anon_sym_EQ] = ACTIONS(6478), + [anon_sym_DASH] = ACTIONS(6478), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(6480), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(6478), + [anon_sym_COLON_QMARK] = ACTIONS(6478), + [anon_sym_COLON_DASH] = ACTIONS(6478), + [anon_sym_PERCENT] = ACTIONS(6478), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2771] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(6427), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(6470), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2772] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(6415), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym__concat] = ACTIONS(4043), + [sym_variable_name] = ACTIONS(4043), + [anon_sym_SEMI] = ACTIONS(4045), + [anon_sym_esac] = ACTIONS(4045), + [anon_sym_PIPE] = ACTIONS(4045), + [anon_sym_SEMI_SEMI] = ACTIONS(4043), + [anon_sym_PIPE_AMP] = ACTIONS(4043), + [anon_sym_AMP_AMP] = ACTIONS(4043), + [anon_sym_PIPE_PIPE] = ACTIONS(4043), + [sym__special_characters] = ACTIONS(4043), + [anon_sym_DQUOTE] = ACTIONS(4043), + [anon_sym_DOLLAR] = ACTIONS(4045), + [sym_raw_string] = ACTIONS(4043), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4043), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4043), + [anon_sym_BQUOTE] = ACTIONS(4043), + [anon_sym_LT_LPAREN] = ACTIONS(4043), + [anon_sym_GT_LPAREN] = ACTIONS(4043), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4045), + [sym_word] = ACTIONS(4045), + [anon_sym_LF] = ACTIONS(4043), + [anon_sym_AMP] = ACTIONS(4045), }, [2773] = { - [sym_file_descriptor] = ACTIONS(3915), - [sym__concat] = ACTIONS(3915), - [sym_variable_name] = ACTIONS(3915), - [anon_sym_SEMI] = ACTIONS(3917), - [anon_sym_esac] = ACTIONS(3917), - [anon_sym_PIPE] = ACTIONS(3917), - [anon_sym_SEMI_SEMI] = ACTIONS(3915), - [anon_sym_PIPE_AMP] = ACTIONS(3915), - [anon_sym_AMP_AMP] = ACTIONS(3915), - [anon_sym_PIPE_PIPE] = ACTIONS(3915), - [anon_sym_LT] = ACTIONS(3917), - [anon_sym_GT] = ACTIONS(3917), - [anon_sym_GT_GT] = ACTIONS(3915), - [anon_sym_AMP_GT] = ACTIONS(3917), - [anon_sym_AMP_GT_GT] = ACTIONS(3915), - [anon_sym_LT_AMP] = ACTIONS(3915), - [anon_sym_GT_AMP] = ACTIONS(3915), - [sym__special_characters] = ACTIONS(3915), - [anon_sym_DQUOTE] = ACTIONS(3915), - [anon_sym_DOLLAR] = ACTIONS(3917), - [sym_raw_string] = ACTIONS(3915), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3915), - [anon_sym_BQUOTE] = ACTIONS(3915), - [anon_sym_LT_LPAREN] = ACTIONS(3915), - [anon_sym_GT_LPAREN] = ACTIONS(3915), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3917), - [anon_sym_LF] = ACTIONS(3915), - [anon_sym_AMP] = ACTIONS(3917), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(6482), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2774] = { - [sym_file_descriptor] = ACTIONS(3939), - [sym__concat] = ACTIONS(3939), - [sym_variable_name] = ACTIONS(3939), - [anon_sym_SEMI] = ACTIONS(3941), - [anon_sym_esac] = ACTIONS(3941), - [anon_sym_PIPE] = ACTIONS(3941), - [anon_sym_SEMI_SEMI] = ACTIONS(3939), - [anon_sym_PIPE_AMP] = ACTIONS(3939), - [anon_sym_AMP_AMP] = ACTIONS(3939), - [anon_sym_PIPE_PIPE] = ACTIONS(3939), - [anon_sym_LT] = ACTIONS(3941), - [anon_sym_GT] = ACTIONS(3941), - [anon_sym_GT_GT] = ACTIONS(3939), - [anon_sym_AMP_GT] = ACTIONS(3941), - [anon_sym_AMP_GT_GT] = ACTIONS(3939), - [anon_sym_LT_AMP] = ACTIONS(3939), - [anon_sym_GT_AMP] = ACTIONS(3939), - [sym__special_characters] = ACTIONS(3939), - [anon_sym_DQUOTE] = ACTIONS(3939), - [anon_sym_DOLLAR] = ACTIONS(3941), - [sym_raw_string] = ACTIONS(3939), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3939), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3939), - [anon_sym_BQUOTE] = ACTIONS(3939), - [anon_sym_LT_LPAREN] = ACTIONS(3939), - [anon_sym_GT_LPAREN] = ACTIONS(3939), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3941), - [anon_sym_LF] = ACTIONS(3939), - [anon_sym_AMP] = ACTIONS(3941), + [sym__concat] = ACTIONS(4065), + [sym_variable_name] = ACTIONS(4065), + [anon_sym_SEMI] = ACTIONS(4067), + [anon_sym_esac] = ACTIONS(4067), + [anon_sym_PIPE] = ACTIONS(4067), + [anon_sym_SEMI_SEMI] = ACTIONS(4065), + [anon_sym_PIPE_AMP] = ACTIONS(4065), + [anon_sym_AMP_AMP] = ACTIONS(4065), + [anon_sym_PIPE_PIPE] = ACTIONS(4065), + [sym__special_characters] = ACTIONS(4065), + [anon_sym_DQUOTE] = ACTIONS(4065), + [anon_sym_DOLLAR] = ACTIONS(4067), + [sym_raw_string] = ACTIONS(4065), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4065), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4065), + [anon_sym_BQUOTE] = ACTIONS(4065), + [anon_sym_LT_LPAREN] = ACTIONS(4065), + [anon_sym_GT_LPAREN] = ACTIONS(4065), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4067), + [sym_word] = ACTIONS(4067), + [anon_sym_LF] = ACTIONS(4065), + [anon_sym_AMP] = ACTIONS(4067), }, [2775] = { - [aux_sym_concatenation_repeat1] = STATE(2775), - [sym__concat] = ACTIONS(3293), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_esac] = ACTIONS(1724), - [anon_sym_PIPE] = ACTIONS(1726), - [anon_sym_SEMI_SEMI] = ACTIONS(1724), - [anon_sym_PIPE_AMP] = ACTIONS(1724), - [anon_sym_AMP_AMP] = ACTIONS(1724), - [anon_sym_PIPE_PIPE] = ACTIONS(1724), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1726), + [sym__concat] = ACTIONS(4089), + [sym_variable_name] = ACTIONS(4089), + [anon_sym_SEMI] = ACTIONS(4091), + [anon_sym_esac] = ACTIONS(4091), + [anon_sym_PIPE] = ACTIONS(4091), + [anon_sym_SEMI_SEMI] = ACTIONS(4089), + [anon_sym_PIPE_AMP] = ACTIONS(4089), + [anon_sym_AMP_AMP] = ACTIONS(4089), + [anon_sym_PIPE_PIPE] = ACTIONS(4089), + [sym__special_characters] = ACTIONS(4089), + [anon_sym_DQUOTE] = ACTIONS(4089), + [anon_sym_DOLLAR] = ACTIONS(4091), + [sym_raw_string] = ACTIONS(4089), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4089), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4089), + [anon_sym_BQUOTE] = ACTIONS(4089), + [anon_sym_LT_LPAREN] = ACTIONS(4089), + [anon_sym_GT_LPAREN] = ACTIONS(4089), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4091), + [sym_word] = ACTIONS(4091), + [anon_sym_LF] = ACTIONS(4089), + [anon_sym_AMP] = ACTIONS(4091), }, [2776] = { - [aux_sym_concatenation_repeat1] = STATE(2776), - [sym_file_descriptor] = ACTIONS(1724), - [sym__concat] = ACTIONS(4968), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_esac] = ACTIONS(1724), - [anon_sym_PIPE] = ACTIONS(1726), - [anon_sym_SEMI_SEMI] = ACTIONS(1724), - [anon_sym_PIPE_AMP] = ACTIONS(1724), - [anon_sym_AMP_AMP] = ACTIONS(1724), - [anon_sym_PIPE_PIPE] = ACTIONS(1724), - [anon_sym_LT] = ACTIONS(1726), - [anon_sym_GT] = ACTIONS(1726), - [anon_sym_GT_GT] = ACTIONS(1724), - [anon_sym_AMP_GT] = ACTIONS(1726), - [anon_sym_AMP_GT_GT] = ACTIONS(1724), - [anon_sym_LT_AMP] = ACTIONS(1724), - [anon_sym_GT_AMP] = ACTIONS(1724), - [anon_sym_LT_LT] = ACTIONS(1726), - [anon_sym_LT_LT_DASH] = ACTIONS(1724), - [anon_sym_LT_LT_LT] = ACTIONS(1724), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1726), + [sym__concat] = ACTIONS(3934), + [anon_sym_SEMI] = ACTIONS(3936), + [anon_sym_esac] = ACTIONS(3936), + [anon_sym_PIPE] = ACTIONS(3936), + [anon_sym_SEMI_SEMI] = ACTIONS(3934), + [anon_sym_PIPE_AMP] = ACTIONS(3934), + [anon_sym_AMP_AMP] = ACTIONS(3934), + [anon_sym_PIPE_PIPE] = ACTIONS(3934), + [sym__special_characters] = ACTIONS(3934), + [anon_sym_DQUOTE] = ACTIONS(3934), + [anon_sym_DOLLAR] = ACTIONS(3936), + [sym_raw_string] = ACTIONS(3934), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3934), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3934), + [anon_sym_BQUOTE] = ACTIONS(3934), + [anon_sym_LT_LPAREN] = ACTIONS(3934), + [anon_sym_GT_LPAREN] = ACTIONS(3934), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3936), + [sym_word] = ACTIONS(3936), + [anon_sym_LF] = ACTIONS(3934), + [anon_sym_AMP] = ACTIONS(3936), }, [2777] = { - [sym__concat] = ACTIONS(4568), - [sym_variable_name] = ACTIONS(4568), - [anon_sym_SEMI] = ACTIONS(4570), - [anon_sym_esac] = ACTIONS(4570), - [anon_sym_PIPE] = ACTIONS(4570), - [anon_sym_SEMI_SEMI] = ACTIONS(4568), - [anon_sym_PIPE_AMP] = ACTIONS(4568), - [anon_sym_AMP_AMP] = ACTIONS(4568), - [anon_sym_PIPE_PIPE] = ACTIONS(4568), - [sym__special_characters] = ACTIONS(4568), - [anon_sym_DQUOTE] = ACTIONS(4568), - [anon_sym_DOLLAR] = ACTIONS(4570), - [sym_raw_string] = ACTIONS(4568), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4568), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4568), - [anon_sym_BQUOTE] = ACTIONS(4568), - [anon_sym_LT_LPAREN] = ACTIONS(4568), - [anon_sym_GT_LPAREN] = ACTIONS(4568), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4570), - [sym_word] = ACTIONS(4570), - [anon_sym_LF] = ACTIONS(4568), - [anon_sym_AMP] = ACTIONS(4570), + [sym__concat] = ACTIONS(3942), + [anon_sym_SEMI] = ACTIONS(3944), + [anon_sym_esac] = ACTIONS(3944), + [anon_sym_PIPE] = ACTIONS(3944), + [anon_sym_SEMI_SEMI] = ACTIONS(3942), + [anon_sym_PIPE_AMP] = ACTIONS(3942), + [anon_sym_AMP_AMP] = ACTIONS(3942), + [anon_sym_PIPE_PIPE] = ACTIONS(3942), + [sym__special_characters] = ACTIONS(3942), + [anon_sym_DQUOTE] = ACTIONS(3942), + [anon_sym_DOLLAR] = ACTIONS(3944), + [sym_raw_string] = ACTIONS(3942), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3942), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3942), + [anon_sym_BQUOTE] = ACTIONS(3942), + [anon_sym_LT_LPAREN] = ACTIONS(3942), + [anon_sym_GT_LPAREN] = ACTIONS(3942), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3944), + [sym_word] = ACTIONS(3944), + [anon_sym_LF] = ACTIONS(3942), + [anon_sym_AMP] = ACTIONS(3944), }, [2778] = { - [sym__concat] = ACTIONS(4572), - [sym_variable_name] = ACTIONS(4572), - [anon_sym_SEMI] = ACTIONS(4574), - [anon_sym_esac] = ACTIONS(4574), - [anon_sym_PIPE] = ACTIONS(4574), - [anon_sym_SEMI_SEMI] = ACTIONS(4572), - [anon_sym_PIPE_AMP] = ACTIONS(4572), - [anon_sym_AMP_AMP] = ACTIONS(4572), - [anon_sym_PIPE_PIPE] = ACTIONS(4572), - [sym__special_characters] = ACTIONS(4572), - [anon_sym_DQUOTE] = ACTIONS(4572), - [anon_sym_DOLLAR] = ACTIONS(4574), - [sym_raw_string] = ACTIONS(4572), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4572), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4572), - [anon_sym_BQUOTE] = ACTIONS(4572), - [anon_sym_LT_LPAREN] = ACTIONS(4572), - [anon_sym_GT_LPAREN] = ACTIONS(4572), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4574), - [sym_word] = ACTIONS(4574), - [anon_sym_LF] = ACTIONS(4572), - [anon_sym_AMP] = ACTIONS(4574), + [aux_sym_concatenation_repeat1] = STATE(1366), + [sym__concat] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(6484), + [sym_comment] = ACTIONS(55), }, [2779] = { - [sym__concat] = ACTIONS(4576), - [sym_variable_name] = ACTIONS(4576), - [anon_sym_SEMI] = ACTIONS(4578), - [anon_sym_esac] = ACTIONS(4578), - [anon_sym_PIPE] = ACTIONS(4578), - [anon_sym_SEMI_SEMI] = ACTIONS(4576), - [anon_sym_PIPE_AMP] = ACTIONS(4576), - [anon_sym_AMP_AMP] = ACTIONS(4576), - [anon_sym_PIPE_PIPE] = ACTIONS(4576), - [sym__special_characters] = ACTIONS(4576), - [anon_sym_DQUOTE] = ACTIONS(4576), - [anon_sym_DOLLAR] = ACTIONS(4578), - [sym_raw_string] = ACTIONS(4576), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4576), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4576), - [anon_sym_BQUOTE] = ACTIONS(4576), - [anon_sym_LT_LPAREN] = ACTIONS(4576), - [anon_sym_GT_LPAREN] = ACTIONS(4576), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4578), - [sym_word] = ACTIONS(4578), - [anon_sym_LF] = ACTIONS(4576), - [anon_sym_AMP] = ACTIONS(4578), + [aux_sym_concatenation_repeat1] = STATE(1366), + [sym__concat] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(6486), + [sym_comment] = ACTIONS(55), }, [2780] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(6429), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [anon_sym_RBRACE] = ACTIONS(6486), + [sym_comment] = ACTIONS(55), }, [2781] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(6431), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_concatenation] = STATE(2843), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2843), + [anon_sym_RBRACE] = ACTIONS(6488), + [anon_sym_EQ] = ACTIONS(6490), + [anon_sym_DASH] = ACTIONS(6490), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(6492), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(6490), + [anon_sym_COLON_QMARK] = ACTIONS(6490), + [anon_sym_COLON_DASH] = ACTIONS(6490), + [anon_sym_PERCENT] = ACTIONS(6490), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2782] = { - [sym__concat] = ACTIONS(4608), - [sym_variable_name] = ACTIONS(4608), - [anon_sym_SEMI] = ACTIONS(4610), - [anon_sym_esac] = ACTIONS(4610), - [anon_sym_PIPE] = ACTIONS(4610), - [anon_sym_SEMI_SEMI] = ACTIONS(4608), - [anon_sym_PIPE_AMP] = ACTIONS(4608), - [anon_sym_AMP_AMP] = ACTIONS(4608), - [anon_sym_PIPE_PIPE] = ACTIONS(4608), - [sym__special_characters] = ACTIONS(4608), - [anon_sym_DQUOTE] = ACTIONS(4608), - [anon_sym_DOLLAR] = ACTIONS(4610), - [sym_raw_string] = ACTIONS(4608), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4608), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4608), - [anon_sym_BQUOTE] = ACTIONS(4608), - [anon_sym_LT_LPAREN] = ACTIONS(4608), - [anon_sym_GT_LPAREN] = ACTIONS(4608), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4610), - [sym_word] = ACTIONS(4610), - [anon_sym_LF] = ACTIONS(4608), - [anon_sym_AMP] = ACTIONS(4610), + [sym__concat] = ACTIONS(3998), + [anon_sym_SEMI] = ACTIONS(4000), + [anon_sym_esac] = ACTIONS(4000), + [anon_sym_PIPE] = ACTIONS(4000), + [anon_sym_SEMI_SEMI] = ACTIONS(3998), + [anon_sym_PIPE_AMP] = ACTIONS(3998), + [anon_sym_AMP_AMP] = ACTIONS(3998), + [anon_sym_PIPE_PIPE] = ACTIONS(3998), + [sym__special_characters] = ACTIONS(3998), + [anon_sym_DQUOTE] = ACTIONS(3998), + [anon_sym_DOLLAR] = ACTIONS(4000), + [sym_raw_string] = ACTIONS(3998), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3998), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3998), + [anon_sym_BQUOTE] = ACTIONS(3998), + [anon_sym_LT_LPAREN] = ACTIONS(3998), + [anon_sym_GT_LPAREN] = ACTIONS(3998), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4000), + [sym_word] = ACTIONS(4000), + [anon_sym_LF] = ACTIONS(3998), + [anon_sym_AMP] = ACTIONS(4000), }, [2783] = { - [sym__concat] = ACTIONS(4568), - [anon_sym_SEMI] = ACTIONS(4570), - [anon_sym_esac] = ACTIONS(4570), - [anon_sym_PIPE] = ACTIONS(4570), - [anon_sym_SEMI_SEMI] = ACTIONS(4568), - [anon_sym_PIPE_AMP] = ACTIONS(4568), - [anon_sym_AMP_AMP] = ACTIONS(4568), - [anon_sym_PIPE_PIPE] = ACTIONS(4568), - [sym__special_characters] = ACTIONS(4568), - [anon_sym_DQUOTE] = ACTIONS(4568), - [anon_sym_DOLLAR] = ACTIONS(4570), - [sym_raw_string] = ACTIONS(4568), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4568), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4568), - [anon_sym_BQUOTE] = ACTIONS(4568), - [anon_sym_LT_LPAREN] = ACTIONS(4568), - [anon_sym_GT_LPAREN] = ACTIONS(4568), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4570), - [sym_word] = ACTIONS(4570), - [anon_sym_LF] = ACTIONS(4568), - [anon_sym_AMP] = ACTIONS(4570), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(6488), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2784] = { - [sym__concat] = ACTIONS(4572), - [anon_sym_SEMI] = ACTIONS(4574), - [anon_sym_esac] = ACTIONS(4574), - [anon_sym_PIPE] = ACTIONS(4574), - [anon_sym_SEMI_SEMI] = ACTIONS(4572), - [anon_sym_PIPE_AMP] = ACTIONS(4572), - [anon_sym_AMP_AMP] = ACTIONS(4572), - [anon_sym_PIPE_PIPE] = ACTIONS(4572), - [sym__special_characters] = ACTIONS(4572), - [anon_sym_DQUOTE] = ACTIONS(4572), - [anon_sym_DOLLAR] = ACTIONS(4574), - [sym_raw_string] = ACTIONS(4572), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4572), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4572), - [anon_sym_BQUOTE] = ACTIONS(4572), - [anon_sym_LT_LPAREN] = ACTIONS(4572), - [anon_sym_GT_LPAREN] = ACTIONS(4572), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4574), - [sym_word] = ACTIONS(4574), - [anon_sym_LF] = ACTIONS(4572), - [anon_sym_AMP] = ACTIONS(4574), + [sym_concatenation] = STATE(2844), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2844), + [anon_sym_RBRACE] = ACTIONS(6486), + [anon_sym_EQ] = ACTIONS(6494), + [anon_sym_DASH] = ACTIONS(6494), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(6496), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(6494), + [anon_sym_COLON_QMARK] = ACTIONS(6494), + [anon_sym_COLON_DASH] = ACTIONS(6494), + [anon_sym_PERCENT] = ACTIONS(6494), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2785] = { - [sym__concat] = ACTIONS(4576), - [anon_sym_SEMI] = ACTIONS(4578), - [anon_sym_esac] = ACTIONS(4578), - [anon_sym_PIPE] = ACTIONS(4578), - [anon_sym_SEMI_SEMI] = ACTIONS(4576), - [anon_sym_PIPE_AMP] = ACTIONS(4576), - [anon_sym_AMP_AMP] = ACTIONS(4576), - [anon_sym_PIPE_PIPE] = ACTIONS(4576), - [sym__special_characters] = ACTIONS(4576), - [anon_sym_DQUOTE] = ACTIONS(4576), - [anon_sym_DOLLAR] = ACTIONS(4578), - [sym_raw_string] = ACTIONS(4576), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4576), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4576), - [anon_sym_BQUOTE] = ACTIONS(4576), - [anon_sym_LT_LPAREN] = ACTIONS(4576), - [anon_sym_GT_LPAREN] = ACTIONS(4576), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4578), - [sym_word] = ACTIONS(4578), - [anon_sym_LF] = ACTIONS(4576), - [anon_sym_AMP] = ACTIONS(4578), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(6486), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2786] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(6433), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym__concat] = ACTIONS(4043), + [anon_sym_SEMI] = ACTIONS(4045), + [anon_sym_esac] = ACTIONS(4045), + [anon_sym_PIPE] = ACTIONS(4045), + [anon_sym_SEMI_SEMI] = ACTIONS(4043), + [anon_sym_PIPE_AMP] = ACTIONS(4043), + [anon_sym_AMP_AMP] = ACTIONS(4043), + [anon_sym_PIPE_PIPE] = ACTIONS(4043), + [sym__special_characters] = ACTIONS(4043), + [anon_sym_DQUOTE] = ACTIONS(4043), + [anon_sym_DOLLAR] = ACTIONS(4045), + [sym_raw_string] = ACTIONS(4043), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4043), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4043), + [anon_sym_BQUOTE] = ACTIONS(4043), + [anon_sym_LT_LPAREN] = ACTIONS(4043), + [anon_sym_GT_LPAREN] = ACTIONS(4043), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4045), + [sym_word] = ACTIONS(4045), + [anon_sym_LF] = ACTIONS(4043), + [anon_sym_AMP] = ACTIONS(4045), }, [2787] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(6435), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(6498), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2788] = { - [sym__concat] = ACTIONS(4608), - [anon_sym_SEMI] = ACTIONS(4610), - [anon_sym_esac] = ACTIONS(4610), - [anon_sym_PIPE] = ACTIONS(4610), - [anon_sym_SEMI_SEMI] = ACTIONS(4608), - [anon_sym_PIPE_AMP] = ACTIONS(4608), - [anon_sym_AMP_AMP] = ACTIONS(4608), - [anon_sym_PIPE_PIPE] = ACTIONS(4608), - [sym__special_characters] = ACTIONS(4608), - [anon_sym_DQUOTE] = ACTIONS(4608), - [anon_sym_DOLLAR] = ACTIONS(4610), - [sym_raw_string] = ACTIONS(4608), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4608), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4608), - [anon_sym_BQUOTE] = ACTIONS(4608), - [anon_sym_LT_LPAREN] = ACTIONS(4608), - [anon_sym_GT_LPAREN] = ACTIONS(4608), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4610), - [sym_word] = ACTIONS(4610), - [anon_sym_LF] = ACTIONS(4608), - [anon_sym_AMP] = ACTIONS(4610), + [sym__concat] = ACTIONS(4065), + [anon_sym_SEMI] = ACTIONS(4067), + [anon_sym_esac] = ACTIONS(4067), + [anon_sym_PIPE] = ACTIONS(4067), + [anon_sym_SEMI_SEMI] = ACTIONS(4065), + [anon_sym_PIPE_AMP] = ACTIONS(4065), + [anon_sym_AMP_AMP] = ACTIONS(4065), + [anon_sym_PIPE_PIPE] = ACTIONS(4065), + [sym__special_characters] = ACTIONS(4065), + [anon_sym_DQUOTE] = ACTIONS(4065), + [anon_sym_DOLLAR] = ACTIONS(4067), + [sym_raw_string] = ACTIONS(4065), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4065), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4065), + [anon_sym_BQUOTE] = ACTIONS(4065), + [anon_sym_LT_LPAREN] = ACTIONS(4065), + [anon_sym_GT_LPAREN] = ACTIONS(4065), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4067), + [sym_word] = ACTIONS(4067), + [anon_sym_LF] = ACTIONS(4065), + [anon_sym_AMP] = ACTIONS(4067), }, [2789] = { - [sym__simple_heredoc_body] = ACTIONS(5069), - [sym__heredoc_body_beginning] = ACTIONS(5069), - [sym_file_descriptor] = ACTIONS(5069), - [sym__concat] = ACTIONS(5069), - [anon_sym_SEMI] = ACTIONS(5071), - [anon_sym_esac] = ACTIONS(5071), - [anon_sym_PIPE] = ACTIONS(5071), - [anon_sym_SEMI_SEMI] = ACTIONS(5069), - [anon_sym_PIPE_AMP] = ACTIONS(5069), - [anon_sym_AMP_AMP] = ACTIONS(5069), - [anon_sym_PIPE_PIPE] = ACTIONS(5069), - [anon_sym_EQ_TILDE] = ACTIONS(5071), - [anon_sym_EQ_EQ] = ACTIONS(5071), - [anon_sym_LT] = ACTIONS(5071), - [anon_sym_GT] = ACTIONS(5071), - [anon_sym_GT_GT] = ACTIONS(5069), - [anon_sym_AMP_GT] = ACTIONS(5071), - [anon_sym_AMP_GT_GT] = ACTIONS(5069), - [anon_sym_LT_AMP] = ACTIONS(5069), - [anon_sym_GT_AMP] = ACTIONS(5069), - [anon_sym_LT_LT] = ACTIONS(5071), - [anon_sym_LT_LT_DASH] = ACTIONS(5069), - [anon_sym_LT_LT_LT] = ACTIONS(5069), - [sym__special_characters] = ACTIONS(5069), - [anon_sym_DQUOTE] = ACTIONS(5069), - [anon_sym_DOLLAR] = ACTIONS(5071), - [sym_raw_string] = ACTIONS(5069), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5069), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5069), - [anon_sym_BQUOTE] = ACTIONS(5069), - [anon_sym_LT_LPAREN] = ACTIONS(5069), - [anon_sym_GT_LPAREN] = ACTIONS(5069), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5071), - [anon_sym_LF] = ACTIONS(5069), - [anon_sym_AMP] = ACTIONS(5071), + [sym__concat] = ACTIONS(4089), + [anon_sym_SEMI] = ACTIONS(4091), + [anon_sym_esac] = ACTIONS(4091), + [anon_sym_PIPE] = ACTIONS(4091), + [anon_sym_SEMI_SEMI] = ACTIONS(4089), + [anon_sym_PIPE_AMP] = ACTIONS(4089), + [anon_sym_AMP_AMP] = ACTIONS(4089), + [anon_sym_PIPE_PIPE] = ACTIONS(4089), + [sym__special_characters] = ACTIONS(4089), + [anon_sym_DQUOTE] = ACTIONS(4089), + [anon_sym_DOLLAR] = ACTIONS(4091), + [sym_raw_string] = ACTIONS(4089), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4089), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4089), + [anon_sym_BQUOTE] = ACTIONS(4089), + [anon_sym_LT_LPAREN] = ACTIONS(4089), + [anon_sym_GT_LPAREN] = ACTIONS(4089), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4091), + [sym_word] = ACTIONS(4091), + [anon_sym_LF] = ACTIONS(4089), + [anon_sym_AMP] = ACTIONS(4091), }, [2790] = { - [sym__simple_heredoc_body] = ACTIONS(5073), - [sym__heredoc_body_beginning] = ACTIONS(5073), - [sym_file_descriptor] = ACTIONS(5073), - [sym__concat] = ACTIONS(5073), - [anon_sym_SEMI] = ACTIONS(5075), - [anon_sym_esac] = ACTIONS(5075), - [anon_sym_PIPE] = ACTIONS(5075), - [anon_sym_SEMI_SEMI] = ACTIONS(5073), - [anon_sym_PIPE_AMP] = ACTIONS(5073), - [anon_sym_AMP_AMP] = ACTIONS(5073), - [anon_sym_PIPE_PIPE] = ACTIONS(5073), - [anon_sym_EQ_TILDE] = ACTIONS(5075), - [anon_sym_EQ_EQ] = ACTIONS(5075), - [anon_sym_LT] = ACTIONS(5075), - [anon_sym_GT] = ACTIONS(5075), - [anon_sym_GT_GT] = ACTIONS(5073), - [anon_sym_AMP_GT] = ACTIONS(5075), - [anon_sym_AMP_GT_GT] = ACTIONS(5073), - [anon_sym_LT_AMP] = ACTIONS(5073), - [anon_sym_GT_AMP] = ACTIONS(5073), - [anon_sym_LT_LT] = ACTIONS(5075), - [anon_sym_LT_LT_DASH] = ACTIONS(5073), - [anon_sym_LT_LT_LT] = ACTIONS(5073), - [sym__special_characters] = ACTIONS(5073), - [anon_sym_DQUOTE] = ACTIONS(5073), - [anon_sym_DOLLAR] = ACTIONS(5075), - [sym_raw_string] = ACTIONS(5073), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5073), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5073), - [anon_sym_BQUOTE] = ACTIONS(5073), - [anon_sym_LT_LPAREN] = ACTIONS(5073), - [anon_sym_GT_LPAREN] = ACTIONS(5073), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5075), - [anon_sym_LF] = ACTIONS(5073), - [anon_sym_AMP] = ACTIONS(5075), + [sym__simple_heredoc_body] = ACTIONS(4710), + [sym__heredoc_body_beginning] = ACTIONS(4710), + [sym_file_descriptor] = ACTIONS(4710), + [sym__concat] = ACTIONS(4710), + [anon_sym_SEMI] = ACTIONS(4712), + [anon_sym_esac] = ACTIONS(4712), + [anon_sym_PIPE] = ACTIONS(4712), + [anon_sym_SEMI_SEMI] = ACTIONS(4710), + [anon_sym_PIPE_AMP] = ACTIONS(4710), + [anon_sym_AMP_AMP] = ACTIONS(4710), + [anon_sym_PIPE_PIPE] = ACTIONS(4710), + [anon_sym_EQ_TILDE] = ACTIONS(4712), + [anon_sym_EQ_EQ] = ACTIONS(4712), + [anon_sym_LT] = ACTIONS(4712), + [anon_sym_GT] = ACTIONS(4712), + [anon_sym_GT_GT] = ACTIONS(4710), + [anon_sym_AMP_GT] = ACTIONS(4712), + [anon_sym_AMP_GT_GT] = ACTIONS(4710), + [anon_sym_LT_AMP] = ACTIONS(4710), + [anon_sym_GT_AMP] = ACTIONS(4710), + [anon_sym_LT_LT] = ACTIONS(4712), + [anon_sym_LT_LT_DASH] = ACTIONS(4710), + [anon_sym_LT_LT_LT] = ACTIONS(4710), + [sym__special_characters] = ACTIONS(4710), + [anon_sym_DQUOTE] = ACTIONS(4710), + [anon_sym_DOLLAR] = ACTIONS(4712), + [sym_raw_string] = ACTIONS(4710), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4710), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4710), + [anon_sym_BQUOTE] = ACTIONS(4710), + [anon_sym_LT_LPAREN] = ACTIONS(4710), + [anon_sym_GT_LPAREN] = ACTIONS(4710), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(4712), + [anon_sym_LF] = ACTIONS(4710), + [anon_sym_AMP] = ACTIONS(4712), }, [2791] = { - [sym__simple_heredoc_body] = ACTIONS(3788), - [sym__heredoc_body_beginning] = ACTIONS(3788), - [sym_file_descriptor] = ACTIONS(3788), - [sym__concat] = ACTIONS(3788), - [anon_sym_SEMI] = ACTIONS(3790), - [anon_sym_esac] = ACTIONS(3788), - [anon_sym_PIPE] = ACTIONS(3790), - [anon_sym_SEMI_SEMI] = ACTIONS(3788), - [anon_sym_PIPE_AMP] = ACTIONS(3788), - [anon_sym_AMP_AMP] = ACTIONS(3788), - [anon_sym_PIPE_PIPE] = ACTIONS(3788), - [anon_sym_LT] = ACTIONS(3790), - [anon_sym_GT] = ACTIONS(3790), - [anon_sym_GT_GT] = ACTIONS(3788), - [anon_sym_AMP_GT] = ACTIONS(3790), - [anon_sym_AMP_GT_GT] = ACTIONS(3788), - [anon_sym_LT_AMP] = ACTIONS(3788), - [anon_sym_GT_AMP] = ACTIONS(3788), - [anon_sym_LT_LT] = ACTIONS(3790), - [anon_sym_LT_LT_DASH] = ACTIONS(3788), - [anon_sym_LT_LT_LT] = ACTIONS(3788), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(3788), - [anon_sym_AMP] = ACTIONS(3790), + [sym__simple_heredoc_body] = ACTIONS(4714), + [sym__heredoc_body_beginning] = ACTIONS(4714), + [sym_file_descriptor] = ACTIONS(4714), + [sym__concat] = ACTIONS(4714), + [anon_sym_SEMI] = ACTIONS(4716), + [anon_sym_esac] = ACTIONS(4716), + [anon_sym_PIPE] = ACTIONS(4716), + [anon_sym_SEMI_SEMI] = ACTIONS(4714), + [anon_sym_PIPE_AMP] = ACTIONS(4714), + [anon_sym_AMP_AMP] = ACTIONS(4714), + [anon_sym_PIPE_PIPE] = ACTIONS(4714), + [anon_sym_EQ_TILDE] = ACTIONS(4716), + [anon_sym_EQ_EQ] = ACTIONS(4716), + [anon_sym_LT] = ACTIONS(4716), + [anon_sym_GT] = ACTIONS(4716), + [anon_sym_GT_GT] = ACTIONS(4714), + [anon_sym_AMP_GT] = ACTIONS(4716), + [anon_sym_AMP_GT_GT] = ACTIONS(4714), + [anon_sym_LT_AMP] = ACTIONS(4714), + [anon_sym_GT_AMP] = ACTIONS(4714), + [anon_sym_LT_LT] = ACTIONS(4716), + [anon_sym_LT_LT_DASH] = ACTIONS(4714), + [anon_sym_LT_LT_LT] = ACTIONS(4714), + [sym__special_characters] = ACTIONS(4714), + [anon_sym_DQUOTE] = ACTIONS(4714), + [anon_sym_DOLLAR] = ACTIONS(4716), + [sym_raw_string] = ACTIONS(4714), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4714), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4714), + [anon_sym_BQUOTE] = ACTIONS(4714), + [anon_sym_LT_LPAREN] = ACTIONS(4714), + [anon_sym_GT_LPAREN] = ACTIONS(4714), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(4716), + [anon_sym_LF] = ACTIONS(4714), + [anon_sym_AMP] = ACTIONS(4716), }, [2792] = { - [sym__simple_heredoc_body] = ACTIONS(3796), - [sym__heredoc_body_beginning] = ACTIONS(3796), - [sym_file_descriptor] = ACTIONS(3796), - [sym__concat] = ACTIONS(3796), - [anon_sym_SEMI] = ACTIONS(3798), - [anon_sym_esac] = ACTIONS(3796), - [anon_sym_PIPE] = ACTIONS(3798), - [anon_sym_SEMI_SEMI] = ACTIONS(3796), - [anon_sym_PIPE_AMP] = ACTIONS(3796), - [anon_sym_AMP_AMP] = ACTIONS(3796), - [anon_sym_PIPE_PIPE] = ACTIONS(3796), - [anon_sym_LT] = ACTIONS(3798), - [anon_sym_GT] = ACTIONS(3798), - [anon_sym_GT_GT] = ACTIONS(3796), - [anon_sym_AMP_GT] = ACTIONS(3798), - [anon_sym_AMP_GT_GT] = ACTIONS(3796), - [anon_sym_LT_AMP] = ACTIONS(3796), - [anon_sym_GT_AMP] = ACTIONS(3796), - [anon_sym_LT_LT] = ACTIONS(3798), - [anon_sym_LT_LT_DASH] = ACTIONS(3796), - [anon_sym_LT_LT_LT] = ACTIONS(3796), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(3796), - [anon_sym_AMP] = ACTIONS(3798), + [sym__simple_heredoc_body] = ACTIONS(4718), + [sym__heredoc_body_beginning] = ACTIONS(4718), + [sym_file_descriptor] = ACTIONS(4718), + [sym__concat] = ACTIONS(4718), + [anon_sym_SEMI] = ACTIONS(4720), + [anon_sym_esac] = ACTIONS(4720), + [anon_sym_PIPE] = ACTIONS(4720), + [anon_sym_SEMI_SEMI] = ACTIONS(4718), + [anon_sym_PIPE_AMP] = ACTIONS(4718), + [anon_sym_AMP_AMP] = ACTIONS(4718), + [anon_sym_PIPE_PIPE] = ACTIONS(4718), + [anon_sym_EQ_TILDE] = ACTIONS(4720), + [anon_sym_EQ_EQ] = ACTIONS(4720), + [anon_sym_LT] = ACTIONS(4720), + [anon_sym_GT] = ACTIONS(4720), + [anon_sym_GT_GT] = ACTIONS(4718), + [anon_sym_AMP_GT] = ACTIONS(4720), + [anon_sym_AMP_GT_GT] = ACTIONS(4718), + [anon_sym_LT_AMP] = ACTIONS(4718), + [anon_sym_GT_AMP] = ACTIONS(4718), + [anon_sym_LT_LT] = ACTIONS(4720), + [anon_sym_LT_LT_DASH] = ACTIONS(4718), + [anon_sym_LT_LT_LT] = ACTIONS(4718), + [sym__special_characters] = ACTIONS(4718), + [anon_sym_DQUOTE] = ACTIONS(4718), + [anon_sym_DOLLAR] = ACTIONS(4720), + [sym_raw_string] = ACTIONS(4718), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4718), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4718), + [anon_sym_BQUOTE] = ACTIONS(4718), + [anon_sym_LT_LPAREN] = ACTIONS(4718), + [anon_sym_GT_LPAREN] = ACTIONS(4718), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(4720), + [anon_sym_LF] = ACTIONS(4718), + [anon_sym_AMP] = ACTIONS(4720), }, [2793] = { - [aux_sym_concatenation_repeat1] = STATE(1293), - [sym__concat] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(6437), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(6500), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2794] = { - [aux_sym_concatenation_repeat1] = STATE(1293), - [sym__concat] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(6439), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(6502), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2795] = { - [anon_sym_RBRACE] = ACTIONS(6439), - [sym_comment] = ACTIONS(53), + [sym__simple_heredoc_body] = ACTIONS(4754), + [sym__heredoc_body_beginning] = ACTIONS(4754), + [sym_file_descriptor] = ACTIONS(4754), + [sym__concat] = ACTIONS(4754), + [anon_sym_SEMI] = ACTIONS(4756), + [anon_sym_esac] = ACTIONS(4756), + [anon_sym_PIPE] = ACTIONS(4756), + [anon_sym_SEMI_SEMI] = ACTIONS(4754), + [anon_sym_PIPE_AMP] = ACTIONS(4754), + [anon_sym_AMP_AMP] = ACTIONS(4754), + [anon_sym_PIPE_PIPE] = ACTIONS(4754), + [anon_sym_EQ_TILDE] = ACTIONS(4756), + [anon_sym_EQ_EQ] = ACTIONS(4756), + [anon_sym_LT] = ACTIONS(4756), + [anon_sym_GT] = ACTIONS(4756), + [anon_sym_GT_GT] = ACTIONS(4754), + [anon_sym_AMP_GT] = ACTIONS(4756), + [anon_sym_AMP_GT_GT] = ACTIONS(4754), + [anon_sym_LT_AMP] = ACTIONS(4754), + [anon_sym_GT_AMP] = ACTIONS(4754), + [anon_sym_LT_LT] = ACTIONS(4756), + [anon_sym_LT_LT_DASH] = ACTIONS(4754), + [anon_sym_LT_LT_LT] = ACTIONS(4754), + [sym__special_characters] = ACTIONS(4754), + [anon_sym_DQUOTE] = ACTIONS(4754), + [anon_sym_DOLLAR] = ACTIONS(4756), + [sym_raw_string] = ACTIONS(4754), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4754), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4754), + [anon_sym_BQUOTE] = ACTIONS(4754), + [anon_sym_LT_LPAREN] = ACTIONS(4754), + [anon_sym_GT_LPAREN] = ACTIONS(4754), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(4756), + [anon_sym_LF] = ACTIONS(4754), + [anon_sym_AMP] = ACTIONS(4756), }, [2796] = { - [sym_concatenation] = STATE(2817), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(2817), - [anon_sym_RBRACE] = ACTIONS(6441), - [anon_sym_EQ] = ACTIONS(6443), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(6445), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(6443), - [anon_sym_COLON_QMARK] = ACTIONS(6443), - [anon_sym_COLON_DASH] = ACTIONS(6443), - [anon_sym_PERCENT] = ACTIONS(6443), - [anon_sym_DASH] = ACTIONS(6443), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym__simple_heredoc_body] = ACTIONS(2959), + [sym__heredoc_body_beginning] = ACTIONS(2959), + [sym_file_descriptor] = ACTIONS(2959), + [sym__concat] = ACTIONS(2959), + [anon_sym_SEMI] = ACTIONS(2961), + [anon_sym_esac] = ACTIONS(2959), + [anon_sym_PIPE] = ACTIONS(2961), + [anon_sym_SEMI_SEMI] = ACTIONS(2959), + [anon_sym_PIPE_AMP] = ACTIONS(2959), + [anon_sym_AMP_AMP] = ACTIONS(2959), + [anon_sym_PIPE_PIPE] = ACTIONS(2959), + [anon_sym_LT] = ACTIONS(2961), + [anon_sym_GT] = ACTIONS(2961), + [anon_sym_GT_GT] = ACTIONS(2959), + [anon_sym_AMP_GT] = ACTIONS(2961), + [anon_sym_AMP_GT_GT] = ACTIONS(2959), + [anon_sym_LT_AMP] = ACTIONS(2959), + [anon_sym_GT_AMP] = ACTIONS(2959), + [anon_sym_LT_LT] = ACTIONS(2961), + [anon_sym_LT_LT_DASH] = ACTIONS(2959), + [anon_sym_LT_LT_LT] = ACTIONS(2959), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2959), + [anon_sym_AMP] = ACTIONS(2961), }, [2797] = { - [sym__simple_heredoc_body] = ACTIONS(3852), - [sym__heredoc_body_beginning] = ACTIONS(3852), - [sym_file_descriptor] = ACTIONS(3852), - [sym__concat] = ACTIONS(3852), - [anon_sym_SEMI] = ACTIONS(3854), - [anon_sym_esac] = ACTIONS(3852), - [anon_sym_PIPE] = ACTIONS(3854), - [anon_sym_SEMI_SEMI] = ACTIONS(3852), - [anon_sym_PIPE_AMP] = ACTIONS(3852), - [anon_sym_AMP_AMP] = ACTIONS(3852), - [anon_sym_PIPE_PIPE] = ACTIONS(3852), - [anon_sym_LT] = ACTIONS(3854), - [anon_sym_GT] = ACTIONS(3854), - [anon_sym_GT_GT] = ACTIONS(3852), - [anon_sym_AMP_GT] = ACTIONS(3854), - [anon_sym_AMP_GT_GT] = ACTIONS(3852), - [anon_sym_LT_AMP] = ACTIONS(3852), - [anon_sym_GT_AMP] = ACTIONS(3852), - [anon_sym_LT_LT] = ACTIONS(3854), - [anon_sym_LT_LT_DASH] = ACTIONS(3852), - [anon_sym_LT_LT_LT] = ACTIONS(3852), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(3852), - [anon_sym_AMP] = ACTIONS(3854), + [sym__simple_heredoc_body] = ACTIONS(2973), + [sym__heredoc_body_beginning] = ACTIONS(2973), + [sym_file_descriptor] = ACTIONS(2973), + [sym__concat] = ACTIONS(2973), + [anon_sym_SEMI] = ACTIONS(2975), + [anon_sym_esac] = ACTIONS(2973), + [anon_sym_PIPE] = ACTIONS(2975), + [anon_sym_SEMI_SEMI] = ACTIONS(2973), + [anon_sym_PIPE_AMP] = ACTIONS(2973), + [anon_sym_AMP_AMP] = ACTIONS(2973), + [anon_sym_PIPE_PIPE] = ACTIONS(2973), + [anon_sym_LT] = ACTIONS(2975), + [anon_sym_GT] = ACTIONS(2975), + [anon_sym_GT_GT] = ACTIONS(2973), + [anon_sym_AMP_GT] = ACTIONS(2975), + [anon_sym_AMP_GT_GT] = ACTIONS(2973), + [anon_sym_LT_AMP] = ACTIONS(2973), + [anon_sym_GT_AMP] = ACTIONS(2973), + [anon_sym_LT_LT] = ACTIONS(2975), + [anon_sym_LT_LT_DASH] = ACTIONS(2973), + [anon_sym_LT_LT_LT] = ACTIONS(2973), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(2973), + [anon_sym_AMP] = ACTIONS(2975), }, [2798] = { - [sym_concatenation] = STATE(2818), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(2818), - [anon_sym_RBRACE] = ACTIONS(6439), - [anon_sym_EQ] = ACTIONS(6447), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(6449), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(6447), - [anon_sym_COLON_QMARK] = ACTIONS(6447), - [anon_sym_COLON_DASH] = ACTIONS(6447), - [anon_sym_PERCENT] = ACTIONS(6447), - [anon_sym_DASH] = ACTIONS(6447), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [aux_sym_concatenation_repeat1] = STATE(1366), + [sym__concat] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(6504), + [sym_comment] = ACTIONS(55), }, [2799] = { - [sym__simple_heredoc_body] = ACTIONS(3893), - [sym__heredoc_body_beginning] = ACTIONS(3893), - [sym_file_descriptor] = ACTIONS(3893), - [sym__concat] = ACTIONS(3893), - [anon_sym_SEMI] = ACTIONS(3895), - [anon_sym_esac] = ACTIONS(3893), - [anon_sym_PIPE] = ACTIONS(3895), - [anon_sym_SEMI_SEMI] = ACTIONS(3893), - [anon_sym_PIPE_AMP] = ACTIONS(3893), - [anon_sym_AMP_AMP] = ACTIONS(3893), - [anon_sym_PIPE_PIPE] = ACTIONS(3893), - [anon_sym_LT] = ACTIONS(3895), - [anon_sym_GT] = ACTIONS(3895), - [anon_sym_GT_GT] = ACTIONS(3893), - [anon_sym_AMP_GT] = ACTIONS(3895), - [anon_sym_AMP_GT_GT] = ACTIONS(3893), - [anon_sym_LT_AMP] = ACTIONS(3893), - [anon_sym_GT_AMP] = ACTIONS(3893), - [anon_sym_LT_LT] = ACTIONS(3895), - [anon_sym_LT_LT_DASH] = ACTIONS(3893), - [anon_sym_LT_LT_LT] = ACTIONS(3893), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(3893), - [anon_sym_AMP] = ACTIONS(3895), + [aux_sym_concatenation_repeat1] = STATE(1366), + [sym__concat] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(6506), + [sym_comment] = ACTIONS(55), }, [2800] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(6451), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [anon_sym_RBRACE] = ACTIONS(6506), + [sym_comment] = ACTIONS(55), }, [2801] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(6439), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_concatenation] = STATE(2852), + [sym_string] = STATE(2851), + [sym_simple_expansion] = STATE(2851), + [sym_string_expansion] = STATE(2851), + [sym_expansion] = STATE(2851), + [sym_command_substitution] = STATE(2851), + [sym_process_substitution] = STATE(2851), + [anon_sym_RBRACE] = ACTIONS(6506), + [sym__special_characters] = ACTIONS(6508), + [anon_sym_DQUOTE] = ACTIONS(1841), + [anon_sym_DOLLAR] = ACTIONS(1843), + [sym_raw_string] = ACTIONS(6510), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1849), + [anon_sym_BQUOTE] = ACTIONS(1851), + [anon_sym_LT_LPAREN] = ACTIONS(1853), + [anon_sym_GT_LPAREN] = ACTIONS(1853), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(6510), }, [2802] = { - [sym__simple_heredoc_body] = ACTIONS(3915), - [sym__heredoc_body_beginning] = ACTIONS(3915), - [sym_file_descriptor] = ACTIONS(3915), - [sym__concat] = ACTIONS(3915), - [anon_sym_SEMI] = ACTIONS(3917), - [anon_sym_esac] = ACTIONS(3915), - [anon_sym_PIPE] = ACTIONS(3917), - [anon_sym_SEMI_SEMI] = ACTIONS(3915), - [anon_sym_PIPE_AMP] = ACTIONS(3915), - [anon_sym_AMP_AMP] = ACTIONS(3915), - [anon_sym_PIPE_PIPE] = ACTIONS(3915), - [anon_sym_LT] = ACTIONS(3917), - [anon_sym_GT] = ACTIONS(3917), - [anon_sym_GT_GT] = ACTIONS(3915), - [anon_sym_AMP_GT] = ACTIONS(3917), - [anon_sym_AMP_GT_GT] = ACTIONS(3915), - [anon_sym_LT_AMP] = ACTIONS(3915), - [anon_sym_GT_AMP] = ACTIONS(3915), - [anon_sym_LT_LT] = ACTIONS(3917), - [anon_sym_LT_LT_DASH] = ACTIONS(3915), - [anon_sym_LT_LT_LT] = ACTIONS(3915), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(3915), - [anon_sym_AMP] = ACTIONS(3917), + [sym__simple_heredoc_body] = ACTIONS(3009), + [sym__heredoc_body_beginning] = ACTIONS(3009), + [sym_file_descriptor] = ACTIONS(3009), + [sym__concat] = ACTIONS(3009), + [anon_sym_SEMI] = ACTIONS(3011), + [anon_sym_esac] = ACTIONS(3009), + [anon_sym_PIPE] = ACTIONS(3011), + [anon_sym_SEMI_SEMI] = ACTIONS(3009), + [anon_sym_PIPE_AMP] = ACTIONS(3009), + [anon_sym_AMP_AMP] = ACTIONS(3009), + [anon_sym_PIPE_PIPE] = ACTIONS(3009), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_GT] = ACTIONS(3011), + [anon_sym_GT_GT] = ACTIONS(3009), + [anon_sym_AMP_GT] = ACTIONS(3011), + [anon_sym_AMP_GT_GT] = ACTIONS(3009), + [anon_sym_LT_AMP] = ACTIONS(3009), + [anon_sym_GT_AMP] = ACTIONS(3009), + [anon_sym_LT_LT] = ACTIONS(3011), + [anon_sym_LT_LT_DASH] = ACTIONS(3009), + [anon_sym_LT_LT_LT] = ACTIONS(3009), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(3009), + [anon_sym_AMP] = ACTIONS(3011), }, [2803] = { - [sym__simple_heredoc_body] = ACTIONS(3939), - [sym__heredoc_body_beginning] = ACTIONS(3939), - [sym_file_descriptor] = ACTIONS(3939), - [sym__concat] = ACTIONS(3939), - [anon_sym_SEMI] = ACTIONS(3941), - [anon_sym_esac] = ACTIONS(3939), - [anon_sym_PIPE] = ACTIONS(3941), - [anon_sym_SEMI_SEMI] = ACTIONS(3939), - [anon_sym_PIPE_AMP] = ACTIONS(3939), - [anon_sym_AMP_AMP] = ACTIONS(3939), - [anon_sym_PIPE_PIPE] = ACTIONS(3939), - [anon_sym_LT] = ACTIONS(3941), - [anon_sym_GT] = ACTIONS(3941), - [anon_sym_GT_GT] = ACTIONS(3939), - [anon_sym_AMP_GT] = ACTIONS(3941), - [anon_sym_AMP_GT_GT] = ACTIONS(3939), - [anon_sym_LT_AMP] = ACTIONS(3939), - [anon_sym_GT_AMP] = ACTIONS(3939), - [anon_sym_LT_LT] = ACTIONS(3941), - [anon_sym_LT_LT_DASH] = ACTIONS(3939), - [anon_sym_LT_LT_LT] = ACTIONS(3939), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(3939), - [anon_sym_AMP] = ACTIONS(3941), + [sym_concatenation] = STATE(2855), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2855), + [sym_regex] = ACTIONS(6512), + [anon_sym_RBRACE] = ACTIONS(6514), + [anon_sym_EQ] = ACTIONS(6516), + [anon_sym_DASH] = ACTIONS(6516), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(6518), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(6516), + [anon_sym_COLON_QMARK] = ACTIONS(6516), + [anon_sym_COLON_DASH] = ACTIONS(6516), + [anon_sym_PERCENT] = ACTIONS(6516), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2804] = { - [sym_file_descriptor] = ACTIONS(4568), - [sym__concat] = ACTIONS(4568), - [sym_variable_name] = ACTIONS(4568), - [anon_sym_SEMI] = ACTIONS(4570), - [anon_sym_esac] = ACTIONS(4570), - [anon_sym_PIPE] = ACTIONS(4570), - [anon_sym_SEMI_SEMI] = ACTIONS(4568), - [anon_sym_PIPE_AMP] = ACTIONS(4568), - [anon_sym_AMP_AMP] = ACTIONS(4568), - [anon_sym_PIPE_PIPE] = ACTIONS(4568), - [anon_sym_LT] = ACTIONS(4570), - [anon_sym_GT] = ACTIONS(4570), - [anon_sym_GT_GT] = ACTIONS(4568), - [anon_sym_AMP_GT] = ACTIONS(4570), - [anon_sym_AMP_GT_GT] = ACTIONS(4568), - [anon_sym_LT_AMP] = ACTIONS(4568), - [anon_sym_GT_AMP] = ACTIONS(4568), - [sym__special_characters] = ACTIONS(4568), - [anon_sym_DQUOTE] = ACTIONS(4568), - [anon_sym_DOLLAR] = ACTIONS(4570), - [sym_raw_string] = ACTIONS(4568), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4568), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4568), - [anon_sym_BQUOTE] = ACTIONS(4568), - [anon_sym_LT_LPAREN] = ACTIONS(4568), - [anon_sym_GT_LPAREN] = ACTIONS(4568), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4570), - [anon_sym_LF] = ACTIONS(4568), - [anon_sym_AMP] = ACTIONS(4570), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(6514), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2805] = { - [sym_file_descriptor] = ACTIONS(4572), - [sym__concat] = ACTIONS(4572), - [sym_variable_name] = ACTIONS(4572), - [anon_sym_SEMI] = ACTIONS(4574), - [anon_sym_esac] = ACTIONS(4574), - [anon_sym_PIPE] = ACTIONS(4574), - [anon_sym_SEMI_SEMI] = ACTIONS(4572), - [anon_sym_PIPE_AMP] = ACTIONS(4572), - [anon_sym_AMP_AMP] = ACTIONS(4572), - [anon_sym_PIPE_PIPE] = ACTIONS(4572), - [anon_sym_LT] = ACTIONS(4574), - [anon_sym_GT] = ACTIONS(4574), - [anon_sym_GT_GT] = ACTIONS(4572), - [anon_sym_AMP_GT] = ACTIONS(4574), - [anon_sym_AMP_GT_GT] = ACTIONS(4572), - [anon_sym_LT_AMP] = ACTIONS(4572), - [anon_sym_GT_AMP] = ACTIONS(4572), - [sym__special_characters] = ACTIONS(4572), - [anon_sym_DQUOTE] = ACTIONS(4572), - [anon_sym_DOLLAR] = ACTIONS(4574), - [sym_raw_string] = ACTIONS(4572), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4572), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4572), - [anon_sym_BQUOTE] = ACTIONS(4572), - [anon_sym_LT_LPAREN] = ACTIONS(4572), - [anon_sym_GT_LPAREN] = ACTIONS(4572), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4574), - [anon_sym_LF] = ACTIONS(4572), - [anon_sym_AMP] = ACTIONS(4574), + [sym_concatenation] = STATE(2857), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2857), + [sym_regex] = ACTIONS(6520), + [anon_sym_RBRACE] = ACTIONS(6506), + [anon_sym_EQ] = ACTIONS(6522), + [anon_sym_DASH] = ACTIONS(6522), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(6524), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(6522), + [anon_sym_COLON_QMARK] = ACTIONS(6522), + [anon_sym_COLON_DASH] = ACTIONS(6522), + [anon_sym_PERCENT] = ACTIONS(6522), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2806] = { - [sym_file_descriptor] = ACTIONS(4576), - [sym__concat] = ACTIONS(4576), - [sym_variable_name] = ACTIONS(4576), - [anon_sym_SEMI] = ACTIONS(4578), - [anon_sym_esac] = ACTIONS(4578), - [anon_sym_PIPE] = ACTIONS(4578), - [anon_sym_SEMI_SEMI] = ACTIONS(4576), - [anon_sym_PIPE_AMP] = ACTIONS(4576), - [anon_sym_AMP_AMP] = ACTIONS(4576), - [anon_sym_PIPE_PIPE] = ACTIONS(4576), - [anon_sym_LT] = ACTIONS(4578), - [anon_sym_GT] = ACTIONS(4578), - [anon_sym_GT_GT] = ACTIONS(4576), - [anon_sym_AMP_GT] = ACTIONS(4578), - [anon_sym_AMP_GT_GT] = ACTIONS(4576), - [anon_sym_LT_AMP] = ACTIONS(4576), - [anon_sym_GT_AMP] = ACTIONS(4576), - [sym__special_characters] = ACTIONS(4576), - [anon_sym_DQUOTE] = ACTIONS(4576), - [anon_sym_DOLLAR] = ACTIONS(4578), - [sym_raw_string] = ACTIONS(4576), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4576), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4576), - [anon_sym_BQUOTE] = ACTIONS(4576), - [anon_sym_LT_LPAREN] = ACTIONS(4576), - [anon_sym_GT_LPAREN] = ACTIONS(4576), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4578), - [anon_sym_LF] = ACTIONS(4576), - [anon_sym_AMP] = ACTIONS(4578), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(6506), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2807] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(6453), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_concatenation] = STATE(2859), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2859), + [anon_sym_RBRACE] = ACTIONS(6526), + [anon_sym_EQ] = ACTIONS(6528), + [anon_sym_DASH] = ACTIONS(6528), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(6530), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(6528), + [anon_sym_COLON_QMARK] = ACTIONS(6528), + [anon_sym_COLON_DASH] = ACTIONS(6528), + [anon_sym_PERCENT] = ACTIONS(6528), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2808] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(6455), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym__simple_heredoc_body] = ACTIONS(3065), + [sym__heredoc_body_beginning] = ACTIONS(3065), + [sym_file_descriptor] = ACTIONS(3065), + [sym__concat] = ACTIONS(3065), + [anon_sym_SEMI] = ACTIONS(3067), + [anon_sym_esac] = ACTIONS(3065), + [anon_sym_PIPE] = ACTIONS(3067), + [anon_sym_SEMI_SEMI] = ACTIONS(3065), + [anon_sym_PIPE_AMP] = ACTIONS(3065), + [anon_sym_AMP_AMP] = ACTIONS(3065), + [anon_sym_PIPE_PIPE] = ACTIONS(3065), + [anon_sym_LT] = ACTIONS(3067), + [anon_sym_GT] = ACTIONS(3067), + [anon_sym_GT_GT] = ACTIONS(3065), + [anon_sym_AMP_GT] = ACTIONS(3067), + [anon_sym_AMP_GT_GT] = ACTIONS(3065), + [anon_sym_LT_AMP] = ACTIONS(3065), + [anon_sym_GT_AMP] = ACTIONS(3065), + [anon_sym_LT_LT] = ACTIONS(3067), + [anon_sym_LT_LT_DASH] = ACTIONS(3065), + [anon_sym_LT_LT_LT] = ACTIONS(3065), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(3065), + [anon_sym_AMP] = ACTIONS(3067), }, [2809] = { - [sym_file_descriptor] = ACTIONS(4608), - [sym__concat] = ACTIONS(4608), - [sym_variable_name] = ACTIONS(4608), - [anon_sym_SEMI] = ACTIONS(4610), - [anon_sym_esac] = ACTIONS(4610), - [anon_sym_PIPE] = ACTIONS(4610), - [anon_sym_SEMI_SEMI] = ACTIONS(4608), - [anon_sym_PIPE_AMP] = ACTIONS(4608), - [anon_sym_AMP_AMP] = ACTIONS(4608), - [anon_sym_PIPE_PIPE] = ACTIONS(4608), - [anon_sym_LT] = ACTIONS(4610), - [anon_sym_GT] = ACTIONS(4610), - [anon_sym_GT_GT] = ACTIONS(4608), - [anon_sym_AMP_GT] = ACTIONS(4610), - [anon_sym_AMP_GT_GT] = ACTIONS(4608), - [anon_sym_LT_AMP] = ACTIONS(4608), - [anon_sym_GT_AMP] = ACTIONS(4608), - [sym__special_characters] = ACTIONS(4608), - [anon_sym_DQUOTE] = ACTIONS(4608), - [anon_sym_DOLLAR] = ACTIONS(4610), - [sym_raw_string] = ACTIONS(4608), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4608), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4608), - [anon_sym_BQUOTE] = ACTIONS(4608), - [anon_sym_LT_LPAREN] = ACTIONS(4608), - [anon_sym_GT_LPAREN] = ACTIONS(4608), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4610), - [anon_sym_LF] = ACTIONS(4608), - [anon_sym_AMP] = ACTIONS(4610), + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(6526), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2810] = { - [sym__concat] = ACTIONS(5069), - [sym_variable_name] = ACTIONS(5069), - [anon_sym_SEMI] = ACTIONS(5071), - [anon_sym_esac] = ACTIONS(5071), - [anon_sym_PIPE] = ACTIONS(5071), - [anon_sym_SEMI_SEMI] = ACTIONS(5069), - [anon_sym_PIPE_AMP] = ACTIONS(5069), - [anon_sym_AMP_AMP] = ACTIONS(5069), - [anon_sym_PIPE_PIPE] = ACTIONS(5069), - [sym__special_characters] = ACTIONS(5069), - [anon_sym_DQUOTE] = ACTIONS(5069), - [anon_sym_DOLLAR] = ACTIONS(5071), - [sym_raw_string] = ACTIONS(5069), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5069), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5069), - [anon_sym_BQUOTE] = ACTIONS(5069), - [anon_sym_LT_LPAREN] = ACTIONS(5069), - [anon_sym_GT_LPAREN] = ACTIONS(5069), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5071), - [sym_word] = ACTIONS(5071), - [anon_sym_LF] = ACTIONS(5069), - [anon_sym_AMP] = ACTIONS(5071), + [sym_concatenation] = STATE(2857), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2857), + [anon_sym_RBRACE] = ACTIONS(6506), + [anon_sym_EQ] = ACTIONS(6522), + [anon_sym_DASH] = ACTIONS(6522), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(6524), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(6522), + [anon_sym_COLON_QMARK] = ACTIONS(6522), + [anon_sym_COLON_DASH] = ACTIONS(6522), + [anon_sym_PERCENT] = ACTIONS(6522), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), }, [2811] = { - [sym__concat] = ACTIONS(5073), - [sym_variable_name] = ACTIONS(5073), - [anon_sym_SEMI] = ACTIONS(5075), - [anon_sym_esac] = ACTIONS(5075), - [anon_sym_PIPE] = ACTIONS(5075), - [anon_sym_SEMI_SEMI] = ACTIONS(5073), - [anon_sym_PIPE_AMP] = ACTIONS(5073), - [anon_sym_AMP_AMP] = ACTIONS(5073), - [anon_sym_PIPE_PIPE] = ACTIONS(5073), - [sym__special_characters] = ACTIONS(5073), - [anon_sym_DQUOTE] = ACTIONS(5073), - [anon_sym_DOLLAR] = ACTIONS(5075), - [sym_raw_string] = ACTIONS(5073), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5073), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5073), - [anon_sym_BQUOTE] = ACTIONS(5073), - [anon_sym_LT_LPAREN] = ACTIONS(5073), - [anon_sym_GT_LPAREN] = ACTIONS(5073), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5075), - [sym_word] = ACTIONS(5075), - [anon_sym_LF] = ACTIONS(5073), - [anon_sym_AMP] = ACTIONS(5075), + [sym__simple_heredoc_body] = ACTIONS(3120), + [sym__heredoc_body_beginning] = ACTIONS(3120), + [sym_file_descriptor] = ACTIONS(3120), + [sym__concat] = ACTIONS(3120), + [anon_sym_SEMI] = ACTIONS(3122), + [anon_sym_esac] = ACTIONS(3120), + [anon_sym_PIPE] = ACTIONS(3122), + [anon_sym_SEMI_SEMI] = ACTIONS(3120), + [anon_sym_PIPE_AMP] = ACTIONS(3120), + [anon_sym_AMP_AMP] = ACTIONS(3120), + [anon_sym_PIPE_PIPE] = ACTIONS(3120), + [anon_sym_LT] = ACTIONS(3122), + [anon_sym_GT] = ACTIONS(3122), + [anon_sym_GT_GT] = ACTIONS(3120), + [anon_sym_AMP_GT] = ACTIONS(3122), + [anon_sym_AMP_GT_GT] = ACTIONS(3120), + [anon_sym_LT_AMP] = ACTIONS(3120), + [anon_sym_GT_AMP] = ACTIONS(3120), + [anon_sym_LT_LT] = ACTIONS(3122), + [anon_sym_LT_LT_DASH] = ACTIONS(3120), + [anon_sym_LT_LT_LT] = ACTIONS(3120), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(3120), + [anon_sym_AMP] = ACTIONS(3122), }, [2812] = { - [sym__concat] = ACTIONS(5069), - [anon_sym_SEMI] = ACTIONS(5071), - [anon_sym_esac] = ACTIONS(5071), - [anon_sym_PIPE] = ACTIONS(5071), - [anon_sym_SEMI_SEMI] = ACTIONS(5069), - [anon_sym_PIPE_AMP] = ACTIONS(5069), - [anon_sym_AMP_AMP] = ACTIONS(5069), - [anon_sym_PIPE_PIPE] = ACTIONS(5069), - [sym__special_characters] = ACTIONS(5069), - [anon_sym_DQUOTE] = ACTIONS(5069), - [anon_sym_DOLLAR] = ACTIONS(5071), - [sym_raw_string] = ACTIONS(5069), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5069), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5069), - [anon_sym_BQUOTE] = ACTIONS(5069), - [anon_sym_LT_LPAREN] = ACTIONS(5069), - [anon_sym_GT_LPAREN] = ACTIONS(5069), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5071), - [sym_word] = ACTIONS(5071), - [anon_sym_LF] = ACTIONS(5069), - [anon_sym_AMP] = ACTIONS(5071), + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(6532), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), }, [2813] = { - [sym__concat] = ACTIONS(5073), - [anon_sym_SEMI] = ACTIONS(5075), - [anon_sym_esac] = ACTIONS(5075), - [anon_sym_PIPE] = ACTIONS(5075), - [anon_sym_SEMI_SEMI] = ACTIONS(5073), - [anon_sym_PIPE_AMP] = ACTIONS(5073), - [anon_sym_AMP_AMP] = ACTIONS(5073), - [anon_sym_PIPE_PIPE] = ACTIONS(5073), - [sym__special_characters] = ACTIONS(5073), - [anon_sym_DQUOTE] = ACTIONS(5073), - [anon_sym_DOLLAR] = ACTIONS(5075), - [sym_raw_string] = ACTIONS(5073), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5073), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5073), - [anon_sym_BQUOTE] = ACTIONS(5073), - [anon_sym_LT_LPAREN] = ACTIONS(5073), - [anon_sym_GT_LPAREN] = ACTIONS(5073), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5075), - [sym_word] = ACTIONS(5075), - [anon_sym_LF] = ACTIONS(5073), - [anon_sym_AMP] = ACTIONS(5075), + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(6532), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), }, [2814] = { - [sym__simple_heredoc_body] = ACTIONS(4568), - [sym__heredoc_body_beginning] = ACTIONS(4568), - [sym_file_descriptor] = ACTIONS(4568), - [sym__concat] = ACTIONS(4568), - [anon_sym_SEMI] = ACTIONS(4570), - [anon_sym_esac] = ACTIONS(4568), - [anon_sym_PIPE] = ACTIONS(4570), - [anon_sym_SEMI_SEMI] = ACTIONS(4568), - [anon_sym_PIPE_AMP] = ACTIONS(4568), - [anon_sym_AMP_AMP] = ACTIONS(4568), - [anon_sym_PIPE_PIPE] = ACTIONS(4568), - [anon_sym_LT] = ACTIONS(4570), - [anon_sym_GT] = ACTIONS(4570), - [anon_sym_GT_GT] = ACTIONS(4568), - [anon_sym_AMP_GT] = ACTIONS(4570), - [anon_sym_AMP_GT_GT] = ACTIONS(4568), - [anon_sym_LT_AMP] = ACTIONS(4568), - [anon_sym_GT_AMP] = ACTIONS(4568), - [anon_sym_LT_LT] = ACTIONS(4570), - [anon_sym_LT_LT_DASH] = ACTIONS(4568), - [anon_sym_LT_LT_LT] = ACTIONS(4568), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(4568), - [anon_sym_AMP] = ACTIONS(4570), + [sym__simple_heredoc_body] = ACTIONS(3158), + [sym__heredoc_body_beginning] = ACTIONS(3158), + [sym_file_descriptor] = ACTIONS(3158), + [sym__concat] = ACTIONS(3158), + [anon_sym_SEMI] = ACTIONS(3160), + [anon_sym_esac] = ACTIONS(3158), + [anon_sym_PIPE] = ACTIONS(3160), + [anon_sym_SEMI_SEMI] = ACTIONS(3158), + [anon_sym_PIPE_AMP] = ACTIONS(3158), + [anon_sym_AMP_AMP] = ACTIONS(3158), + [anon_sym_PIPE_PIPE] = ACTIONS(3158), + [anon_sym_LT] = ACTIONS(3160), + [anon_sym_GT] = ACTIONS(3160), + [anon_sym_GT_GT] = ACTIONS(3158), + [anon_sym_AMP_GT] = ACTIONS(3160), + [anon_sym_AMP_GT_GT] = ACTIONS(3158), + [anon_sym_LT_AMP] = ACTIONS(3158), + [anon_sym_GT_AMP] = ACTIONS(3158), + [anon_sym_LT_LT] = ACTIONS(3160), + [anon_sym_LT_LT_DASH] = ACTIONS(3158), + [anon_sym_LT_LT_LT] = ACTIONS(3158), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(3158), + [anon_sym_AMP] = ACTIONS(3160), }, [2815] = { - [sym__simple_heredoc_body] = ACTIONS(4572), - [sym__heredoc_body_beginning] = ACTIONS(4572), - [sym_file_descriptor] = ACTIONS(4572), - [sym__concat] = ACTIONS(4572), - [anon_sym_SEMI] = ACTIONS(4574), - [anon_sym_esac] = ACTIONS(4572), - [anon_sym_PIPE] = ACTIONS(4574), - [anon_sym_SEMI_SEMI] = ACTIONS(4572), - [anon_sym_PIPE_AMP] = ACTIONS(4572), - [anon_sym_AMP_AMP] = ACTIONS(4572), - [anon_sym_PIPE_PIPE] = ACTIONS(4572), - [anon_sym_LT] = ACTIONS(4574), - [anon_sym_GT] = ACTIONS(4574), - [anon_sym_GT_GT] = ACTIONS(4572), - [anon_sym_AMP_GT] = ACTIONS(4574), - [anon_sym_AMP_GT_GT] = ACTIONS(4572), - [anon_sym_LT_AMP] = ACTIONS(4572), - [anon_sym_GT_AMP] = ACTIONS(4572), - [anon_sym_LT_LT] = ACTIONS(4574), - [anon_sym_LT_LT_DASH] = ACTIONS(4572), - [anon_sym_LT_LT_LT] = ACTIONS(4572), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(4572), - [anon_sym_AMP] = ACTIONS(4574), + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(6534), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_raw_string] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(947), }, [2816] = { - [sym__simple_heredoc_body] = ACTIONS(4576), - [sym__heredoc_body_beginning] = ACTIONS(4576), - [sym_file_descriptor] = ACTIONS(4576), - [sym__concat] = ACTIONS(4576), - [anon_sym_SEMI] = ACTIONS(4578), - [anon_sym_esac] = ACTIONS(4576), - [anon_sym_PIPE] = ACTIONS(4578), - [anon_sym_SEMI_SEMI] = ACTIONS(4576), - [anon_sym_PIPE_AMP] = ACTIONS(4576), - [anon_sym_AMP_AMP] = ACTIONS(4576), - [anon_sym_PIPE_PIPE] = ACTIONS(4576), - [anon_sym_LT] = ACTIONS(4578), - [anon_sym_GT] = ACTIONS(4578), - [anon_sym_GT_GT] = ACTIONS(4576), - [anon_sym_AMP_GT] = ACTIONS(4578), - [anon_sym_AMP_GT_GT] = ACTIONS(4576), - [anon_sym_LT_AMP] = ACTIONS(4576), - [anon_sym_GT_AMP] = ACTIONS(4576), - [anon_sym_LT_LT] = ACTIONS(4578), - [anon_sym_LT_LT_DASH] = ACTIONS(4576), - [anon_sym_LT_LT_LT] = ACTIONS(4576), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(4576), - [anon_sym_AMP] = ACTIONS(4578), + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_SEMI_SEMI] = ACTIONS(943), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(6206), + [anon_sym_DQUOTE] = ACTIONS(6208), + [anon_sym_DOLLAR] = ACTIONS(6206), + [sym_raw_string] = ACTIONS(6208), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6208), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6208), + [anon_sym_BQUOTE] = ACTIONS(6208), + [anon_sym_LT_LPAREN] = ACTIONS(6208), + [anon_sym_GT_LPAREN] = ACTIONS(6208), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(6206), }, [2817] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(6457), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_file_descriptor] = ACTIONS(943), + [sym_variable_name] = ACTIONS(943), + [anon_sym_for] = ACTIONS(947), + [anon_sym_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_while] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_case] = ACTIONS(947), + [anon_sym_SEMI_SEMI] = ACTIONS(943), + [anon_sym_function] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(947), + [anon_sym_typeset] = ACTIONS(947), + [anon_sym_export] = ACTIONS(947), + [anon_sym_readonly] = ACTIONS(947), + [anon_sym_local] = ACTIONS(947), + [anon_sym_unset] = ACTIONS(947), + [anon_sym_unsetenv] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_AMP_GT] = ACTIONS(947), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(943), + [anon_sym_GT_AMP] = ACTIONS(943), + [sym__special_characters] = ACTIONS(6212), + [anon_sym_DQUOTE] = ACTIONS(6214), + [anon_sym_DOLLAR] = ACTIONS(6212), + [sym_raw_string] = ACTIONS(6214), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6214), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6214), + [anon_sym_BQUOTE] = ACTIONS(6214), + [anon_sym_LT_LPAREN] = ACTIONS(6214), + [anon_sym_GT_LPAREN] = ACTIONS(6214), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(6212), }, [2818] = { - [sym_concatenation] = STATE(911), - [sym_string] = STATE(460), - [sym_simple_expansion] = STATE(460), - [sym_string_expansion] = STATE(460), - [sym_expansion] = STATE(460), - [sym_command_substitution] = STATE(460), - [sym_process_substitution] = STATE(460), - [aux_sym_expansion_repeat1] = STATE(911), - [anon_sym_RBRACE] = ACTIONS(6459), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(835), - [sym_raw_string] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(847), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(265), - [sym_word] = ACTIONS(851), + [sym_file_descriptor] = ACTIONS(3934), + [sym__concat] = ACTIONS(3934), + [sym_variable_name] = ACTIONS(3934), + [anon_sym_SEMI] = ACTIONS(3936), + [anon_sym_esac] = ACTIONS(3936), + [anon_sym_PIPE] = ACTIONS(3936), + [anon_sym_SEMI_SEMI] = ACTIONS(3934), + [anon_sym_PIPE_AMP] = ACTIONS(3934), + [anon_sym_AMP_AMP] = ACTIONS(3934), + [anon_sym_PIPE_PIPE] = ACTIONS(3934), + [anon_sym_LT] = ACTIONS(3936), + [anon_sym_GT] = ACTIONS(3936), + [anon_sym_GT_GT] = ACTIONS(3934), + [anon_sym_AMP_GT] = ACTIONS(3936), + [anon_sym_AMP_GT_GT] = ACTIONS(3934), + [anon_sym_LT_AMP] = ACTIONS(3934), + [anon_sym_GT_AMP] = ACTIONS(3934), + [sym__special_characters] = ACTIONS(3934), + [anon_sym_DQUOTE] = ACTIONS(3934), + [anon_sym_DOLLAR] = ACTIONS(3936), + [sym_raw_string] = ACTIONS(3934), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3934), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3934), + [anon_sym_BQUOTE] = ACTIONS(3934), + [anon_sym_LT_LPAREN] = ACTIONS(3934), + [anon_sym_GT_LPAREN] = ACTIONS(3934), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(3936), + [anon_sym_LF] = ACTIONS(3934), + [anon_sym_AMP] = ACTIONS(3936), }, [2819] = { - [sym__simple_heredoc_body] = ACTIONS(4608), - [sym__heredoc_body_beginning] = ACTIONS(4608), - [sym_file_descriptor] = ACTIONS(4608), - [sym__concat] = ACTIONS(4608), - [anon_sym_SEMI] = ACTIONS(4610), - [anon_sym_esac] = ACTIONS(4608), - [anon_sym_PIPE] = ACTIONS(4610), - [anon_sym_SEMI_SEMI] = ACTIONS(4608), - [anon_sym_PIPE_AMP] = ACTIONS(4608), - [anon_sym_AMP_AMP] = ACTIONS(4608), - [anon_sym_PIPE_PIPE] = ACTIONS(4608), - [anon_sym_LT] = ACTIONS(4610), - [anon_sym_GT] = ACTIONS(4610), - [anon_sym_GT_GT] = ACTIONS(4608), - [anon_sym_AMP_GT] = ACTIONS(4610), - [anon_sym_AMP_GT_GT] = ACTIONS(4608), - [anon_sym_LT_AMP] = ACTIONS(4608), - [anon_sym_GT_AMP] = ACTIONS(4608), - [anon_sym_LT_LT] = ACTIONS(4610), - [anon_sym_LT_LT_DASH] = ACTIONS(4608), - [anon_sym_LT_LT_LT] = ACTIONS(4608), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(4608), - [anon_sym_AMP] = ACTIONS(4610), + [sym_file_descriptor] = ACTIONS(3942), + [sym__concat] = ACTIONS(3942), + [sym_variable_name] = ACTIONS(3942), + [anon_sym_SEMI] = ACTIONS(3944), + [anon_sym_esac] = ACTIONS(3944), + [anon_sym_PIPE] = ACTIONS(3944), + [anon_sym_SEMI_SEMI] = ACTIONS(3942), + [anon_sym_PIPE_AMP] = ACTIONS(3942), + [anon_sym_AMP_AMP] = ACTIONS(3942), + [anon_sym_PIPE_PIPE] = ACTIONS(3942), + [anon_sym_LT] = ACTIONS(3944), + [anon_sym_GT] = ACTIONS(3944), + [anon_sym_GT_GT] = ACTIONS(3942), + [anon_sym_AMP_GT] = ACTIONS(3944), + [anon_sym_AMP_GT_GT] = ACTIONS(3942), + [anon_sym_LT_AMP] = ACTIONS(3942), + [anon_sym_GT_AMP] = ACTIONS(3942), + [sym__special_characters] = ACTIONS(3942), + [anon_sym_DQUOTE] = ACTIONS(3942), + [anon_sym_DOLLAR] = ACTIONS(3944), + [sym_raw_string] = ACTIONS(3942), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3942), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3942), + [anon_sym_BQUOTE] = ACTIONS(3942), + [anon_sym_LT_LPAREN] = ACTIONS(3942), + [anon_sym_GT_LPAREN] = ACTIONS(3942), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(3944), + [anon_sym_LF] = ACTIONS(3942), + [anon_sym_AMP] = ACTIONS(3944), }, [2820] = { - [sym_file_descriptor] = ACTIONS(5069), - [sym__concat] = ACTIONS(5069), - [sym_variable_name] = ACTIONS(5069), - [anon_sym_SEMI] = ACTIONS(5071), - [anon_sym_esac] = ACTIONS(5071), - [anon_sym_PIPE] = ACTIONS(5071), - [anon_sym_SEMI_SEMI] = ACTIONS(5069), - [anon_sym_PIPE_AMP] = ACTIONS(5069), - [anon_sym_AMP_AMP] = ACTIONS(5069), - [anon_sym_PIPE_PIPE] = ACTIONS(5069), - [anon_sym_LT] = ACTIONS(5071), - [anon_sym_GT] = ACTIONS(5071), - [anon_sym_GT_GT] = ACTIONS(5069), - [anon_sym_AMP_GT] = ACTIONS(5071), - [anon_sym_AMP_GT_GT] = ACTIONS(5069), - [anon_sym_LT_AMP] = ACTIONS(5069), - [anon_sym_GT_AMP] = ACTIONS(5069), - [sym__special_characters] = ACTIONS(5069), - [anon_sym_DQUOTE] = ACTIONS(5069), - [anon_sym_DOLLAR] = ACTIONS(5071), - [sym_raw_string] = ACTIONS(5069), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5069), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5069), - [anon_sym_BQUOTE] = ACTIONS(5069), - [anon_sym_LT_LPAREN] = ACTIONS(5069), - [anon_sym_GT_LPAREN] = ACTIONS(5069), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5071), - [anon_sym_LF] = ACTIONS(5069), - [anon_sym_AMP] = ACTIONS(5071), + [aux_sym_concatenation_repeat1] = STATE(1366), + [sym__concat] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(6536), + [sym_comment] = ACTIONS(55), }, [2821] = { - [sym_file_descriptor] = ACTIONS(5073), - [sym__concat] = ACTIONS(5073), - [sym_variable_name] = ACTIONS(5073), - [anon_sym_SEMI] = ACTIONS(5075), - [anon_sym_esac] = ACTIONS(5075), - [anon_sym_PIPE] = ACTIONS(5075), - [anon_sym_SEMI_SEMI] = ACTIONS(5073), - [anon_sym_PIPE_AMP] = ACTIONS(5073), - [anon_sym_AMP_AMP] = ACTIONS(5073), - [anon_sym_PIPE_PIPE] = ACTIONS(5073), - [anon_sym_LT] = ACTIONS(5075), - [anon_sym_GT] = ACTIONS(5075), - [anon_sym_GT_GT] = ACTIONS(5073), - [anon_sym_AMP_GT] = ACTIONS(5075), - [anon_sym_AMP_GT_GT] = ACTIONS(5073), - [anon_sym_LT_AMP] = ACTIONS(5073), - [anon_sym_GT_AMP] = ACTIONS(5073), - [sym__special_characters] = ACTIONS(5073), - [anon_sym_DQUOTE] = ACTIONS(5073), - [anon_sym_DOLLAR] = ACTIONS(5075), - [sym_raw_string] = ACTIONS(5073), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5073), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5073), - [anon_sym_BQUOTE] = ACTIONS(5073), - [anon_sym_LT_LPAREN] = ACTIONS(5073), - [anon_sym_GT_LPAREN] = ACTIONS(5073), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5075), - [anon_sym_LF] = ACTIONS(5073), - [anon_sym_AMP] = ACTIONS(5075), + [aux_sym_concatenation_repeat1] = STATE(1366), + [sym__concat] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(6538), + [sym_comment] = ACTIONS(55), }, [2822] = { - [sym__simple_heredoc_body] = ACTIONS(5069), - [sym__heredoc_body_beginning] = ACTIONS(5069), - [sym_file_descriptor] = ACTIONS(5069), - [sym__concat] = ACTIONS(5069), - [anon_sym_SEMI] = ACTIONS(5071), - [anon_sym_esac] = ACTIONS(5069), - [anon_sym_PIPE] = ACTIONS(5071), - [anon_sym_SEMI_SEMI] = ACTIONS(5069), - [anon_sym_PIPE_AMP] = ACTIONS(5069), - [anon_sym_AMP_AMP] = ACTIONS(5069), - [anon_sym_PIPE_PIPE] = ACTIONS(5069), - [anon_sym_LT] = ACTIONS(5071), - [anon_sym_GT] = ACTIONS(5071), - [anon_sym_GT_GT] = ACTIONS(5069), - [anon_sym_AMP_GT] = ACTIONS(5071), - [anon_sym_AMP_GT_GT] = ACTIONS(5069), - [anon_sym_LT_AMP] = ACTIONS(5069), - [anon_sym_GT_AMP] = ACTIONS(5069), - [anon_sym_LT_LT] = ACTIONS(5071), - [anon_sym_LT_LT_DASH] = ACTIONS(5069), - [anon_sym_LT_LT_LT] = ACTIONS(5069), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(5069), - [anon_sym_AMP] = ACTIONS(5071), + [anon_sym_RBRACE] = ACTIONS(6538), + [sym_comment] = ACTIONS(55), }, [2823] = { - [sym__simple_heredoc_body] = ACTIONS(5073), - [sym__heredoc_body_beginning] = ACTIONS(5073), - [sym_file_descriptor] = ACTIONS(5073), - [sym__concat] = ACTIONS(5073), - [anon_sym_SEMI] = ACTIONS(5075), - [anon_sym_esac] = ACTIONS(5073), - [anon_sym_PIPE] = ACTIONS(5075), - [anon_sym_SEMI_SEMI] = ACTIONS(5073), - [anon_sym_PIPE_AMP] = ACTIONS(5073), - [anon_sym_AMP_AMP] = ACTIONS(5073), - [anon_sym_PIPE_PIPE] = ACTIONS(5073), - [anon_sym_LT] = ACTIONS(5075), - [anon_sym_GT] = ACTIONS(5075), - [anon_sym_GT_GT] = ACTIONS(5073), - [anon_sym_AMP_GT] = ACTIONS(5075), - [anon_sym_AMP_GT_GT] = ACTIONS(5073), - [anon_sym_LT_AMP] = ACTIONS(5073), - [anon_sym_GT_AMP] = ACTIONS(5073), - [anon_sym_LT_LT] = ACTIONS(5075), - [anon_sym_LT_LT_DASH] = ACTIONS(5073), - [anon_sym_LT_LT_LT] = ACTIONS(5073), - [sym_comment] = ACTIONS(53), - [anon_sym_LF] = ACTIONS(5073), - [anon_sym_AMP] = ACTIONS(5075), + [sym_concatenation] = STATE(2865), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2865), + [anon_sym_RBRACE] = ACTIONS(6540), + [anon_sym_EQ] = ACTIONS(6542), + [anon_sym_DASH] = ACTIONS(6542), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(6544), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(6542), + [anon_sym_COLON_QMARK] = ACTIONS(6542), + [anon_sym_COLON_DASH] = ACTIONS(6542), + [anon_sym_PERCENT] = ACTIONS(6542), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [2824] = { + [sym_file_descriptor] = ACTIONS(3998), + [sym__concat] = ACTIONS(3998), + [sym_variable_name] = ACTIONS(3998), + [anon_sym_SEMI] = ACTIONS(4000), + [anon_sym_esac] = ACTIONS(4000), + [anon_sym_PIPE] = ACTIONS(4000), + [anon_sym_SEMI_SEMI] = ACTIONS(3998), + [anon_sym_PIPE_AMP] = ACTIONS(3998), + [anon_sym_AMP_AMP] = ACTIONS(3998), + [anon_sym_PIPE_PIPE] = ACTIONS(3998), + [anon_sym_LT] = ACTIONS(4000), + [anon_sym_GT] = ACTIONS(4000), + [anon_sym_GT_GT] = ACTIONS(3998), + [anon_sym_AMP_GT] = ACTIONS(4000), + [anon_sym_AMP_GT_GT] = ACTIONS(3998), + [anon_sym_LT_AMP] = ACTIONS(3998), + [anon_sym_GT_AMP] = ACTIONS(3998), + [sym__special_characters] = ACTIONS(3998), + [anon_sym_DQUOTE] = ACTIONS(3998), + [anon_sym_DOLLAR] = ACTIONS(4000), + [sym_raw_string] = ACTIONS(3998), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3998), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3998), + [anon_sym_BQUOTE] = ACTIONS(3998), + [anon_sym_LT_LPAREN] = ACTIONS(3998), + [anon_sym_GT_LPAREN] = ACTIONS(3998), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(4000), + [anon_sym_LF] = ACTIONS(3998), + [anon_sym_AMP] = ACTIONS(4000), + }, + [2825] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(6540), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [2826] = { + [sym_concatenation] = STATE(2866), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2866), + [anon_sym_RBRACE] = ACTIONS(6538), + [anon_sym_EQ] = ACTIONS(6546), + [anon_sym_DASH] = ACTIONS(6546), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(6548), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(6546), + [anon_sym_COLON_QMARK] = ACTIONS(6546), + [anon_sym_COLON_DASH] = ACTIONS(6546), + [anon_sym_PERCENT] = ACTIONS(6546), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [2827] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(6538), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [2828] = { + [sym_file_descriptor] = ACTIONS(4043), + [sym__concat] = ACTIONS(4043), + [sym_variable_name] = ACTIONS(4043), + [anon_sym_SEMI] = ACTIONS(4045), + [anon_sym_esac] = ACTIONS(4045), + [anon_sym_PIPE] = ACTIONS(4045), + [anon_sym_SEMI_SEMI] = ACTIONS(4043), + [anon_sym_PIPE_AMP] = ACTIONS(4043), + [anon_sym_AMP_AMP] = ACTIONS(4043), + [anon_sym_PIPE_PIPE] = ACTIONS(4043), + [anon_sym_LT] = ACTIONS(4045), + [anon_sym_GT] = ACTIONS(4045), + [anon_sym_GT_GT] = ACTIONS(4043), + [anon_sym_AMP_GT] = ACTIONS(4045), + [anon_sym_AMP_GT_GT] = ACTIONS(4043), + [anon_sym_LT_AMP] = ACTIONS(4043), + [anon_sym_GT_AMP] = ACTIONS(4043), + [sym__special_characters] = ACTIONS(4043), + [anon_sym_DQUOTE] = ACTIONS(4043), + [anon_sym_DOLLAR] = ACTIONS(4045), + [sym_raw_string] = ACTIONS(4043), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4043), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4043), + [anon_sym_BQUOTE] = ACTIONS(4043), + [anon_sym_LT_LPAREN] = ACTIONS(4043), + [anon_sym_GT_LPAREN] = ACTIONS(4043), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(4045), + [anon_sym_LF] = ACTIONS(4043), + [anon_sym_AMP] = ACTIONS(4045), + }, + [2829] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(6550), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [2830] = { + [sym_file_descriptor] = ACTIONS(4065), + [sym__concat] = ACTIONS(4065), + [sym_variable_name] = ACTIONS(4065), + [anon_sym_SEMI] = ACTIONS(4067), + [anon_sym_esac] = ACTIONS(4067), + [anon_sym_PIPE] = ACTIONS(4067), + [anon_sym_SEMI_SEMI] = ACTIONS(4065), + [anon_sym_PIPE_AMP] = ACTIONS(4065), + [anon_sym_AMP_AMP] = ACTIONS(4065), + [anon_sym_PIPE_PIPE] = ACTIONS(4065), + [anon_sym_LT] = ACTIONS(4067), + [anon_sym_GT] = ACTIONS(4067), + [anon_sym_GT_GT] = ACTIONS(4065), + [anon_sym_AMP_GT] = ACTIONS(4067), + [anon_sym_AMP_GT_GT] = ACTIONS(4065), + [anon_sym_LT_AMP] = ACTIONS(4065), + [anon_sym_GT_AMP] = ACTIONS(4065), + [sym__special_characters] = ACTIONS(4065), + [anon_sym_DQUOTE] = ACTIONS(4065), + [anon_sym_DOLLAR] = ACTIONS(4067), + [sym_raw_string] = ACTIONS(4065), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4065), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4065), + [anon_sym_BQUOTE] = ACTIONS(4065), + [anon_sym_LT_LPAREN] = ACTIONS(4065), + [anon_sym_GT_LPAREN] = ACTIONS(4065), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(4067), + [anon_sym_LF] = ACTIONS(4065), + [anon_sym_AMP] = ACTIONS(4067), + }, + [2831] = { + [sym_file_descriptor] = ACTIONS(4089), + [sym__concat] = ACTIONS(4089), + [sym_variable_name] = ACTIONS(4089), + [anon_sym_SEMI] = ACTIONS(4091), + [anon_sym_esac] = ACTIONS(4091), + [anon_sym_PIPE] = ACTIONS(4091), + [anon_sym_SEMI_SEMI] = ACTIONS(4089), + [anon_sym_PIPE_AMP] = ACTIONS(4089), + [anon_sym_AMP_AMP] = ACTIONS(4089), + [anon_sym_PIPE_PIPE] = ACTIONS(4089), + [anon_sym_LT] = ACTIONS(4091), + [anon_sym_GT] = ACTIONS(4091), + [anon_sym_GT_GT] = ACTIONS(4089), + [anon_sym_AMP_GT] = ACTIONS(4091), + [anon_sym_AMP_GT_GT] = ACTIONS(4089), + [anon_sym_LT_AMP] = ACTIONS(4089), + [anon_sym_GT_AMP] = ACTIONS(4089), + [sym__special_characters] = ACTIONS(4089), + [anon_sym_DQUOTE] = ACTIONS(4089), + [anon_sym_DOLLAR] = ACTIONS(4091), + [sym_raw_string] = ACTIONS(4089), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4089), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4089), + [anon_sym_BQUOTE] = ACTIONS(4089), + [anon_sym_LT_LPAREN] = ACTIONS(4089), + [anon_sym_GT_LPAREN] = ACTIONS(4089), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(4091), + [anon_sym_LF] = ACTIONS(4089), + [anon_sym_AMP] = ACTIONS(4091), + }, + [2832] = { + [aux_sym_concatenation_repeat1] = STATE(2832), + [sym_file_descriptor] = ACTIONS(1763), + [sym__concat] = ACTIONS(4936), + [anon_sym_SEMI] = ACTIONS(1765), + [anon_sym_esac] = ACTIONS(1763), + [anon_sym_PIPE] = ACTIONS(1765), + [anon_sym_SEMI_SEMI] = ACTIONS(1763), + [anon_sym_PIPE_AMP] = ACTIONS(1763), + [anon_sym_AMP_AMP] = ACTIONS(1763), + [anon_sym_PIPE_PIPE] = ACTIONS(1763), + [anon_sym_LT] = ACTIONS(1765), + [anon_sym_GT] = ACTIONS(1765), + [anon_sym_GT_GT] = ACTIONS(1763), + [anon_sym_AMP_GT] = ACTIONS(1765), + [anon_sym_AMP_GT_GT] = ACTIONS(1763), + [anon_sym_LT_AMP] = ACTIONS(1763), + [anon_sym_GT_AMP] = ACTIONS(1763), + [anon_sym_LT_LT] = ACTIONS(1765), + [anon_sym_LT_LT_DASH] = ACTIONS(1763), + [anon_sym_LT_LT_LT] = ACTIONS(1763), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1763), + [anon_sym_AMP] = ACTIONS(1765), + }, + [2833] = { + [aux_sym_concatenation_repeat1] = STATE(2833), + [sym__concat] = ACTIONS(3354), + [anon_sym_SEMI] = ACTIONS(1765), + [anon_sym_esac] = ACTIONS(1763), + [anon_sym_PIPE] = ACTIONS(1765), + [anon_sym_SEMI_SEMI] = ACTIONS(1763), + [anon_sym_PIPE_AMP] = ACTIONS(1763), + [anon_sym_AMP_AMP] = ACTIONS(1763), + [anon_sym_PIPE_PIPE] = ACTIONS(1763), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(1763), + [anon_sym_AMP] = ACTIONS(1765), + }, + [2834] = { + [sym__concat] = ACTIONS(4710), + [sym_variable_name] = ACTIONS(4710), + [anon_sym_SEMI] = ACTIONS(4712), + [anon_sym_esac] = ACTIONS(4712), + [anon_sym_PIPE] = ACTIONS(4712), + [anon_sym_SEMI_SEMI] = ACTIONS(4710), + [anon_sym_PIPE_AMP] = ACTIONS(4710), + [anon_sym_AMP_AMP] = ACTIONS(4710), + [anon_sym_PIPE_PIPE] = ACTIONS(4710), + [sym__special_characters] = ACTIONS(4710), + [anon_sym_DQUOTE] = ACTIONS(4710), + [anon_sym_DOLLAR] = ACTIONS(4712), + [sym_raw_string] = ACTIONS(4710), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4710), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4710), + [anon_sym_BQUOTE] = ACTIONS(4710), + [anon_sym_LT_LPAREN] = ACTIONS(4710), + [anon_sym_GT_LPAREN] = ACTIONS(4710), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4712), + [sym_word] = ACTIONS(4712), + [anon_sym_LF] = ACTIONS(4710), + [anon_sym_AMP] = ACTIONS(4712), + }, + [2835] = { + [sym__concat] = ACTIONS(4714), + [sym_variable_name] = ACTIONS(4714), + [anon_sym_SEMI] = ACTIONS(4716), + [anon_sym_esac] = ACTIONS(4716), + [anon_sym_PIPE] = ACTIONS(4716), + [anon_sym_SEMI_SEMI] = ACTIONS(4714), + [anon_sym_PIPE_AMP] = ACTIONS(4714), + [anon_sym_AMP_AMP] = ACTIONS(4714), + [anon_sym_PIPE_PIPE] = ACTIONS(4714), + [sym__special_characters] = ACTIONS(4714), + [anon_sym_DQUOTE] = ACTIONS(4714), + [anon_sym_DOLLAR] = ACTIONS(4716), + [sym_raw_string] = ACTIONS(4714), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4714), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4714), + [anon_sym_BQUOTE] = ACTIONS(4714), + [anon_sym_LT_LPAREN] = ACTIONS(4714), + [anon_sym_GT_LPAREN] = ACTIONS(4714), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4716), + [sym_word] = ACTIONS(4716), + [anon_sym_LF] = ACTIONS(4714), + [anon_sym_AMP] = ACTIONS(4716), + }, + [2836] = { + [sym__concat] = ACTIONS(4718), + [sym_variable_name] = ACTIONS(4718), + [anon_sym_SEMI] = ACTIONS(4720), + [anon_sym_esac] = ACTIONS(4720), + [anon_sym_PIPE] = ACTIONS(4720), + [anon_sym_SEMI_SEMI] = ACTIONS(4718), + [anon_sym_PIPE_AMP] = ACTIONS(4718), + [anon_sym_AMP_AMP] = ACTIONS(4718), + [anon_sym_PIPE_PIPE] = ACTIONS(4718), + [sym__special_characters] = ACTIONS(4718), + [anon_sym_DQUOTE] = ACTIONS(4718), + [anon_sym_DOLLAR] = ACTIONS(4720), + [sym_raw_string] = ACTIONS(4718), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4718), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4718), + [anon_sym_BQUOTE] = ACTIONS(4718), + [anon_sym_LT_LPAREN] = ACTIONS(4718), + [anon_sym_GT_LPAREN] = ACTIONS(4718), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4720), + [sym_word] = ACTIONS(4720), + [anon_sym_LF] = ACTIONS(4718), + [anon_sym_AMP] = ACTIONS(4720), + }, + [2837] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(6552), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [2838] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(6554), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [2839] = { + [sym__concat] = ACTIONS(4754), + [sym_variable_name] = ACTIONS(4754), + [anon_sym_SEMI] = ACTIONS(4756), + [anon_sym_esac] = ACTIONS(4756), + [anon_sym_PIPE] = ACTIONS(4756), + [anon_sym_SEMI_SEMI] = ACTIONS(4754), + [anon_sym_PIPE_AMP] = ACTIONS(4754), + [anon_sym_AMP_AMP] = ACTIONS(4754), + [anon_sym_PIPE_PIPE] = ACTIONS(4754), + [sym__special_characters] = ACTIONS(4754), + [anon_sym_DQUOTE] = ACTIONS(4754), + [anon_sym_DOLLAR] = ACTIONS(4756), + [sym_raw_string] = ACTIONS(4754), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4754), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4754), + [anon_sym_BQUOTE] = ACTIONS(4754), + [anon_sym_LT_LPAREN] = ACTIONS(4754), + [anon_sym_GT_LPAREN] = ACTIONS(4754), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4756), + [sym_word] = ACTIONS(4756), + [anon_sym_LF] = ACTIONS(4754), + [anon_sym_AMP] = ACTIONS(4756), + }, + [2840] = { + [sym__concat] = ACTIONS(4710), + [anon_sym_SEMI] = ACTIONS(4712), + [anon_sym_esac] = ACTIONS(4712), + [anon_sym_PIPE] = ACTIONS(4712), + [anon_sym_SEMI_SEMI] = ACTIONS(4710), + [anon_sym_PIPE_AMP] = ACTIONS(4710), + [anon_sym_AMP_AMP] = ACTIONS(4710), + [anon_sym_PIPE_PIPE] = ACTIONS(4710), + [sym__special_characters] = ACTIONS(4710), + [anon_sym_DQUOTE] = ACTIONS(4710), + [anon_sym_DOLLAR] = ACTIONS(4712), + [sym_raw_string] = ACTIONS(4710), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4710), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4710), + [anon_sym_BQUOTE] = ACTIONS(4710), + [anon_sym_LT_LPAREN] = ACTIONS(4710), + [anon_sym_GT_LPAREN] = ACTIONS(4710), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4712), + [sym_word] = ACTIONS(4712), + [anon_sym_LF] = ACTIONS(4710), + [anon_sym_AMP] = ACTIONS(4712), + }, + [2841] = { + [sym__concat] = ACTIONS(4714), + [anon_sym_SEMI] = ACTIONS(4716), + [anon_sym_esac] = ACTIONS(4716), + [anon_sym_PIPE] = ACTIONS(4716), + [anon_sym_SEMI_SEMI] = ACTIONS(4714), + [anon_sym_PIPE_AMP] = ACTIONS(4714), + [anon_sym_AMP_AMP] = ACTIONS(4714), + [anon_sym_PIPE_PIPE] = ACTIONS(4714), + [sym__special_characters] = ACTIONS(4714), + [anon_sym_DQUOTE] = ACTIONS(4714), + [anon_sym_DOLLAR] = ACTIONS(4716), + [sym_raw_string] = ACTIONS(4714), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4714), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4714), + [anon_sym_BQUOTE] = ACTIONS(4714), + [anon_sym_LT_LPAREN] = ACTIONS(4714), + [anon_sym_GT_LPAREN] = ACTIONS(4714), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4716), + [sym_word] = ACTIONS(4716), + [anon_sym_LF] = ACTIONS(4714), + [anon_sym_AMP] = ACTIONS(4716), + }, + [2842] = { + [sym__concat] = ACTIONS(4718), + [anon_sym_SEMI] = ACTIONS(4720), + [anon_sym_esac] = ACTIONS(4720), + [anon_sym_PIPE] = ACTIONS(4720), + [anon_sym_SEMI_SEMI] = ACTIONS(4718), + [anon_sym_PIPE_AMP] = ACTIONS(4718), + [anon_sym_AMP_AMP] = ACTIONS(4718), + [anon_sym_PIPE_PIPE] = ACTIONS(4718), + [sym__special_characters] = ACTIONS(4718), + [anon_sym_DQUOTE] = ACTIONS(4718), + [anon_sym_DOLLAR] = ACTIONS(4720), + [sym_raw_string] = ACTIONS(4718), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4718), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4718), + [anon_sym_BQUOTE] = ACTIONS(4718), + [anon_sym_LT_LPAREN] = ACTIONS(4718), + [anon_sym_GT_LPAREN] = ACTIONS(4718), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4720), + [sym_word] = ACTIONS(4720), + [anon_sym_LF] = ACTIONS(4718), + [anon_sym_AMP] = ACTIONS(4720), + }, + [2843] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(6556), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [2844] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(6558), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [2845] = { + [sym__concat] = ACTIONS(4754), + [anon_sym_SEMI] = ACTIONS(4756), + [anon_sym_esac] = ACTIONS(4756), + [anon_sym_PIPE] = ACTIONS(4756), + [anon_sym_SEMI_SEMI] = ACTIONS(4754), + [anon_sym_PIPE_AMP] = ACTIONS(4754), + [anon_sym_AMP_AMP] = ACTIONS(4754), + [anon_sym_PIPE_PIPE] = ACTIONS(4754), + [sym__special_characters] = ACTIONS(4754), + [anon_sym_DQUOTE] = ACTIONS(4754), + [anon_sym_DOLLAR] = ACTIONS(4756), + [sym_raw_string] = ACTIONS(4754), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4754), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4754), + [anon_sym_BQUOTE] = ACTIONS(4754), + [anon_sym_LT_LPAREN] = ACTIONS(4754), + [anon_sym_GT_LPAREN] = ACTIONS(4754), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4756), + [sym_word] = ACTIONS(4756), + [anon_sym_LF] = ACTIONS(4754), + [anon_sym_AMP] = ACTIONS(4756), + }, + [2846] = { + [sym__simple_heredoc_body] = ACTIONS(5202), + [sym__heredoc_body_beginning] = ACTIONS(5202), + [sym_file_descriptor] = ACTIONS(5202), + [sym__concat] = ACTIONS(5202), + [anon_sym_SEMI] = ACTIONS(5204), + [anon_sym_esac] = ACTIONS(5204), + [anon_sym_PIPE] = ACTIONS(5204), + [anon_sym_SEMI_SEMI] = ACTIONS(5202), + [anon_sym_PIPE_AMP] = ACTIONS(5202), + [anon_sym_AMP_AMP] = ACTIONS(5202), + [anon_sym_PIPE_PIPE] = ACTIONS(5202), + [anon_sym_EQ_TILDE] = ACTIONS(5204), + [anon_sym_EQ_EQ] = ACTIONS(5204), + [anon_sym_LT] = ACTIONS(5204), + [anon_sym_GT] = ACTIONS(5204), + [anon_sym_GT_GT] = ACTIONS(5202), + [anon_sym_AMP_GT] = ACTIONS(5204), + [anon_sym_AMP_GT_GT] = ACTIONS(5202), + [anon_sym_LT_AMP] = ACTIONS(5202), + [anon_sym_GT_AMP] = ACTIONS(5202), + [anon_sym_LT_LT] = ACTIONS(5204), + [anon_sym_LT_LT_DASH] = ACTIONS(5202), + [anon_sym_LT_LT_LT] = ACTIONS(5202), + [sym__special_characters] = ACTIONS(5202), + [anon_sym_DQUOTE] = ACTIONS(5202), + [anon_sym_DOLLAR] = ACTIONS(5204), + [sym_raw_string] = ACTIONS(5202), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5202), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5202), + [anon_sym_BQUOTE] = ACTIONS(5202), + [anon_sym_LT_LPAREN] = ACTIONS(5202), + [anon_sym_GT_LPAREN] = ACTIONS(5202), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(5204), + [anon_sym_LF] = ACTIONS(5202), + [anon_sym_AMP] = ACTIONS(5204), + }, + [2847] = { + [sym__simple_heredoc_body] = ACTIONS(5206), + [sym__heredoc_body_beginning] = ACTIONS(5206), + [sym_file_descriptor] = ACTIONS(5206), + [sym__concat] = ACTIONS(5206), + [anon_sym_SEMI] = ACTIONS(5208), + [anon_sym_esac] = ACTIONS(5208), + [anon_sym_PIPE] = ACTIONS(5208), + [anon_sym_SEMI_SEMI] = ACTIONS(5206), + [anon_sym_PIPE_AMP] = ACTIONS(5206), + [anon_sym_AMP_AMP] = ACTIONS(5206), + [anon_sym_PIPE_PIPE] = ACTIONS(5206), + [anon_sym_EQ_TILDE] = ACTIONS(5208), + [anon_sym_EQ_EQ] = ACTIONS(5208), + [anon_sym_LT] = ACTIONS(5208), + [anon_sym_GT] = ACTIONS(5208), + [anon_sym_GT_GT] = ACTIONS(5206), + [anon_sym_AMP_GT] = ACTIONS(5208), + [anon_sym_AMP_GT_GT] = ACTIONS(5206), + [anon_sym_LT_AMP] = ACTIONS(5206), + [anon_sym_GT_AMP] = ACTIONS(5206), + [anon_sym_LT_LT] = ACTIONS(5208), + [anon_sym_LT_LT_DASH] = ACTIONS(5206), + [anon_sym_LT_LT_LT] = ACTIONS(5206), + [sym__special_characters] = ACTIONS(5206), + [anon_sym_DQUOTE] = ACTIONS(5206), + [anon_sym_DOLLAR] = ACTIONS(5208), + [sym_raw_string] = ACTIONS(5206), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5206), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5206), + [anon_sym_BQUOTE] = ACTIONS(5206), + [anon_sym_LT_LPAREN] = ACTIONS(5206), + [anon_sym_GT_LPAREN] = ACTIONS(5206), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(5208), + [anon_sym_LF] = ACTIONS(5206), + [anon_sym_AMP] = ACTIONS(5208), + }, + [2848] = { + [sym__simple_heredoc_body] = ACTIONS(3934), + [sym__heredoc_body_beginning] = ACTIONS(3934), + [sym_file_descriptor] = ACTIONS(3934), + [sym__concat] = ACTIONS(3934), + [anon_sym_SEMI] = ACTIONS(3936), + [anon_sym_esac] = ACTIONS(3934), + [anon_sym_PIPE] = ACTIONS(3936), + [anon_sym_SEMI_SEMI] = ACTIONS(3934), + [anon_sym_PIPE_AMP] = ACTIONS(3934), + [anon_sym_AMP_AMP] = ACTIONS(3934), + [anon_sym_PIPE_PIPE] = ACTIONS(3934), + [anon_sym_LT] = ACTIONS(3936), + [anon_sym_GT] = ACTIONS(3936), + [anon_sym_GT_GT] = ACTIONS(3934), + [anon_sym_AMP_GT] = ACTIONS(3936), + [anon_sym_AMP_GT_GT] = ACTIONS(3934), + [anon_sym_LT_AMP] = ACTIONS(3934), + [anon_sym_GT_AMP] = ACTIONS(3934), + [anon_sym_LT_LT] = ACTIONS(3936), + [anon_sym_LT_LT_DASH] = ACTIONS(3934), + [anon_sym_LT_LT_LT] = ACTIONS(3934), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(3934), + [anon_sym_AMP] = ACTIONS(3936), + }, + [2849] = { + [sym__simple_heredoc_body] = ACTIONS(3942), + [sym__heredoc_body_beginning] = ACTIONS(3942), + [sym_file_descriptor] = ACTIONS(3942), + [sym__concat] = ACTIONS(3942), + [anon_sym_SEMI] = ACTIONS(3944), + [anon_sym_esac] = ACTIONS(3942), + [anon_sym_PIPE] = ACTIONS(3944), + [anon_sym_SEMI_SEMI] = ACTIONS(3942), + [anon_sym_PIPE_AMP] = ACTIONS(3942), + [anon_sym_AMP_AMP] = ACTIONS(3942), + [anon_sym_PIPE_PIPE] = ACTIONS(3942), + [anon_sym_LT] = ACTIONS(3944), + [anon_sym_GT] = ACTIONS(3944), + [anon_sym_GT_GT] = ACTIONS(3942), + [anon_sym_AMP_GT] = ACTIONS(3944), + [anon_sym_AMP_GT_GT] = ACTIONS(3942), + [anon_sym_LT_AMP] = ACTIONS(3942), + [anon_sym_GT_AMP] = ACTIONS(3942), + [anon_sym_LT_LT] = ACTIONS(3944), + [anon_sym_LT_LT_DASH] = ACTIONS(3942), + [anon_sym_LT_LT_LT] = ACTIONS(3942), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(3942), + [anon_sym_AMP] = ACTIONS(3944), + }, + [2850] = { + [aux_sym_concatenation_repeat1] = STATE(1366), + [sym__concat] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(6560), + [sym_comment] = ACTIONS(55), + }, + [2851] = { + [aux_sym_concatenation_repeat1] = STATE(1366), + [sym__concat] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(6562), + [sym_comment] = ACTIONS(55), + }, + [2852] = { + [anon_sym_RBRACE] = ACTIONS(6562), + [sym_comment] = ACTIONS(55), + }, + [2853] = { + [sym_concatenation] = STATE(2875), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2875), + [anon_sym_RBRACE] = ACTIONS(6564), + [anon_sym_EQ] = ACTIONS(6566), + [anon_sym_DASH] = ACTIONS(6566), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(6568), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(6566), + [anon_sym_COLON_QMARK] = ACTIONS(6566), + [anon_sym_COLON_DASH] = ACTIONS(6566), + [anon_sym_PERCENT] = ACTIONS(6566), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [2854] = { + [sym__simple_heredoc_body] = ACTIONS(3998), + [sym__heredoc_body_beginning] = ACTIONS(3998), + [sym_file_descriptor] = ACTIONS(3998), + [sym__concat] = ACTIONS(3998), + [anon_sym_SEMI] = ACTIONS(4000), + [anon_sym_esac] = ACTIONS(3998), + [anon_sym_PIPE] = ACTIONS(4000), + [anon_sym_SEMI_SEMI] = ACTIONS(3998), + [anon_sym_PIPE_AMP] = ACTIONS(3998), + [anon_sym_AMP_AMP] = ACTIONS(3998), + [anon_sym_PIPE_PIPE] = ACTIONS(3998), + [anon_sym_LT] = ACTIONS(4000), + [anon_sym_GT] = ACTIONS(4000), + [anon_sym_GT_GT] = ACTIONS(3998), + [anon_sym_AMP_GT] = ACTIONS(4000), + [anon_sym_AMP_GT_GT] = ACTIONS(3998), + [anon_sym_LT_AMP] = ACTIONS(3998), + [anon_sym_GT_AMP] = ACTIONS(3998), + [anon_sym_LT_LT] = ACTIONS(4000), + [anon_sym_LT_LT_DASH] = ACTIONS(3998), + [anon_sym_LT_LT_LT] = ACTIONS(3998), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(3998), + [anon_sym_AMP] = ACTIONS(4000), + }, + [2855] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(6564), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [2856] = { + [sym_concatenation] = STATE(2876), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(2876), + [anon_sym_RBRACE] = ACTIONS(6562), + [anon_sym_EQ] = ACTIONS(6570), + [anon_sym_DASH] = ACTIONS(6570), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(6572), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(6570), + [anon_sym_COLON_QMARK] = ACTIONS(6570), + [anon_sym_COLON_DASH] = ACTIONS(6570), + [anon_sym_PERCENT] = ACTIONS(6570), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [2857] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(6562), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [2858] = { + [sym__simple_heredoc_body] = ACTIONS(4043), + [sym__heredoc_body_beginning] = ACTIONS(4043), + [sym_file_descriptor] = ACTIONS(4043), + [sym__concat] = ACTIONS(4043), + [anon_sym_SEMI] = ACTIONS(4045), + [anon_sym_esac] = ACTIONS(4043), + [anon_sym_PIPE] = ACTIONS(4045), + [anon_sym_SEMI_SEMI] = ACTIONS(4043), + [anon_sym_PIPE_AMP] = ACTIONS(4043), + [anon_sym_AMP_AMP] = ACTIONS(4043), + [anon_sym_PIPE_PIPE] = ACTIONS(4043), + [anon_sym_LT] = ACTIONS(4045), + [anon_sym_GT] = ACTIONS(4045), + [anon_sym_GT_GT] = ACTIONS(4043), + [anon_sym_AMP_GT] = ACTIONS(4045), + [anon_sym_AMP_GT_GT] = ACTIONS(4043), + [anon_sym_LT_AMP] = ACTIONS(4043), + [anon_sym_GT_AMP] = ACTIONS(4043), + [anon_sym_LT_LT] = ACTIONS(4045), + [anon_sym_LT_LT_DASH] = ACTIONS(4043), + [anon_sym_LT_LT_LT] = ACTIONS(4043), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(4043), + [anon_sym_AMP] = ACTIONS(4045), + }, + [2859] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(6574), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [2860] = { + [sym__simple_heredoc_body] = ACTIONS(4065), + [sym__heredoc_body_beginning] = ACTIONS(4065), + [sym_file_descriptor] = ACTIONS(4065), + [sym__concat] = ACTIONS(4065), + [anon_sym_SEMI] = ACTIONS(4067), + [anon_sym_esac] = ACTIONS(4065), + [anon_sym_PIPE] = ACTIONS(4067), + [anon_sym_SEMI_SEMI] = ACTIONS(4065), + [anon_sym_PIPE_AMP] = ACTIONS(4065), + [anon_sym_AMP_AMP] = ACTIONS(4065), + [anon_sym_PIPE_PIPE] = ACTIONS(4065), + [anon_sym_LT] = ACTIONS(4067), + [anon_sym_GT] = ACTIONS(4067), + [anon_sym_GT_GT] = ACTIONS(4065), + [anon_sym_AMP_GT] = ACTIONS(4067), + [anon_sym_AMP_GT_GT] = ACTIONS(4065), + [anon_sym_LT_AMP] = ACTIONS(4065), + [anon_sym_GT_AMP] = ACTIONS(4065), + [anon_sym_LT_LT] = ACTIONS(4067), + [anon_sym_LT_LT_DASH] = ACTIONS(4065), + [anon_sym_LT_LT_LT] = ACTIONS(4065), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(4065), + [anon_sym_AMP] = ACTIONS(4067), + }, + [2861] = { + [sym__simple_heredoc_body] = ACTIONS(4089), + [sym__heredoc_body_beginning] = ACTIONS(4089), + [sym_file_descriptor] = ACTIONS(4089), + [sym__concat] = ACTIONS(4089), + [anon_sym_SEMI] = ACTIONS(4091), + [anon_sym_esac] = ACTIONS(4089), + [anon_sym_PIPE] = ACTIONS(4091), + [anon_sym_SEMI_SEMI] = ACTIONS(4089), + [anon_sym_PIPE_AMP] = ACTIONS(4089), + [anon_sym_AMP_AMP] = ACTIONS(4089), + [anon_sym_PIPE_PIPE] = ACTIONS(4089), + [anon_sym_LT] = ACTIONS(4091), + [anon_sym_GT] = ACTIONS(4091), + [anon_sym_GT_GT] = ACTIONS(4089), + [anon_sym_AMP_GT] = ACTIONS(4091), + [anon_sym_AMP_GT_GT] = ACTIONS(4089), + [anon_sym_LT_AMP] = ACTIONS(4089), + [anon_sym_GT_AMP] = ACTIONS(4089), + [anon_sym_LT_LT] = ACTIONS(4091), + [anon_sym_LT_LT_DASH] = ACTIONS(4089), + [anon_sym_LT_LT_LT] = ACTIONS(4089), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(4089), + [anon_sym_AMP] = ACTIONS(4091), + }, + [2862] = { + [sym_file_descriptor] = ACTIONS(4710), + [sym__concat] = ACTIONS(4710), + [sym_variable_name] = ACTIONS(4710), + [anon_sym_SEMI] = ACTIONS(4712), + [anon_sym_esac] = ACTIONS(4712), + [anon_sym_PIPE] = ACTIONS(4712), + [anon_sym_SEMI_SEMI] = ACTIONS(4710), + [anon_sym_PIPE_AMP] = ACTIONS(4710), + [anon_sym_AMP_AMP] = ACTIONS(4710), + [anon_sym_PIPE_PIPE] = ACTIONS(4710), + [anon_sym_LT] = ACTIONS(4712), + [anon_sym_GT] = ACTIONS(4712), + [anon_sym_GT_GT] = ACTIONS(4710), + [anon_sym_AMP_GT] = ACTIONS(4712), + [anon_sym_AMP_GT_GT] = ACTIONS(4710), + [anon_sym_LT_AMP] = ACTIONS(4710), + [anon_sym_GT_AMP] = ACTIONS(4710), + [sym__special_characters] = ACTIONS(4710), + [anon_sym_DQUOTE] = ACTIONS(4710), + [anon_sym_DOLLAR] = ACTIONS(4712), + [sym_raw_string] = ACTIONS(4710), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4710), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4710), + [anon_sym_BQUOTE] = ACTIONS(4710), + [anon_sym_LT_LPAREN] = ACTIONS(4710), + [anon_sym_GT_LPAREN] = ACTIONS(4710), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(4712), + [anon_sym_LF] = ACTIONS(4710), + [anon_sym_AMP] = ACTIONS(4712), + }, + [2863] = { + [sym_file_descriptor] = ACTIONS(4714), + [sym__concat] = ACTIONS(4714), + [sym_variable_name] = ACTIONS(4714), + [anon_sym_SEMI] = ACTIONS(4716), + [anon_sym_esac] = ACTIONS(4716), + [anon_sym_PIPE] = ACTIONS(4716), + [anon_sym_SEMI_SEMI] = ACTIONS(4714), + [anon_sym_PIPE_AMP] = ACTIONS(4714), + [anon_sym_AMP_AMP] = ACTIONS(4714), + [anon_sym_PIPE_PIPE] = ACTIONS(4714), + [anon_sym_LT] = ACTIONS(4716), + [anon_sym_GT] = ACTIONS(4716), + [anon_sym_GT_GT] = ACTIONS(4714), + [anon_sym_AMP_GT] = ACTIONS(4716), + [anon_sym_AMP_GT_GT] = ACTIONS(4714), + [anon_sym_LT_AMP] = ACTIONS(4714), + [anon_sym_GT_AMP] = ACTIONS(4714), + [sym__special_characters] = ACTIONS(4714), + [anon_sym_DQUOTE] = ACTIONS(4714), + [anon_sym_DOLLAR] = ACTIONS(4716), + [sym_raw_string] = ACTIONS(4714), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4714), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4714), + [anon_sym_BQUOTE] = ACTIONS(4714), + [anon_sym_LT_LPAREN] = ACTIONS(4714), + [anon_sym_GT_LPAREN] = ACTIONS(4714), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(4716), + [anon_sym_LF] = ACTIONS(4714), + [anon_sym_AMP] = ACTIONS(4716), + }, + [2864] = { + [sym_file_descriptor] = ACTIONS(4718), + [sym__concat] = ACTIONS(4718), + [sym_variable_name] = ACTIONS(4718), + [anon_sym_SEMI] = ACTIONS(4720), + [anon_sym_esac] = ACTIONS(4720), + [anon_sym_PIPE] = ACTIONS(4720), + [anon_sym_SEMI_SEMI] = ACTIONS(4718), + [anon_sym_PIPE_AMP] = ACTIONS(4718), + [anon_sym_AMP_AMP] = ACTIONS(4718), + [anon_sym_PIPE_PIPE] = ACTIONS(4718), + [anon_sym_LT] = ACTIONS(4720), + [anon_sym_GT] = ACTIONS(4720), + [anon_sym_GT_GT] = ACTIONS(4718), + [anon_sym_AMP_GT] = ACTIONS(4720), + [anon_sym_AMP_GT_GT] = ACTIONS(4718), + [anon_sym_LT_AMP] = ACTIONS(4718), + [anon_sym_GT_AMP] = ACTIONS(4718), + [sym__special_characters] = ACTIONS(4718), + [anon_sym_DQUOTE] = ACTIONS(4718), + [anon_sym_DOLLAR] = ACTIONS(4720), + [sym_raw_string] = ACTIONS(4718), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4718), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4718), + [anon_sym_BQUOTE] = ACTIONS(4718), + [anon_sym_LT_LPAREN] = ACTIONS(4718), + [anon_sym_GT_LPAREN] = ACTIONS(4718), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(4720), + [anon_sym_LF] = ACTIONS(4718), + [anon_sym_AMP] = ACTIONS(4720), + }, + [2865] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(6576), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [2866] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(6578), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [2867] = { + [sym_file_descriptor] = ACTIONS(4754), + [sym__concat] = ACTIONS(4754), + [sym_variable_name] = ACTIONS(4754), + [anon_sym_SEMI] = ACTIONS(4756), + [anon_sym_esac] = ACTIONS(4756), + [anon_sym_PIPE] = ACTIONS(4756), + [anon_sym_SEMI_SEMI] = ACTIONS(4754), + [anon_sym_PIPE_AMP] = ACTIONS(4754), + [anon_sym_AMP_AMP] = ACTIONS(4754), + [anon_sym_PIPE_PIPE] = ACTIONS(4754), + [anon_sym_LT] = ACTIONS(4756), + [anon_sym_GT] = ACTIONS(4756), + [anon_sym_GT_GT] = ACTIONS(4754), + [anon_sym_AMP_GT] = ACTIONS(4756), + [anon_sym_AMP_GT_GT] = ACTIONS(4754), + [anon_sym_LT_AMP] = ACTIONS(4754), + [anon_sym_GT_AMP] = ACTIONS(4754), + [sym__special_characters] = ACTIONS(4754), + [anon_sym_DQUOTE] = ACTIONS(4754), + [anon_sym_DOLLAR] = ACTIONS(4756), + [sym_raw_string] = ACTIONS(4754), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4754), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4754), + [anon_sym_BQUOTE] = ACTIONS(4754), + [anon_sym_LT_LPAREN] = ACTIONS(4754), + [anon_sym_GT_LPAREN] = ACTIONS(4754), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(4756), + [anon_sym_LF] = ACTIONS(4754), + [anon_sym_AMP] = ACTIONS(4756), + }, + [2868] = { + [sym__concat] = ACTIONS(5202), + [sym_variable_name] = ACTIONS(5202), + [anon_sym_SEMI] = ACTIONS(5204), + [anon_sym_esac] = ACTIONS(5204), + [anon_sym_PIPE] = ACTIONS(5204), + [anon_sym_SEMI_SEMI] = ACTIONS(5202), + [anon_sym_PIPE_AMP] = ACTIONS(5202), + [anon_sym_AMP_AMP] = ACTIONS(5202), + [anon_sym_PIPE_PIPE] = ACTIONS(5202), + [sym__special_characters] = ACTIONS(5202), + [anon_sym_DQUOTE] = ACTIONS(5202), + [anon_sym_DOLLAR] = ACTIONS(5204), + [sym_raw_string] = ACTIONS(5202), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5202), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5202), + [anon_sym_BQUOTE] = ACTIONS(5202), + [anon_sym_LT_LPAREN] = ACTIONS(5202), + [anon_sym_GT_LPAREN] = ACTIONS(5202), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5204), + [sym_word] = ACTIONS(5204), + [anon_sym_LF] = ACTIONS(5202), + [anon_sym_AMP] = ACTIONS(5204), + }, + [2869] = { + [sym__concat] = ACTIONS(5206), + [sym_variable_name] = ACTIONS(5206), + [anon_sym_SEMI] = ACTIONS(5208), + [anon_sym_esac] = ACTIONS(5208), + [anon_sym_PIPE] = ACTIONS(5208), + [anon_sym_SEMI_SEMI] = ACTIONS(5206), + [anon_sym_PIPE_AMP] = ACTIONS(5206), + [anon_sym_AMP_AMP] = ACTIONS(5206), + [anon_sym_PIPE_PIPE] = ACTIONS(5206), + [sym__special_characters] = ACTIONS(5206), + [anon_sym_DQUOTE] = ACTIONS(5206), + [anon_sym_DOLLAR] = ACTIONS(5208), + [sym_raw_string] = ACTIONS(5206), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5206), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5206), + [anon_sym_BQUOTE] = ACTIONS(5206), + [anon_sym_LT_LPAREN] = ACTIONS(5206), + [anon_sym_GT_LPAREN] = ACTIONS(5206), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5208), + [sym_word] = ACTIONS(5208), + [anon_sym_LF] = ACTIONS(5206), + [anon_sym_AMP] = ACTIONS(5208), + }, + [2870] = { + [sym__concat] = ACTIONS(5202), + [anon_sym_SEMI] = ACTIONS(5204), + [anon_sym_esac] = ACTIONS(5204), + [anon_sym_PIPE] = ACTIONS(5204), + [anon_sym_SEMI_SEMI] = ACTIONS(5202), + [anon_sym_PIPE_AMP] = ACTIONS(5202), + [anon_sym_AMP_AMP] = ACTIONS(5202), + [anon_sym_PIPE_PIPE] = ACTIONS(5202), + [sym__special_characters] = ACTIONS(5202), + [anon_sym_DQUOTE] = ACTIONS(5202), + [anon_sym_DOLLAR] = ACTIONS(5204), + [sym_raw_string] = ACTIONS(5202), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5202), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5202), + [anon_sym_BQUOTE] = ACTIONS(5202), + [anon_sym_LT_LPAREN] = ACTIONS(5202), + [anon_sym_GT_LPAREN] = ACTIONS(5202), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5204), + [sym_word] = ACTIONS(5204), + [anon_sym_LF] = ACTIONS(5202), + [anon_sym_AMP] = ACTIONS(5204), + }, + [2871] = { + [sym__concat] = ACTIONS(5206), + [anon_sym_SEMI] = ACTIONS(5208), + [anon_sym_esac] = ACTIONS(5208), + [anon_sym_PIPE] = ACTIONS(5208), + [anon_sym_SEMI_SEMI] = ACTIONS(5206), + [anon_sym_PIPE_AMP] = ACTIONS(5206), + [anon_sym_AMP_AMP] = ACTIONS(5206), + [anon_sym_PIPE_PIPE] = ACTIONS(5206), + [sym__special_characters] = ACTIONS(5206), + [anon_sym_DQUOTE] = ACTIONS(5206), + [anon_sym_DOLLAR] = ACTIONS(5208), + [sym_raw_string] = ACTIONS(5206), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5206), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5206), + [anon_sym_BQUOTE] = ACTIONS(5206), + [anon_sym_LT_LPAREN] = ACTIONS(5206), + [anon_sym_GT_LPAREN] = ACTIONS(5206), + [sym_comment] = ACTIONS(55), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5208), + [sym_word] = ACTIONS(5208), + [anon_sym_LF] = ACTIONS(5206), + [anon_sym_AMP] = ACTIONS(5208), + }, + [2872] = { + [sym__simple_heredoc_body] = ACTIONS(4710), + [sym__heredoc_body_beginning] = ACTIONS(4710), + [sym_file_descriptor] = ACTIONS(4710), + [sym__concat] = ACTIONS(4710), + [anon_sym_SEMI] = ACTIONS(4712), + [anon_sym_esac] = ACTIONS(4710), + [anon_sym_PIPE] = ACTIONS(4712), + [anon_sym_SEMI_SEMI] = ACTIONS(4710), + [anon_sym_PIPE_AMP] = ACTIONS(4710), + [anon_sym_AMP_AMP] = ACTIONS(4710), + [anon_sym_PIPE_PIPE] = ACTIONS(4710), + [anon_sym_LT] = ACTIONS(4712), + [anon_sym_GT] = ACTIONS(4712), + [anon_sym_GT_GT] = ACTIONS(4710), + [anon_sym_AMP_GT] = ACTIONS(4712), + [anon_sym_AMP_GT_GT] = ACTIONS(4710), + [anon_sym_LT_AMP] = ACTIONS(4710), + [anon_sym_GT_AMP] = ACTIONS(4710), + [anon_sym_LT_LT] = ACTIONS(4712), + [anon_sym_LT_LT_DASH] = ACTIONS(4710), + [anon_sym_LT_LT_LT] = ACTIONS(4710), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(4710), + [anon_sym_AMP] = ACTIONS(4712), + }, + [2873] = { + [sym__simple_heredoc_body] = ACTIONS(4714), + [sym__heredoc_body_beginning] = ACTIONS(4714), + [sym_file_descriptor] = ACTIONS(4714), + [sym__concat] = ACTIONS(4714), + [anon_sym_SEMI] = ACTIONS(4716), + [anon_sym_esac] = ACTIONS(4714), + [anon_sym_PIPE] = ACTIONS(4716), + [anon_sym_SEMI_SEMI] = ACTIONS(4714), + [anon_sym_PIPE_AMP] = ACTIONS(4714), + [anon_sym_AMP_AMP] = ACTIONS(4714), + [anon_sym_PIPE_PIPE] = ACTIONS(4714), + [anon_sym_LT] = ACTIONS(4716), + [anon_sym_GT] = ACTIONS(4716), + [anon_sym_GT_GT] = ACTIONS(4714), + [anon_sym_AMP_GT] = ACTIONS(4716), + [anon_sym_AMP_GT_GT] = ACTIONS(4714), + [anon_sym_LT_AMP] = ACTIONS(4714), + [anon_sym_GT_AMP] = ACTIONS(4714), + [anon_sym_LT_LT] = ACTIONS(4716), + [anon_sym_LT_LT_DASH] = ACTIONS(4714), + [anon_sym_LT_LT_LT] = ACTIONS(4714), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(4714), + [anon_sym_AMP] = ACTIONS(4716), + }, + [2874] = { + [sym__simple_heredoc_body] = ACTIONS(4718), + [sym__heredoc_body_beginning] = ACTIONS(4718), + [sym_file_descriptor] = ACTIONS(4718), + [sym__concat] = ACTIONS(4718), + [anon_sym_SEMI] = ACTIONS(4720), + [anon_sym_esac] = ACTIONS(4718), + [anon_sym_PIPE] = ACTIONS(4720), + [anon_sym_SEMI_SEMI] = ACTIONS(4718), + [anon_sym_PIPE_AMP] = ACTIONS(4718), + [anon_sym_AMP_AMP] = ACTIONS(4718), + [anon_sym_PIPE_PIPE] = ACTIONS(4718), + [anon_sym_LT] = ACTIONS(4720), + [anon_sym_GT] = ACTIONS(4720), + [anon_sym_GT_GT] = ACTIONS(4718), + [anon_sym_AMP_GT] = ACTIONS(4720), + [anon_sym_AMP_GT_GT] = ACTIONS(4718), + [anon_sym_LT_AMP] = ACTIONS(4718), + [anon_sym_GT_AMP] = ACTIONS(4718), + [anon_sym_LT_LT] = ACTIONS(4720), + [anon_sym_LT_LT_DASH] = ACTIONS(4718), + [anon_sym_LT_LT_LT] = ACTIONS(4718), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(4718), + [anon_sym_AMP] = ACTIONS(4720), + }, + [2875] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(6580), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [2876] = { + [sym_concatenation] = STATE(960), + [sym_string] = STATE(483), + [sym_simple_expansion] = STATE(483), + [sym_string_expansion] = STATE(483), + [sym_expansion] = STATE(483), + [sym_command_substitution] = STATE(483), + [sym_process_substitution] = STATE(483), + [aux_sym_expansion_repeat1] = STATE(960), + [anon_sym_RBRACE] = ACTIONS(6582), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [sym__special_characters] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(877), + [sym_raw_string] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_COLON_QMARK] = ACTIONS(1915), + [anon_sym_COLON_DASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(889), + [anon_sym_LT_LPAREN] = ACTIONS(891), + [anon_sym_GT_LPAREN] = ACTIONS(891), + [sym_comment] = ACTIONS(281), + [sym_word] = ACTIONS(893), + }, + [2877] = { + [sym__simple_heredoc_body] = ACTIONS(4754), + [sym__heredoc_body_beginning] = ACTIONS(4754), + [sym_file_descriptor] = ACTIONS(4754), + [sym__concat] = ACTIONS(4754), + [anon_sym_SEMI] = ACTIONS(4756), + [anon_sym_esac] = ACTIONS(4754), + [anon_sym_PIPE] = ACTIONS(4756), + [anon_sym_SEMI_SEMI] = ACTIONS(4754), + [anon_sym_PIPE_AMP] = ACTIONS(4754), + [anon_sym_AMP_AMP] = ACTIONS(4754), + [anon_sym_PIPE_PIPE] = ACTIONS(4754), + [anon_sym_LT] = ACTIONS(4756), + [anon_sym_GT] = ACTIONS(4756), + [anon_sym_GT_GT] = ACTIONS(4754), + [anon_sym_AMP_GT] = ACTIONS(4756), + [anon_sym_AMP_GT_GT] = ACTIONS(4754), + [anon_sym_LT_AMP] = ACTIONS(4754), + [anon_sym_GT_AMP] = ACTIONS(4754), + [anon_sym_LT_LT] = ACTIONS(4756), + [anon_sym_LT_LT_DASH] = ACTIONS(4754), + [anon_sym_LT_LT_LT] = ACTIONS(4754), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(4754), + [anon_sym_AMP] = ACTIONS(4756), + }, + [2878] = { + [sym_file_descriptor] = ACTIONS(5202), + [sym__concat] = ACTIONS(5202), + [sym_variable_name] = ACTIONS(5202), + [anon_sym_SEMI] = ACTIONS(5204), + [anon_sym_esac] = ACTIONS(5204), + [anon_sym_PIPE] = ACTIONS(5204), + [anon_sym_SEMI_SEMI] = ACTIONS(5202), + [anon_sym_PIPE_AMP] = ACTIONS(5202), + [anon_sym_AMP_AMP] = ACTIONS(5202), + [anon_sym_PIPE_PIPE] = ACTIONS(5202), + [anon_sym_LT] = ACTIONS(5204), + [anon_sym_GT] = ACTIONS(5204), + [anon_sym_GT_GT] = ACTIONS(5202), + [anon_sym_AMP_GT] = ACTIONS(5204), + [anon_sym_AMP_GT_GT] = ACTIONS(5202), + [anon_sym_LT_AMP] = ACTIONS(5202), + [anon_sym_GT_AMP] = ACTIONS(5202), + [sym__special_characters] = ACTIONS(5202), + [anon_sym_DQUOTE] = ACTIONS(5202), + [anon_sym_DOLLAR] = ACTIONS(5204), + [sym_raw_string] = ACTIONS(5202), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5202), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5202), + [anon_sym_BQUOTE] = ACTIONS(5202), + [anon_sym_LT_LPAREN] = ACTIONS(5202), + [anon_sym_GT_LPAREN] = ACTIONS(5202), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(5204), + [anon_sym_LF] = ACTIONS(5202), + [anon_sym_AMP] = ACTIONS(5204), + }, + [2879] = { + [sym_file_descriptor] = ACTIONS(5206), + [sym__concat] = ACTIONS(5206), + [sym_variable_name] = ACTIONS(5206), + [anon_sym_SEMI] = ACTIONS(5208), + [anon_sym_esac] = ACTIONS(5208), + [anon_sym_PIPE] = ACTIONS(5208), + [anon_sym_SEMI_SEMI] = ACTIONS(5206), + [anon_sym_PIPE_AMP] = ACTIONS(5206), + [anon_sym_AMP_AMP] = ACTIONS(5206), + [anon_sym_PIPE_PIPE] = ACTIONS(5206), + [anon_sym_LT] = ACTIONS(5208), + [anon_sym_GT] = ACTIONS(5208), + [anon_sym_GT_GT] = ACTIONS(5206), + [anon_sym_AMP_GT] = ACTIONS(5208), + [anon_sym_AMP_GT_GT] = ACTIONS(5206), + [anon_sym_LT_AMP] = ACTIONS(5206), + [anon_sym_GT_AMP] = ACTIONS(5206), + [sym__special_characters] = ACTIONS(5206), + [anon_sym_DQUOTE] = ACTIONS(5206), + [anon_sym_DOLLAR] = ACTIONS(5208), + [sym_raw_string] = ACTIONS(5206), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5206), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5206), + [anon_sym_BQUOTE] = ACTIONS(5206), + [anon_sym_LT_LPAREN] = ACTIONS(5206), + [anon_sym_GT_LPAREN] = ACTIONS(5206), + [sym_comment] = ACTIONS(55), + [sym_word] = ACTIONS(5208), + [anon_sym_LF] = ACTIONS(5206), + [anon_sym_AMP] = ACTIONS(5208), + }, + [2880] = { + [sym__simple_heredoc_body] = ACTIONS(5202), + [sym__heredoc_body_beginning] = ACTIONS(5202), + [sym_file_descriptor] = ACTIONS(5202), + [sym__concat] = ACTIONS(5202), + [anon_sym_SEMI] = ACTIONS(5204), + [anon_sym_esac] = ACTIONS(5202), + [anon_sym_PIPE] = ACTIONS(5204), + [anon_sym_SEMI_SEMI] = ACTIONS(5202), + [anon_sym_PIPE_AMP] = ACTIONS(5202), + [anon_sym_AMP_AMP] = ACTIONS(5202), + [anon_sym_PIPE_PIPE] = ACTIONS(5202), + [anon_sym_LT] = ACTIONS(5204), + [anon_sym_GT] = ACTIONS(5204), + [anon_sym_GT_GT] = ACTIONS(5202), + [anon_sym_AMP_GT] = ACTIONS(5204), + [anon_sym_AMP_GT_GT] = ACTIONS(5202), + [anon_sym_LT_AMP] = ACTIONS(5202), + [anon_sym_GT_AMP] = ACTIONS(5202), + [anon_sym_LT_LT] = ACTIONS(5204), + [anon_sym_LT_LT_DASH] = ACTIONS(5202), + [anon_sym_LT_LT_LT] = ACTIONS(5202), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(5202), + [anon_sym_AMP] = ACTIONS(5204), + }, + [2881] = { + [sym__simple_heredoc_body] = ACTIONS(5206), + [sym__heredoc_body_beginning] = ACTIONS(5206), + [sym_file_descriptor] = ACTIONS(5206), + [sym__concat] = ACTIONS(5206), + [anon_sym_SEMI] = ACTIONS(5208), + [anon_sym_esac] = ACTIONS(5206), + [anon_sym_PIPE] = ACTIONS(5208), + [anon_sym_SEMI_SEMI] = ACTIONS(5206), + [anon_sym_PIPE_AMP] = ACTIONS(5206), + [anon_sym_AMP_AMP] = ACTIONS(5206), + [anon_sym_PIPE_PIPE] = ACTIONS(5206), + [anon_sym_LT] = ACTIONS(5208), + [anon_sym_GT] = ACTIONS(5208), + [anon_sym_GT_GT] = ACTIONS(5206), + [anon_sym_AMP_GT] = ACTIONS(5208), + [anon_sym_AMP_GT_GT] = ACTIONS(5206), + [anon_sym_LT_AMP] = ACTIONS(5206), + [anon_sym_GT_AMP] = ACTIONS(5206), + [anon_sym_LT_LT] = ACTIONS(5208), + [anon_sym_LT_LT_DASH] = ACTIONS(5206), + [anon_sym_LT_LT_LT] = ACTIONS(5206), + [sym_comment] = ACTIONS(55), + [anon_sym_LF] = ACTIONS(5206), + [anon_sym_AMP] = ACTIONS(5208), }, }; @@ -76989,3117 +82377,3178 @@ static TSParseActionEntry ts_parse_actions[] = { [7] = {.count = 1, .reusable = true}, SHIFT(3), [9] = {.count = 1, .reusable = true}, REDUCE(sym_program, 0), [11] = {.count = 1, .reusable = false}, SHIFT(4), - [13] = {.count = 1, .reusable = false}, SHIFT(5), + [13] = {.count = 1, .reusable = true}, SHIFT(5), [15] = {.count = 1, .reusable = false}, SHIFT(6), [17] = {.count = 1, .reusable = false}, SHIFT(7), [19] = {.count = 1, .reusable = false}, SHIFT(8), - [21] = {.count = 1, .reusable = true}, SHIFT(9), + [21] = {.count = 1, .reusable = false}, SHIFT(9), [23] = {.count = 1, .reusable = false}, SHIFT(10), [25] = {.count = 1, .reusable = false}, SHIFT(11), - [27] = {.count = 1, .reusable = true}, SHIFT(12), - [29] = {.count = 1, .reusable = false}, SHIFT(13), + [27] = {.count = 1, .reusable = false}, SHIFT(12), + [29] = {.count = 1, .reusable = true}, SHIFT(13), [31] = {.count = 1, .reusable = false}, SHIFT(14), [33] = {.count = 1, .reusable = false}, SHIFT(15), - [35] = {.count = 1, .reusable = true}, SHIFT(15), - [37] = {.count = 1, .reusable = false}, SHIFT(16), - [39] = {.count = 1, .reusable = true}, SHIFT(17), - [41] = {.count = 1, .reusable = false}, SHIFT(18), - [43] = {.count = 1, .reusable = true}, SHIFT(19), + [35] = {.count = 1, .reusable = false}, SHIFT(16), + [37] = {.count = 1, .reusable = true}, SHIFT(16), + [39] = {.count = 1, .reusable = false}, SHIFT(17), + [41] = {.count = 1, .reusable = true}, SHIFT(18), + [43] = {.count = 1, .reusable = false}, SHIFT(19), [45] = {.count = 1, .reusable = true}, SHIFT(20), [47] = {.count = 1, .reusable = true}, SHIFT(21), [49] = {.count = 1, .reusable = true}, SHIFT(22), [51] = {.count = 1, .reusable = true}, SHIFT(23), - [53] = {.count = 1, .reusable = true}, SHIFT_EXTRA(), - [55] = {.count = 1, .reusable = false}, SHIFT(24), - [57] = {.count = 1, .reusable = false}, SHIFT(33), - [59] = {.count = 1, .reusable = true}, SHIFT(33), + [53] = {.count = 1, .reusable = true}, SHIFT(24), + [55] = {.count = 1, .reusable = true}, SHIFT_EXTRA(), + [57] = {.count = 1, .reusable = false}, SHIFT(25), + [59] = {.count = 1, .reusable = false}, SHIFT(34), [61] = {.count = 1, .reusable = true}, SHIFT(34), [63] = {.count = 1, .reusable = true}, SHIFT(35), [65] = {.count = 1, .reusable = true}, SHIFT(36), [67] = {.count = 1, .reusable = true}, SHIFT(37), [69] = {.count = 1, .reusable = true}, SHIFT(38), - [71] = {.count = 1, .reusable = false}, SHIFT(39), + [71] = {.count = 1, .reusable = true}, SHIFT(39), [73] = {.count = 1, .reusable = false}, SHIFT(40), - [75] = {.count = 1, .reusable = false}, SHIFT(41), - [77] = {.count = 1, .reusable = false}, SHIFT(42), - [79] = {.count = 1, .reusable = true}, SHIFT(43), - [81] = {.count = 1, .reusable = false}, SHIFT(44), - [83] = {.count = 1, .reusable = false}, SHIFT(45), - [85] = {.count = 1, .reusable = false}, SHIFT(46), + [75] = {.count = 1, .reusable = true}, SHIFT(41), + [77] = {.count = 1, .reusable = true}, SHIFT(42), + [79] = {.count = 1, .reusable = false}, SHIFT(43), + [81] = {.count = 1, .reusable = true}, SHIFT(44), + [83] = {.count = 1, .reusable = true}, SHIFT(45), + [85] = {.count = 1, .reusable = true}, SHIFT(46), [87] = {.count = 1, .reusable = true}, SHIFT(47), - [89] = {.count = 1, .reusable = false}, SHIFT(48), - [91] = {.count = 1, .reusable = true}, SHIFT(56), - [93] = {.count = 1, .reusable = true}, SHIFT(57), - [95] = {.count = 1, .reusable = false}, SHIFT(58), - [97] = {.count = 1, .reusable = true}, SHIFT(59), - [99] = {.count = 1, .reusable = true}, SHIFT(60), - [101] = {.count = 1, .reusable = true}, SHIFT(61), - [103] = {.count = 1, .reusable = true}, SHIFT(62), - [105] = {.count = 1, .reusable = true}, SHIFT(63), - [107] = {.count = 1, .reusable = true}, SHIFT(65), - [109] = {.count = 1, .reusable = true}, SHIFT(66), - [111] = {.count = 1, .reusable = false}, SHIFT(67), - [113] = {.count = 1, .reusable = false}, SHIFT(68), - [115] = {.count = 1, .reusable = false}, SHIFT(69), - [117] = {.count = 1, .reusable = false}, SHIFT(70), - [119] = {.count = 1, .reusable = true}, SHIFT(71), - [121] = {.count = 1, .reusable = false}, SHIFT(72), - [123] = {.count = 1, .reusable = false}, SHIFT(73), - [125] = {.count = 1, .reusable = false}, SHIFT(74), - [127] = {.count = 1, .reusable = true}, SHIFT(75), - [129] = {.count = 1, .reusable = false}, SHIFT(76), - [131] = {.count = 1, .reusable = true}, SHIFT(83), - [133] = {.count = 1, .reusable = true}, SHIFT(86), - [135] = {.count = 1, .reusable = false}, SHIFT(87), - [137] = {.count = 1, .reusable = true}, SHIFT(88), - [139] = {.count = 1, .reusable = true}, SHIFT(89), - [141] = {.count = 1, .reusable = false}, SHIFT(90), - [143] = {.count = 1, .reusable = true}, SHIFT(91), - [145] = {.count = 1, .reusable = true}, SHIFT(92), - [147] = {.count = 1, .reusable = true}, SHIFT(93), - [149] = {.count = 1, .reusable = true}, SHIFT(94), - [151] = {.count = 1, .reusable = true}, SHIFT(95), - [153] = {.count = 1, .reusable = false}, SHIFT(91), - [155] = {.count = 1, .reusable = true}, SHIFT(87), - [157] = {.count = 1, .reusable = true}, SHIFT(97), - [159] = {.count = 1, .reusable = false}, SHIFT(98), - [161] = {.count = 1, .reusable = true}, SHIFT(99), + [89] = {.count = 1, .reusable = true}, SHIFT(48), + [91] = {.count = 1, .reusable = false}, SHIFT(44), + [93] = {.count = 1, .reusable = true}, SHIFT(40), + [95] = {.count = 1, .reusable = true}, SHIFT(50), + [97] = {.count = 1, .reusable = true}, SHIFT(51), + [99] = {.count = 1, .reusable = false}, SHIFT(52), + [101] = {.count = 1, .reusable = false}, SHIFT(53), + [103] = {.count = 1, .reusable = false}, SHIFT(54), + [105] = {.count = 1, .reusable = false}, SHIFT(55), + [107] = {.count = 1, .reusable = true}, SHIFT(56), + [109] = {.count = 1, .reusable = false}, SHIFT(57), + [111] = {.count = 1, .reusable = false}, SHIFT(58), + [113] = {.count = 1, .reusable = false}, SHIFT(59), + [115] = {.count = 1, .reusable = true}, SHIFT(60), + [117] = {.count = 1, .reusable = false}, SHIFT(61), + [119] = {.count = 1, .reusable = true}, SHIFT(69), + [121] = {.count = 1, .reusable = true}, SHIFT(70), + [123] = {.count = 1, .reusable = false}, SHIFT(71), + [125] = {.count = 1, .reusable = true}, SHIFT(72), + [127] = {.count = 1, .reusable = true}, SHIFT(73), + [129] = {.count = 1, .reusable = true}, SHIFT(74), + [131] = {.count = 1, .reusable = true}, SHIFT(75), + [133] = {.count = 1, .reusable = true}, SHIFT(76), + [135] = {.count = 1, .reusable = true}, SHIFT(78), + [137] = {.count = 1, .reusable = true}, SHIFT(79), + [139] = {.count = 1, .reusable = true}, SHIFT(80), + [141] = {.count = 1, .reusable = false}, SHIFT(81), + [143] = {.count = 1, .reusable = false}, SHIFT(82), + [145] = {.count = 1, .reusable = false}, SHIFT(83), + [147] = {.count = 1, .reusable = false}, SHIFT(84), + [149] = {.count = 1, .reusable = true}, SHIFT(85), + [151] = {.count = 1, .reusable = false}, SHIFT(86), + [153] = {.count = 1, .reusable = false}, SHIFT(87), + [155] = {.count = 1, .reusable = false}, SHIFT(88), + [157] = {.count = 1, .reusable = true}, SHIFT(89), + [159] = {.count = 1, .reusable = false}, SHIFT(90), + [161] = {.count = 1, .reusable = true}, SHIFT(97), [163] = {.count = 1, .reusable = true}, SHIFT(100), [165] = {.count = 1, .reusable = false}, SHIFT(101), [167] = {.count = 1, .reusable = true}, SHIFT(102), [169] = {.count = 1, .reusable = true}, SHIFT(103), - [171] = {.count = 1, .reusable = true}, SHIFT(104), + [171] = {.count = 1, .reusable = false}, SHIFT(104), [173] = {.count = 1, .reusable = true}, SHIFT(105), [175] = {.count = 1, .reusable = true}, SHIFT(106), - [177] = {.count = 1, .reusable = false}, SHIFT(102), - [179] = {.count = 1, .reusable = true}, SHIFT(98), - [181] = {.count = 1, .reusable = true}, SHIFT(108), - [183] = {.count = 1, .reusable = true}, REDUCE(sym_declaration_command, 1), - [185] = {.count = 1, .reusable = false}, REDUCE(sym_declaration_command, 1), - [187] = {.count = 1, .reusable = true}, SHIFT(109), - [189] = {.count = 1, .reusable = true}, SHIFT(110), - [191] = {.count = 1, .reusable = false}, SHIFT(111), - [193] = {.count = 1, .reusable = true}, SHIFT(112), - [195] = {.count = 1, .reusable = true}, SHIFT(113), - [197] = {.count = 1, .reusable = true}, SHIFT(114), - [199] = {.count = 1, .reusable = true}, SHIFT(115), - [201] = {.count = 1, .reusable = true}, SHIFT(116), - [203] = {.count = 1, .reusable = false}, SHIFT(118), - [205] = {.count = 1, .reusable = false}, SHIFT(112), - [207] = {.count = 1, .reusable = true}, REDUCE(sym_unset_command, 1), - [209] = {.count = 1, .reusable = false}, REDUCE(sym_unset_command, 1), - [211] = {.count = 1, .reusable = true}, SHIFT(119), - [213] = {.count = 1, .reusable = true}, SHIFT(120), - [215] = {.count = 1, .reusable = false}, SHIFT(121), - [217] = {.count = 1, .reusable = true}, SHIFT(122), - [219] = {.count = 1, .reusable = true}, SHIFT(123), - [221] = {.count = 1, .reusable = true}, SHIFT(124), - [223] = {.count = 1, .reusable = true}, SHIFT(125), - [225] = {.count = 1, .reusable = true}, SHIFT(126), - [227] = {.count = 1, .reusable = false}, SHIFT(127), - [229] = {.count = 1, .reusable = false}, SHIFT(122), - [231] = {.count = 1, .reusable = true}, SHIFT(128), + [177] = {.count = 1, .reusable = true}, SHIFT(107), + [179] = {.count = 1, .reusable = true}, SHIFT(108), + [181] = {.count = 1, .reusable = true}, SHIFT(109), + [183] = {.count = 1, .reusable = false}, SHIFT(105), + [185] = {.count = 1, .reusable = true}, SHIFT(101), + [187] = {.count = 1, .reusable = false}, SHIFT(111), + [189] = {.count = 1, .reusable = true}, SHIFT(112), + [191] = {.count = 1, .reusable = true}, SHIFT(113), + [193] = {.count = 1, .reusable = false}, SHIFT(113), + [195] = {.count = 1, .reusable = true}, SHIFT(111), + [197] = {.count = 1, .reusable = true}, SHIFT(115), + [199] = {.count = 1, .reusable = true}, REDUCE(sym_declaration_command, 1), + [201] = {.count = 1, .reusable = false}, REDUCE(sym_declaration_command, 1), + [203] = {.count = 1, .reusable = true}, SHIFT(116), + [205] = {.count = 1, .reusable = true}, SHIFT(117), + [207] = {.count = 1, .reusable = false}, SHIFT(118), + [209] = {.count = 1, .reusable = true}, SHIFT(119), + [211] = {.count = 1, .reusable = true}, SHIFT(120), + [213] = {.count = 1, .reusable = true}, SHIFT(121), + [215] = {.count = 1, .reusable = true}, SHIFT(122), + [217] = {.count = 1, .reusable = true}, SHIFT(123), + [219] = {.count = 1, .reusable = false}, SHIFT(125), + [221] = {.count = 1, .reusable = false}, SHIFT(119), + [223] = {.count = 1, .reusable = true}, REDUCE(sym_unset_command, 1), + [225] = {.count = 1, .reusable = false}, REDUCE(sym_unset_command, 1), + [227] = {.count = 1, .reusable = true}, SHIFT(126), + [229] = {.count = 1, .reusable = true}, SHIFT(127), + [231] = {.count = 1, .reusable = false}, SHIFT(128), [233] = {.count = 1, .reusable = true}, SHIFT(129), - [235] = {.count = 1, .reusable = false}, SHIFT(130), + [235] = {.count = 1, .reusable = true}, SHIFT(130), [237] = {.count = 1, .reusable = true}, SHIFT(131), [239] = {.count = 1, .reusable = true}, SHIFT(132), [241] = {.count = 1, .reusable = true}, SHIFT(133), - [243] = {.count = 1, .reusable = true}, SHIFT(134), - [245] = {.count = 1, .reusable = true}, SHIFT(135), - [247] = {.count = 1, .reusable = true}, REDUCE(sym_command_name, 1, .alias_sequence_id = 1), - [249] = {.count = 1, .reusable = true}, SHIFT(137), - [251] = {.count = 1, .reusable = false}, REDUCE(sym_command_name, 1, .alias_sequence_id = 1), - [253] = {.count = 1, .reusable = false}, SHIFT(139), - [255] = {.count = 1, .reusable = false}, SHIFT(140), - [257] = {.count = 1, .reusable = true}, SHIFT(141), - [259] = {.count = 1, .reusable = false}, SHIFT(142), - [261] = {.count = 1, .reusable = false}, SHIFT(143), - [263] = {.count = 1, .reusable = false}, SHIFT(144), - [265] = {.count = 1, .reusable = false}, SHIFT_EXTRA(), - [267] = {.count = 1, .reusable = true}, SHIFT(146), - [269] = {.count = 1, .reusable = true}, SHIFT(147), - [271] = {.count = 1, .reusable = false}, SHIFT(148), + [243] = {.count = 1, .reusable = false}, SHIFT(134), + [245] = {.count = 1, .reusable = false}, SHIFT(129), + [247] = {.count = 1, .reusable = true}, SHIFT(135), + [249] = {.count = 1, .reusable = true}, SHIFT(136), + [251] = {.count = 1, .reusable = false}, SHIFT(137), + [253] = {.count = 1, .reusable = true}, SHIFT(138), + [255] = {.count = 1, .reusable = true}, SHIFT(139), + [257] = {.count = 1, .reusable = true}, SHIFT(140), + [259] = {.count = 1, .reusable = true}, SHIFT(141), + [261] = {.count = 1, .reusable = true}, SHIFT(142), + [263] = {.count = 1, .reusable = true}, REDUCE(sym_command_name, 1, .alias_sequence_id = 1), + [265] = {.count = 1, .reusable = true}, SHIFT(144), + [267] = {.count = 1, .reusable = false}, REDUCE(sym_command_name, 1, .alias_sequence_id = 1), + [269] = {.count = 1, .reusable = false}, SHIFT(146), + [271] = {.count = 1, .reusable = false}, SHIFT(147), [273] = {.count = 1, .reusable = true}, SHIFT(148), - [275] = {.count = 1, .reusable = true}, REDUCE(sym_command_name, 1), - [277] = {.count = 1, .reusable = false}, REDUCE(sym_command_name, 1), - [279] = {.count = 1, .reusable = true}, SHIFT(149), - [281] = {.count = 1, .reusable = true}, SHIFT(150), - [283] = {.count = 1, .reusable = true}, SHIFT(151), - [285] = {.count = 1, .reusable = false}, SHIFT(152), - [287] = {.count = 1, .reusable = true}, SHIFT(152), - [289] = {.count = 1, .reusable = false}, SHIFT(156), - [291] = {.count = 1, .reusable = false}, SHIFT(157), - [293] = {.count = 1, .reusable = false}, SHIFT(158), - [295] = {.count = 1, .reusable = false}, SHIFT(159), - [297] = {.count = 1, .reusable = true}, SHIFT(160), - [299] = {.count = 1, .reusable = false}, SHIFT(161), - [301] = {.count = 1, .reusable = false}, SHIFT(162), - [303] = {.count = 1, .reusable = false}, SHIFT(163), - [305] = {.count = 1, .reusable = true}, SHIFT(172), - [307] = {.count = 1, .reusable = true}, ACCEPT_INPUT(), - [309] = {.count = 1, .reusable = true}, REDUCE(sym_program, 1), - [311] = {.count = 1, .reusable = false}, SHIFT(173), - [313] = {.count = 1, .reusable = false}, SHIFT(174), - [315] = {.count = 1, .reusable = true}, SHIFT(173), - [317] = {.count = 1, .reusable = true}, SHIFT(174), - [319] = {.count = 1, .reusable = true}, SHIFT(175), - [321] = {.count = 1, .reusable = true}, SHIFT(176), - [323] = {.count = 1, .reusable = true}, SHIFT(177), - [325] = {.count = 1, .reusable = true}, SHIFT(178), - [327] = {.count = 1, .reusable = true}, REDUCE(sym_command, 1), - [329] = {.count = 1, .reusable = false}, REDUCE(sym_command, 1), - [331] = {.count = 1, .reusable = false}, SHIFT(179), - [333] = {.count = 1, .reusable = false}, SHIFT(180), - [335] = {.count = 1, .reusable = true}, SHIFT(180), - [337] = {.count = 1, .reusable = false}, SHIFT(181), - [339] = {.count = 1, .reusable = true}, SHIFT(181), - [341] = {.count = 1, .reusable = true}, SHIFT(182), - [343] = {.count = 1, .reusable = true}, SHIFT(183), - [345] = {.count = 1, .reusable = true}, SHIFT(184), - [347] = {.count = 1, .reusable = false}, SHIFT(184), - [349] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat1, 1), - [351] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat1, 1), - [353] = {.count = 1, .reusable = true}, SHIFT(16), - [355] = {.count = 1, .reusable = true}, SHIFT(193), - [357] = {.count = 1, .reusable = true}, SHIFT(194), - [359] = {.count = 1, .reusable = true}, SHIFT(196), - [361] = {.count = 1, .reusable = true}, SHIFT(197), - [363] = {.count = 1, .reusable = true}, SHIFT(199), - [365] = {.count = 1, .reusable = true}, SHIFT(200), - [367] = {.count = 1, .reusable = true}, SHIFT(201), - [369] = {.count = 1, .reusable = true}, SHIFT(202), - [371] = {.count = 1, .reusable = false}, SHIFT(203), - [373] = {.count = 1, .reusable = true}, SHIFT(204), - [375] = {.count = 1, .reusable = true}, SHIFT(205), - [377] = {.count = 1, .reusable = true}, SHIFT(206), - [379] = {.count = 1, .reusable = true}, SHIFT(207), - [381] = {.count = 1, .reusable = true}, SHIFT(208), - [383] = {.count = 1, .reusable = false}, SHIFT(209), + [275] = {.count = 1, .reusable = false}, SHIFT(149), + [277] = {.count = 1, .reusable = false}, SHIFT(150), + [279] = {.count = 1, .reusable = false}, SHIFT(151), + [281] = {.count = 1, .reusable = false}, SHIFT_EXTRA(), + [283] = {.count = 1, .reusable = true}, SHIFT(153), + [285] = {.count = 1, .reusable = true}, SHIFT(154), + [287] = {.count = 1, .reusable = false}, SHIFT(155), + [289] = {.count = 1, .reusable = true}, SHIFT(155), + [291] = {.count = 1, .reusable = true}, REDUCE(sym_command_name, 1), + [293] = {.count = 1, .reusable = false}, REDUCE(sym_command_name, 1), + [295] = {.count = 1, .reusable = true}, SHIFT(156), + [297] = {.count = 1, .reusable = true}, SHIFT(157), + [299] = {.count = 1, .reusable = true}, SHIFT(158), + [301] = {.count = 1, .reusable = false}, SHIFT(159), + [303] = {.count = 1, .reusable = true}, SHIFT(159), + [305] = {.count = 1, .reusable = true}, SHIFT(163), + [307] = {.count = 1, .reusable = false}, SHIFT(164), + [309] = {.count = 1, .reusable = false}, SHIFT(165), + [311] = {.count = 1, .reusable = false}, SHIFT(166), + [313] = {.count = 1, .reusable = false}, SHIFT(167), + [315] = {.count = 1, .reusable = true}, SHIFT(168), + [317] = {.count = 1, .reusable = false}, SHIFT(169), + [319] = {.count = 1, .reusable = false}, SHIFT(170), + [321] = {.count = 1, .reusable = false}, SHIFT(171), + [323] = {.count = 1, .reusable = true}, SHIFT(180), + [325] = {.count = 1, .reusable = true}, ACCEPT_INPUT(), + [327] = {.count = 1, .reusable = true}, REDUCE(sym_program, 1), + [329] = {.count = 1, .reusable = false}, SHIFT(181), + [331] = {.count = 1, .reusable = false}, SHIFT(182), + [333] = {.count = 1, .reusable = true}, SHIFT(181), + [335] = {.count = 1, .reusable = true}, SHIFT(182), + [337] = {.count = 1, .reusable = true}, SHIFT(183), + [339] = {.count = 1, .reusable = true}, SHIFT(184), + [341] = {.count = 1, .reusable = true}, SHIFT(185), + [343] = {.count = 1, .reusable = true}, SHIFT(186), + [345] = {.count = 1, .reusable = true}, REDUCE(sym_command, 1), + [347] = {.count = 1, .reusable = false}, REDUCE(sym_command, 1), + [349] = {.count = 1, .reusable = false}, SHIFT(187), + [351] = {.count = 1, .reusable = false}, SHIFT(188), + [353] = {.count = 1, .reusable = true}, SHIFT(188), + [355] = {.count = 1, .reusable = false}, SHIFT(189), + [357] = {.count = 1, .reusable = true}, SHIFT(189), + [359] = {.count = 1, .reusable = true}, SHIFT(190), + [361] = {.count = 1, .reusable = true}, SHIFT(191), + [363] = {.count = 1, .reusable = true}, SHIFT(192), + [365] = {.count = 1, .reusable = false}, SHIFT(192), + [367] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat1, 1), + [369] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat1, 1), + [371] = {.count = 1, .reusable = true}, SHIFT(17), + [373] = {.count = 1, .reusable = true}, SHIFT(201), + [375] = {.count = 1, .reusable = true}, SHIFT(202), + [377] = {.count = 1, .reusable = true}, SHIFT(204), + [379] = {.count = 1, .reusable = true}, SHIFT(205), + [381] = {.count = 1, .reusable = true}, SHIFT(207), + [383] = {.count = 1, .reusable = true}, SHIFT(208), [385] = {.count = 1, .reusable = true}, SHIFT(209), [387] = {.count = 1, .reusable = true}, SHIFT(210), [389] = {.count = 1, .reusable = false}, SHIFT(211), [391] = {.count = 1, .reusable = true}, SHIFT(212), [393] = {.count = 1, .reusable = true}, SHIFT(213), - [395] = {.count = 1, .reusable = false}, SHIFT(214), + [395] = {.count = 1, .reusable = true}, SHIFT(214), [397] = {.count = 1, .reusable = true}, SHIFT(215), [399] = {.count = 1, .reusable = true}, SHIFT(216), - [401] = {.count = 1, .reusable = true}, SHIFT(217), - [403] = {.count = 1, .reusable = true}, SHIFT(218), - [405] = {.count = 1, .reusable = true}, SHIFT(219), - [407] = {.count = 1, .reusable = false}, SHIFT(215), - [409] = {.count = 1, .reusable = true}, SHIFT(211), + [401] = {.count = 1, .reusable = false}, SHIFT(217), + [403] = {.count = 1, .reusable = true}, SHIFT(217), + [405] = {.count = 1, .reusable = true}, SHIFT(218), + [407] = {.count = 1, .reusable = false}, SHIFT(219), + [409] = {.count = 1, .reusable = true}, SHIFT(220), [411] = {.count = 1, .reusable = true}, SHIFT(221), [413] = {.count = 1, .reusable = false}, SHIFT(222), - [415] = {.count = 1, .reusable = true}, SHIFT(222), - [417] = {.count = 1, .reusable = true}, SHIFT(223), + [415] = {.count = 1, .reusable = true}, SHIFT(223), + [417] = {.count = 1, .reusable = true}, SHIFT(224), [419] = {.count = 1, .reusable = true}, SHIFT(225), - [421] = {.count = 1, .reusable = true}, SHIFT(228), - [423] = {.count = 1, .reusable = true}, SHIFT(229), - [425] = {.count = 1, .reusable = true}, SHIFT(230), - [427] = {.count = 1, .reusable = false}, SHIFT(232), - [429] = {.count = 1, .reusable = false}, SHIFT(230), - [431] = {.count = 1, .reusable = true}, SHIFT(233), - [433] = {.count = 1, .reusable = true}, SHIFT(234), - [435] = {.count = 1, .reusable = false}, SHIFT(235), - [437] = {.count = 1, .reusable = false}, SHIFT(234), - [439] = {.count = 1, .reusable = true}, SHIFT(237), - [441] = {.count = 1, .reusable = true}, SHIFT(238), - [443] = {.count = 1, .reusable = false}, SHIFT(240), - [445] = {.count = 1, .reusable = false}, SHIFT(241), - [447] = {.count = 1, .reusable = true}, SHIFT(240), - [449] = {.count = 1, .reusable = true}, SHIFT(241), - [451] = {.count = 1, .reusable = true}, SHIFT(242), - [453] = {.count = 1, .reusable = true}, SHIFT(243), - [455] = {.count = 1, .reusable = false}, SHIFT(244), - [457] = {.count = 1, .reusable = false}, SHIFT(245), - [459] = {.count = 1, .reusable = true}, SHIFT(245), - [461] = {.count = 1, .reusable = true}, SHIFT(246), - [463] = {.count = 1, .reusable = true}, SHIFT(247), - [465] = {.count = 1, .reusable = true}, SHIFT(248), - [467] = {.count = 1, .reusable = false}, SHIFT(248), - [469] = {.count = 1, .reusable = true}, SHIFT(46), - [471] = {.count = 1, .reusable = true}, SHIFT(252), - [473] = {.count = 1, .reusable = true}, SHIFT(253), - [475] = {.count = 1, .reusable = true}, SHIFT(254), - [477] = {.count = 1, .reusable = false}, SHIFT(255), - [479] = {.count = 1, .reusable = true}, SHIFT(255), - [481] = {.count = 1, .reusable = false}, SHIFT(257), - [483] = {.count = 1, .reusable = false}, SHIFT(258), - [485] = {.count = 1, .reusable = true}, SHIFT(260), - [487] = {.count = 1, .reusable = true}, SHIFT(261), - [489] = {.count = 1, .reusable = false}, SHIFT(262), - [491] = {.count = 1, .reusable = true}, SHIFT(262), - [493] = {.count = 1, .reusable = true}, SHIFT(263), - [495] = {.count = 1, .reusable = false}, SHIFT(264), - [497] = {.count = 1, .reusable = true}, SHIFT(264), - [499] = {.count = 1, .reusable = true}, SHIFT(265), - [501] = {.count = 1, .reusable = true}, SHIFT(266), - [503] = {.count = 1, .reusable = true}, SHIFT(267), - [505] = {.count = 1, .reusable = false}, SHIFT(268), - [507] = {.count = 1, .reusable = true}, SHIFT(268), - [509] = {.count = 1, .reusable = true}, SHIFT(278), - [511] = {.count = 1, .reusable = true}, SHIFT(279), - [513] = {.count = 1, .reusable = true}, SHIFT(281), - [515] = {.count = 1, .reusable = true}, SHIFT(283), - [517] = {.count = 1, .reusable = true}, SHIFT(286), - [519] = {.count = 1, .reusable = true}, SHIFT(287), - [521] = {.count = 1, .reusable = true}, SHIFT(288), - [523] = {.count = 1, .reusable = false}, SHIFT(290), - [525] = {.count = 1, .reusable = false}, SHIFT(288), - [527] = {.count = 1, .reusable = true}, SHIFT(291), - [529] = {.count = 1, .reusable = true}, SHIFT(292), - [531] = {.count = 1, .reusable = false}, SHIFT(293), - [533] = {.count = 1, .reusable = false}, SHIFT(292), - [535] = {.count = 1, .reusable = true}, SHIFT(295), - [537] = {.count = 1, .reusable = false}, SHIFT(296), - [539] = {.count = 1, .reusable = false}, SHIFT(297), - [541] = {.count = 1, .reusable = true}, SHIFT(298), - [543] = {.count = 1, .reusable = true}, SHIFT(296), - [545] = {.count = 1, .reusable = true}, SHIFT(297), - [547] = {.count = 1, .reusable = true}, SHIFT(299), - [549] = {.count = 1, .reusable = true}, SHIFT(300), - [551] = {.count = 1, .reusable = false}, SHIFT(301), - [553] = {.count = 1, .reusable = false}, SHIFT(302), - [555] = {.count = 1, .reusable = true}, SHIFT(302), - [557] = {.count = 1, .reusable = true}, SHIFT(303), - [559] = {.count = 1, .reusable = true}, SHIFT(304), - [561] = {.count = 1, .reusable = true}, SHIFT(305), - [563] = {.count = 1, .reusable = false}, SHIFT(305), - [565] = {.count = 1, .reusable = true}, SHIFT(74), - [567] = {.count = 1, .reusable = true}, SHIFT(311), - [569] = {.count = 1, .reusable = true}, REDUCE(sym_negated_command, 2), - [571] = {.count = 1, .reusable = false}, REDUCE(sym_negated_command, 2), - [573] = {.count = 1, .reusable = false}, SHIFT(312), - [575] = {.count = 1, .reusable = true}, SHIFT(313), - [577] = {.count = 1, .reusable = true}, SHIFT(314), - [579] = {.count = 1, .reusable = false}, SHIFT(314), - [581] = {.count = 1, .reusable = true}, SHIFT(312), - [583] = {.count = 1, .reusable = true}, SHIFT(317), - [585] = {.count = 1, .reusable = true}, REDUCE(sym__expression, 1, .alias_sequence_id = 1), - [587] = {.count = 1, .reusable = false}, REDUCE(sym__expression, 1, .alias_sequence_id = 1), - [589] = {.count = 1, .reusable = false}, SHIFT(319), - [591] = {.count = 1, .reusable = false}, SHIFT(320), - [593] = {.count = 1, .reusable = true}, SHIFT(322), - [595] = {.count = 1, .reusable = true}, SHIFT(323), - [597] = {.count = 1, .reusable = false}, SHIFT(324), - [599] = {.count = 1, .reusable = true}, SHIFT(324), - [601] = {.count = 1, .reusable = true}, REDUCE(sym__expression, 1), - [603] = {.count = 1, .reusable = false}, REDUCE(sym__expression, 1), - [605] = {.count = 1, .reusable = true}, SHIFT(325), - [607] = {.count = 1, .reusable = true}, SHIFT(326), - [609] = {.count = 1, .reusable = true}, SHIFT(327), - [611] = {.count = 1, .reusable = false}, SHIFT(328), - [613] = {.count = 1, .reusable = true}, SHIFT(328), - [615] = {.count = 1, .reusable = true}, SHIFT(338), - [617] = {.count = 1, .reusable = true}, SHIFT(339), - [619] = {.count = 1, .reusable = true}, SHIFT(340), - [621] = {.count = 1, .reusable = false}, SHIFT(338), - [623] = {.count = 1, .reusable = true}, SHIFT(343), - [625] = {.count = 1, .reusable = false}, SHIFT(345), - [627] = {.count = 1, .reusable = false}, SHIFT(346), - [629] = {.count = 1, .reusable = true}, SHIFT(348), - [631] = {.count = 1, .reusable = true}, SHIFT(349), - [633] = {.count = 1, .reusable = false}, SHIFT(350), - [635] = {.count = 1, .reusable = true}, SHIFT(350), - [637] = {.count = 1, .reusable = true}, SHIFT(351), - [639] = {.count = 1, .reusable = true}, SHIFT(352), - [641] = {.count = 1, .reusable = true}, SHIFT(353), - [643] = {.count = 1, .reusable = false}, SHIFT(354), - [645] = {.count = 1, .reusable = true}, SHIFT(354), - [647] = {.count = 1, .reusable = true}, SHIFT(364), - [649] = {.count = 1, .reusable = true}, SHIFT(365), - [651] = {.count = 1, .reusable = false}, SHIFT(364), - [653] = {.count = 1, .reusable = true}, SHIFT(366), - [655] = {.count = 1, .reusable = true}, SHIFT(367), - [657] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 1, .alias_sequence_id = 1), - [659] = {.count = 1, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 1, .alias_sequence_id = 1), - [661] = {.count = 1, .reusable = false}, SHIFT(369), - [663] = {.count = 1, .reusable = false}, SHIFT(370), - [665] = {.count = 1, .reusable = true}, SHIFT(372), - [667] = {.count = 1, .reusable = true}, SHIFT(373), - [669] = {.count = 1, .reusable = false}, SHIFT(374), - [671] = {.count = 1, .reusable = true}, SHIFT(374), - [673] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 1), - [675] = {.count = 1, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 1), - [677] = {.count = 1, .reusable = true}, SHIFT(375), - [679] = {.count = 1, .reusable = true}, SHIFT(376), - [681] = {.count = 1, .reusable = true}, SHIFT(377), - [683] = {.count = 1, .reusable = false}, SHIFT(378), - [685] = {.count = 1, .reusable = true}, SHIFT(378), - [687] = {.count = 1, .reusable = true}, REDUCE(sym_declaration_command, 2), - [689] = {.count = 1, .reusable = false}, REDUCE(sym_declaration_command, 2), - [691] = {.count = 1, .reusable = false}, SHIFT(388), - [693] = {.count = 1, .reusable = true}, SHIFT(389), - [695] = {.count = 1, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 1, .alias_sequence_id = 1), - [697] = {.count = 1, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 1, .alias_sequence_id = 1), - [699] = {.count = 1, .reusable = false}, SHIFT(391), - [701] = {.count = 1, .reusable = false}, SHIFT(392), - [703] = {.count = 1, .reusable = true}, SHIFT(394), - [705] = {.count = 1, .reusable = true}, SHIFT(395), - [707] = {.count = 1, .reusable = false}, SHIFT(396), + [421] = {.count = 1, .reusable = true}, SHIFT(226), + [423] = {.count = 1, .reusable = true}, SHIFT(227), + [425] = {.count = 1, .reusable = false}, SHIFT(223), + [427] = {.count = 1, .reusable = true}, SHIFT(219), + [429] = {.count = 1, .reusable = true}, SHIFT(229), + [431] = {.count = 1, .reusable = false}, SHIFT(230), + [433] = {.count = 1, .reusable = true}, SHIFT(230), + [435] = {.count = 1, .reusable = true}, SHIFT(231), + [437] = {.count = 1, .reusable = false}, SHIFT(232), + [439] = {.count = 1, .reusable = true}, SHIFT(233), + [441] = {.count = 1, .reusable = true}, SHIFT(234), + [443] = {.count = 1, .reusable = false}, SHIFT(235), + [445] = {.count = 1, .reusable = true}, SHIFT(236), + [447] = {.count = 1, .reusable = true}, SHIFT(237), + [449] = {.count = 1, .reusable = true}, SHIFT(238), + [451] = {.count = 1, .reusable = true}, SHIFT(239), + [453] = {.count = 1, .reusable = true}, SHIFT(240), + [455] = {.count = 1, .reusable = false}, SHIFT(236), + [457] = {.count = 1, .reusable = true}, SHIFT(232), + [459] = {.count = 1, .reusable = true}, SHIFT(243), + [461] = {.count = 1, .reusable = true}, REDUCE(sym__expression, 1, .alias_sequence_id = 1), + [463] = {.count = 1, .reusable = false}, REDUCE(sym__expression, 1, .alias_sequence_id = 1), + [465] = {.count = 1, .reusable = false}, SHIFT(245), + [467] = {.count = 1, .reusable = false}, SHIFT(246), + [469] = {.count = 1, .reusable = true}, SHIFT(248), + [471] = {.count = 1, .reusable = true}, SHIFT(249), + [473] = {.count = 1, .reusable = false}, SHIFT(250), + [475] = {.count = 1, .reusable = true}, SHIFT(250), + [477] = {.count = 1, .reusable = true}, REDUCE(sym__expression, 1), + [479] = {.count = 1, .reusable = false}, REDUCE(sym__expression, 1), + [481] = {.count = 1, .reusable = true}, SHIFT(251), + [483] = {.count = 1, .reusable = true}, SHIFT(252), + [485] = {.count = 1, .reusable = true}, SHIFT(253), + [487] = {.count = 1, .reusable = false}, SHIFT(254), + [489] = {.count = 1, .reusable = true}, SHIFT(254), + [491] = {.count = 1, .reusable = true}, SHIFT(264), + [493] = {.count = 1, .reusable = true}, SHIFT(265), + [495] = {.count = 1, .reusable = true}, SHIFT(266), + [497] = {.count = 1, .reusable = false}, SHIFT(265), + [499] = {.count = 1, .reusable = true}, SHIFT(267), + [501] = {.count = 1, .reusable = true}, SHIFT(268), + [503] = {.count = 1, .reusable = true}, SHIFT(271), + [505] = {.count = 1, .reusable = true}, SHIFT(274), + [507] = {.count = 1, .reusable = true}, SHIFT(275), + [509] = {.count = 1, .reusable = true}, SHIFT(276), + [511] = {.count = 1, .reusable = false}, SHIFT(278), + [513] = {.count = 1, .reusable = false}, SHIFT(276), + [515] = {.count = 1, .reusable = true}, SHIFT(279), + [517] = {.count = 1, .reusable = true}, SHIFT(280), + [519] = {.count = 1, .reusable = false}, SHIFT(281), + [521] = {.count = 1, .reusable = false}, SHIFT(280), + [523] = {.count = 1, .reusable = true}, SHIFT(283), + [525] = {.count = 1, .reusable = true}, SHIFT(284), + [527] = {.count = 1, .reusable = false}, SHIFT(286), + [529] = {.count = 1, .reusable = false}, SHIFT(287), + [531] = {.count = 1, .reusable = true}, SHIFT(286), + [533] = {.count = 1, .reusable = true}, SHIFT(287), + [535] = {.count = 1, .reusable = true}, SHIFT(288), + [537] = {.count = 1, .reusable = true}, SHIFT(289), + [539] = {.count = 1, .reusable = false}, SHIFT(290), + [541] = {.count = 1, .reusable = false}, SHIFT(291), + [543] = {.count = 1, .reusable = true}, SHIFT(291), + [545] = {.count = 1, .reusable = true}, SHIFT(292), + [547] = {.count = 1, .reusable = true}, SHIFT(293), + [549] = {.count = 1, .reusable = true}, SHIFT(294), + [551] = {.count = 1, .reusable = false}, SHIFT(294), + [553] = {.count = 1, .reusable = true}, SHIFT(59), + [555] = {.count = 1, .reusable = true}, SHIFT(298), + [557] = {.count = 1, .reusable = true}, SHIFT(299), + [559] = {.count = 1, .reusable = true}, SHIFT(300), + [561] = {.count = 1, .reusable = false}, SHIFT(301), + [563] = {.count = 1, .reusable = true}, SHIFT(301), + [565] = {.count = 1, .reusable = false}, SHIFT(303), + [567] = {.count = 1, .reusable = false}, SHIFT(304), + [569] = {.count = 1, .reusable = true}, SHIFT(306), + [571] = {.count = 1, .reusable = true}, SHIFT(307), + [573] = {.count = 1, .reusable = false}, SHIFT(308), + [575] = {.count = 1, .reusable = true}, SHIFT(308), + [577] = {.count = 1, .reusable = true}, SHIFT(309), + [579] = {.count = 1, .reusable = false}, SHIFT(310), + [581] = {.count = 1, .reusable = true}, SHIFT(310), + [583] = {.count = 1, .reusable = true}, SHIFT(311), + [585] = {.count = 1, .reusable = true}, SHIFT(312), + [587] = {.count = 1, .reusable = true}, SHIFT(313), + [589] = {.count = 1, .reusable = false}, SHIFT(314), + [591] = {.count = 1, .reusable = true}, SHIFT(314), + [593] = {.count = 1, .reusable = true}, SHIFT(324), + [595] = {.count = 1, .reusable = true}, SHIFT(325), + [597] = {.count = 1, .reusable = true}, SHIFT(327), + [599] = {.count = 1, .reusable = true}, SHIFT(330), + [601] = {.count = 1, .reusable = true}, SHIFT(333), + [603] = {.count = 1, .reusable = true}, SHIFT(334), + [605] = {.count = 1, .reusable = true}, SHIFT(335), + [607] = {.count = 1, .reusable = false}, SHIFT(337), + [609] = {.count = 1, .reusable = false}, SHIFT(335), + [611] = {.count = 1, .reusable = true}, SHIFT(338), + [613] = {.count = 1, .reusable = true}, SHIFT(339), + [615] = {.count = 1, .reusable = false}, SHIFT(340), + [617] = {.count = 1, .reusable = false}, SHIFT(339), + [619] = {.count = 1, .reusable = true}, SHIFT(342), + [621] = {.count = 1, .reusable = false}, SHIFT(343), + [623] = {.count = 1, .reusable = false}, SHIFT(344), + [625] = {.count = 1, .reusable = true}, SHIFT(345), + [627] = {.count = 1, .reusable = true}, SHIFT(343), + [629] = {.count = 1, .reusable = true}, SHIFT(344), + [631] = {.count = 1, .reusable = true}, SHIFT(346), + [633] = {.count = 1, .reusable = true}, SHIFT(347), + [635] = {.count = 1, .reusable = false}, SHIFT(348), + [637] = {.count = 1, .reusable = false}, SHIFT(349), + [639] = {.count = 1, .reusable = true}, SHIFT(349), + [641] = {.count = 1, .reusable = true}, SHIFT(350), + [643] = {.count = 1, .reusable = true}, SHIFT(351), + [645] = {.count = 1, .reusable = true}, SHIFT(352), + [647] = {.count = 1, .reusable = false}, SHIFT(352), + [649] = {.count = 1, .reusable = true}, SHIFT(88), + [651] = {.count = 1, .reusable = true}, SHIFT(358), + [653] = {.count = 1, .reusable = true}, REDUCE(sym_negated_command, 2), + [655] = {.count = 1, .reusable = false}, REDUCE(sym_negated_command, 2), + [657] = {.count = 1, .reusable = true}, SHIFT(361), + [659] = {.count = 1, .reusable = false}, SHIFT(363), + [661] = {.count = 1, .reusable = false}, SHIFT(364), + [663] = {.count = 1, .reusable = true}, SHIFT(366), + [665] = {.count = 1, .reusable = true}, SHIFT(367), + [667] = {.count = 1, .reusable = false}, SHIFT(368), + [669] = {.count = 1, .reusable = true}, SHIFT(368), + [671] = {.count = 1, .reusable = true}, SHIFT(369), + [673] = {.count = 1, .reusable = true}, SHIFT(370), + [675] = {.count = 1, .reusable = true}, SHIFT(371), + [677] = {.count = 1, .reusable = false}, SHIFT(372), + [679] = {.count = 1, .reusable = true}, SHIFT(372), + [681] = {.count = 1, .reusable = true}, SHIFT(382), + [683] = {.count = 1, .reusable = true}, SHIFT(383), + [685] = {.count = 1, .reusable = false}, SHIFT(382), + [687] = {.count = 1, .reusable = true}, SHIFT(384), + [689] = {.count = 1, .reusable = true}, SHIFT(387), + [691] = {.count = 1, .reusable = true}, SHIFT(388), + [693] = {.count = 1, .reusable = false}, SHIFT(387), + [695] = {.count = 1, .reusable = true}, SHIFT(389), + [697] = {.count = 1, .reusable = true}, SHIFT(390), + [699] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 1, .alias_sequence_id = 1), + [701] = {.count = 1, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 1, .alias_sequence_id = 1), + [703] = {.count = 1, .reusable = false}, SHIFT(392), + [705] = {.count = 1, .reusable = false}, SHIFT(393), + [707] = {.count = 1, .reusable = true}, SHIFT(395), [709] = {.count = 1, .reusable = true}, SHIFT(396), - [711] = {.count = 1, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 1), - [713] = {.count = 1, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 1), - [715] = {.count = 1, .reusable = true}, SHIFT(397), - [717] = {.count = 1, .reusable = true}, SHIFT(398), - [719] = {.count = 1, .reusable = true}, SHIFT(399), - [721] = {.count = 1, .reusable = false}, SHIFT(400), + [711] = {.count = 1, .reusable = false}, SHIFT(397), + [713] = {.count = 1, .reusable = true}, SHIFT(397), + [715] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 1), + [717] = {.count = 1, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 1), + [719] = {.count = 1, .reusable = true}, SHIFT(398), + [721] = {.count = 1, .reusable = true}, SHIFT(399), [723] = {.count = 1, .reusable = true}, SHIFT(400), - [725] = {.count = 1, .reusable = true}, REDUCE(sym_unset_command, 2), - [727] = {.count = 1, .reusable = false}, REDUCE(sym_unset_command, 2), - [729] = {.count = 1, .reusable = false}, SHIFT(410), - [731] = {.count = 1, .reusable = true}, REDUCE(sym_file_redirect, 2, .alias_sequence_id = 2), - [733] = {.count = 1, .reusable = true}, SHIFT(411), - [735] = {.count = 1, .reusable = false}, REDUCE(sym_file_redirect, 2, .alias_sequence_id = 2), - [737] = {.count = 1, .reusable = false}, SHIFT(413), - [739] = {.count = 1, .reusable = false}, SHIFT(414), - [741] = {.count = 1, .reusable = true}, SHIFT(416), - [743] = {.count = 1, .reusable = true}, SHIFT(417), - [745] = {.count = 1, .reusable = false}, SHIFT(418), + [725] = {.count = 1, .reusable = false}, SHIFT(401), + [727] = {.count = 1, .reusable = true}, SHIFT(401), + [729] = {.count = 1, .reusable = true}, REDUCE(sym_declaration_command, 2), + [731] = {.count = 1, .reusable = false}, REDUCE(sym_declaration_command, 2), + [733] = {.count = 1, .reusable = false}, SHIFT(411), + [735] = {.count = 1, .reusable = true}, SHIFT(412), + [737] = {.count = 1, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 1, .alias_sequence_id = 1), + [739] = {.count = 1, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 1, .alias_sequence_id = 1), + [741] = {.count = 1, .reusable = false}, SHIFT(414), + [743] = {.count = 1, .reusable = false}, SHIFT(415), + [745] = {.count = 1, .reusable = true}, SHIFT(417), [747] = {.count = 1, .reusable = true}, SHIFT(418), - [749] = {.count = 1, .reusable = true}, REDUCE(sym_file_redirect, 2), - [751] = {.count = 1, .reusable = false}, REDUCE(sym_file_redirect, 2), - [753] = {.count = 1, .reusable = true}, SHIFT(419), - [755] = {.count = 1, .reusable = true}, SHIFT(420), - [757] = {.count = 1, .reusable = true}, SHIFT(421), - [759] = {.count = 1, .reusable = false}, SHIFT(422), + [749] = {.count = 1, .reusable = false}, SHIFT(419), + [751] = {.count = 1, .reusable = true}, SHIFT(419), + [753] = {.count = 1, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 1), + [755] = {.count = 1, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 1), + [757] = {.count = 1, .reusable = true}, SHIFT(420), + [759] = {.count = 1, .reusable = true}, SHIFT(421), [761] = {.count = 1, .reusable = true}, SHIFT(422), - [763] = {.count = 1, .reusable = true}, SHIFT(432), - [765] = {.count = 1, .reusable = true}, REDUCE(sym_concatenation, 2), - [767] = {.count = 1, .reusable = false}, REDUCE(sym_concatenation, 2), - [769] = {.count = 1, .reusable = true}, REDUCE(sym_string, 2), - [771] = {.count = 1, .reusable = false}, REDUCE(sym_string, 2), - [773] = {.count = 1, .reusable = false}, SHIFT(434), - [775] = {.count = 1, .reusable = false}, SHIFT(435), - [777] = {.count = 1, .reusable = false}, SHIFT(436), - [779] = {.count = 1, .reusable = true}, SHIFT(435), + [763] = {.count = 1, .reusable = false}, SHIFT(423), + [765] = {.count = 1, .reusable = true}, SHIFT(423), + [767] = {.count = 1, .reusable = true}, REDUCE(sym_unset_command, 2), + [769] = {.count = 1, .reusable = false}, REDUCE(sym_unset_command, 2), + [771] = {.count = 1, .reusable = false}, SHIFT(433), + [773] = {.count = 1, .reusable = true}, REDUCE(sym_file_redirect, 2, .alias_sequence_id = 2), + [775] = {.count = 1, .reusable = true}, SHIFT(434), + [777] = {.count = 1, .reusable = false}, REDUCE(sym_file_redirect, 2, .alias_sequence_id = 2), + [779] = {.count = 1, .reusable = false}, SHIFT(436), [781] = {.count = 1, .reusable = false}, SHIFT(437), - [783] = {.count = 1, .reusable = true}, SHIFT(437), - [785] = {.count = 1, .reusable = true}, SHIFT(438), - [787] = {.count = 1, .reusable = false}, REDUCE(aux_sym_string_repeat1, 1), - [789] = {.count = 1, .reusable = true}, REDUCE(aux_sym_string_repeat1, 1), - [791] = {.count = 1, .reusable = true}, SHIFT(439), - [793] = {.count = 1, .reusable = true}, SHIFT(440), - [795] = {.count = 1, .reusable = true}, SHIFT(441), - [797] = {.count = 1, .reusable = false}, SHIFT(442), - [799] = {.count = 1, .reusable = true}, SHIFT(442), - [801] = {.count = 1, .reusable = false}, SHIFT(449), - [803] = {.count = 1, .reusable = true}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 3), - [805] = {.count = 1, .reusable = false}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 3), - [807] = {.count = 1, .reusable = true}, REDUCE(sym_string_expansion, 2), - [809] = {.count = 1, .reusable = false}, REDUCE(sym_string_expansion, 2), - [811] = {.count = 1, .reusable = true}, REDUCE(sym_simple_expansion, 2), - [813] = {.count = 1, .reusable = false}, REDUCE(sym_simple_expansion, 2), - [815] = {.count = 1, .reusable = true}, SHIFT(451), - [817] = {.count = 1, .reusable = true}, SHIFT(452), - [819] = {.count = 1, .reusable = true}, SHIFT(453), - [821] = {.count = 1, .reusable = true}, SHIFT(454), - [823] = {.count = 1, .reusable = false}, SHIFT(455), - [825] = {.count = 1, .reusable = true}, SHIFT(455), - [827] = {.count = 1, .reusable = true}, SHIFT(456), - [829] = {.count = 1, .reusable = false}, SHIFT(466), - [831] = {.count = 1, .reusable = false}, SHIFT(457), - [833] = {.count = 1, .reusable = true}, SHIFT(458), - [835] = {.count = 1, .reusable = false}, SHIFT(459), - [837] = {.count = 1, .reusable = true}, SHIFT(460), - [839] = {.count = 1, .reusable = true}, SHIFT(466), - [841] = {.count = 1, .reusable = true}, SHIFT(461), - [843] = {.count = 1, .reusable = true}, SHIFT(462), - [845] = {.count = 1, .reusable = true}, SHIFT(463), - [847] = {.count = 1, .reusable = true}, SHIFT(464), - [849] = {.count = 1, .reusable = true}, SHIFT(465), - [851] = {.count = 1, .reusable = false}, SHIFT(460), - [853] = {.count = 1, .reusable = true}, SHIFT(467), - [855] = {.count = 1, .reusable = false}, SHIFT(469), - [857] = {.count = 1, .reusable = true}, SHIFT(469), - [859] = {.count = 1, .reusable = true}, SHIFT(468), - [861] = {.count = 1, .reusable = false}, SHIFT(470), - [863] = {.count = 1, .reusable = true}, SHIFT(471), - [865] = {.count = 1, .reusable = true}, SHIFT(470), - [867] = {.count = 1, .reusable = true}, SHIFT(475), - [869] = {.count = 1, .reusable = false}, SHIFT(478), - [871] = {.count = 1, .reusable = false}, SHIFT(479), - [873] = {.count = 1, .reusable = true}, SHIFT(480), - [875] = {.count = 1, .reusable = false}, SHIFT(481), + [783] = {.count = 1, .reusable = true}, SHIFT(439), + [785] = {.count = 1, .reusable = true}, SHIFT(440), + [787] = {.count = 1, .reusable = false}, SHIFT(441), + [789] = {.count = 1, .reusable = true}, SHIFT(441), + [791] = {.count = 1, .reusable = true}, REDUCE(sym_file_redirect, 2), + [793] = {.count = 1, .reusable = false}, REDUCE(sym_file_redirect, 2), + [795] = {.count = 1, .reusable = true}, SHIFT(442), + [797] = {.count = 1, .reusable = true}, SHIFT(443), + [799] = {.count = 1, .reusable = true}, SHIFT(444), + [801] = {.count = 1, .reusable = false}, SHIFT(445), + [803] = {.count = 1, .reusable = true}, SHIFT(445), + [805] = {.count = 1, .reusable = true}, SHIFT(455), + [807] = {.count = 1, .reusable = true}, REDUCE(sym_concatenation, 2), + [809] = {.count = 1, .reusable = false}, REDUCE(sym_concatenation, 2), + [811] = {.count = 1, .reusable = true}, REDUCE(sym_string, 2), + [813] = {.count = 1, .reusable = false}, REDUCE(sym_string, 2), + [815] = {.count = 1, .reusable = true}, SHIFT(457), + [817] = {.count = 1, .reusable = false}, SHIFT(458), + [819] = {.count = 1, .reusable = false}, SHIFT(457), + [821] = {.count = 1, .reusable = false}, SHIFT(459), + [823] = {.count = 1, .reusable = false}, SHIFT(460), + [825] = {.count = 1, .reusable = true}, SHIFT(460), + [827] = {.count = 1, .reusable = true}, SHIFT(461), + [829] = {.count = 1, .reusable = false}, REDUCE(aux_sym_string_repeat1, 1), + [831] = {.count = 1, .reusable = true}, REDUCE(aux_sym_string_repeat1, 1), + [833] = {.count = 1, .reusable = true}, SHIFT(462), + [835] = {.count = 1, .reusable = true}, SHIFT(463), + [837] = {.count = 1, .reusable = true}, SHIFT(464), + [839] = {.count = 1, .reusable = false}, SHIFT(465), + [841] = {.count = 1, .reusable = true}, SHIFT(465), + [843] = {.count = 1, .reusable = false}, SHIFT(472), + [845] = {.count = 1, .reusable = true}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 3), + [847] = {.count = 1, .reusable = false}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 3), + [849] = {.count = 1, .reusable = true}, REDUCE(sym_string_expansion, 2), + [851] = {.count = 1, .reusable = false}, REDUCE(sym_string_expansion, 2), + [853] = {.count = 1, .reusable = true}, REDUCE(sym_simple_expansion, 2), + [855] = {.count = 1, .reusable = false}, REDUCE(sym_simple_expansion, 2), + [857] = {.count = 1, .reusable = true}, SHIFT(474), + [859] = {.count = 1, .reusable = true}, SHIFT(475), + [861] = {.count = 1, .reusable = true}, SHIFT(476), + [863] = {.count = 1, .reusable = true}, SHIFT(477), + [865] = {.count = 1, .reusable = false}, SHIFT(478), + [867] = {.count = 1, .reusable = true}, SHIFT(478), + [869] = {.count = 1, .reusable = true}, SHIFT(479), + [871] = {.count = 1, .reusable = false}, SHIFT(489), + [873] = {.count = 1, .reusable = false}, SHIFT(480), + [875] = {.count = 1, .reusable = true}, SHIFT(481), [877] = {.count = 1, .reusable = false}, SHIFT(482), - [879] = {.count = 1, .reusable = true}, SHIFT(481), - [881] = {.count = 1, .reusable = true}, SHIFT(482), - [883] = {.count = 1, .reusable = true}, SHIFT(483), - [885] = {.count = 1, .reusable = true}, SHIFT(484), - [887] = {.count = 1, .reusable = false}, SHIFT(485), - [889] = {.count = 1, .reusable = true}, SHIFT(485), - [891] = {.count = 1, .reusable = true}, SHIFT(486), - [893] = {.count = 1, .reusable = false}, SHIFT(492), - [895] = {.count = 1, .reusable = true}, SHIFT(493), - [897] = {.count = 1, .reusable = true}, SHIFT(492), - [899] = {.count = 1, .reusable = true}, SHIFT(496), - [901] = {.count = 1, .reusable = true}, REDUCE(sym__terminated_statement, 2), - [903] = {.count = 1, .reusable = true}, REDUCE(sym_program, 2), - [905] = {.count = 1, .reusable = false}, REDUCE(sym__terminated_statement, 2), - [907] = {.count = 1, .reusable = true}, REDUCE(sym_heredoc_body, 1), - [909] = {.count = 1, .reusable = false}, REDUCE(sym_heredoc_body, 1), - [911] = {.count = 1, .reusable = true}, SHIFT(504), - [913] = {.count = 1, .reusable = true}, SHIFT(501), - [915] = {.count = 1, .reusable = false}, SHIFT(502), - [917] = {.count = 1, .reusable = true}, SHIFT(503), - [919] = {.count = 1, .reusable = false}, SHIFT(505), + [879] = {.count = 1, .reusable = true}, SHIFT(483), + [881] = {.count = 1, .reusable = true}, SHIFT(489), + [883] = {.count = 1, .reusable = true}, SHIFT(484), + [885] = {.count = 1, .reusable = true}, SHIFT(485), + [887] = {.count = 1, .reusable = true}, SHIFT(486), + [889] = {.count = 1, .reusable = true}, SHIFT(487), + [891] = {.count = 1, .reusable = true}, SHIFT(488), + [893] = {.count = 1, .reusable = false}, SHIFT(483), + [895] = {.count = 1, .reusable = true}, SHIFT(490), + [897] = {.count = 1, .reusable = false}, SHIFT(492), + [899] = {.count = 1, .reusable = true}, SHIFT(492), + [901] = {.count = 1, .reusable = true}, SHIFT(491), + [903] = {.count = 1, .reusable = false}, SHIFT(493), + [905] = {.count = 1, .reusable = true}, SHIFT(494), + [907] = {.count = 1, .reusable = true}, SHIFT(493), + [909] = {.count = 1, .reusable = true}, SHIFT(499), + [911] = {.count = 1, .reusable = false}, SHIFT(502), + [913] = {.count = 1, .reusable = false}, SHIFT(503), + [915] = {.count = 1, .reusable = true}, SHIFT(504), + [917] = {.count = 1, .reusable = false}, SHIFT(505), + [919] = {.count = 1, .reusable = false}, SHIFT(506), [921] = {.count = 1, .reusable = true}, SHIFT(505), - [923] = {.count = 1, .reusable = false}, SHIFT(506), - [925] = {.count = 1, .reusable = false}, SHIFT(17), - [927] = {.count = 1, .reusable = false}, SHIFT(507), - [929] = {.count = 1, .reusable = false}, SHIFT(20), - [931] = {.count = 1, .reusable = false}, SHIFT(21), - [933] = {.count = 1, .reusable = false}, SHIFT(22), - [935] = {.count = 1, .reusable = false}, SHIFT(23), - [937] = {.count = 1, .reusable = false}, SHIFT(508), - [939] = {.count = 1, .reusable = true}, SHIFT(509), - [941] = {.count = 1, .reusable = true}, SHIFT(510), - [943] = {.count = 1, .reusable = true}, SHIFT(512), - [945] = {.count = 1, .reusable = true}, SHIFT(513), - [947] = {.count = 1, .reusable = true}, SHIFT(514), - [949] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat2, 1, .alias_sequence_id = 1), - [951] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat2, 1, .alias_sequence_id = 1), - [953] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat2, 1), - [955] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat2, 1), - [957] = {.count = 1, .reusable = true}, REDUCE(sym_command, 2), - [959] = {.count = 1, .reusable = false}, REDUCE(sym_command, 2), - [961] = {.count = 1, .reusable = false}, SHIFT(520), - [963] = {.count = 1, .reusable = true}, SHIFT(520), - [965] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2), - [968] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(38), - [971] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(4), - [974] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(39), - [977] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(6), - [980] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(7), - [983] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(40), - [986] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(9), - [989] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(41), - [992] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(42), - [995] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(43), - [998] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(44), - [1001] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(45), - [1004] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(15), - [1007] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(15), - [1010] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(46), - [1013] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(17), - [1016] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(18), - [1019] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(47), - [1022] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(20), - [1025] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(21), - [1028] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(22), - [1031] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(23), - [1034] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(48), - [1037] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(2), - [1040] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(83), - [1043] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(15), - [1046] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(15), - [1049] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat1, 2), - [1051] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat1, 2), - [1053] = {.count = 1, .reusable = true}, REDUCE(sym_file_redirect, 3, .alias_sequence_id = 4), - [1055] = {.count = 1, .reusable = false}, REDUCE(sym_file_redirect, 3, .alias_sequence_id = 4), - [1057] = {.count = 1, .reusable = true}, REDUCE(sym_file_redirect, 3), - [1059] = {.count = 1, .reusable = false}, REDUCE(sym_file_redirect, 3), - [1061] = {.count = 1, .reusable = true}, SHIFT(524), - [1063] = {.count = 1, .reusable = true}, SHIFT(525), - [1065] = {.count = 1, .reusable = true}, SHIFT(527), - [1067] = {.count = 1, .reusable = true}, SHIFT(528), - [1069] = {.count = 1, .reusable = true}, SHIFT(529), - [1071] = {.count = 1, .reusable = true}, REDUCE(sym_variable_assignment, 3), - [1073] = {.count = 1, .reusable = false}, REDUCE(sym_variable_assignment, 3), - [1075] = {.count = 1, .reusable = true}, SHIFT(530), - [1077] = {.count = 1, .reusable = true}, SHIFT(531), - [1079] = {.count = 1, .reusable = true}, SHIFT(532), - [1081] = {.count = 1, .reusable = false}, SHIFT(533), - [1083] = {.count = 1, .reusable = true}, SHIFT(534), - [1085] = {.count = 1, .reusable = true}, SHIFT(535), - [1087] = {.count = 1, .reusable = true}, SHIFT(536), - [1089] = {.count = 1, .reusable = true}, SHIFT(537), - [1091] = {.count = 1, .reusable = true}, SHIFT(538), - [1093] = {.count = 1, .reusable = true}, REDUCE(sym_variable_assignment, 3, .alias_sequence_id = 4), - [1095] = {.count = 1, .reusable = true}, SHIFT(540), - [1097] = {.count = 1, .reusable = false}, REDUCE(sym_variable_assignment, 3, .alias_sequence_id = 4), - [1099] = {.count = 1, .reusable = false}, SHIFT(542), - [1101] = {.count = 1, .reusable = false}, SHIFT(543), - [1103] = {.count = 1, .reusable = true}, SHIFT(545), - [1105] = {.count = 1, .reusable = true}, SHIFT(546), - [1107] = {.count = 1, .reusable = false}, SHIFT(547), - [1109] = {.count = 1, .reusable = true}, SHIFT(547), - [1111] = {.count = 1, .reusable = true}, SHIFT(548), - [1113] = {.count = 1, .reusable = true}, SHIFT(549), - [1115] = {.count = 1, .reusable = true}, SHIFT(550), - [1117] = {.count = 1, .reusable = false}, SHIFT(551), - [1119] = {.count = 1, .reusable = true}, SHIFT(551), - [1121] = {.count = 1, .reusable = false}, SHIFT(561), - [1123] = {.count = 1, .reusable = true}, SHIFT(561), - [1125] = {.count = 1, .reusable = true}, SHIFT(565), - [1127] = {.count = 1, .reusable = false}, SHIFT(567), - [1129] = {.count = 1, .reusable = false}, SHIFT(568), - [1131] = {.count = 1, .reusable = true}, SHIFT(570), - [1133] = {.count = 1, .reusable = true}, SHIFT(571), - [1135] = {.count = 1, .reusable = false}, SHIFT(572), - [1137] = {.count = 1, .reusable = true}, SHIFT(572), - [1139] = {.count = 1, .reusable = true}, SHIFT(573), - [1141] = {.count = 1, .reusable = true}, SHIFT(574), - [1143] = {.count = 1, .reusable = true}, SHIFT(575), - [1145] = {.count = 1, .reusable = false}, SHIFT(576), - [1147] = {.count = 1, .reusable = true}, SHIFT(576), - [1149] = {.count = 1, .reusable = false}, SHIFT(586), - [1151] = {.count = 1, .reusable = true}, SHIFT(586), - [1153] = {.count = 1, .reusable = true}, SHIFT(587), - [1155] = {.count = 1, .reusable = true}, SHIFT(588), - [1157] = {.count = 1, .reusable = false}, SHIFT(587), - [1159] = {.count = 1, .reusable = true}, SHIFT(589), - [1161] = {.count = 1, .reusable = true}, SHIFT(590), - [1163] = {.count = 1, .reusable = false}, SHIFT(591), - [1165] = {.count = 1, .reusable = true}, SHIFT(592), - [1167] = {.count = 1, .reusable = true}, SHIFT(593), - [1169] = {.count = 1, .reusable = true}, SHIFT(594), - [1171] = {.count = 1, .reusable = true}, SHIFT(595), - [1173] = {.count = 1, .reusable = true}, SHIFT(596), - [1175] = {.count = 1, .reusable = true}, SHIFT(598), - [1177] = {.count = 1, .reusable = true}, SHIFT(600), - [1179] = {.count = 1, .reusable = true}, SHIFT(601), - [1181] = {.count = 1, .reusable = true}, SHIFT(603), - [1183] = {.count = 1, .reusable = true}, SHIFT(605), - [1185] = {.count = 1, .reusable = true}, SHIFT(606), - [1187] = {.count = 1, .reusable = false}, SHIFT(608), - [1189] = {.count = 1, .reusable = false}, SHIFT(610), - [1191] = {.count = 1, .reusable = true}, SHIFT(612), - [1193] = {.count = 1, .reusable = false}, SHIFT(613), - [1195] = {.count = 1, .reusable = true}, REDUCE(sym_while_statement, 3), - [1197] = {.count = 1, .reusable = false}, REDUCE(sym_while_statement, 3), - [1199] = {.count = 1, .reusable = false}, SHIFT(619), - [1201] = {.count = 1, .reusable = true}, SHIFT(619), - [1203] = {.count = 1, .reusable = false}, SHIFT(620), - [1205] = {.count = 1, .reusable = false}, SHIFT(621), - [1207] = {.count = 1, .reusable = true}, SHIFT(622), - [1209] = {.count = 1, .reusable = true}, SHIFT(623), - [1211] = {.count = 1, .reusable = true}, SHIFT(624), - [1213] = {.count = 1, .reusable = true}, SHIFT(625), - [1215] = {.count = 1, .reusable = false}, SHIFT(630), - [1217] = {.count = 1, .reusable = false}, SHIFT(631), - [1219] = {.count = 1, .reusable = false}, SHIFT(632), - [1221] = {.count = 1, .reusable = true}, SHIFT(636), - [1223] = {.count = 1, .reusable = false}, SHIFT(637), - [1225] = {.count = 1, .reusable = true}, SHIFT(637), - [1227] = {.count = 1, .reusable = true}, SHIFT(638), - [1229] = {.count = 1, .reusable = false}, SHIFT(640), - [1231] = {.count = 1, .reusable = false}, SHIFT(641), - [1233] = {.count = 1, .reusable = false}, SHIFT(642), - [1235] = {.count = 1, .reusable = true}, SHIFT(642), - [1237] = {.count = 1, .reusable = true}, SHIFT(643), - [1239] = {.count = 1, .reusable = true}, SHIFT(644), - [1241] = {.count = 1, .reusable = true}, SHIFT(645), - [1243] = {.count = 1, .reusable = true}, SHIFT(646), - [1245] = {.count = 1, .reusable = false}, SHIFT(647), - [1247] = {.count = 1, .reusable = true}, SHIFT(647), - [1249] = {.count = 1, .reusable = true}, SHIFT(648), - [1251] = {.count = 1, .reusable = false}, SHIFT(650), - [1253] = {.count = 1, .reusable = true}, SHIFT(650), - [1255] = {.count = 1, .reusable = true}, SHIFT(649), - [1257] = {.count = 1, .reusable = true}, SHIFT(651), - [1259] = {.count = 1, .reusable = false}, SHIFT(653), - [1261] = {.count = 1, .reusable = true}, SHIFT(653), - [1263] = {.count = 1, .reusable = true}, SHIFT(652), - [1265] = {.count = 1, .reusable = false}, SHIFT(654), - [1267] = {.count = 1, .reusable = true}, SHIFT(655), - [1269] = {.count = 1, .reusable = true}, SHIFT(654), - [1271] = {.count = 1, .reusable = false}, SHIFT(658), - [1273] = {.count = 1, .reusable = true}, SHIFT(658), - [1275] = {.count = 1, .reusable = false}, SHIFT(661), - [1277] = {.count = 1, .reusable = true}, SHIFT(662), - [1279] = {.count = 1, .reusable = true}, SHIFT(661), - [1281] = {.count = 1, .reusable = true}, SHIFT(665), - [1283] = {.count = 1, .reusable = true}, SHIFT(666), - [1285] = {.count = 1, .reusable = true}, SHIFT(670), - [1287] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 3), - [1289] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 3), - [1291] = {.count = 1, .reusable = false}, SHIFT(671), - [1293] = {.count = 1, .reusable = true}, SHIFT(671), - [1295] = {.count = 1, .reusable = true}, SHIFT(673), - [1297] = {.count = 1, .reusable = true}, SHIFT(674), - [1299] = {.count = 1, .reusable = true}, SHIFT(676), - [1301] = {.count = 1, .reusable = true}, SHIFT(678), - [1303] = {.count = 1, .reusable = true}, SHIFT(679), - [1305] = {.count = 1, .reusable = false}, SHIFT(681), - [1307] = {.count = 1, .reusable = false}, SHIFT(683), - [1309] = {.count = 1, .reusable = true}, SHIFT(685), - [1311] = {.count = 1, .reusable = true}, SHIFT(686), - [1313] = {.count = 1, .reusable = true}, REDUCE(sym_subshell, 3), - [1315] = {.count = 1, .reusable = false}, REDUCE(sym_subshell, 3), - [1317] = {.count = 1, .reusable = false}, SHIFT(689), - [1319] = {.count = 1, .reusable = true}, SHIFT(689), - [1321] = {.count = 1, .reusable = false}, SHIFT(690), - [1323] = {.count = 1, .reusable = false}, SHIFT(691), - [1325] = {.count = 1, .reusable = true}, SHIFT(692), - [1327] = {.count = 1, .reusable = true}, SHIFT(693), - [1329] = {.count = 1, .reusable = true}, SHIFT(694), - [1331] = {.count = 1, .reusable = true}, SHIFT(695), - [1333] = {.count = 1, .reusable = false}, SHIFT(699), - [1335] = {.count = 1, .reusable = true}, SHIFT(699), - [1337] = {.count = 1, .reusable = true}, SHIFT(701), - [1339] = {.count = 1, .reusable = true}, SHIFT(702), - [1341] = {.count = 1, .reusable = true}, SHIFT(703), - [1343] = {.count = 1, .reusable = true}, SHIFT(704), - [1345] = {.count = 1, .reusable = true}, SHIFT(707), - [1347] = {.count = 1, .reusable = true}, SHIFT(708), - [1349] = {.count = 1, .reusable = true}, SHIFT(709), - [1351] = {.count = 1, .reusable = false}, SHIFT(708), - [1353] = {.count = 1, .reusable = true}, REDUCE(sym_unary_expression, 2), - [1355] = {.count = 1, .reusable = true}, SHIFT(710), - [1357] = {.count = 1, .reusable = false}, SHIFT(712), - [1359] = {.count = 1, .reusable = false}, SHIFT(713), - [1361] = {.count = 1, .reusable = true}, SHIFT(714), - [1363] = {.count = 1, .reusable = true}, SHIFT(715), - [1365] = {.count = 1, .reusable = true}, SHIFT(716), - [1367] = {.count = 1, .reusable = false}, SHIFT(717), - [1369] = {.count = 1, .reusable = true}, SHIFT(717), - [1371] = {.count = 1, .reusable = true}, SHIFT(718), - [1373] = {.count = 1, .reusable = false}, SHIFT(720), - [1375] = {.count = 1, .reusable = true}, SHIFT(720), - [1377] = {.count = 1, .reusable = true}, SHIFT(719), - [1379] = {.count = 1, .reusable = true}, SHIFT(721), - [1381] = {.count = 1, .reusable = false}, SHIFT(723), - [1383] = {.count = 1, .reusable = true}, SHIFT(723), - [1385] = {.count = 1, .reusable = true}, SHIFT(722), - [1387] = {.count = 1, .reusable = false}, SHIFT(724), - [1389] = {.count = 1, .reusable = true}, SHIFT(725), - [1391] = {.count = 1, .reusable = true}, SHIFT(724), - [1393] = {.count = 1, .reusable = false}, SHIFT(728), - [1395] = {.count = 1, .reusable = true}, SHIFT(728), - [1397] = {.count = 1, .reusable = false}, SHIFT(731), - [1399] = {.count = 1, .reusable = true}, SHIFT(732), - [1401] = {.count = 1, .reusable = true}, SHIFT(731), - [1403] = {.count = 1, .reusable = true}, SHIFT(736), - [1405] = {.count = 1, .reusable = true}, REDUCE(sym_test_command, 3), - [1407] = {.count = 1, .reusable = false}, REDUCE(sym_test_command, 3), - [1409] = {.count = 1, .reusable = false}, SHIFT(737), - [1411] = {.count = 1, .reusable = true}, SHIFT(737), - [1413] = {.count = 1, .reusable = false}, SHIFT(738), - [1415] = {.count = 1, .reusable = true}, SHIFT(738), - [1417] = {.count = 1, .reusable = true}, SHIFT(739), - [1419] = {.count = 1, .reusable = false}, SHIFT(86), - [1421] = {.count = 1, .reusable = false}, SHIFT(88), - [1423] = {.count = 1, .reusable = false}, SHIFT(89), - [1425] = {.count = 1, .reusable = false}, SHIFT(92), - [1427] = {.count = 1, .reusable = false}, SHIFT(93), - [1429] = {.count = 1, .reusable = false}, SHIFT(94), - [1431] = {.count = 1, .reusable = false}, SHIFT(95), - [1433] = {.count = 1, .reusable = false}, SHIFT(741), - [1435] = {.count = 1, .reusable = true}, SHIFT(742), - [1437] = {.count = 1, .reusable = true}, SHIFT(743), - [1439] = {.count = 1, .reusable = false}, SHIFT(745), - [1441] = {.count = 1, .reusable = false}, SHIFT(746), - [1443] = {.count = 1, .reusable = true}, SHIFT(747), - [1445] = {.count = 1, .reusable = true}, SHIFT(748), - [1447] = {.count = 1, .reusable = true}, SHIFT(749), - [1449] = {.count = 1, .reusable = false}, SHIFT(750), - [1451] = {.count = 1, .reusable = true}, SHIFT(750), - [1453] = {.count = 1, .reusable = true}, SHIFT(751), - [1455] = {.count = 1, .reusable = false}, SHIFT(753), - [1457] = {.count = 1, .reusable = true}, SHIFT(753), - [1459] = {.count = 1, .reusable = true}, SHIFT(752), - [1461] = {.count = 1, .reusable = true}, SHIFT(754), - [1463] = {.count = 1, .reusable = false}, SHIFT(756), - [1465] = {.count = 1, .reusable = true}, SHIFT(756), - [1467] = {.count = 1, .reusable = true}, SHIFT(755), - [1469] = {.count = 1, .reusable = false}, SHIFT(757), - [1471] = {.count = 1, .reusable = true}, SHIFT(758), - [1473] = {.count = 1, .reusable = true}, SHIFT(757), - [1475] = {.count = 1, .reusable = false}, SHIFT(761), - [1477] = {.count = 1, .reusable = true}, SHIFT(761), - [1479] = {.count = 1, .reusable = false}, SHIFT(764), - [1481] = {.count = 1, .reusable = true}, SHIFT(765), - [1483] = {.count = 1, .reusable = true}, SHIFT(764), - [1485] = {.count = 1, .reusable = false}, SHIFT(97), - [1487] = {.count = 1, .reusable = false}, SHIFT(99), - [1489] = {.count = 1, .reusable = false}, SHIFT(100), - [1491] = {.count = 1, .reusable = false}, SHIFT(103), - [1493] = {.count = 1, .reusable = false}, SHIFT(104), - [1495] = {.count = 1, .reusable = false}, SHIFT(105), - [1497] = {.count = 1, .reusable = false}, SHIFT(106), - [1499] = {.count = 1, .reusable = false}, SHIFT(769), - [1501] = {.count = 1, .reusable = true}, SHIFT(770), - [1503] = {.count = 1, .reusable = true}, SHIFT(771), - [1505] = {.count = 1, .reusable = true}, SHIFT(772), - [1507] = {.count = 1, .reusable = true}, SHIFT(773), - [1509] = {.count = 1, .reusable = true}, SHIFT(774), - [1511] = {.count = 1, .reusable = false}, SHIFT(776), - [1513] = {.count = 1, .reusable = false}, SHIFT(777), - [1515] = {.count = 1, .reusable = true}, SHIFT(778), - [1517] = {.count = 1, .reusable = true}, SHIFT(779), - [1519] = {.count = 1, .reusable = true}, SHIFT(780), - [1521] = {.count = 1, .reusable = false}, SHIFT(781), - [1523] = {.count = 1, .reusable = true}, SHIFT(781), - [1525] = {.count = 1, .reusable = true}, SHIFT(782), - [1527] = {.count = 1, .reusable = false}, SHIFT(784), - [1529] = {.count = 1, .reusable = true}, SHIFT(784), - [1531] = {.count = 1, .reusable = true}, SHIFT(783), - [1533] = {.count = 1, .reusable = true}, SHIFT(785), - [1535] = {.count = 1, .reusable = false}, SHIFT(787), - [1537] = {.count = 1, .reusable = true}, SHIFT(787), - [1539] = {.count = 1, .reusable = true}, SHIFT(786), - [1541] = {.count = 1, .reusable = false}, SHIFT(788), - [1543] = {.count = 1, .reusable = true}, SHIFT(789), - [1545] = {.count = 1, .reusable = true}, SHIFT(788), - [1547] = {.count = 1, .reusable = false}, SHIFT(792), - [1549] = {.count = 1, .reusable = true}, SHIFT(792), - [1551] = {.count = 1, .reusable = false}, SHIFT(795), - [1553] = {.count = 1, .reusable = true}, SHIFT(796), - [1555] = {.count = 1, .reusable = true}, SHIFT(795), - [1557] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(108), - [1560] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), - [1562] = {.count = 1, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), - [1564] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(109), - [1567] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(110), - [1570] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(111), - [1573] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(112), - [1576] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(113), - [1579] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(114), - [1582] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(115), - [1585] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(116), - [1588] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(388), - [1591] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(112), - [1594] = {.count = 1, .reusable = true}, SHIFT(799), - [1596] = {.count = 1, .reusable = false}, SHIFT(801), - [1598] = {.count = 1, .reusable = false}, SHIFT(802), - [1600] = {.count = 1, .reusable = true}, SHIFT(803), - [1602] = {.count = 1, .reusable = true}, SHIFT(804), - [1604] = {.count = 1, .reusable = true}, SHIFT(805), - [1606] = {.count = 1, .reusable = false}, SHIFT(806), - [1608] = {.count = 1, .reusable = true}, SHIFT(806), - [1610] = {.count = 1, .reusable = true}, SHIFT(807), - [1612] = {.count = 1, .reusable = false}, SHIFT(809), - [1614] = {.count = 1, .reusable = true}, SHIFT(809), - [1616] = {.count = 1, .reusable = true}, SHIFT(808), - [1618] = {.count = 1, .reusable = true}, SHIFT(810), - [1620] = {.count = 1, .reusable = false}, SHIFT(812), - [1622] = {.count = 1, .reusable = true}, SHIFT(812), - [1624] = {.count = 1, .reusable = true}, SHIFT(811), - [1626] = {.count = 1, .reusable = false}, SHIFT(813), - [1628] = {.count = 1, .reusable = true}, SHIFT(814), - [1630] = {.count = 1, .reusable = true}, SHIFT(813), - [1632] = {.count = 1, .reusable = false}, SHIFT(817), - [1634] = {.count = 1, .reusable = true}, SHIFT(817), - [1636] = {.count = 1, .reusable = false}, SHIFT(820), - [1638] = {.count = 1, .reusable = true}, SHIFT(821), - [1640] = {.count = 1, .reusable = true}, SHIFT(820), - [1642] = {.count = 1, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), - [1644] = {.count = 1, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), - [1646] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(119), - [1649] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(120), - [1652] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(121), - [1655] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(122), - [1658] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(123), - [1661] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(124), - [1664] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(125), - [1667] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(126), - [1670] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(410), - [1673] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(122), - [1676] = {.count = 1, .reusable = true}, SHIFT(824), - [1678] = {.count = 1, .reusable = false}, SHIFT(826), - [1680] = {.count = 1, .reusable = false}, SHIFT(827), - [1682] = {.count = 1, .reusable = true}, SHIFT(828), - [1684] = {.count = 1, .reusable = true}, SHIFT(829), - [1686] = {.count = 1, .reusable = true}, SHIFT(830), - [1688] = {.count = 1, .reusable = false}, SHIFT(831), - [1690] = {.count = 1, .reusable = true}, SHIFT(831), - [1692] = {.count = 1, .reusable = true}, SHIFT(832), - [1694] = {.count = 1, .reusable = false}, SHIFT(834), - [1696] = {.count = 1, .reusable = true}, SHIFT(834), - [1698] = {.count = 1, .reusable = true}, SHIFT(833), - [1700] = {.count = 1, .reusable = true}, SHIFT(835), - [1702] = {.count = 1, .reusable = false}, SHIFT(837), - [1704] = {.count = 1, .reusable = true}, SHIFT(837), - [1706] = {.count = 1, .reusable = true}, SHIFT(836), - [1708] = {.count = 1, .reusable = false}, SHIFT(838), - [1710] = {.count = 1, .reusable = true}, SHIFT(839), - [1712] = {.count = 1, .reusable = true}, SHIFT(838), - [1714] = {.count = 1, .reusable = false}, SHIFT(842), - [1716] = {.count = 1, .reusable = true}, SHIFT(842), - [1718] = {.count = 1, .reusable = false}, SHIFT(845), - [1720] = {.count = 1, .reusable = true}, SHIFT(846), - [1722] = {.count = 1, .reusable = true}, SHIFT(845), - [1724] = {.count = 1, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), - [1726] = {.count = 1, .reusable = false}, REDUCE(aux_sym_concatenation_repeat1, 2), - [1728] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(137), - [1731] = {.count = 1, .reusable = true}, REDUCE(sym_string, 3), - [1733] = {.count = 1, .reusable = false}, REDUCE(sym_string, 3), - [1735] = {.count = 1, .reusable = true}, SHIFT(849), - [1737] = {.count = 1, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), - [1739] = {.count = 1, .reusable = true}, REDUCE(aux_sym_string_repeat1, 2), - [1741] = {.count = 1, .reusable = true}, SHIFT(850), - [1743] = {.count = 1, .reusable = true}, SHIFT(851), - [1745] = {.count = 1, .reusable = true}, SHIFT(852), - [1747] = {.count = 1, .reusable = false}, SHIFT(853), - [1749] = {.count = 1, .reusable = true}, SHIFT(853), - [1751] = {.count = 1, .reusable = true}, SHIFT(854), - [1753] = {.count = 1, .reusable = false}, SHIFT(856), - [1755] = {.count = 1, .reusable = true}, SHIFT(856), - [1757] = {.count = 1, .reusable = true}, SHIFT(855), - [1759] = {.count = 1, .reusable = true}, SHIFT(857), - [1761] = {.count = 1, .reusable = false}, SHIFT(859), - [1763] = {.count = 1, .reusable = true}, SHIFT(859), - [1765] = {.count = 1, .reusable = true}, SHIFT(858), - [1767] = {.count = 1, .reusable = false}, SHIFT(860), - [1769] = {.count = 1, .reusable = true}, SHIFT(861), - [1771] = {.count = 1, .reusable = true}, SHIFT(860), - [1773] = {.count = 1, .reusable = false}, SHIFT(864), - [1775] = {.count = 1, .reusable = true}, SHIFT(864), - [1777] = {.count = 1, .reusable = false}, SHIFT(867), - [1779] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(868), - [1782] = {.count = 2, .reusable = true}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(141), - [1785] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(142), - [1788] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(143), - [1791] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(144), - [1794] = {.count = 1, .reusable = true}, SHIFT(869), - [1796] = {.count = 1, .reusable = true}, SHIFT(870), - [1798] = {.count = 1, .reusable = true}, SHIFT(872), - [1800] = {.count = 1, .reusable = false}, SHIFT(873), - [1802] = {.count = 1, .reusable = true}, SHIFT(874), - [1804] = {.count = 1, .reusable = false}, SHIFT(875), - [1806] = {.count = 1, .reusable = true}, SHIFT(876), - [1808] = {.count = 1, .reusable = true}, SHIFT(877), - [1810] = {.count = 1, .reusable = true}, SHIFT(878), - [1812] = {.count = 1, .reusable = true}, SHIFT(879), - [1814] = {.count = 1, .reusable = true}, SHIFT(880), - [1816] = {.count = 1, .reusable = true}, SHIFT(882), - [1818] = {.count = 1, .reusable = true}, SHIFT(883), - [1820] = {.count = 1, .reusable = false}, SHIFT(885), - [1822] = {.count = 1, .reusable = true}, SHIFT(885), - [1824] = {.count = 1, .reusable = true}, SHIFT(884), - [1826] = {.count = 1, .reusable = false}, SHIFT(887), - [1828] = {.count = 1, .reusable = true}, SHIFT(887), - [1830] = {.count = 1, .reusable = true}, SHIFT(886), - [1832] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 3, .alias_sequence_id = 3), - [1834] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 3, .alias_sequence_id = 3), - [1836] = {.count = 1, .reusable = true}, SHIFT(888), - [1838] = {.count = 1, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 1, .alias_sequence_id = 1), - [1840] = {.count = 1, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 1, .alias_sequence_id = 1), - [1842] = {.count = 1, .reusable = false}, SHIFT(890), - [1844] = {.count = 1, .reusable = false}, SHIFT(891), - [1846] = {.count = 1, .reusable = true}, SHIFT(893), - [1848] = {.count = 1, .reusable = true}, SHIFT(894), - [1850] = {.count = 1, .reusable = false}, SHIFT(895), - [1852] = {.count = 1, .reusable = true}, SHIFT(895), - [1854] = {.count = 1, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 1), - [1856] = {.count = 1, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 1), - [1858] = {.count = 1, .reusable = true}, SHIFT(896), - [1860] = {.count = 1, .reusable = true}, SHIFT(897), - [1862] = {.count = 1, .reusable = true}, SHIFT(898), - [1864] = {.count = 1, .reusable = false}, SHIFT(899), - [1866] = {.count = 1, .reusable = true}, SHIFT(899), - [1868] = {.count = 1, .reusable = true}, SHIFT(900), - [1870] = {.count = 1, .reusable = true}, SHIFT(910), - [1872] = {.count = 1, .reusable = false}, SHIFT(911), - [1874] = {.count = 1, .reusable = true}, SHIFT(911), - [1876] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 3), - [1878] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 3), - [1880] = {.count = 1, .reusable = true}, SHIFT(912), - [1882] = {.count = 1, .reusable = true}, SHIFT(913), - [1884] = {.count = 1, .reusable = true}, REDUCE(sym_command_substitution, 3), - [1886] = {.count = 1, .reusable = false}, REDUCE(sym_command_substitution, 3), - [1888] = {.count = 1, .reusable = false}, SHIFT(914), - [1890] = {.count = 1, .reusable = true}, SHIFT(914), - [1892] = {.count = 1, .reusable = true}, SHIFT(916), - [1894] = {.count = 1, .reusable = true}, SHIFT(918), - [1896] = {.count = 1, .reusable = true}, SHIFT(919), - [1898] = {.count = 1, .reusable = false}, SHIFT(923), - [1900] = {.count = 1, .reusable = true}, SHIFT(923), - [1902] = {.count = 1, .reusable = true}, SHIFT(924), - [1904] = {.count = 1, .reusable = true}, SHIFT(925), - [1906] = {.count = 1, .reusable = true}, SHIFT(926), - [1908] = {.count = 1, .reusable = true}, SHIFT(927), - [1910] = {.count = 1, .reusable = false}, SHIFT(930), - [1912] = {.count = 1, .reusable = true}, SHIFT(930), - [1914] = {.count = 1, .reusable = true}, SHIFT(932), - [1916] = {.count = 1, .reusable = true}, REDUCE(sym_process_substitution, 3), - [1918] = {.count = 1, .reusable = false}, REDUCE(sym_process_substitution, 3), - [1920] = {.count = 1, .reusable = false}, SHIFT(933), - [1922] = {.count = 1, .reusable = true}, SHIFT(933), - [1924] = {.count = 1, .reusable = true}, REDUCE(sym_pipeline, 3), - [1926] = {.count = 1, .reusable = false}, REDUCE(sym_pipeline, 3), - [1928] = {.count = 1, .reusable = true}, REDUCE(sym_list, 3), - [1930] = {.count = 1, .reusable = false}, REDUCE(sym_list, 3), - [1932] = {.count = 1, .reusable = true}, REDUCE(sym_heredoc_body, 2), - [1934] = {.count = 1, .reusable = false}, REDUCE(sym_heredoc_body, 2), - [1936] = {.count = 1, .reusable = true}, SHIFT(935), - [1938] = {.count = 1, .reusable = false}, SHIFT(936), - [1940] = {.count = 1, .reusable = true}, SHIFT(936), - [1942] = {.count = 1, .reusable = true}, SHIFT(937), - [1944] = {.count = 1, .reusable = true}, SHIFT(938), - [1946] = {.count = 1, .reusable = true}, SHIFT(939), - [1948] = {.count = 1, .reusable = false}, SHIFT(940), - [1950] = {.count = 1, .reusable = true}, SHIFT(940), - [1952] = {.count = 1, .reusable = true}, SHIFT(942), - [1954] = {.count = 1, .reusable = true}, SHIFT(941), - [1956] = {.count = 1, .reusable = true}, SHIFT(943), - [1958] = {.count = 1, .reusable = true}, SHIFT(944), - [1960] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2, .alias_sequence_id = 2), - [1962] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2, .alias_sequence_id = 2), - [1964] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), - [1966] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), - [1968] = {.count = 1, .reusable = true}, REDUCE(sym_heredoc_redirect, 2), - [1970] = {.count = 1, .reusable = false}, REDUCE(sym_heredoc_redirect, 2), - [1972] = {.count = 1, .reusable = true}, REDUCE(sym_herestring_redirect, 2, .alias_sequence_id = 2), - [1974] = {.count = 1, .reusable = false}, REDUCE(sym_herestring_redirect, 2, .alias_sequence_id = 2), - [1976] = {.count = 1, .reusable = true}, REDUCE(sym_herestring_redirect, 2), - [1978] = {.count = 1, .reusable = false}, REDUCE(sym_herestring_redirect, 2), - [1980] = {.count = 1, .reusable = true}, REDUCE(sym_command, 3), - [1982] = {.count = 1, .reusable = false}, REDUCE(sym_command, 3), - [1984] = {.count = 1, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), - [1986] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(178), - [1989] = {.count = 1, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), - [1991] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(180), - [1994] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(180), - [1997] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(181), - [2000] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(181), - [2003] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(182), - [2006] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(179), - [2009] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(183), - [2012] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(17), - [2015] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(18), - [2018] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(184), - [2021] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(20), - [2024] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(21), - [2027] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(22), - [2030] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(23), - [2033] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(184), - [2036] = {.count = 1, .reusable = true}, REDUCE(sym_program, 3), - [2038] = {.count = 1, .reusable = false}, SHIFT(948), - [2040] = {.count = 1, .reusable = true}, SHIFT(948), - [2042] = {.count = 1, .reusable = true}, SHIFT(950), - [2044] = {.count = 1, .reusable = false}, SHIFT(710), - [2046] = {.count = 1, .reusable = true}, SHIFT(951), - [2048] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 4, .alias_sequence_id = 4), - [2050] = {.count = 1, .reusable = true}, SHIFT(953), - [2052] = {.count = 1, .reusable = true}, SHIFT(954), - [2054] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 4), - [2056] = {.count = 1, .reusable = true}, REDUCE(sym_array, 2), - [2058] = {.count = 1, .reusable = false}, REDUCE(sym_array, 2), - [2060] = {.count = 1, .reusable = true}, SHIFT(955), - [2062] = {.count = 1, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 1, .alias_sequence_id = 1), - [2064] = {.count = 1, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 1, .alias_sequence_id = 1), - [2066] = {.count = 1, .reusable = false}, SHIFT(957), - [2068] = {.count = 1, .reusable = false}, SHIFT(958), - [2070] = {.count = 1, .reusable = true}, SHIFT(960), - [2072] = {.count = 1, .reusable = true}, SHIFT(961), - [2074] = {.count = 1, .reusable = false}, SHIFT(962), - [2076] = {.count = 1, .reusable = true}, SHIFT(962), - [2078] = {.count = 1, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 1), - [2080] = {.count = 1, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 1), - [2082] = {.count = 1, .reusable = true}, SHIFT(963), - [2084] = {.count = 1, .reusable = true}, SHIFT(964), - [2086] = {.count = 1, .reusable = true}, SHIFT(965), - [2088] = {.count = 1, .reusable = false}, SHIFT(966), - [2090] = {.count = 1, .reusable = true}, SHIFT(966), - [2092] = {.count = 1, .reusable = true}, SHIFT(976), - [2094] = {.count = 1, .reusable = true}, SHIFT(978), - [2096] = {.count = 1, .reusable = false}, SHIFT(980), - [2098] = {.count = 1, .reusable = false}, SHIFT(981), - [2100] = {.count = 1, .reusable = true}, SHIFT(982), - [2102] = {.count = 1, .reusable = true}, SHIFT(983), - [2104] = {.count = 1, .reusable = true}, SHIFT(984), - [2106] = {.count = 1, .reusable = false}, SHIFT(985), - [2108] = {.count = 1, .reusable = true}, SHIFT(985), - [2110] = {.count = 1, .reusable = true}, SHIFT(986), - [2112] = {.count = 1, .reusable = false}, SHIFT(988), - [2114] = {.count = 1, .reusable = true}, SHIFT(988), - [2116] = {.count = 1, .reusable = true}, SHIFT(987), - [2118] = {.count = 1, .reusable = true}, SHIFT(989), - [2120] = {.count = 1, .reusable = false}, SHIFT(991), - [2122] = {.count = 1, .reusable = true}, SHIFT(991), - [2124] = {.count = 1, .reusable = true}, SHIFT(990), - [2126] = {.count = 1, .reusable = false}, SHIFT(992), - [2128] = {.count = 1, .reusable = true}, SHIFT(993), - [2130] = {.count = 1, .reusable = true}, SHIFT(992), - [2132] = {.count = 1, .reusable = false}, SHIFT(996), - [2134] = {.count = 1, .reusable = true}, SHIFT(996), - [2136] = {.count = 1, .reusable = false}, SHIFT(999), - [2138] = {.count = 1, .reusable = true}, SHIFT(1000), - [2140] = {.count = 1, .reusable = true}, SHIFT(999), - [2142] = {.count = 1, .reusable = true}, SHIFT(1003), - [2144] = {.count = 1, .reusable = true}, SHIFT(1004), - [2146] = {.count = 1, .reusable = false}, SHIFT(1005), - [2148] = {.count = 1, .reusable = true}, SHIFT(1006), - [2150] = {.count = 1, .reusable = true}, SHIFT(1007), - [2152] = {.count = 1, .reusable = false}, SHIFT(1008), - [2154] = {.count = 1, .reusable = true}, SHIFT(1009), - [2156] = {.count = 1, .reusable = true}, SHIFT(1010), - [2158] = {.count = 1, .reusable = true}, SHIFT(1011), - [2160] = {.count = 1, .reusable = true}, SHIFT(1012), - [2162] = {.count = 1, .reusable = true}, SHIFT(1013), - [2164] = {.count = 1, .reusable = false}, SHIFT(1009), - [2166] = {.count = 1, .reusable = true}, SHIFT(1005), - [2168] = {.count = 1, .reusable = false}, SHIFT(1015), - [2170] = {.count = 1, .reusable = true}, SHIFT(1015), - [2172] = {.count = 1, .reusable = true}, SHIFT(1016), - [2174] = {.count = 1, .reusable = false}, REDUCE(sym_unary_expression, 2), - [2176] = {.count = 1, .reusable = true}, SHIFT(1017), - [2178] = {.count = 1, .reusable = false}, SHIFT(1019), - [2180] = {.count = 1, .reusable = false}, SHIFT(1020), - [2182] = {.count = 1, .reusable = true}, SHIFT(1021), - [2184] = {.count = 1, .reusable = true}, SHIFT(1022), - [2186] = {.count = 1, .reusable = true}, SHIFT(1023), - [2188] = {.count = 1, .reusable = false}, SHIFT(1024), - [2190] = {.count = 1, .reusable = true}, SHIFT(1024), - [2192] = {.count = 1, .reusable = true}, SHIFT(1025), - [2194] = {.count = 1, .reusable = false}, SHIFT(1027), - [2196] = {.count = 1, .reusable = true}, SHIFT(1027), - [2198] = {.count = 1, .reusable = true}, SHIFT(1026), - [2200] = {.count = 1, .reusable = true}, SHIFT(1028), - [2202] = {.count = 1, .reusable = false}, SHIFT(1030), - [2204] = {.count = 1, .reusable = true}, SHIFT(1030), - [2206] = {.count = 1, .reusable = true}, SHIFT(1029), - [2208] = {.count = 1, .reusable = false}, SHIFT(1031), - [2210] = {.count = 1, .reusable = true}, SHIFT(1032), - [2212] = {.count = 1, .reusable = true}, SHIFT(1031), - [2214] = {.count = 1, .reusable = false}, SHIFT(1035), - [2216] = {.count = 1, .reusable = true}, SHIFT(1035), - [2218] = {.count = 1, .reusable = false}, SHIFT(1038), - [2220] = {.count = 1, .reusable = true}, SHIFT(1039), - [2222] = {.count = 1, .reusable = true}, SHIFT(1038), - [2224] = {.count = 1, .reusable = false}, SHIFT(210), - [2226] = {.count = 1, .reusable = false}, SHIFT(212), - [2228] = {.count = 1, .reusable = false}, SHIFT(213), - [2230] = {.count = 1, .reusable = false}, SHIFT(216), - [2232] = {.count = 1, .reusable = false}, SHIFT(217), - [2234] = {.count = 1, .reusable = false}, SHIFT(218), - [2236] = {.count = 1, .reusable = false}, SHIFT(219), - [2238] = {.count = 1, .reusable = false}, SHIFT(1044), - [2240] = {.count = 1, .reusable = true}, SHIFT(1045), - [2242] = {.count = 1, .reusable = false}, SHIFT(1047), - [2244] = {.count = 1, .reusable = false}, SHIFT(1048), - [2246] = {.count = 1, .reusable = true}, SHIFT(1050), - [2248] = {.count = 1, .reusable = true}, SHIFT(1051), - [2250] = {.count = 1, .reusable = false}, SHIFT(1052), - [2252] = {.count = 1, .reusable = true}, SHIFT(1052), - [2254] = {.count = 1, .reusable = true}, SHIFT(1053), - [2256] = {.count = 1, .reusable = true}, SHIFT(1054), - [2258] = {.count = 1, .reusable = true}, SHIFT(1055), - [2260] = {.count = 1, .reusable = false}, SHIFT(1056), - [2262] = {.count = 1, .reusable = true}, SHIFT(1056), - [2264] = {.count = 1, .reusable = false}, SHIFT(1066), - [2266] = {.count = 1, .reusable = true}, SHIFT(1066), - [2268] = {.count = 1, .reusable = false}, SHIFT(592), - [2270] = {.count = 1, .reusable = false}, SHIFT(1068), - [2272] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 4), - [2274] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 4), - [2276] = {.count = 1, .reusable = true}, SHIFT(1072), - [2278] = {.count = 1, .reusable = true}, SHIFT(1073), - [2280] = {.count = 1, .reusable = false}, SHIFT(1074), - [2282] = {.count = 1, .reusable = true}, SHIFT(1074), - [2284] = {.count = 1, .reusable = true}, SHIFT(1075), - [2286] = {.count = 1, .reusable = false}, SHIFT(1076), - [2288] = {.count = 1, .reusable = true}, SHIFT(1076), - [2290] = {.count = 1, .reusable = true}, SHIFT(1077), - [2292] = {.count = 1, .reusable = true}, SHIFT(1079), - [2294] = {.count = 1, .reusable = true}, SHIFT(1080), - [2296] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(228), - [2299] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(229), - [2302] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(230), - [2305] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(608), - [2308] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(230), - [2311] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(233), - [2314] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(234), - [2317] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(610), - [2320] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(234), - [2323] = {.count = 1, .reusable = true}, REDUCE(sym_do_group, 2), - [2325] = {.count = 1, .reusable = false}, REDUCE(sym_do_group, 2), - [2327] = {.count = 1, .reusable = false}, SHIFT(1084), - [2329] = {.count = 1, .reusable = true}, REDUCE(sym_while_statement, 4), - [2331] = {.count = 1, .reusable = false}, REDUCE(sym_while_statement, 4), - [2333] = {.count = 1, .reusable = true}, SHIFT(1087), - [2335] = {.count = 1, .reusable = true}, SHIFT(1088), - [2337] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(243), - [2340] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(245), - [2343] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(245), - [2346] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(246), - [2349] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(244), - [2352] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(247), - [2355] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(248), - [2358] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(248), - [2361] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 4), - [2363] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 4), - [2365] = {.count = 1, .reusable = false}, REDUCE(sym_else_clause, 1), - [2367] = {.count = 1, .reusable = true}, SHIFT(1093), - [2369] = {.count = 1, .reusable = false}, SHIFT(1093), - [2371] = {.count = 1, .reusable = true}, SHIFT(631), - [2373] = {.count = 1, .reusable = true}, SHIFT(632), - [2375] = {.count = 1, .reusable = false}, SHIFT(1098), - [2377] = {.count = 1, .reusable = true}, SHIFT(1099), - [2379] = {.count = 1, .reusable = true}, SHIFT(1100), - [2381] = {.count = 1, .reusable = false}, SHIFT(1100), - [2383] = {.count = 1, .reusable = false}, SHIFT(1104), - [2385] = {.count = 1, .reusable = true}, SHIFT(1104), - [2387] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(253), - [2390] = {.count = 1, .reusable = false}, SHIFT(1105), - [2392] = {.count = 1, .reusable = false}, SHIFT(1106), - [2394] = {.count = 1, .reusable = false}, SHIFT(1109), - [2396] = {.count = 1, .reusable = true}, SHIFT(1109), - [2398] = {.count = 1, .reusable = true}, SHIFT(1110), - [2400] = {.count = 1, .reusable = false}, SHIFT(1111), - [2402] = {.count = 1, .reusable = true}, SHIFT(1112), - [2404] = {.count = 1, .reusable = true}, SHIFT(1114), - [2406] = {.count = 1, .reusable = true}, SHIFT(1115), - [2408] = {.count = 1, .reusable = false}, SHIFT(1117), - [2410] = {.count = 1, .reusable = true}, SHIFT(1117), - [2412] = {.count = 1, .reusable = true}, SHIFT(1116), - [2414] = {.count = 1, .reusable = false}, SHIFT(1119), - [2416] = {.count = 1, .reusable = true}, SHIFT(1119), - [2418] = {.count = 1, .reusable = true}, SHIFT(1118), - [2420] = {.count = 1, .reusable = true}, SHIFT(1120), - [2422] = {.count = 1, .reusable = true}, SHIFT(1121), - [2424] = {.count = 1, .reusable = true}, SHIFT(1122), - [2426] = {.count = 1, .reusable = true}, SHIFT(1123), - [2428] = {.count = 1, .reusable = false}, SHIFT(1124), - [2430] = {.count = 1, .reusable = true}, SHIFT(1124), - [2432] = {.count = 1, .reusable = false}, SHIFT(1125), - [2434] = {.count = 1, .reusable = true}, SHIFT(1125), - [2436] = {.count = 1, .reusable = true}, SHIFT(1126), - [2438] = {.count = 1, .reusable = false}, SHIFT(1127), - [2440] = {.count = 1, .reusable = true}, SHIFT(1127), - [2442] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 2), - [2444] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 2), - [2446] = {.count = 1, .reusable = false}, SHIFT(1129), - [2448] = {.count = 1, .reusable = true}, SHIFT(1129), - [2450] = {.count = 1, .reusable = true}, SHIFT(1130), - [2452] = {.count = 1, .reusable = false}, SHIFT(1132), - [2454] = {.count = 1, .reusable = true}, SHIFT(1132), - [2456] = {.count = 1, .reusable = true}, SHIFT(1133), - [2458] = {.count = 1, .reusable = true}, SHIFT(1134), - [2460] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 4), - [2462] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 4), - [2464] = {.count = 1, .reusable = true}, SHIFT(1138), - [2466] = {.count = 1, .reusable = true}, SHIFT(1139), - [2468] = {.count = 1, .reusable = false}, SHIFT(1140), - [2470] = {.count = 1, .reusable = true}, SHIFT(1140), - [2472] = {.count = 1, .reusable = true}, SHIFT(1141), - [2474] = {.count = 1, .reusable = false}, SHIFT(1142), - [2476] = {.count = 1, .reusable = true}, SHIFT(1142), - [2478] = {.count = 1, .reusable = true}, SHIFT(1143), - [2480] = {.count = 1, .reusable = true}, SHIFT(1145), - [2482] = {.count = 1, .reusable = true}, SHIFT(1146), - [2484] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(286), - [2487] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(287), - [2490] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(288), - [2493] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(681), - [2496] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(288), - [2499] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(291), - [2502] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(292), - [2505] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(683), - [2508] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(292), - [2511] = {.count = 1, .reusable = true}, REDUCE(sym_subshell, 4), - [2513] = {.count = 1, .reusable = false}, REDUCE(sym_subshell, 4), - [2515] = {.count = 1, .reusable = true}, SHIFT(1150), - [2517] = {.count = 1, .reusable = true}, SHIFT(1151), - [2519] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(300), - [2522] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(302), - [2525] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(302), - [2528] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(303), - [2531] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(301), - [2534] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(304), - [2537] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(305), - [2540] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(305), - [2543] = {.count = 1, .reusable = true}, SHIFT(1153), - [2545] = {.count = 1, .reusable = true}, SHIFT(1155), - [2547] = {.count = 1, .reusable = true}, REDUCE(sym_parenthesized_expression, 3), - [2549] = {.count = 1, .reusable = false}, REDUCE(sym_parenthesized_expression, 3), - [2551] = {.count = 1, .reusable = false}, SHIFT(313), - [2553] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(317), - [2556] = {.count = 1, .reusable = false}, SHIFT(1158), - [2558] = {.count = 1, .reusable = true}, SHIFT(1159), - [2560] = {.count = 1, .reusable = false}, SHIFT(1160), - [2562] = {.count = 1, .reusable = true}, SHIFT(1161), - [2564] = {.count = 1, .reusable = true}, SHIFT(1163), - [2566] = {.count = 1, .reusable = true}, SHIFT(1164), - [2568] = {.count = 1, .reusable = false}, SHIFT(1166), - [2570] = {.count = 1, .reusable = true}, SHIFT(1166), - [2572] = {.count = 1, .reusable = true}, SHIFT(1165), - [2574] = {.count = 1, .reusable = false}, SHIFT(1168), - [2576] = {.count = 1, .reusable = true}, SHIFT(1168), - [2578] = {.count = 1, .reusable = true}, SHIFT(1167), - [2580] = {.count = 1, .reusable = true}, SHIFT(1169), - [2582] = {.count = 1, .reusable = true}, SHIFT(1170), - [2584] = {.count = 1, .reusable = true}, SHIFT(1171), - [2586] = {.count = 1, .reusable = true}, SHIFT(1172), - [2588] = {.count = 1, .reusable = false}, SHIFT(1173), - [2590] = {.count = 1, .reusable = true}, SHIFT(1173), - [2592] = {.count = 1, .reusable = false}, SHIFT(1174), - [2594] = {.count = 1, .reusable = true}, SHIFT(1174), - [2596] = {.count = 1, .reusable = true}, SHIFT(1175), - [2598] = {.count = 1, .reusable = false}, SHIFT(1176), - [2600] = {.count = 1, .reusable = true}, SHIFT(1176), - [2602] = {.count = 1, .reusable = true}, REDUCE(sym_binary_expression, 3), - [2604] = {.count = 1, .reusable = false}, REDUCE(sym_binary_expression, 3), - [2606] = {.count = 1, .reusable = false}, SHIFT(1177), - [2608] = {.count = 1, .reusable = true}, SHIFT(1177), - [2610] = {.count = 1, .reusable = true}, SHIFT(1178), - [2612] = {.count = 1, .reusable = true}, SHIFT(1179), - [2614] = {.count = 1, .reusable = false}, SHIFT(1180), - [2616] = {.count = 1, .reusable = true}, SHIFT(1181), - [2618] = {.count = 1, .reusable = true}, SHIFT(1182), - [2620] = {.count = 1, .reusable = true}, SHIFT(1183), - [2622] = {.count = 1, .reusable = true}, SHIFT(1184), - [2624] = {.count = 1, .reusable = true}, SHIFT(1185), - [2626] = {.count = 1, .reusable = true}, SHIFT(1187), - [2628] = {.count = 1, .reusable = true}, SHIFT(1188), - [2630] = {.count = 1, .reusable = true}, SHIFT(1189), - [2632] = {.count = 1, .reusable = true}, REDUCE(sym_test_command, 4), - [2634] = {.count = 1, .reusable = false}, REDUCE(sym_test_command, 4), - [2636] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(343), - [2639] = {.count = 1, .reusable = false}, SHIFT(1192), - [2641] = {.count = 1, .reusable = true}, SHIFT(1193), - [2643] = {.count = 1, .reusable = false}, SHIFT(1194), - [2645] = {.count = 1, .reusable = true}, SHIFT(1195), - [2647] = {.count = 1, .reusable = true}, SHIFT(1197), - [2649] = {.count = 1, .reusable = true}, SHIFT(1198), - [2651] = {.count = 1, .reusable = false}, SHIFT(1200), - [2653] = {.count = 1, .reusable = true}, SHIFT(1200), - [2655] = {.count = 1, .reusable = true}, SHIFT(1199), - [2657] = {.count = 1, .reusable = false}, SHIFT(1202), - [2659] = {.count = 1, .reusable = true}, SHIFT(1202), - [2661] = {.count = 1, .reusable = true}, SHIFT(1201), - [2663] = {.count = 1, .reusable = true}, SHIFT(1203), - [2665] = {.count = 1, .reusable = true}, SHIFT(1204), - [2667] = {.count = 1, .reusable = true}, SHIFT(1205), - [2669] = {.count = 1, .reusable = true}, SHIFT(1206), - [2671] = {.count = 1, .reusable = false}, SHIFT(1207), - [2673] = {.count = 1, .reusable = true}, SHIFT(1207), - [2675] = {.count = 1, .reusable = false}, SHIFT(1208), - [2677] = {.count = 1, .reusable = true}, SHIFT(1208), - [2679] = {.count = 1, .reusable = true}, SHIFT(1209), - [2681] = {.count = 1, .reusable = false}, SHIFT(1210), - [2683] = {.count = 1, .reusable = true}, SHIFT(1210), - [2685] = {.count = 1, .reusable = true}, SHIFT(1211), - [2687] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(367), - [2690] = {.count = 1, .reusable = false}, SHIFT(1213), - [2692] = {.count = 1, .reusable = true}, SHIFT(1214), - [2694] = {.count = 1, .reusable = false}, SHIFT(1215), - [2696] = {.count = 1, .reusable = true}, SHIFT(1216), - [2698] = {.count = 1, .reusable = true}, SHIFT(1218), - [2700] = {.count = 1, .reusable = true}, SHIFT(1219), - [2702] = {.count = 1, .reusable = false}, SHIFT(1221), - [2704] = {.count = 1, .reusable = true}, SHIFT(1221), - [2706] = {.count = 1, .reusable = true}, SHIFT(1220), - [2708] = {.count = 1, .reusable = false}, SHIFT(1223), - [2710] = {.count = 1, .reusable = true}, SHIFT(1223), - [2712] = {.count = 1, .reusable = true}, SHIFT(1222), - [2714] = {.count = 1, .reusable = true}, SHIFT(1224), - [2716] = {.count = 1, .reusable = true}, SHIFT(1225), - [2718] = {.count = 1, .reusable = true}, SHIFT(1226), - [2720] = {.count = 1, .reusable = true}, SHIFT(1227), - [2722] = {.count = 1, .reusable = false}, SHIFT(1228), - [2724] = {.count = 1, .reusable = true}, SHIFT(1228), - [2726] = {.count = 1, .reusable = false}, SHIFT(1229), - [2728] = {.count = 1, .reusable = true}, SHIFT(1229), - [2730] = {.count = 1, .reusable = true}, SHIFT(1230), - [2732] = {.count = 1, .reusable = false}, SHIFT(1231), - [2734] = {.count = 1, .reusable = true}, SHIFT(1231), - [2736] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(389), - [2739] = {.count = 1, .reusable = false}, SHIFT(1232), - [2741] = {.count = 1, .reusable = true}, SHIFT(1233), - [2743] = {.count = 1, .reusable = false}, SHIFT(1234), - [2745] = {.count = 1, .reusable = true}, SHIFT(1235), - [2747] = {.count = 1, .reusable = true}, SHIFT(1237), - [2749] = {.count = 1, .reusable = true}, SHIFT(1238), - [2751] = {.count = 1, .reusable = false}, SHIFT(1240), - [2753] = {.count = 1, .reusable = true}, SHIFT(1240), - [2755] = {.count = 1, .reusable = true}, SHIFT(1239), - [2757] = {.count = 1, .reusable = false}, SHIFT(1242), - [2759] = {.count = 1, .reusable = true}, SHIFT(1242), - [2761] = {.count = 1, .reusable = true}, SHIFT(1241), - [2763] = {.count = 1, .reusable = true}, SHIFT(1243), - [2765] = {.count = 1, .reusable = true}, SHIFT(1244), - [2767] = {.count = 1, .reusable = true}, SHIFT(1245), - [2769] = {.count = 1, .reusable = true}, SHIFT(1246), - [2771] = {.count = 1, .reusable = false}, SHIFT(1247), - [2773] = {.count = 1, .reusable = true}, SHIFT(1247), - [2775] = {.count = 1, .reusable = false}, SHIFT(1248), - [2777] = {.count = 1, .reusable = true}, SHIFT(1248), - [2779] = {.count = 1, .reusable = true}, SHIFT(1249), - [2781] = {.count = 1, .reusable = false}, SHIFT(1250), - [2783] = {.count = 1, .reusable = true}, SHIFT(1250), - [2785] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(411), - [2788] = {.count = 1, .reusable = false}, SHIFT(1251), - [2790] = {.count = 1, .reusable = true}, SHIFT(1252), - [2792] = {.count = 1, .reusable = false}, SHIFT(1253), - [2794] = {.count = 1, .reusable = true}, SHIFT(1254), - [2796] = {.count = 1, .reusable = true}, SHIFT(1256), - [2798] = {.count = 1, .reusable = true}, SHIFT(1257), - [2800] = {.count = 1, .reusable = false}, SHIFT(1259), - [2802] = {.count = 1, .reusable = true}, SHIFT(1259), - [2804] = {.count = 1, .reusable = true}, SHIFT(1258), - [2806] = {.count = 1, .reusable = false}, SHIFT(1261), - [2808] = {.count = 1, .reusable = true}, SHIFT(1261), - [2810] = {.count = 1, .reusable = true}, SHIFT(1260), - [2812] = {.count = 1, .reusable = true}, SHIFT(1262), - [2814] = {.count = 1, .reusable = true}, SHIFT(1263), - [2816] = {.count = 1, .reusable = true}, SHIFT(1264), - [2818] = {.count = 1, .reusable = true}, SHIFT(1265), - [2820] = {.count = 1, .reusable = false}, SHIFT(1266), - [2822] = {.count = 1, .reusable = true}, SHIFT(1266), - [2824] = {.count = 1, .reusable = false}, SHIFT(1267), - [2826] = {.count = 1, .reusable = true}, SHIFT(1267), - [2828] = {.count = 1, .reusable = true}, SHIFT(1268), - [2830] = {.count = 1, .reusable = false}, SHIFT(1269), - [2832] = {.count = 1, .reusable = true}, SHIFT(1269), - [2834] = {.count = 1, .reusable = false}, REDUCE(aux_sym_string_repeat1, 3), - [2836] = {.count = 1, .reusable = true}, REDUCE(aux_sym_string_repeat1, 3), - [2838] = {.count = 1, .reusable = true}, SHIFT(1270), - [2840] = {.count = 1, .reusable = false}, SHIFT(1271), - [2842] = {.count = 1, .reusable = true}, SHIFT(1272), - [2844] = {.count = 1, .reusable = true}, SHIFT(1274), - [2846] = {.count = 1, .reusable = true}, SHIFT(1275), - [2848] = {.count = 1, .reusable = false}, SHIFT(1277), - [2850] = {.count = 1, .reusable = true}, SHIFT(1277), - [2852] = {.count = 1, .reusable = true}, SHIFT(1276), - [2854] = {.count = 1, .reusable = false}, SHIFT(1279), - [2856] = {.count = 1, .reusable = true}, SHIFT(1279), - [2858] = {.count = 1, .reusable = true}, SHIFT(1278), - [2860] = {.count = 1, .reusable = true}, SHIFT(1280), - [2862] = {.count = 1, .reusable = true}, SHIFT(1281), - [2864] = {.count = 1, .reusable = true}, SHIFT(1282), - [2866] = {.count = 1, .reusable = true}, SHIFT(1283), - [2868] = {.count = 1, .reusable = false}, SHIFT(1284), - [2870] = {.count = 1, .reusable = true}, SHIFT(1284), - [2872] = {.count = 1, .reusable = false}, SHIFT(1285), - [2874] = {.count = 1, .reusable = true}, SHIFT(1285), - [2876] = {.count = 1, .reusable = true}, REDUCE(sym_string, 4), - [2878] = {.count = 1, .reusable = false}, REDUCE(sym_string, 4), - [2880] = {.count = 1, .reusable = true}, SHIFT(1286), - [2882] = {.count = 1, .reusable = true}, SHIFT(1287), - [2884] = {.count = 1, .reusable = true}, SHIFT(1288), - [2886] = {.count = 1, .reusable = true}, SHIFT(1289), - [2888] = {.count = 1, .reusable = true}, SHIFT(1290), - [2890] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4), - [2892] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4), - [2894] = {.count = 1, .reusable = true}, SHIFT(1291), - [2896] = {.count = 1, .reusable = true}, SHIFT(1292), - [2898] = {.count = 1, .reusable = false}, SHIFT(1294), - [2900] = {.count = 1, .reusable = false}, SHIFT(1295), - [2902] = {.count = 1, .reusable = true}, SHIFT(1297), - [2904] = {.count = 1, .reusable = true}, SHIFT(1298), - [2906] = {.count = 1, .reusable = false}, SHIFT(1299), - [2908] = {.count = 1, .reusable = true}, SHIFT(1299), - [2910] = {.count = 1, .reusable = true}, SHIFT(1300), - [2912] = {.count = 1, .reusable = true}, SHIFT(1301), - [2914] = {.count = 1, .reusable = true}, SHIFT(1302), - [2916] = {.count = 1, .reusable = true}, SHIFT(1303), - [2918] = {.count = 1, .reusable = false}, SHIFT(1304), - [2920] = {.count = 1, .reusable = true}, SHIFT(1304), - [2922] = {.count = 1, .reusable = false}, SHIFT(1314), - [2924] = {.count = 1, .reusable = true}, SHIFT(1315), - [2926] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 5), - [2928] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 5), - [2930] = {.count = 1, .reusable = true}, SHIFT(1317), - [2932] = {.count = 1, .reusable = true}, SHIFT(1318), - [2934] = {.count = 1, .reusable = true}, SHIFT(1319), - [2936] = {.count = 1, .reusable = true}, SHIFT(1320), - [2938] = {.count = 1, .reusable = false}, SHIFT(1322), - [2940] = {.count = 1, .reusable = false}, SHIFT(1323), - [2942] = {.count = 1, .reusable = true}, SHIFT(1324), - [2944] = {.count = 1, .reusable = true}, SHIFT(1325), - [2946] = {.count = 1, .reusable = true}, SHIFT(1326), - [2948] = {.count = 1, .reusable = false}, SHIFT(1327), - [2950] = {.count = 1, .reusable = true}, SHIFT(1327), - [2952] = {.count = 1, .reusable = true}, SHIFT(1328), - [2954] = {.count = 1, .reusable = false}, SHIFT(1330), - [2956] = {.count = 1, .reusable = true}, SHIFT(1330), - [2958] = {.count = 1, .reusable = true}, SHIFT(1329), - [2960] = {.count = 1, .reusable = true}, SHIFT(1331), - [2962] = {.count = 1, .reusable = false}, SHIFT(1333), - [2964] = {.count = 1, .reusable = true}, SHIFT(1333), - [2966] = {.count = 1, .reusable = true}, SHIFT(1332), - [2968] = {.count = 1, .reusable = true}, SHIFT(1334), - [2970] = {.count = 1, .reusable = false}, SHIFT(1335), - [2972] = {.count = 1, .reusable = true}, SHIFT(1335), - [2974] = {.count = 1, .reusable = false}, SHIFT(1336), - [2976] = {.count = 1, .reusable = true}, SHIFT(1337), - [2978] = {.count = 1, .reusable = true}, SHIFT(1336), - [2980] = {.count = 1, .reusable = false}, SHIFT(1340), - [2982] = {.count = 1, .reusable = true}, SHIFT(1340), - [2984] = {.count = 1, .reusable = false}, SHIFT(1343), - [2986] = {.count = 1, .reusable = true}, SHIFT(1344), - [2988] = {.count = 1, .reusable = true}, SHIFT(1343), - [2990] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 3), - [2992] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 3), - [2994] = {.count = 1, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), - [2996] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(911), - [2999] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(457), - [3002] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(458), - [3005] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(459), - [3008] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(460), - [3011] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(911), - [3014] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(461), - [3017] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(463), - [3020] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(464), - [3023] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(465), - [3026] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(460), - [3029] = {.count = 1, .reusable = false}, SHIFT(1347), - [3031] = {.count = 1, .reusable = true}, SHIFT(1347), - [3033] = {.count = 1, .reusable = true}, REDUCE(sym_command_substitution, 4), - [3035] = {.count = 1, .reusable = false}, REDUCE(sym_command_substitution, 4), - [3037] = {.count = 1, .reusable = true}, SHIFT(1348), - [3039] = {.count = 1, .reusable = true}, SHIFT(1350), - [3041] = {.count = 1, .reusable = true}, SHIFT(1351), - [3043] = {.count = 1, .reusable = false}, SHIFT(1352), - [3045] = {.count = 1, .reusable = true}, SHIFT(1352), - [3047] = {.count = 1, .reusable = true}, SHIFT(1353), - [3049] = {.count = 1, .reusable = false}, SHIFT(1354), - [3051] = {.count = 1, .reusable = true}, SHIFT(1354), - [3053] = {.count = 1, .reusable = true}, SHIFT(1355), - [3055] = {.count = 1, .reusable = true}, SHIFT(1358), - [3057] = {.count = 1, .reusable = true}, SHIFT(1359), - [3059] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(484), - [3062] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(485), - [3065] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(485), - [3068] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(486), - [3071] = {.count = 1, .reusable = true}, REDUCE(sym_process_substitution, 4), - [3073] = {.count = 1, .reusable = false}, REDUCE(sym_process_substitution, 4), - [3075] = {.count = 1, .reusable = true}, SHIFT(1362), - [3077] = {.count = 1, .reusable = true}, SHIFT(1364), - [3079] = {.count = 1, .reusable = true}, SHIFT(1365), - [3081] = {.count = 1, .reusable = true}, SHIFT(1366), - [3083] = {.count = 1, .reusable = false}, SHIFT(1367), - [3085] = {.count = 1, .reusable = true}, SHIFT(1367), - [3087] = {.count = 1, .reusable = true}, SHIFT(1368), - [3089] = {.count = 1, .reusable = false}, SHIFT(1370), - [3091] = {.count = 1, .reusable = true}, SHIFT(1370), - [3093] = {.count = 1, .reusable = true}, SHIFT(1369), - [3095] = {.count = 1, .reusable = true}, SHIFT(1371), - [3097] = {.count = 1, .reusable = false}, SHIFT(1373), - [3099] = {.count = 1, .reusable = true}, SHIFT(1373), - [3101] = {.count = 1, .reusable = true}, SHIFT(1372), - [3103] = {.count = 1, .reusable = true}, REDUCE(sym_heredoc_body, 3), - [3105] = {.count = 1, .reusable = false}, REDUCE(sym_heredoc_body, 3), - [3107] = {.count = 2, .reusable = true}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(942), - [3110] = {.count = 1, .reusable = true}, REDUCE(aux_sym_heredoc_body_repeat1, 2), - [3112] = {.count = 2, .reusable = false}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(502), - [3115] = {.count = 2, .reusable = true}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(503), - [3118] = {.count = 1, .reusable = true}, REDUCE(sym_command, 4), - [3120] = {.count = 1, .reusable = false}, REDUCE(sym_command, 4), - [3122] = {.count = 1, .reusable = true}, SHIFT(1376), - [3124] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 5, .alias_sequence_id = 4), - [3126] = {.count = 1, .reusable = true}, SHIFT(1377), - [3128] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 5), - [3130] = {.count = 1, .reusable = true}, SHIFT(1378), - [3132] = {.count = 1, .reusable = false}, SHIFT(1380), - [3134] = {.count = 1, .reusable = false}, SHIFT(1381), - [3136] = {.count = 1, .reusable = true}, SHIFT(1382), - [3138] = {.count = 1, .reusable = true}, SHIFT(1383), - [3140] = {.count = 1, .reusable = true}, SHIFT(1384), - [3142] = {.count = 1, .reusable = false}, SHIFT(1385), - [3144] = {.count = 1, .reusable = true}, SHIFT(1385), - [3146] = {.count = 1, .reusable = true}, SHIFT(1386), - [3148] = {.count = 1, .reusable = false}, SHIFT(1388), - [3150] = {.count = 1, .reusable = true}, SHIFT(1388), - [3152] = {.count = 1, .reusable = true}, SHIFT(1387), - [3154] = {.count = 1, .reusable = true}, SHIFT(1389), - [3156] = {.count = 1, .reusable = false}, SHIFT(1391), - [3158] = {.count = 1, .reusable = true}, SHIFT(1391), - [3160] = {.count = 1, .reusable = true}, SHIFT(1390), - [3162] = {.count = 1, .reusable = false}, SHIFT(1392), - [3164] = {.count = 1, .reusable = true}, SHIFT(1393), - [3166] = {.count = 1, .reusable = true}, SHIFT(1392), - [3168] = {.count = 1, .reusable = false}, SHIFT(1396), - [3170] = {.count = 1, .reusable = true}, SHIFT(1396), - [3172] = {.count = 1, .reusable = false}, SHIFT(1399), - [3174] = {.count = 1, .reusable = true}, SHIFT(1400), - [3176] = {.count = 1, .reusable = true}, SHIFT(1399), - [3178] = {.count = 1, .reusable = true}, REDUCE(sym_array, 3), - [3180] = {.count = 1, .reusable = false}, REDUCE(sym_array, 3), - [3182] = {.count = 1, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), - [3184] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(531), - [3187] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(532), - [3190] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(533), - [3193] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(534), - [3196] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(535), - [3199] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(536), - [3202] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(537), - [3205] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(538), - [3208] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(540), - [3211] = {.count = 1, .reusable = false}, SHIFT(1403), - [3213] = {.count = 1, .reusable = true}, SHIFT(1404), - [3215] = {.count = 1, .reusable = false}, SHIFT(1405), - [3217] = {.count = 1, .reusable = true}, SHIFT(1406), - [3219] = {.count = 1, .reusable = true}, SHIFT(1408), - [3221] = {.count = 1, .reusable = true}, SHIFT(1409), - [3223] = {.count = 1, .reusable = false}, SHIFT(1411), - [3225] = {.count = 1, .reusable = true}, SHIFT(1411), - [3227] = {.count = 1, .reusable = true}, SHIFT(1410), - [3229] = {.count = 1, .reusable = false}, SHIFT(1413), - [3231] = {.count = 1, .reusable = true}, SHIFT(1413), - [3233] = {.count = 1, .reusable = true}, SHIFT(1412), - [3235] = {.count = 1, .reusable = true}, SHIFT(1414), - [3237] = {.count = 1, .reusable = true}, SHIFT(1415), - [3239] = {.count = 1, .reusable = true}, SHIFT(1416), - [3241] = {.count = 1, .reusable = true}, SHIFT(1417), - [3243] = {.count = 1, .reusable = false}, SHIFT(1418), - [3245] = {.count = 1, .reusable = true}, SHIFT(1418), - [3247] = {.count = 1, .reusable = false}, SHIFT(1419), - [3249] = {.count = 1, .reusable = true}, SHIFT(1419), - [3251] = {.count = 1, .reusable = true}, SHIFT(1420), - [3253] = {.count = 1, .reusable = false}, SHIFT(1421), - [3255] = {.count = 1, .reusable = true}, SHIFT(1421), - [3257] = {.count = 1, .reusable = true}, SHIFT(1422), - [3259] = {.count = 1, .reusable = true}, SHIFT(1423), - [3261] = {.count = 1, .reusable = true}, SHIFT(1427), - [3263] = {.count = 1, .reusable = false}, SHIFT(1429), - [3265] = {.count = 1, .reusable = false}, SHIFT(1430), - [3267] = {.count = 1, .reusable = true}, SHIFT(1432), - [3269] = {.count = 1, .reusable = true}, SHIFT(1433), - [3271] = {.count = 1, .reusable = false}, SHIFT(1434), - [3273] = {.count = 1, .reusable = true}, SHIFT(1434), - [3275] = {.count = 1, .reusable = true}, SHIFT(1435), - [3277] = {.count = 1, .reusable = true}, SHIFT(1436), - [3279] = {.count = 1, .reusable = true}, SHIFT(1437), - [3281] = {.count = 1, .reusable = false}, SHIFT(1438), - [3283] = {.count = 1, .reusable = true}, SHIFT(1438), - [3285] = {.count = 1, .reusable = true}, SHIFT(1448), - [3287] = {.count = 1, .reusable = true}, SHIFT(1449), - [3289] = {.count = 1, .reusable = true}, SHIFT(1450), - [3291] = {.count = 1, .reusable = false}, SHIFT(1449), - [3293] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(565), - [3296] = {.count = 1, .reusable = false}, SHIFT(1452), - [3298] = {.count = 1, .reusable = true}, SHIFT(1453), - [3300] = {.count = 1, .reusable = false}, SHIFT(1454), - [3302] = {.count = 1, .reusable = true}, SHIFT(1455), - [3304] = {.count = 1, .reusable = true}, SHIFT(1457), - [3306] = {.count = 1, .reusable = true}, SHIFT(1458), - [3308] = {.count = 1, .reusable = false}, SHIFT(1460), - [3310] = {.count = 1, .reusable = true}, SHIFT(1460), - [3312] = {.count = 1, .reusable = true}, SHIFT(1459), - [3314] = {.count = 1, .reusable = false}, SHIFT(1462), - [3316] = {.count = 1, .reusable = true}, SHIFT(1462), - [3318] = {.count = 1, .reusable = true}, SHIFT(1461), - [3320] = {.count = 1, .reusable = true}, SHIFT(1463), - [3322] = {.count = 1, .reusable = true}, SHIFT(1464), - [3324] = {.count = 1, .reusable = true}, SHIFT(1465), - [3326] = {.count = 1, .reusable = true}, SHIFT(1466), - [3328] = {.count = 1, .reusable = false}, SHIFT(1467), - [3330] = {.count = 1, .reusable = true}, SHIFT(1467), - [3332] = {.count = 1, .reusable = false}, SHIFT(1468), - [3334] = {.count = 1, .reusable = true}, SHIFT(1468), - [3336] = {.count = 1, .reusable = true}, SHIFT(1469), - [3338] = {.count = 1, .reusable = false}, SHIFT(1470), - [3340] = {.count = 1, .reusable = true}, SHIFT(1470), - [3342] = {.count = 1, .reusable = false}, SHIFT(1471), - [3344] = {.count = 1, .reusable = true}, SHIFT(1471), - [3346] = {.count = 1, .reusable = true}, SHIFT(1472), - [3348] = {.count = 1, .reusable = false}, SHIFT(1474), - [3350] = {.count = 1, .reusable = false}, SHIFT(1475), - [3352] = {.count = 1, .reusable = true}, SHIFT(1476), - [3354] = {.count = 1, .reusable = true}, SHIFT(1477), - [3356] = {.count = 1, .reusable = true}, SHIFT(1478), - [3358] = {.count = 1, .reusable = false}, SHIFT(1479), - [3360] = {.count = 1, .reusable = true}, SHIFT(1479), - [3362] = {.count = 1, .reusable = true}, SHIFT(1480), - [3364] = {.count = 1, .reusable = false}, SHIFT(1482), - [3366] = {.count = 1, .reusable = true}, SHIFT(1482), - [3368] = {.count = 1, .reusable = true}, SHIFT(1481), - [3370] = {.count = 1, .reusable = true}, SHIFT(1483), - [3372] = {.count = 1, .reusable = false}, SHIFT(1485), - [3374] = {.count = 1, .reusable = true}, SHIFT(1485), - [3376] = {.count = 1, .reusable = true}, SHIFT(1484), - [3378] = {.count = 1, .reusable = false}, SHIFT(1486), - [3380] = {.count = 1, .reusable = true}, SHIFT(1487), - [3382] = {.count = 1, .reusable = true}, SHIFT(1486), - [3384] = {.count = 1, .reusable = false}, SHIFT(1490), - [3386] = {.count = 1, .reusable = true}, SHIFT(1490), - [3388] = {.count = 1, .reusable = false}, SHIFT(1493), - [3390] = {.count = 1, .reusable = true}, SHIFT(1494), - [3392] = {.count = 1, .reusable = true}, SHIFT(1493), - [3394] = {.count = 1, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), - [3396] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(589), - [3399] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(590), - [3402] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(591), - [3405] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(592), - [3408] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(593), - [3411] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(594), - [3414] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(595), - [3417] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(596), - [3420] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(592), - [3423] = {.count = 1, .reusable = false}, SHIFT(1498), - [3425] = {.count = 1, .reusable = false}, SHIFT(1501), - [3427] = {.count = 1, .reusable = true}, SHIFT(1501), - [3429] = {.count = 1, .reusable = true}, SHIFT(1502), - [3431] = {.count = 1, .reusable = true}, SHIFT(1503), - [3433] = {.count = 1, .reusable = false}, SHIFT(1504), - [3435] = {.count = 1, .reusable = true}, SHIFT(1504), - [3437] = {.count = 1, .reusable = true}, SHIFT(1505), - [3439] = {.count = 1, .reusable = true}, SHIFT(1506), - [3441] = {.count = 1, .reusable = true}, SHIFT(1507), - [3443] = {.count = 1, .reusable = true}, SHIFT(1508), - [3445] = {.count = 1, .reusable = true}, REDUCE(sym_do_group, 3), - [3447] = {.count = 1, .reusable = false}, REDUCE(sym_do_group, 3), - [3449] = {.count = 1, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), - [3451] = {.count = 1, .reusable = true}, REDUCE(sym_while_statement, 5), - [3453] = {.count = 1, .reusable = false}, REDUCE(sym_while_statement, 5), - [3455] = {.count = 1, .reusable = true}, SHIFT(1511), - [3457] = {.count = 1, .reusable = false}, REDUCE(sym_else_clause, 2), - [3459] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 5), - [3461] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 5), - [3463] = {.count = 1, .reusable = true}, SHIFT(1513), - [3465] = {.count = 1, .reusable = true}, REDUCE(aux_sym_if_statement_repeat1, 2), - [3467] = {.count = 2, .reusable = true}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(631), - [3470] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 5, .alias_sequence_id = 2), - [3472] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 5, .alias_sequence_id = 2), - [3474] = {.count = 1, .reusable = true}, SHIFT(1515), - [3476] = {.count = 1, .reusable = true}, SHIFT(1516), - [3478] = {.count = 1, .reusable = true}, SHIFT(1519), - [3480] = {.count = 1, .reusable = true}, SHIFT(1521), - [3482] = {.count = 1, .reusable = false}, SHIFT(1521), - [3484] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 5), - [3486] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 5), - [3488] = {.count = 1, .reusable = true}, SHIFT(1525), - [3490] = {.count = 1, .reusable = false}, SHIFT(1525), - [3492] = {.count = 1, .reusable = true}, SHIFT(1528), - [3494] = {.count = 1, .reusable = true}, SHIFT(1529), - [3496] = {.count = 1, .reusable = false}, SHIFT(1530), - [3498] = {.count = 1, .reusable = true}, SHIFT(1531), - [3500] = {.count = 1, .reusable = true}, SHIFT(1533), - [3502] = {.count = 1, .reusable = true}, SHIFT(1534), - [3504] = {.count = 1, .reusable = true}, SHIFT(1535), - [3506] = {.count = 1, .reusable = true}, SHIFT(1536), - [3508] = {.count = 1, .reusable = false}, SHIFT(1537), - [3510] = {.count = 1, .reusable = true}, SHIFT(1537), - [3512] = {.count = 1, .reusable = false}, SHIFT(1538), - [3514] = {.count = 1, .reusable = true}, SHIFT(1538), - [3516] = {.count = 1, .reusable = true}, SHIFT(1539), - [3518] = {.count = 1, .reusable = true}, SHIFT(1540), - [3520] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 5), - [3522] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 5), - [3524] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 3), - [3526] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 3), - [3528] = {.count = 1, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), - [3530] = {.count = 1, .reusable = true}, SHIFT(1542), - [3532] = {.count = 1, .reusable = true}, SHIFT(1543), - [3534] = {.count = 1, .reusable = false}, SHIFT(1548), - [3536] = {.count = 1, .reusable = true}, SHIFT(1548), - [3538] = {.count = 1, .reusable = true}, SHIFT(1549), - [3540] = {.count = 1, .reusable = true}, SHIFT(1550), - [3542] = {.count = 1, .reusable = false}, SHIFT(1551), - [3544] = {.count = 1, .reusable = true}, SHIFT(1551), - [3546] = {.count = 1, .reusable = true}, SHIFT(1552), - [3548] = {.count = 1, .reusable = true}, SHIFT(1553), - [3550] = {.count = 1, .reusable = true}, SHIFT(1554), - [3552] = {.count = 1, .reusable = true}, SHIFT(1555), - [3554] = {.count = 1, .reusable = true}, REDUCE(sym_subshell, 5), - [3556] = {.count = 1, .reusable = false}, REDUCE(sym_subshell, 5), - [3558] = {.count = 1, .reusable = true}, SHIFT(1558), - [3560] = {.count = 1, .reusable = true}, SHIFT(1559), - [3562] = {.count = 1, .reusable = true}, SHIFT(1560), - [3564] = {.count = 1, .reusable = false}, SHIFT(1561), - [3566] = {.count = 1, .reusable = true}, SHIFT(1562), - [3568] = {.count = 1, .reusable = true}, SHIFT(1564), - [3570] = {.count = 1, .reusable = true}, SHIFT(1565), - [3572] = {.count = 1, .reusable = true}, SHIFT(1566), - [3574] = {.count = 1, .reusable = true}, SHIFT(1567), - [3576] = {.count = 1, .reusable = false}, SHIFT(1568), - [3578] = {.count = 1, .reusable = true}, SHIFT(1568), - [3580] = {.count = 1, .reusable = false}, SHIFT(1569), - [3582] = {.count = 1, .reusable = true}, SHIFT(1569), - [3584] = {.count = 1, .reusable = true}, SHIFT(1570), - [3586] = {.count = 1, .reusable = true}, SHIFT(1571), - [3588] = {.count = 1, .reusable = true}, SHIFT(1572), - [3590] = {.count = 1, .reusable = true}, SHIFT(1573), - [3592] = {.count = 1, .reusable = true}, SHIFT(1575), - [3594] = {.count = 1, .reusable = false}, SHIFT(1577), - [3596] = {.count = 1, .reusable = false}, SHIFT(1578), - [3598] = {.count = 1, .reusable = true}, SHIFT(1580), - [3600] = {.count = 1, .reusable = true}, SHIFT(1581), - [3602] = {.count = 1, .reusable = false}, SHIFT(1582), - [3604] = {.count = 1, .reusable = true}, SHIFT(1582), - [3606] = {.count = 1, .reusable = true}, SHIFT(1583), - [3608] = {.count = 1, .reusable = true}, SHIFT(1584), - [3610] = {.count = 1, .reusable = true}, SHIFT(1585), - [3612] = {.count = 1, .reusable = false}, SHIFT(1586), - [3614] = {.count = 1, .reusable = true}, SHIFT(1586), - [3616] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(736), - [3619] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(737), - [3622] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(737), - [3625] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(738), - [3628] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(738), - [3631] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(739), - [3634] = {.count = 1, .reusable = true}, SHIFT(1596), - [3636] = {.count = 1, .reusable = true}, SHIFT(1597), - [3638] = {.count = 1, .reusable = false}, SHIFT(1598), - [3640] = {.count = 1, .reusable = true}, SHIFT(1599), - [3642] = {.count = 1, .reusable = true}, SHIFT(1601), - [3644] = {.count = 1, .reusable = true}, SHIFT(1602), - [3646] = {.count = 1, .reusable = true}, SHIFT(1603), - [3648] = {.count = 1, .reusable = true}, SHIFT(1604), - [3650] = {.count = 1, .reusable = false}, SHIFT(1605), - [3652] = {.count = 1, .reusable = true}, SHIFT(1605), - [3654] = {.count = 1, .reusable = false}, SHIFT(1606), - [3656] = {.count = 1, .reusable = true}, SHIFT(1606), - [3658] = {.count = 1, .reusable = true}, SHIFT(1607), - [3660] = {.count = 1, .reusable = true}, SHIFT(1608), - [3662] = {.count = 1, .reusable = true}, SHIFT(1609), - [3664] = {.count = 1, .reusable = true}, SHIFT(1610), - [3666] = {.count = 1, .reusable = true}, SHIFT(1611), - [3668] = {.count = 1, .reusable = false}, SHIFT(1612), - [3670] = {.count = 1, .reusable = true}, SHIFT(1613), - [3672] = {.count = 1, .reusable = true}, SHIFT(1615), - [3674] = {.count = 1, .reusable = true}, SHIFT(1616), - [3676] = {.count = 1, .reusable = true}, SHIFT(1617), - [3678] = {.count = 1, .reusable = true}, SHIFT(1618), - [3680] = {.count = 1, .reusable = false}, SHIFT(1619), - [3682] = {.count = 1, .reusable = true}, SHIFT(1619), - [3684] = {.count = 1, .reusable = false}, SHIFT(1620), - [3686] = {.count = 1, .reusable = true}, SHIFT(1620), - [3688] = {.count = 1, .reusable = true}, SHIFT(1621), - [3690] = {.count = 1, .reusable = true}, SHIFT(1622), - [3692] = {.count = 1, .reusable = true}, SHIFT(1623), - [3694] = {.count = 1, .reusable = true}, SHIFT(1624), - [3696] = {.count = 1, .reusable = false}, SHIFT(1625), - [3698] = {.count = 1, .reusable = true}, SHIFT(1626), - [3700] = {.count = 1, .reusable = true}, SHIFT(1628), - [3702] = {.count = 1, .reusable = true}, SHIFT(1629), - [3704] = {.count = 1, .reusable = true}, SHIFT(1630), - [3706] = {.count = 1, .reusable = true}, SHIFT(1631), - [3708] = {.count = 1, .reusable = false}, SHIFT(1632), - [3710] = {.count = 1, .reusable = true}, SHIFT(1632), - [3712] = {.count = 1, .reusable = false}, SHIFT(1633), - [3714] = {.count = 1, .reusable = true}, SHIFT(1633), - [3716] = {.count = 1, .reusable = true}, SHIFT(1634), - [3718] = {.count = 1, .reusable = true}, SHIFT(1635), - [3720] = {.count = 1, .reusable = true}, SHIFT(1636), - [3722] = {.count = 1, .reusable = true}, SHIFT(1637), - [3724] = {.count = 1, .reusable = false}, SHIFT(1638), - [3726] = {.count = 1, .reusable = true}, SHIFT(1639), - [3728] = {.count = 1, .reusable = true}, SHIFT(1641), - [3730] = {.count = 1, .reusable = true}, SHIFT(1642), - [3732] = {.count = 1, .reusable = true}, SHIFT(1643), - [3734] = {.count = 1, .reusable = true}, SHIFT(1644), - [3736] = {.count = 1, .reusable = false}, SHIFT(1645), - [3738] = {.count = 1, .reusable = true}, SHIFT(1645), - [3740] = {.count = 1, .reusable = false}, SHIFT(1646), - [3742] = {.count = 1, .reusable = true}, SHIFT(1646), - [3744] = {.count = 1, .reusable = true}, SHIFT(1647), - [3746] = {.count = 1, .reusable = true}, SHIFT(1648), - [3748] = {.count = 1, .reusable = true}, SHIFT(1649), - [3750] = {.count = 1, .reusable = true}, SHIFT(1650), - [3752] = {.count = 1, .reusable = false}, SHIFT(1651), - [3754] = {.count = 1, .reusable = true}, SHIFT(1652), - [3756] = {.count = 1, .reusable = true}, SHIFT(1654), - [3758] = {.count = 1, .reusable = true}, SHIFT(1655), - [3760] = {.count = 1, .reusable = true}, SHIFT(1656), - [3762] = {.count = 1, .reusable = true}, SHIFT(1657), - [3764] = {.count = 1, .reusable = false}, SHIFT(1658), - [3766] = {.count = 1, .reusable = true}, SHIFT(1658), - [3768] = {.count = 1, .reusable = false}, SHIFT(1659), - [3770] = {.count = 1, .reusable = true}, SHIFT(1659), - [3772] = {.count = 1, .reusable = true}, SHIFT(1660), - [3774] = {.count = 1, .reusable = true}, SHIFT(1661), - [3776] = {.count = 1, .reusable = true}, SHIFT(1662), - [3778] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 4, .alias_sequence_id = 4), - [3780] = {.count = 1, .reusable = true}, SHIFT(1663), - [3782] = {.count = 1, .reusable = true}, SHIFT(1664), - [3784] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 4), - [3786] = {.count = 1, .reusable = true}, SHIFT(1665), - [3788] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 6), - [3790] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 6), - [3792] = {.count = 1, .reusable = false}, SHIFT(1667), - [3794] = {.count = 1, .reusable = false}, SHIFT(1668), - [3796] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5), - [3798] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5), - [3800] = {.count = 1, .reusable = true}, SHIFT(1669), - [3802] = {.count = 1, .reusable = true}, SHIFT(1670), - [3804] = {.count = 1, .reusable = true}, SHIFT(1671), - [3806] = {.count = 1, .reusable = false}, SHIFT(1672), - [3808] = {.count = 1, .reusable = true}, SHIFT(1672), - [3810] = {.count = 1, .reusable = true}, SHIFT(1673), - [3812] = {.count = 1, .reusable = false}, SHIFT(1675), - [3814] = {.count = 1, .reusable = true}, SHIFT(1675), - [3816] = {.count = 1, .reusable = true}, SHIFT(1674), - [3818] = {.count = 1, .reusable = true}, SHIFT(1676), - [3820] = {.count = 1, .reusable = false}, SHIFT(1678), - [3822] = {.count = 1, .reusable = true}, SHIFT(1678), - [3824] = {.count = 1, .reusable = true}, SHIFT(1677), - [3826] = {.count = 1, .reusable = false}, SHIFT(1679), - [3828] = {.count = 1, .reusable = true}, SHIFT(1680), - [3830] = {.count = 1, .reusable = true}, SHIFT(1679), - [3832] = {.count = 1, .reusable = false}, SHIFT(1683), - [3834] = {.count = 1, .reusable = true}, SHIFT(1683), - [3836] = {.count = 1, .reusable = false}, SHIFT(1686), - [3838] = {.count = 1, .reusable = true}, SHIFT(1687), - [3840] = {.count = 1, .reusable = true}, SHIFT(1686), - [3842] = {.count = 1, .reusable = true}, SHIFT(1690), - [3844] = {.count = 1, .reusable = true}, SHIFT(1691), - [3846] = {.count = 1, .reusable = true}, SHIFT(1692), - [3848] = {.count = 1, .reusable = false}, SHIFT(1693), - [3850] = {.count = 1, .reusable = true}, SHIFT(1693), - [3852] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 5), - [3854] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 5), - [3856] = {.count = 1, .reusable = false}, SHIFT(1694), - [3858] = {.count = 1, .reusable = true}, SHIFT(1694), - [3860] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(888), - [3863] = {.count = 1, .reusable = false}, SHIFT(1695), - [3865] = {.count = 1, .reusable = true}, SHIFT(1696), - [3867] = {.count = 1, .reusable = false}, SHIFT(1697), - [3869] = {.count = 1, .reusable = true}, SHIFT(1698), - [3871] = {.count = 1, .reusable = true}, SHIFT(1700), - [3873] = {.count = 1, .reusable = true}, SHIFT(1701), - [3875] = {.count = 1, .reusable = false}, SHIFT(1703), - [3877] = {.count = 1, .reusable = true}, SHIFT(1703), - [3879] = {.count = 1, .reusable = true}, SHIFT(1702), - [3881] = {.count = 1, .reusable = false}, SHIFT(1705), - [3883] = {.count = 1, .reusable = true}, SHIFT(1705), - [3885] = {.count = 1, .reusable = true}, SHIFT(1704), - [3887] = {.count = 1, .reusable = true}, SHIFT(1706), - [3889] = {.count = 1, .reusable = true}, SHIFT(1707), - [3891] = {.count = 1, .reusable = true}, SHIFT(1708), - [3893] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 3), - [3895] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 3), - [3897] = {.count = 1, .reusable = true}, SHIFT(1709), - [3899] = {.count = 1, .reusable = true}, SHIFT(1710), - [3901] = {.count = 1, .reusable = false}, SHIFT(1711), - [3903] = {.count = 1, .reusable = true}, SHIFT(1711), - [3905] = {.count = 1, .reusable = false}, SHIFT(1712), - [3907] = {.count = 1, .reusable = true}, SHIFT(1712), - [3909] = {.count = 1, .reusable = true}, SHIFT(1713), - [3911] = {.count = 1, .reusable = false}, SHIFT(1714), - [3913] = {.count = 1, .reusable = true}, SHIFT(1714), - [3915] = {.count = 1, .reusable = true}, REDUCE(sym_command_substitution, 5), - [3917] = {.count = 1, .reusable = false}, REDUCE(sym_command_substitution, 5), - [3919] = {.count = 1, .reusable = false}, SHIFT(1716), - [3921] = {.count = 1, .reusable = true}, SHIFT(1716), - [3923] = {.count = 1, .reusable = true}, SHIFT(1717), - [3925] = {.count = 1, .reusable = true}, SHIFT(1718), - [3927] = {.count = 1, .reusable = false}, SHIFT(1719), - [3929] = {.count = 1, .reusable = true}, SHIFT(1719), - [3931] = {.count = 1, .reusable = true}, SHIFT(1720), - [3933] = {.count = 1, .reusable = true}, SHIFT(1721), - [3935] = {.count = 1, .reusable = true}, SHIFT(1722), - [3937] = {.count = 1, .reusable = true}, SHIFT(1723), - [3939] = {.count = 1, .reusable = true}, REDUCE(sym_process_substitution, 5), - [3941] = {.count = 1, .reusable = false}, REDUCE(sym_process_substitution, 5), - [3943] = {.count = 1, .reusable = true}, SHIFT(1726), - [3945] = {.count = 1, .reusable = false}, SHIFT(1727), - [3947] = {.count = 1, .reusable = true}, SHIFT(1728), - [3949] = {.count = 1, .reusable = true}, SHIFT(1730), - [3951] = {.count = 1, .reusable = true}, SHIFT(1731), - [3953] = {.count = 1, .reusable = false}, SHIFT(1733), - [3955] = {.count = 1, .reusable = true}, SHIFT(1733), - [3957] = {.count = 1, .reusable = true}, SHIFT(1732), - [3959] = {.count = 1, .reusable = false}, SHIFT(1735), - [3961] = {.count = 1, .reusable = true}, SHIFT(1735), - [3963] = {.count = 1, .reusable = true}, SHIFT(1734), - [3965] = {.count = 1, .reusable = true}, SHIFT(1736), - [3967] = {.count = 1, .reusable = true}, SHIFT(1737), - [3969] = {.count = 1, .reusable = true}, SHIFT(1738), - [3971] = {.count = 1, .reusable = true}, REDUCE(sym_command, 5), - [3973] = {.count = 1, .reusable = false}, REDUCE(sym_command, 5), - [3975] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 6, .alias_sequence_id = 4), - [3977] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 6), - [3979] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(955), - [3982] = {.count = 1, .reusable = false}, SHIFT(1739), - [3984] = {.count = 1, .reusable = true}, SHIFT(1740), - [3986] = {.count = 1, .reusable = false}, SHIFT(1741), - [3988] = {.count = 1, .reusable = true}, SHIFT(1742), - [3990] = {.count = 1, .reusable = true}, SHIFT(1744), - [3992] = {.count = 1, .reusable = true}, SHIFT(1745), - [3994] = {.count = 1, .reusable = false}, SHIFT(1747), - [3996] = {.count = 1, .reusable = true}, SHIFT(1747), - [3998] = {.count = 1, .reusable = true}, SHIFT(1746), - [4000] = {.count = 1, .reusable = false}, SHIFT(1749), - [4002] = {.count = 1, .reusable = true}, SHIFT(1749), - [4004] = {.count = 1, .reusable = true}, SHIFT(1748), - [4006] = {.count = 1, .reusable = true}, SHIFT(1750), - [4008] = {.count = 1, .reusable = true}, SHIFT(1751), - [4010] = {.count = 1, .reusable = true}, SHIFT(1752), - [4012] = {.count = 1, .reusable = true}, SHIFT(1753), - [4014] = {.count = 1, .reusable = false}, SHIFT(1754), - [4016] = {.count = 1, .reusable = true}, SHIFT(1754), - [4018] = {.count = 1, .reusable = false}, SHIFT(1755), - [4020] = {.count = 1, .reusable = true}, SHIFT(1755), - [4022] = {.count = 1, .reusable = true}, SHIFT(1756), - [4024] = {.count = 1, .reusable = false}, SHIFT(1757), - [4026] = {.count = 1, .reusable = true}, SHIFT(1757), - [4028] = {.count = 1, .reusable = true}, SHIFT(1758), - [4030] = {.count = 1, .reusable = true}, SHIFT(1759), - [4032] = {.count = 1, .reusable = false}, SHIFT(1760), - [4034] = {.count = 1, .reusable = true}, SHIFT(1761), - [4036] = {.count = 1, .reusable = true}, SHIFT(1763), - [4038] = {.count = 1, .reusable = true}, SHIFT(1764), - [4040] = {.count = 1, .reusable = true}, SHIFT(1765), - [4042] = {.count = 1, .reusable = true}, SHIFT(1766), - [4044] = {.count = 1, .reusable = false}, SHIFT(1767), - [4046] = {.count = 1, .reusable = true}, SHIFT(1767), - [4048] = {.count = 1, .reusable = false}, SHIFT(1768), - [4050] = {.count = 1, .reusable = true}, SHIFT(1768), - [4052] = {.count = 1, .reusable = true}, SHIFT(1769), - [4054] = {.count = 1, .reusable = true}, SHIFT(1770), - [4056] = {.count = 1, .reusable = true}, SHIFT(1772), - [4058] = {.count = 1, .reusable = true}, REDUCE(sym_c_style_for_statement, 6), - [4060] = {.count = 1, .reusable = false}, REDUCE(sym_c_style_for_statement, 6), - [4062] = {.count = 1, .reusable = true}, SHIFT(1774), - [4064] = {.count = 1, .reusable = true}, SHIFT(1775), - [4066] = {.count = 1, .reusable = false}, SHIFT(1777), - [4068] = {.count = 1, .reusable = false}, SHIFT(1778), - [4070] = {.count = 1, .reusable = true}, SHIFT(1779), - [4072] = {.count = 1, .reusable = true}, SHIFT(1780), - [4074] = {.count = 1, .reusable = true}, SHIFT(1781), - [4076] = {.count = 1, .reusable = false}, SHIFT(1782), - [4078] = {.count = 1, .reusable = true}, SHIFT(1782), - [4080] = {.count = 1, .reusable = true}, SHIFT(1783), - [4082] = {.count = 1, .reusable = false}, SHIFT(1785), - [4084] = {.count = 1, .reusable = true}, SHIFT(1785), - [4086] = {.count = 1, .reusable = true}, SHIFT(1784), - [4088] = {.count = 1, .reusable = true}, SHIFT(1786), - [4090] = {.count = 1, .reusable = false}, SHIFT(1788), - [4092] = {.count = 1, .reusable = true}, SHIFT(1788), - [4094] = {.count = 1, .reusable = true}, SHIFT(1787), - [4096] = {.count = 1, .reusable = false}, SHIFT(1789), - [4098] = {.count = 1, .reusable = true}, SHIFT(1790), - [4100] = {.count = 1, .reusable = true}, SHIFT(1789), - [4102] = {.count = 1, .reusable = false}, SHIFT(1793), - [4104] = {.count = 1, .reusable = true}, SHIFT(1793), - [4106] = {.count = 1, .reusable = false}, SHIFT(1796), - [4108] = {.count = 1, .reusable = true}, SHIFT(1797), - [4110] = {.count = 1, .reusable = true}, SHIFT(1796), - [4112] = {.count = 1, .reusable = true}, SHIFT(1800), - [4114] = {.count = 1, .reusable = false}, SHIFT(1004), - [4116] = {.count = 1, .reusable = false}, SHIFT(1006), - [4118] = {.count = 1, .reusable = false}, SHIFT(1007), - [4120] = {.count = 1, .reusable = false}, SHIFT(1010), - [4122] = {.count = 1, .reusable = false}, SHIFT(1011), - [4124] = {.count = 1, .reusable = false}, SHIFT(1012), - [4126] = {.count = 1, .reusable = false}, SHIFT(1013), - [4128] = {.count = 1, .reusable = false}, SHIFT(1802), - [4130] = {.count = 1, .reusable = true}, SHIFT(1803), - [4132] = {.count = 1, .reusable = true}, SHIFT(1804), - [4134] = {.count = 1, .reusable = true}, SHIFT(1805), - [4136] = {.count = 1, .reusable = false}, SHIFT(1806), - [4138] = {.count = 1, .reusable = true}, SHIFT(1807), - [4140] = {.count = 1, .reusable = true}, SHIFT(1809), - [4142] = {.count = 1, .reusable = true}, SHIFT(1810), - [4144] = {.count = 1, .reusable = true}, SHIFT(1811), - [4146] = {.count = 1, .reusable = true}, SHIFT(1812), - [4148] = {.count = 1, .reusable = false}, SHIFT(1813), - [4150] = {.count = 1, .reusable = true}, SHIFT(1813), - [4152] = {.count = 1, .reusable = false}, SHIFT(1814), - [4154] = {.count = 1, .reusable = true}, SHIFT(1814), - [4156] = {.count = 1, .reusable = true}, SHIFT(1815), - [4158] = {.count = 1, .reusable = true}, SHIFT(1816), - [4160] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1045), - [4163] = {.count = 1, .reusable = false}, SHIFT(1818), - [4165] = {.count = 1, .reusable = true}, SHIFT(1819), - [4167] = {.count = 1, .reusable = false}, SHIFT(1820), - [4169] = {.count = 1, .reusable = true}, SHIFT(1821), - [4171] = {.count = 1, .reusable = true}, SHIFT(1823), - [4173] = {.count = 1, .reusable = true}, SHIFT(1824), - [4175] = {.count = 1, .reusable = false}, SHIFT(1826), - [4177] = {.count = 1, .reusable = true}, SHIFT(1826), - [4179] = {.count = 1, .reusable = true}, SHIFT(1825), - [4181] = {.count = 1, .reusable = false}, SHIFT(1828), - [4183] = {.count = 1, .reusable = true}, SHIFT(1828), - [4185] = {.count = 1, .reusable = true}, SHIFT(1827), - [4187] = {.count = 1, .reusable = true}, SHIFT(1829), - [4189] = {.count = 1, .reusable = true}, SHIFT(1830), - [4191] = {.count = 1, .reusable = true}, SHIFT(1831), - [4193] = {.count = 1, .reusable = true}, SHIFT(1832), - [4195] = {.count = 1, .reusable = false}, SHIFT(1833), - [4197] = {.count = 1, .reusable = true}, SHIFT(1833), - [4199] = {.count = 1, .reusable = false}, SHIFT(1834), - [4201] = {.count = 1, .reusable = true}, SHIFT(1834), - [4203] = {.count = 1, .reusable = true}, SHIFT(1835), - [4205] = {.count = 1, .reusable = false}, SHIFT(1836), - [4207] = {.count = 1, .reusable = true}, SHIFT(1836), - [4209] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 6), - [4211] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 6), - [4213] = {.count = 1, .reusable = true}, SHIFT(1837), - [4215] = {.count = 1, .reusable = true}, SHIFT(1838), - [4217] = {.count = 1, .reusable = true}, SHIFT(1840), - [4219] = {.count = 1, .reusable = true}, SHIFT(1841), - [4221] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1075), - [4224] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1076), - [4227] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1076), - [4230] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1077), - [4233] = {.count = 1, .reusable = false}, REDUCE(sym_elif_clause, 3), - [4235] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 6), - [4237] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 6), - [4239] = {.count = 1, .reusable = true}, SHIFT(1844), - [4241] = {.count = 1, .reusable = true}, SHIFT(1845), - [4243] = {.count = 1, .reusable = true}, SHIFT(1846), - [4245] = {.count = 1, .reusable = true}, SHIFT(1848), - [4247] = {.count = 1, .reusable = false}, SHIFT(1849), - [4249] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 2, .alias_sequence_id = 1), - [4251] = {.count = 1, .reusable = true}, SHIFT(1850), - [4253] = {.count = 1, .reusable = false}, SHIFT(1851), - [4255] = {.count = 1, .reusable = false}, SHIFT(1852), - [4257] = {.count = 1, .reusable = false}, SHIFT(1853), - [4259] = {.count = 1, .reusable = true}, SHIFT(1854), - [4261] = {.count = 1, .reusable = false}, SHIFT(1855), - [4263] = {.count = 1, .reusable = false}, SHIFT(1856), - [4265] = {.count = 1, .reusable = false}, SHIFT(1857), - [4267] = {.count = 1, .reusable = true}, SHIFT(1858), - [4269] = {.count = 1, .reusable = false}, SHIFT(1859), - [4271] = {.count = 1, .reusable = true}, SHIFT(1860), - [4273] = {.count = 1, .reusable = true}, SHIFT(1861), - [4275] = {.count = 1, .reusable = true}, SHIFT(1862), - [4277] = {.count = 1, .reusable = true}, SHIFT(1863), - [4279] = {.count = 1, .reusable = true}, SHIFT(1864), - [4281] = {.count = 1, .reusable = false}, SHIFT(1865), - [4283] = {.count = 1, .reusable = true}, SHIFT(1873), - [4285] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 2), - [4287] = {.count = 1, .reusable = true}, SHIFT(1876), - [4289] = {.count = 1, .reusable = true}, SHIFT(1880), - [4291] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 2), - [4293] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 2), - [4295] = {.count = 1, .reusable = true}, SHIFT(1881), - [4297] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1882), - [4300] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(100), - [4303] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(101), - [4306] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1883), - [4309] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(103), - [4312] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(104), - [4315] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(105), - [4318] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(106), - [4321] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 6), - [4323] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 6), - [4325] = {.count = 1, .reusable = true}, SHIFT(1886), - [4327] = {.count = 1, .reusable = true}, SHIFT(1888), - [4329] = {.count = 1, .reusable = true}, SHIFT(1889), - [4331] = {.count = 1, .reusable = true}, SHIFT(1890), - [4333] = {.count = 1, .reusable = false}, SHIFT(1891), - [4335] = {.count = 1, .reusable = true}, SHIFT(1891), - [4337] = {.count = 1, .reusable = false}, SHIFT(1892), - [4339] = {.count = 1, .reusable = true}, SHIFT(1892), - [4341] = {.count = 1, .reusable = true}, SHIFT(1893), - [4343] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 6), - [4345] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 6), - [4347] = {.count = 1, .reusable = true}, SHIFT(1895), - [4349] = {.count = 1, .reusable = true}, SHIFT(1896), - [4351] = {.count = 1, .reusable = true}, SHIFT(1898), - [4353] = {.count = 1, .reusable = true}, SHIFT(1899), - [4355] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1141), - [4358] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1142), - [4361] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1142), - [4364] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1143), - [4367] = {.count = 1, .reusable = true}, SHIFT(1901), - [4369] = {.count = 1, .reusable = true}, SHIFT(1902), - [4371] = {.count = 1, .reusable = true}, SHIFT(1903), - [4373] = {.count = 1, .reusable = false}, SHIFT(1904), - [4375] = {.count = 1, .reusable = true}, SHIFT(1904), - [4377] = {.count = 1, .reusable = false}, SHIFT(1905), - [4379] = {.count = 1, .reusable = true}, SHIFT(1905), - [4381] = {.count = 1, .reusable = true}, SHIFT(1906), - [4383] = {.count = 1, .reusable = true}, SHIFT(1907), - [4385] = {.count = 1, .reusable = false}, SHIFT(1909), - [4387] = {.count = 1, .reusable = false}, SHIFT(1910), - [4389] = {.count = 1, .reusable = true}, SHIFT(1911), - [4391] = {.count = 1, .reusable = true}, SHIFT(1912), - [4393] = {.count = 1, .reusable = true}, SHIFT(1913), - [4395] = {.count = 1, .reusable = false}, SHIFT(1914), - [4397] = {.count = 1, .reusable = true}, SHIFT(1914), - [4399] = {.count = 1, .reusable = true}, SHIFT(1915), - [4401] = {.count = 1, .reusable = false}, SHIFT(1917), - [4403] = {.count = 1, .reusable = true}, SHIFT(1917), - [4405] = {.count = 1, .reusable = true}, SHIFT(1916), - [4407] = {.count = 1, .reusable = true}, SHIFT(1918), - [4409] = {.count = 1, .reusable = false}, SHIFT(1920), - [4411] = {.count = 1, .reusable = true}, SHIFT(1920), - [4413] = {.count = 1, .reusable = true}, SHIFT(1919), - [4415] = {.count = 1, .reusable = false}, SHIFT(1921), - [4417] = {.count = 1, .reusable = true}, SHIFT(1922), - [4419] = {.count = 1, .reusable = true}, SHIFT(1921), - [4421] = {.count = 1, .reusable = false}, SHIFT(1925), - [4423] = {.count = 1, .reusable = true}, SHIFT(1925), - [4425] = {.count = 1, .reusable = false}, SHIFT(1928), - [4427] = {.count = 1, .reusable = true}, SHIFT(1929), - [4429] = {.count = 1, .reusable = true}, SHIFT(1928), - [4431] = {.count = 1, .reusable = true}, SHIFT(1932), - [4433] = {.count = 1, .reusable = true}, SHIFT(1933), - [4435] = {.count = 1, .reusable = true}, SHIFT(1934), - [4437] = {.count = 1, .reusable = false}, SHIFT(1935), - [4439] = {.count = 1, .reusable = true}, SHIFT(1935), - [4441] = {.count = 1, .reusable = false}, SHIFT(1936), - [4443] = {.count = 1, .reusable = true}, SHIFT(1936), - [4445] = {.count = 1, .reusable = true}, SHIFT(1937), - [4447] = {.count = 1, .reusable = true}, SHIFT(1938), - [4449] = {.count = 1, .reusable = true}, SHIFT(1939), - [4451] = {.count = 1, .reusable = true}, SHIFT(1940), - [4453] = {.count = 1, .reusable = false}, SHIFT(1941), - [4455] = {.count = 1, .reusable = true}, SHIFT(1941), - [4457] = {.count = 1, .reusable = false}, SHIFT(1942), - [4459] = {.count = 1, .reusable = true}, SHIFT(1942), - [4461] = {.count = 1, .reusable = true}, SHIFT(1943), - [4463] = {.count = 1, .reusable = true}, SHIFT(1944), - [4465] = {.count = 1, .reusable = true}, SHIFT(1945), - [4467] = {.count = 1, .reusable = true}, SHIFT(1946), - [4469] = {.count = 1, .reusable = false}, SHIFT(1947), - [4471] = {.count = 1, .reusable = true}, SHIFT(1947), - [4473] = {.count = 1, .reusable = false}, SHIFT(1948), - [4475] = {.count = 1, .reusable = true}, SHIFT(1948), - [4477] = {.count = 1, .reusable = true}, SHIFT(1949), - [4479] = {.count = 1, .reusable = true}, SHIFT(1950), - [4481] = {.count = 1, .reusable = true}, SHIFT(1951), - [4483] = {.count = 1, .reusable = true}, SHIFT(1952), - [4485] = {.count = 1, .reusable = false}, SHIFT(1953), - [4487] = {.count = 1, .reusable = true}, SHIFT(1953), - [4489] = {.count = 1, .reusable = false}, SHIFT(1954), - [4491] = {.count = 1, .reusable = true}, SHIFT(1954), - [4493] = {.count = 1, .reusable = true}, SHIFT(1955), - [4495] = {.count = 1, .reusable = true}, SHIFT(1956), - [4497] = {.count = 1, .reusable = true}, SHIFT(1957), - [4499] = {.count = 1, .reusable = true}, SHIFT(1958), - [4501] = {.count = 1, .reusable = false}, SHIFT(1959), - [4503] = {.count = 1, .reusable = true}, SHIFT(1959), - [4505] = {.count = 1, .reusable = false}, SHIFT(1960), - [4507] = {.count = 1, .reusable = true}, SHIFT(1960), - [4509] = {.count = 1, .reusable = true}, SHIFT(1961), - [4511] = {.count = 1, .reusable = true}, SHIFT(1962), - [4513] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 5, .alias_sequence_id = 4), - [4515] = {.count = 1, .reusable = true}, SHIFT(1963), - [4517] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 5), - [4519] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1291), - [4522] = {.count = 1, .reusable = false}, SHIFT(1964), - [4524] = {.count = 1, .reusable = true}, SHIFT(1965), - [4526] = {.count = 1, .reusable = false}, SHIFT(1966), - [4528] = {.count = 1, .reusable = true}, SHIFT(1967), - [4530] = {.count = 1, .reusable = true}, SHIFT(1969), - [4532] = {.count = 1, .reusable = true}, SHIFT(1970), - [4534] = {.count = 1, .reusable = false}, SHIFT(1972), - [4536] = {.count = 1, .reusable = true}, SHIFT(1972), - [4538] = {.count = 1, .reusable = true}, SHIFT(1971), - [4540] = {.count = 1, .reusable = false}, SHIFT(1974), - [4542] = {.count = 1, .reusable = true}, SHIFT(1974), - [4544] = {.count = 1, .reusable = true}, SHIFT(1973), - [4546] = {.count = 1, .reusable = true}, SHIFT(1975), - [4548] = {.count = 1, .reusable = true}, SHIFT(1976), - [4550] = {.count = 1, .reusable = true}, SHIFT(1977), - [4552] = {.count = 1, .reusable = true}, SHIFT(1978), - [4554] = {.count = 1, .reusable = false}, SHIFT(1979), - [4556] = {.count = 1, .reusable = true}, SHIFT(1979), - [4558] = {.count = 1, .reusable = false}, SHIFT(1980), - [4560] = {.count = 1, .reusable = true}, SHIFT(1980), - [4562] = {.count = 1, .reusable = true}, SHIFT(1981), - [4564] = {.count = 1, .reusable = false}, SHIFT(1982), - [4566] = {.count = 1, .reusable = true}, SHIFT(1982), - [4568] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 7), - [4570] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 7), - [4572] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6), - [4574] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6), - [4576] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 5), - [4578] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 5), - [4580] = {.count = 1, .reusable = true}, SHIFT(1983), - [4582] = {.count = 1, .reusable = true}, SHIFT(1984), - [4584] = {.count = 1, .reusable = true}, SHIFT(1985), - [4586] = {.count = 1, .reusable = true}, SHIFT(1986), - [4588] = {.count = 1, .reusable = false}, SHIFT(1987), - [4590] = {.count = 1, .reusable = true}, SHIFT(1988), - [4592] = {.count = 1, .reusable = true}, SHIFT(1990), - [4594] = {.count = 1, .reusable = true}, SHIFT(1991), - [4596] = {.count = 1, .reusable = true}, SHIFT(1992), - [4598] = {.count = 1, .reusable = true}, SHIFT(1993), - [4600] = {.count = 1, .reusable = false}, SHIFT(1994), - [4602] = {.count = 1, .reusable = true}, SHIFT(1994), - [4604] = {.count = 1, .reusable = false}, SHIFT(1995), - [4606] = {.count = 1, .reusable = true}, SHIFT(1995), - [4608] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 3), - [4610] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 3), - [4612] = {.count = 1, .reusable = true}, SHIFT(1996), - [4614] = {.count = 1, .reusable = true}, SHIFT(1997), - [4616] = {.count = 1, .reusable = true}, SHIFT(1998), - [4618] = {.count = 1, .reusable = true}, SHIFT(1999), - [4620] = {.count = 1, .reusable = true}, SHIFT(2001), - [4622] = {.count = 1, .reusable = true}, SHIFT(2002), - [4624] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1353), - [4627] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1354), - [4630] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1354), - [4633] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1355), - [4636] = {.count = 1, .reusable = true}, SHIFT(2004), - [4638] = {.count = 1, .reusable = true}, SHIFT(2005), - [4640] = {.count = 1, .reusable = false}, SHIFT(2006), - [4642] = {.count = 1, .reusable = true}, SHIFT(2007), - [4644] = {.count = 1, .reusable = true}, SHIFT(2009), - [4646] = {.count = 1, .reusable = true}, SHIFT(2010), - [4648] = {.count = 1, .reusable = true}, SHIFT(2011), - [4650] = {.count = 1, .reusable = true}, SHIFT(2012), - [4652] = {.count = 1, .reusable = false}, SHIFT(2013), - [4654] = {.count = 1, .reusable = true}, SHIFT(2013), - [4656] = {.count = 1, .reusable = false}, SHIFT(2014), - [4658] = {.count = 1, .reusable = true}, SHIFT(2014), - [4660] = {.count = 1, .reusable = true}, SHIFT(2015), - [4662] = {.count = 1, .reusable = true}, SHIFT(2016), - [4664] = {.count = 1, .reusable = false}, SHIFT(2017), - [4666] = {.count = 1, .reusable = true}, SHIFT(2018), - [4668] = {.count = 1, .reusable = true}, SHIFT(2020), - [4670] = {.count = 1, .reusable = true}, SHIFT(2021), - [4672] = {.count = 1, .reusable = true}, SHIFT(2022), - [4674] = {.count = 1, .reusable = true}, SHIFT(2023), - [4676] = {.count = 1, .reusable = false}, SHIFT(2024), - [4678] = {.count = 1, .reusable = true}, SHIFT(2024), - [4680] = {.count = 1, .reusable = false}, SHIFT(2025), - [4682] = {.count = 1, .reusable = true}, SHIFT(2025), - [4684] = {.count = 1, .reusable = true}, SHIFT(2026), - [4686] = {.count = 1, .reusable = true}, SHIFT(2027), - [4688] = {.count = 1, .reusable = true}, SHIFT(2028), - [4690] = {.count = 1, .reusable = true}, SHIFT(2029), - [4692] = {.count = 1, .reusable = true}, SHIFT(2030), - [4694] = {.count = 1, .reusable = false}, SHIFT(2031), - [4696] = {.count = 1, .reusable = true}, SHIFT(2031), - [4698] = {.count = 1, .reusable = false}, SHIFT(2032), - [4700] = {.count = 1, .reusable = true}, SHIFT(2032), - [4702] = {.count = 1, .reusable = true}, SHIFT(2033), - [4704] = {.count = 1, .reusable = true}, REDUCE(sym_c_style_for_statement, 7), - [4706] = {.count = 1, .reusable = false}, REDUCE(sym_c_style_for_statement, 7), - [4708] = {.count = 1, .reusable = true}, SHIFT(2034), - [4710] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1427), - [4713] = {.count = 1, .reusable = false}, SHIFT(2035), - [4715] = {.count = 1, .reusable = true}, SHIFT(2036), - [4717] = {.count = 1, .reusable = false}, SHIFT(2037), - [4719] = {.count = 1, .reusable = true}, SHIFT(2038), - [4721] = {.count = 1, .reusable = true}, SHIFT(2040), - [4723] = {.count = 1, .reusable = true}, SHIFT(2041), - [4725] = {.count = 1, .reusable = false}, SHIFT(2043), - [4727] = {.count = 1, .reusable = true}, SHIFT(2043), - [4729] = {.count = 1, .reusable = true}, SHIFT(2042), - [4731] = {.count = 1, .reusable = false}, SHIFT(2045), - [4733] = {.count = 1, .reusable = true}, SHIFT(2045), - [4735] = {.count = 1, .reusable = true}, SHIFT(2044), - [4737] = {.count = 1, .reusable = true}, SHIFT(2046), - [4739] = {.count = 1, .reusable = true}, SHIFT(2047), - [4741] = {.count = 1, .reusable = true}, SHIFT(2048), - [4743] = {.count = 1, .reusable = true}, SHIFT(2049), - [4745] = {.count = 1, .reusable = false}, SHIFT(2050), - [4747] = {.count = 1, .reusable = true}, SHIFT(2050), - [4749] = {.count = 1, .reusable = false}, SHIFT(2051), - [4751] = {.count = 1, .reusable = true}, SHIFT(2051), - [4753] = {.count = 1, .reusable = true}, SHIFT(2052), - [4755] = {.count = 1, .reusable = false}, SHIFT(2053), - [4757] = {.count = 1, .reusable = true}, SHIFT(2053), - [4759] = {.count = 1, .reusable = true}, SHIFT(2055), - [4761] = {.count = 1, .reusable = true}, SHIFT(2056), - [4763] = {.count = 1, .reusable = true}, SHIFT(2057), - [4765] = {.count = 1, .reusable = true}, SHIFT(2058), - [4767] = {.count = 1, .reusable = false}, SHIFT(2059), - [4769] = {.count = 1, .reusable = true}, SHIFT(2059), - [4771] = {.count = 1, .reusable = false}, SHIFT(2060), - [4773] = {.count = 1, .reusable = true}, SHIFT(2060), - [4775] = {.count = 1, .reusable = true}, SHIFT(2061), - [4777] = {.count = 1, .reusable = true}, SHIFT(2062), - [4779] = {.count = 1, .reusable = true}, SHIFT(2063), - [4781] = {.count = 1, .reusable = true}, SHIFT(2064), - [4783] = {.count = 1, .reusable = false}, SHIFT(2065), - [4785] = {.count = 1, .reusable = true}, SHIFT(2066), - [4787] = {.count = 1, .reusable = true}, SHIFT(2068), - [4789] = {.count = 1, .reusable = true}, SHIFT(2069), - [4791] = {.count = 1, .reusable = true}, SHIFT(2070), - [4793] = {.count = 1, .reusable = true}, SHIFT(2071), - [4795] = {.count = 1, .reusable = false}, SHIFT(2072), - [4797] = {.count = 1, .reusable = true}, SHIFT(2072), - [4799] = {.count = 1, .reusable = false}, SHIFT(2073), - [4801] = {.count = 1, .reusable = true}, SHIFT(2073), - [4803] = {.count = 1, .reusable = true}, SHIFT(2074), - [4805] = {.count = 1, .reusable = true}, SHIFT(2075), - [4807] = {.count = 1, .reusable = false}, REDUCE(sym_elif_clause, 4), - [4809] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 7), - [4811] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 7), - [4813] = {.count = 1, .reusable = true}, REDUCE(aux_sym_case_item_repeat1, 2, .alias_sequence_id = 2), - [4815] = {.count = 1, .reusable = true}, REDUCE(aux_sym_case_item_repeat1, 2), - [4817] = {.count = 1, .reusable = true}, SHIFT(2078), - [4819] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 3, .alias_sequence_id = 1), - [4821] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 3, .alias_sequence_id = 1), - [4823] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 3, .alias_sequence_id = 1), - [4825] = {.count = 1, .reusable = true}, SHIFT(2080), - [4827] = {.count = 1, .reusable = true}, SHIFT(2083), - [4829] = {.count = 1, .reusable = true}, SHIFT(2084), - [4831] = {.count = 1, .reusable = true}, SHIFT(2085), - [4833] = {.count = 1, .reusable = false}, SHIFT(2086), - [4835] = {.count = 1, .reusable = true}, SHIFT(2087), - [4837] = {.count = 1, .reusable = true}, SHIFT(2088), - [4839] = {.count = 1, .reusable = true}, SHIFT(2089), - [4841] = {.count = 1, .reusable = true}, SHIFT(2090), - [4843] = {.count = 1, .reusable = true}, SHIFT(2091), - [4845] = {.count = 1, .reusable = false}, SHIFT(2093), - [4847] = {.count = 1, .reusable = false}, SHIFT(2087), - [4849] = {.count = 1, .reusable = true}, SHIFT(2094), - [4851] = {.count = 1, .reusable = true}, SHIFT(2095), - [4853] = {.count = 1, .reusable = false}, SHIFT(2096), - [4855] = {.count = 1, .reusable = true}, SHIFT(2097), - [4857] = {.count = 1, .reusable = true}, SHIFT(2098), - [4859] = {.count = 1, .reusable = true}, SHIFT(2099), - [4861] = {.count = 1, .reusable = true}, SHIFT(2100), - [4863] = {.count = 1, .reusable = true}, SHIFT(2101), - [4865] = {.count = 1, .reusable = false}, SHIFT(2102), - [4867] = {.count = 1, .reusable = false}, SHIFT(2097), - [4869] = {.count = 1, .reusable = true}, SHIFT(2103), - [4871] = {.count = 1, .reusable = false}, SHIFT(2105), - [4873] = {.count = 1, .reusable = false}, SHIFT(2106), - [4875] = {.count = 1, .reusable = true}, SHIFT(2108), - [4877] = {.count = 1, .reusable = true}, SHIFT(2109), - [4879] = {.count = 1, .reusable = false}, SHIFT(2110), - [4881] = {.count = 1, .reusable = true}, SHIFT(2110), - [4883] = {.count = 1, .reusable = true}, SHIFT(2111), - [4885] = {.count = 1, .reusable = true}, SHIFT(2112), - [4887] = {.count = 1, .reusable = true}, SHIFT(2113), - [4889] = {.count = 1, .reusable = false}, SHIFT(2114), - [4891] = {.count = 1, .reusable = true}, SHIFT(2114), - [4893] = {.count = 1, .reusable = true}, SHIFT(2124), - [4895] = {.count = 1, .reusable = false}, SHIFT(2125), - [4897] = {.count = 1, .reusable = true}, REDUCE(sym_last_case_item, 3, .alias_sequence_id = 1), - [4899] = {.count = 1, .reusable = false}, SHIFT(2126), - [4901] = {.count = 1, .reusable = true}, SHIFT(2127), - [4903] = {.count = 1, .reusable = true}, SHIFT(2126), - [4905] = {.count = 1, .reusable = true}, SHIFT(2128), - [4907] = {.count = 1, .reusable = true}, SHIFT(2125), - [4909] = {.count = 1, .reusable = true}, SHIFT(2129), - [4911] = {.count = 1, .reusable = false}, SHIFT(2130), - [4913] = {.count = 1, .reusable = false}, SHIFT(2131), - [4915] = {.count = 1, .reusable = true}, SHIFT(2131), - [4917] = {.count = 1, .reusable = true}, SHIFT(2132), - [4919] = {.count = 1, .reusable = true}, SHIFT(2133), - [4921] = {.count = 1, .reusable = true}, SHIFT(2134), - [4923] = {.count = 1, .reusable = false}, SHIFT(2134), - [4925] = {.count = 1, .reusable = true}, SHIFT(2137), - [4927] = {.count = 1, .reusable = true}, SHIFT(1857), - [4929] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_item_repeat1, 2), SHIFT_REPEAT(1515), - [4932] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 3), - [4934] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 3), - [4936] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 3), - [4938] = {.count = 1, .reusable = true}, REDUCE(sym_last_case_item, 3), - [4940] = {.count = 1, .reusable = true}, SHIFT(2143), - [4942] = {.count = 1, .reusable = true}, SHIFT(2144), - [4944] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 2), - [4946] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 2), - [4948] = {.count = 1, .reusable = true}, SHIFT(2148), - [4950] = {.count = 1, .reusable = true}, SHIFT(2150), - [4952] = {.count = 1, .reusable = true}, SHIFT(2152), - [4954] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 7), - [4956] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 7), - [4958] = {.count = 1, .reusable = true}, SHIFT(2153), - [4960] = {.count = 1, .reusable = true}, SHIFT(2154), - [4962] = {.count = 1, .reusable = true}, SHIFT(2155), - [4964] = {.count = 1, .reusable = true}, SHIFT(2158), - [4966] = {.count = 1, .reusable = true}, SHIFT(2159), - [4968] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1575), - [4971] = {.count = 1, .reusable = false}, SHIFT(2160), - [4973] = {.count = 1, .reusable = true}, SHIFT(2161), - [4975] = {.count = 1, .reusable = false}, SHIFT(2162), - [4977] = {.count = 1, .reusable = true}, SHIFT(2163), - [4979] = {.count = 1, .reusable = true}, SHIFT(2165), - [4981] = {.count = 1, .reusable = true}, SHIFT(2166), - [4983] = {.count = 1, .reusable = false}, SHIFT(2168), - [4985] = {.count = 1, .reusable = true}, SHIFT(2168), - [4987] = {.count = 1, .reusable = true}, SHIFT(2167), - [4989] = {.count = 1, .reusable = false}, SHIFT(2170), - [4991] = {.count = 1, .reusable = true}, SHIFT(2170), - [4993] = {.count = 1, .reusable = true}, SHIFT(2169), - [4995] = {.count = 1, .reusable = true}, SHIFT(2171), - [4997] = {.count = 1, .reusable = true}, SHIFT(2172), - [4999] = {.count = 1, .reusable = true}, SHIFT(2173), - [5001] = {.count = 1, .reusable = true}, SHIFT(2174), - [5003] = {.count = 1, .reusable = false}, SHIFT(2175), - [5005] = {.count = 1, .reusable = true}, SHIFT(2175), - [5007] = {.count = 1, .reusable = false}, SHIFT(2176), - [5009] = {.count = 1, .reusable = true}, SHIFT(2176), - [5011] = {.count = 1, .reusable = true}, SHIFT(2177), - [5013] = {.count = 1, .reusable = false}, SHIFT(2178), - [5015] = {.count = 1, .reusable = true}, SHIFT(2178), - [5017] = {.count = 1, .reusable = true}, SHIFT(2179), - [5019] = {.count = 1, .reusable = true}, SHIFT(2180), - [5021] = {.count = 1, .reusable = true}, SHIFT(2181), - [5023] = {.count = 1, .reusable = true}, SHIFT(2182), - [5025] = {.count = 1, .reusable = true}, SHIFT(2183), - [5027] = {.count = 1, .reusable = true}, SHIFT(2184), - [5029] = {.count = 1, .reusable = true}, SHIFT(2185), - [5031] = {.count = 1, .reusable = true}, SHIFT(2186), - [5033] = {.count = 1, .reusable = true}, SHIFT(2187), - [5035] = {.count = 1, .reusable = true}, SHIFT(2188), - [5037] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 6, .alias_sequence_id = 4), - [5039] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 6), - [5041] = {.count = 1, .reusable = true}, SHIFT(2189), - [5043] = {.count = 1, .reusable = true}, SHIFT(2190), - [5045] = {.count = 1, .reusable = false}, SHIFT(2191), - [5047] = {.count = 1, .reusable = true}, SHIFT(2192), - [5049] = {.count = 1, .reusable = true}, SHIFT(2194), - [5051] = {.count = 1, .reusable = true}, SHIFT(2195), - [5053] = {.count = 1, .reusable = true}, SHIFT(2196), - [5055] = {.count = 1, .reusable = true}, SHIFT(2197), - [5057] = {.count = 1, .reusable = false}, SHIFT(2198), - [5059] = {.count = 1, .reusable = true}, SHIFT(2198), - [5061] = {.count = 1, .reusable = false}, SHIFT(2199), - [5063] = {.count = 1, .reusable = true}, SHIFT(2199), - [5065] = {.count = 1, .reusable = true}, SHIFT(2200), - [5067] = {.count = 1, .reusable = true}, SHIFT(2201), - [5069] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 7, .alias_sequence_id = 5), - [5071] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 5), - [5073] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 7), - [5075] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 7), - [5077] = {.count = 1, .reusable = true}, SHIFT(2202), - [5079] = {.count = 1, .reusable = true}, SHIFT(2203), - [5081] = {.count = 1, .reusable = true}, SHIFT(2204), - [5083] = {.count = 1, .reusable = false}, SHIFT(2205), - [5085] = {.count = 1, .reusable = true}, SHIFT(2205), - [5087] = {.count = 1, .reusable = false}, SHIFT(2206), - [5089] = {.count = 1, .reusable = true}, SHIFT(2206), - [5091] = {.count = 1, .reusable = true}, SHIFT(2207), - [5093] = {.count = 1, .reusable = true}, SHIFT(2210), - [5095] = {.count = 1, .reusable = true}, SHIFT(2211), - [5097] = {.count = 1, .reusable = true}, SHIFT(2212), - [5099] = {.count = 1, .reusable = false}, SHIFT(2213), - [5101] = {.count = 1, .reusable = true}, SHIFT(2213), - [5103] = {.count = 1, .reusable = false}, SHIFT(2214), - [5105] = {.count = 1, .reusable = true}, SHIFT(2214), - [5107] = {.count = 1, .reusable = true}, SHIFT(2215), - [5109] = {.count = 1, .reusable = true}, SHIFT(2216), - [5111] = {.count = 1, .reusable = true}, SHIFT(2217), - [5113] = {.count = 1, .reusable = true}, SHIFT(2218), - [5115] = {.count = 1, .reusable = false}, SHIFT(2219), - [5117] = {.count = 1, .reusable = true}, SHIFT(2219), - [5119] = {.count = 1, .reusable = false}, SHIFT(2220), - [5121] = {.count = 1, .reusable = true}, SHIFT(2220), - [5123] = {.count = 1, .reusable = true}, SHIFT(2221), - [5125] = {.count = 1, .reusable = true}, SHIFT(2222), - [5127] = {.count = 1, .reusable = true}, SHIFT(2223), - [5129] = {.count = 1, .reusable = true}, SHIFT(2224), - [5131] = {.count = 1, .reusable = true}, SHIFT(2225), - [5133] = {.count = 1, .reusable = false}, SHIFT(2226), - [5135] = {.count = 1, .reusable = true}, SHIFT(2227), - [5137] = {.count = 1, .reusable = true}, SHIFT(2229), - [5139] = {.count = 1, .reusable = true}, SHIFT(2230), - [5141] = {.count = 1, .reusable = true}, SHIFT(2231), - [5143] = {.count = 1, .reusable = true}, SHIFT(2232), - [5145] = {.count = 1, .reusable = false}, SHIFT(2233), - [5147] = {.count = 1, .reusable = true}, SHIFT(2233), - [5149] = {.count = 1, .reusable = false}, SHIFT(2234), - [5151] = {.count = 1, .reusable = true}, SHIFT(2234), - [5153] = {.count = 1, .reusable = true}, SHIFT(2235), - [5155] = {.count = 1, .reusable = true}, SHIFT(2236), - [5157] = {.count = 1, .reusable = true}, REDUCE(sym_c_style_for_statement, 8), - [5159] = {.count = 1, .reusable = false}, REDUCE(sym_c_style_for_statement, 8), - [5161] = {.count = 1, .reusable = true}, SHIFT(2238), - [5163] = {.count = 1, .reusable = true}, SHIFT(2239), - [5165] = {.count = 1, .reusable = true}, SHIFT(2240), - [5167] = {.count = 1, .reusable = true}, SHIFT(2241), - [5169] = {.count = 1, .reusable = true}, SHIFT(2242), - [5171] = {.count = 1, .reusable = true}, SHIFT(2243), - [5173] = {.count = 1, .reusable = false}, SHIFT(2244), - [5175] = {.count = 1, .reusable = true}, SHIFT(2244), - [5177] = {.count = 1, .reusable = false}, SHIFT(2245), - [5179] = {.count = 1, .reusable = true}, SHIFT(2245), - [5181] = {.count = 1, .reusable = true}, SHIFT(2246), - [5183] = {.count = 1, .reusable = true}, SHIFT(2247), - [5185] = {.count = 1, .reusable = true}, SHIFT(2248), - [5187] = {.count = 1, .reusable = true}, SHIFT(2249), - [5189] = {.count = 1, .reusable = true}, SHIFT(2250), - [5191] = {.count = 1, .reusable = false}, SHIFT(2251), - [5193] = {.count = 1, .reusable = true}, SHIFT(2252), - [5195] = {.count = 1, .reusable = true}, SHIFT(2253), - [5197] = {.count = 1, .reusable = true}, SHIFT(2254), - [5199] = {.count = 1, .reusable = true}, SHIFT(2255), - [5201] = {.count = 1, .reusable = true}, SHIFT(2256), - [5203] = {.count = 1, .reusable = true}, SHIFT(2258), - [5205] = {.count = 1, .reusable = true}, SHIFT(2260), - [5207] = {.count = 1, .reusable = true}, SHIFT(2261), - [5209] = {.count = 1, .reusable = true}, SHIFT(2262), - [5211] = {.count = 1, .reusable = false}, SHIFT(2264), - [5213] = {.count = 1, .reusable = false}, SHIFT(2265), - [5215] = {.count = 1, .reusable = true}, SHIFT(2267), - [5217] = {.count = 1, .reusable = true}, SHIFT(2268), - [5219] = {.count = 1, .reusable = false}, SHIFT(2269), - [5221] = {.count = 1, .reusable = true}, SHIFT(2269), - [5223] = {.count = 1, .reusable = true}, SHIFT(2270), - [5225] = {.count = 1, .reusable = true}, SHIFT(2271), - [5227] = {.count = 1, .reusable = true}, SHIFT(2272), - [5229] = {.count = 1, .reusable = false}, SHIFT(2273), - [5231] = {.count = 1, .reusable = true}, SHIFT(2273), - [5233] = {.count = 1, .reusable = false}, SHIFT(2283), - [5235] = {.count = 1, .reusable = true}, SHIFT(2284), - [5237] = {.count = 1, .reusable = false}, SHIFT(2286), - [5239] = {.count = 1, .reusable = false}, SHIFT(2287), - [5241] = {.count = 1, .reusable = true}, SHIFT(2289), - [5243] = {.count = 1, .reusable = true}, SHIFT(2290), - [5245] = {.count = 1, .reusable = false}, SHIFT(2291), - [5247] = {.count = 1, .reusable = true}, SHIFT(2291), - [5249] = {.count = 1, .reusable = true}, SHIFT(2292), - [5251] = {.count = 1, .reusable = true}, SHIFT(2293), - [5253] = {.count = 1, .reusable = true}, SHIFT(2294), - [5255] = {.count = 1, .reusable = false}, SHIFT(2295), - [5257] = {.count = 1, .reusable = true}, SHIFT(2295), - [5259] = {.count = 1, .reusable = false}, SHIFT(2305), - [5261] = {.count = 1, .reusable = true}, SHIFT(2306), - [5263] = {.count = 1, .reusable = false}, SHIFT(2308), - [5265] = {.count = 1, .reusable = false}, SHIFT(2309), - [5267] = {.count = 1, .reusable = true}, SHIFT(2310), - [5269] = {.count = 1, .reusable = true}, SHIFT(2311), - [5271] = {.count = 1, .reusable = true}, SHIFT(2312), - [5273] = {.count = 1, .reusable = false}, SHIFT(2313), - [5275] = {.count = 1, .reusable = true}, SHIFT(2313), - [5277] = {.count = 1, .reusable = true}, SHIFT(2314), - [5279] = {.count = 1, .reusable = false}, SHIFT(2316), - [5281] = {.count = 1, .reusable = true}, SHIFT(2316), - [5283] = {.count = 1, .reusable = true}, SHIFT(2315), - [5285] = {.count = 1, .reusable = true}, SHIFT(2317), - [5287] = {.count = 1, .reusable = false}, SHIFT(2319), - [5289] = {.count = 1, .reusable = true}, SHIFT(2319), - [5291] = {.count = 1, .reusable = true}, SHIFT(2318), - [5293] = {.count = 1, .reusable = false}, SHIFT(2320), - [5295] = {.count = 1, .reusable = true}, SHIFT(2321), - [5297] = {.count = 1, .reusable = true}, SHIFT(2320), - [5299] = {.count = 1, .reusable = false}, SHIFT(2324), - [5301] = {.count = 1, .reusable = true}, SHIFT(2324), - [5303] = {.count = 1, .reusable = false}, SHIFT(2327), - [5305] = {.count = 1, .reusable = true}, SHIFT(2328), - [5307] = {.count = 1, .reusable = true}, SHIFT(2327), - [5309] = {.count = 1, .reusable = true}, SHIFT(2331), - [5311] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 4, .alias_sequence_id = 1), - [5313] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 4, .alias_sequence_id = 1), - [5315] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 4, .alias_sequence_id = 1), - [5317] = {.count = 1, .reusable = false}, SHIFT(2335), - [5319] = {.count = 1, .reusable = true}, SHIFT(2335), - [5321] = {.count = 1, .reusable = false}, SHIFT(2336), - [5323] = {.count = 1, .reusable = false}, SHIFT(1858), - [5325] = {.count = 1, .reusable = false}, SHIFT(2337), - [5327] = {.count = 1, .reusable = false}, SHIFT(1861), - [5329] = {.count = 1, .reusable = false}, SHIFT(1862), - [5331] = {.count = 1, .reusable = false}, SHIFT(1863), - [5333] = {.count = 1, .reusable = false}, SHIFT(1864), - [5335] = {.count = 1, .reusable = false}, SHIFT(2338), - [5337] = {.count = 1, .reusable = true}, SHIFT(2339), - [5339] = {.count = 1, .reusable = true}, SHIFT(2340), - [5341] = {.count = 1, .reusable = false}, SHIFT(2341), - [5343] = {.count = 1, .reusable = true}, SHIFT(2342), - [5345] = {.count = 1, .reusable = true}, SHIFT(2343), - [5347] = {.count = 1, .reusable = true}, SHIFT(2344), - [5349] = {.count = 1, .reusable = true}, SHIFT(2345), - [5351] = {.count = 1, .reusable = true}, SHIFT(2346), - [5353] = {.count = 1, .reusable = true}, SHIFT(2347), - [5355] = {.count = 1, .reusable = true}, SHIFT(2348), - [5357] = {.count = 1, .reusable = true}, REDUCE(sym_last_case_item, 4, .alias_sequence_id = 1), - [5359] = {.count = 1, .reusable = true}, SHIFT(2352), - [5361] = {.count = 1, .reusable = true}, SHIFT(2356), - [5363] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 4), - [5365] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 4), - [5367] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 4), - [5369] = {.count = 1, .reusable = true}, REDUCE(sym_last_case_item, 4), - [5371] = {.count = 1, .reusable = true}, SHIFT(2359), - [5373] = {.count = 1, .reusable = true}, SHIFT(2360), - [5375] = {.count = 1, .reusable = true}, SHIFT(2363), - [5377] = {.count = 1, .reusable = true}, SHIFT(2367), - [5379] = {.count = 1, .reusable = true}, SHIFT(2368), - [5381] = {.count = 1, .reusable = true}, SHIFT(2372), - [5383] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 8, .alias_sequence_id = 2), - [5385] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 8, .alias_sequence_id = 2), - [5387] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 8), - [5389] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 8), - [5391] = {.count = 1, .reusable = true}, SHIFT(2373), - [5393] = {.count = 1, .reusable = true}, SHIFT(2374), - [5395] = {.count = 1, .reusable = false}, SHIFT(2375), - [5397] = {.count = 1, .reusable = true}, SHIFT(2376), - [5399] = {.count = 1, .reusable = true}, SHIFT(2378), - [5401] = {.count = 1, .reusable = true}, SHIFT(2379), - [5403] = {.count = 1, .reusable = true}, SHIFT(2380), - [5405] = {.count = 1, .reusable = true}, SHIFT(2381), - [5407] = {.count = 1, .reusable = false}, SHIFT(2382), - [5409] = {.count = 1, .reusable = true}, SHIFT(2382), - [5411] = {.count = 1, .reusable = false}, SHIFT(2383), - [5413] = {.count = 1, .reusable = true}, SHIFT(2383), - [5415] = {.count = 1, .reusable = true}, SHIFT(2384), - [5417] = {.count = 1, .reusable = true}, SHIFT(2385), - [5419] = {.count = 1, .reusable = true}, SHIFT(2386), - [5421] = {.count = 1, .reusable = true}, SHIFT(2387), - [5423] = {.count = 1, .reusable = true}, SHIFT(2388), - [5425] = {.count = 1, .reusable = false}, SHIFT(2389), - [5427] = {.count = 1, .reusable = true}, SHIFT(2389), - [5429] = {.count = 1, .reusable = false}, SHIFT(2390), - [5431] = {.count = 1, .reusable = true}, SHIFT(2390), - [5433] = {.count = 1, .reusable = true}, SHIFT(2391), - [5435] = {.count = 1, .reusable = true}, SHIFT(2392), - [5437] = {.count = 1, .reusable = true}, SHIFT(2393), - [5439] = {.count = 1, .reusable = true}, SHIFT(2394), - [5441] = {.count = 1, .reusable = true}, SHIFT(2395), - [5443] = {.count = 1, .reusable = true}, SHIFT(2396), - [5445] = {.count = 1, .reusable = true}, SHIFT(2397), - [5447] = {.count = 1, .reusable = true}, SHIFT(2398), - [5449] = {.count = 1, .reusable = true}, SHIFT(2399), - [5451] = {.count = 1, .reusable = true}, SHIFT(2400), - [5453] = {.count = 1, .reusable = false}, SHIFT(2401), - [5455] = {.count = 1, .reusable = true}, SHIFT(2401), - [5457] = {.count = 1, .reusable = false}, SHIFT(2402), - [5459] = {.count = 1, .reusable = true}, SHIFT(2402), - [5461] = {.count = 1, .reusable = true}, SHIFT(2403), - [5463] = {.count = 1, .reusable = true}, REDUCE(sym_c_style_for_statement, 9), - [5465] = {.count = 1, .reusable = false}, REDUCE(sym_c_style_for_statement, 9), - [5467] = {.count = 1, .reusable = true}, SHIFT(2405), - [5469] = {.count = 1, .reusable = true}, SHIFT(2406), - [5471] = {.count = 1, .reusable = true}, SHIFT(2407), - [5473] = {.count = 1, .reusable = true}, SHIFT(2409), - [5475] = {.count = 1, .reusable = false}, SHIFT(2411), - [5477] = {.count = 1, .reusable = false}, SHIFT(2412), - [5479] = {.count = 1, .reusable = true}, SHIFT(2414), - [5481] = {.count = 1, .reusable = true}, SHIFT(2415), - [5483] = {.count = 1, .reusable = false}, SHIFT(2416), - [5485] = {.count = 1, .reusable = true}, SHIFT(2416), - [5487] = {.count = 1, .reusable = true}, SHIFT(2417), - [5489] = {.count = 1, .reusable = true}, SHIFT(2418), - [5491] = {.count = 1, .reusable = true}, SHIFT(2419), - [5493] = {.count = 1, .reusable = false}, SHIFT(2420), - [5495] = {.count = 1, .reusable = true}, SHIFT(2420), - [5497] = {.count = 1, .reusable = true}, SHIFT(2431), - [5499] = {.count = 1, .reusable = true}, SHIFT(2432), - [5501] = {.count = 1, .reusable = false}, SHIFT(2433), - [5503] = {.count = 1, .reusable = true}, SHIFT(2433), - [5505] = {.count = 1, .reusable = true}, SHIFT(2434), - [5507] = {.count = 1, .reusable = false}, SHIFT(2435), - [5509] = {.count = 1, .reusable = true}, SHIFT(2435), - [5511] = {.count = 1, .reusable = true}, SHIFT(2436), - [5513] = {.count = 1, .reusable = true}, SHIFT(2438), - [5515] = {.count = 1, .reusable = true}, SHIFT(2439), - [5517] = {.count = 1, .reusable = true}, SHIFT(2440), - [5519] = {.count = 1, .reusable = true}, SHIFT(2441), - [5521] = {.count = 1, .reusable = true}, SHIFT(2442), - [5523] = {.count = 1, .reusable = false}, SHIFT(2444), - [5525] = {.count = 1, .reusable = false}, SHIFT(2445), - [5527] = {.count = 1, .reusable = true}, SHIFT(2446), - [5529] = {.count = 1, .reusable = true}, SHIFT(2447), - [5531] = {.count = 1, .reusable = true}, SHIFT(2448), - [5533] = {.count = 1, .reusable = false}, SHIFT(2449), - [5535] = {.count = 1, .reusable = true}, SHIFT(2449), - [5537] = {.count = 1, .reusable = true}, SHIFT(2450), - [5539] = {.count = 1, .reusable = false}, SHIFT(2452), - [5541] = {.count = 1, .reusable = true}, SHIFT(2452), - [5543] = {.count = 1, .reusable = true}, SHIFT(2451), - [5545] = {.count = 1, .reusable = true}, SHIFT(2453), - [5547] = {.count = 1, .reusable = false}, SHIFT(2455), - [5549] = {.count = 1, .reusable = true}, SHIFT(2455), - [5551] = {.count = 1, .reusable = true}, SHIFT(2454), - [5553] = {.count = 1, .reusable = false}, SHIFT(2456), - [5555] = {.count = 1, .reusable = true}, SHIFT(2457), - [5557] = {.count = 1, .reusable = true}, SHIFT(2456), - [5559] = {.count = 1, .reusable = false}, SHIFT(2460), - [5561] = {.count = 1, .reusable = true}, SHIFT(2460), - [5563] = {.count = 1, .reusable = false}, SHIFT(2463), - [5565] = {.count = 1, .reusable = true}, SHIFT(2464), - [5567] = {.count = 1, .reusable = true}, SHIFT(2463), - [5569] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2083), - [5572] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2084), - [5575] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2085), - [5578] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2086), - [5581] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2087), - [5584] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2088), - [5587] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2089), - [5590] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2090), - [5593] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2091), - [5596] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2283), - [5599] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2087), - [5602] = {.count = 1, .reusable = true}, SHIFT(2467), - [5604] = {.count = 1, .reusable = false}, SHIFT(2469), - [5606] = {.count = 1, .reusable = false}, SHIFT(2470), - [5608] = {.count = 1, .reusable = true}, SHIFT(2471), - [5610] = {.count = 1, .reusable = true}, SHIFT(2472), - [5612] = {.count = 1, .reusable = true}, SHIFT(2473), - [5614] = {.count = 1, .reusable = false}, SHIFT(2474), - [5616] = {.count = 1, .reusable = true}, SHIFT(2474), - [5618] = {.count = 1, .reusable = true}, SHIFT(2475), - [5620] = {.count = 1, .reusable = false}, SHIFT(2477), - [5622] = {.count = 1, .reusable = true}, SHIFT(2477), - [5624] = {.count = 1, .reusable = true}, SHIFT(2476), - [5626] = {.count = 1, .reusable = true}, SHIFT(2478), - [5628] = {.count = 1, .reusable = false}, SHIFT(2480), - [5630] = {.count = 1, .reusable = true}, SHIFT(2480), - [5632] = {.count = 1, .reusable = true}, SHIFT(2479), - [5634] = {.count = 1, .reusable = false}, SHIFT(2481), - [5636] = {.count = 1, .reusable = true}, SHIFT(2482), - [5638] = {.count = 1, .reusable = true}, SHIFT(2481), - [5640] = {.count = 1, .reusable = false}, SHIFT(2485), - [5642] = {.count = 1, .reusable = true}, SHIFT(2485), - [5644] = {.count = 1, .reusable = false}, SHIFT(2488), - [5646] = {.count = 1, .reusable = true}, SHIFT(2489), - [5648] = {.count = 1, .reusable = true}, SHIFT(2488), - [5650] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2094), - [5653] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2095), - [5656] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2096), - [5659] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2097), - [5662] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2098), - [5665] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2099), - [5668] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2100), - [5671] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2101), - [5674] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2305), - [5677] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2097), - [5680] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2103), - [5683] = {.count = 1, .reusable = false}, SHIFT(2492), - [5685] = {.count = 1, .reusable = true}, SHIFT(2493), - [5687] = {.count = 1, .reusable = false}, SHIFT(2494), - [5689] = {.count = 1, .reusable = true}, SHIFT(2495), - [5691] = {.count = 1, .reusable = true}, SHIFT(2497), - [5693] = {.count = 1, .reusable = true}, SHIFT(2498), - [5695] = {.count = 1, .reusable = false}, SHIFT(2500), - [5697] = {.count = 1, .reusable = true}, SHIFT(2500), - [5699] = {.count = 1, .reusable = true}, SHIFT(2499), - [5701] = {.count = 1, .reusable = false}, SHIFT(2502), - [5703] = {.count = 1, .reusable = true}, SHIFT(2502), - [5705] = {.count = 1, .reusable = true}, SHIFT(2501), - [5707] = {.count = 1, .reusable = true}, SHIFT(2503), - [5709] = {.count = 1, .reusable = true}, SHIFT(2504), - [5711] = {.count = 1, .reusable = true}, SHIFT(2505), - [5713] = {.count = 1, .reusable = true}, SHIFT(2506), - [5715] = {.count = 1, .reusable = false}, SHIFT(2507), - [5717] = {.count = 1, .reusable = true}, SHIFT(2507), - [5719] = {.count = 1, .reusable = false}, SHIFT(2508), - [5721] = {.count = 1, .reusable = true}, SHIFT(2508), - [5723] = {.count = 1, .reusable = true}, SHIFT(2509), - [5725] = {.count = 1, .reusable = false}, SHIFT(2510), - [5727] = {.count = 1, .reusable = true}, SHIFT(2510), - [5729] = {.count = 1, .reusable = true}, SHIFT(2512), - [5731] = {.count = 1, .reusable = true}, SHIFT(2513), - [5733] = {.count = 1, .reusable = true}, SHIFT(2514), - [5735] = {.count = 1, .reusable = false}, SHIFT(2516), - [5737] = {.count = 1, .reusable = false}, SHIFT(2517), - [5739] = {.count = 1, .reusable = true}, SHIFT(2519), - [5741] = {.count = 1, .reusable = true}, SHIFT(2520), - [5743] = {.count = 1, .reusable = false}, SHIFT(2521), - [5745] = {.count = 1, .reusable = true}, SHIFT(2521), - [5747] = {.count = 1, .reusable = true}, SHIFT(2522), - [5749] = {.count = 1, .reusable = true}, SHIFT(2523), - [5751] = {.count = 1, .reusable = true}, SHIFT(2524), - [5753] = {.count = 1, .reusable = false}, SHIFT(2525), - [5755] = {.count = 1, .reusable = true}, SHIFT(2525), - [5757] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2129), - [5760] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2131), - [5763] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2131), - [5766] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2132), - [5769] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2130), - [5772] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2133), - [5775] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(1858), - [5778] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(1859), - [5781] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2134), - [5784] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(1861), - [5787] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(1862), - [5790] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(1863), - [5793] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(1864), - [5796] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2134), - [5799] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 5, .alias_sequence_id = 1), - [5801] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 5, .alias_sequence_id = 1), - [5803] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 5, .alias_sequence_id = 1), - [5805] = {.count = 1, .reusable = true}, REDUCE(sym_last_case_item, 5, .alias_sequence_id = 1), - [5807] = {.count = 1, .reusable = true}, SHIFT(2536), - [5809] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 5), - [5811] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 5), - [5813] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 5), - [5815] = {.count = 1, .reusable = true}, REDUCE(sym_last_case_item, 5), - [5817] = {.count = 1, .reusable = true}, SHIFT(2537), - [5819] = {.count = 1, .reusable = true}, SHIFT(2538), - [5821] = {.count = 1, .reusable = true}, SHIFT(2539), - [5823] = {.count = 1, .reusable = true}, SHIFT(2544), - [5825] = {.count = 1, .reusable = true}, SHIFT(2545), - [5827] = {.count = 1, .reusable = true}, SHIFT(2549), - [5829] = {.count = 1, .reusable = true}, SHIFT(2550), - [5831] = {.count = 1, .reusable = true}, SHIFT(2551), - [5833] = {.count = 1, .reusable = false}, SHIFT(2552), - [5835] = {.count = 1, .reusable = true}, SHIFT(2552), - [5837] = {.count = 1, .reusable = false}, SHIFT(2553), - [5839] = {.count = 1, .reusable = true}, SHIFT(2553), - [5841] = {.count = 1, .reusable = true}, SHIFT(2554), - [5843] = {.count = 1, .reusable = true}, SHIFT(2555), - [5845] = {.count = 1, .reusable = true}, SHIFT(2556), - [5847] = {.count = 1, .reusable = true}, SHIFT(2557), - [5849] = {.count = 1, .reusable = true}, SHIFT(2558), - [5851] = {.count = 1, .reusable = true}, REDUCE(sym_c_style_for_statement, 10), - [5853] = {.count = 1, .reusable = false}, REDUCE(sym_c_style_for_statement, 10), - [5855] = {.count = 1, .reusable = true}, SHIFT(2559), - [5857] = {.count = 1, .reusable = true}, SHIFT(2560), - [5859] = {.count = 1, .reusable = false}, SHIFT(2562), - [5861] = {.count = 1, .reusable = false}, SHIFT(2563), - [5863] = {.count = 1, .reusable = true}, SHIFT(2564), - [5865] = {.count = 1, .reusable = true}, SHIFT(2565), - [5867] = {.count = 1, .reusable = true}, SHIFT(2566), - [5869] = {.count = 1, .reusable = false}, SHIFT(2567), - [5871] = {.count = 1, .reusable = true}, SHIFT(2567), - [5873] = {.count = 1, .reusable = true}, SHIFT(2568), - [5875] = {.count = 1, .reusable = false}, SHIFT(2570), - [5877] = {.count = 1, .reusable = true}, SHIFT(2570), - [5879] = {.count = 1, .reusable = true}, SHIFT(2569), - [5881] = {.count = 1, .reusable = true}, SHIFT(2571), - [5883] = {.count = 1, .reusable = false}, SHIFT(2573), - [5885] = {.count = 1, .reusable = true}, SHIFT(2573), - [5887] = {.count = 1, .reusable = true}, SHIFT(2572), - [5889] = {.count = 1, .reusable = false}, SHIFT(2574), - [5891] = {.count = 1, .reusable = true}, SHIFT(2575), - [5893] = {.count = 1, .reusable = true}, SHIFT(2574), - [5895] = {.count = 1, .reusable = false}, SHIFT(2578), - [5897] = {.count = 1, .reusable = true}, SHIFT(2578), - [5899] = {.count = 1, .reusable = false}, SHIFT(2581), - [5901] = {.count = 1, .reusable = true}, SHIFT(2582), - [5903] = {.count = 1, .reusable = true}, SHIFT(2581), - [5905] = {.count = 1, .reusable = false}, SHIFT(2586), - [5907] = {.count = 1, .reusable = true}, SHIFT(2586), - [5909] = {.count = 1, .reusable = true}, SHIFT(2587), - [5911] = {.count = 1, .reusable = true}, SHIFT(2588), - [5913] = {.count = 1, .reusable = false}, SHIFT(2589), - [5915] = {.count = 1, .reusable = true}, SHIFT(2589), - [5917] = {.count = 1, .reusable = true}, SHIFT(2590), - [5919] = {.count = 1, .reusable = true}, SHIFT(2591), - [5921] = {.count = 1, .reusable = true}, SHIFT(2592), - [5923] = {.count = 1, .reusable = true}, SHIFT(2593), - [5925] = {.count = 1, .reusable = true}, SHIFT(2595), - [5927] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2262), - [5930] = {.count = 1, .reusable = false}, SHIFT(2597), - [5932] = {.count = 1, .reusable = true}, SHIFT(2598), - [5934] = {.count = 1, .reusable = false}, SHIFT(2599), - [5936] = {.count = 1, .reusable = true}, SHIFT(2600), - [5938] = {.count = 1, .reusable = true}, SHIFT(2602), - [5940] = {.count = 1, .reusable = true}, SHIFT(2603), - [5942] = {.count = 1, .reusable = false}, SHIFT(2605), - [5944] = {.count = 1, .reusable = true}, SHIFT(2605), - [5946] = {.count = 1, .reusable = true}, SHIFT(2604), - [5948] = {.count = 1, .reusable = false}, SHIFT(2607), - [5950] = {.count = 1, .reusable = true}, SHIFT(2607), - [5952] = {.count = 1, .reusable = true}, SHIFT(2606), - [5954] = {.count = 1, .reusable = true}, SHIFT(2608), - [5956] = {.count = 1, .reusable = true}, SHIFT(2609), - [5958] = {.count = 1, .reusable = true}, SHIFT(2610), - [5960] = {.count = 1, .reusable = true}, SHIFT(2611), - [5962] = {.count = 1, .reusable = false}, SHIFT(2612), - [5964] = {.count = 1, .reusable = true}, SHIFT(2612), - [5966] = {.count = 1, .reusable = false}, SHIFT(2613), - [5968] = {.count = 1, .reusable = true}, SHIFT(2613), - [5970] = {.count = 1, .reusable = true}, SHIFT(2614), - [5972] = {.count = 1, .reusable = false}, SHIFT(2615), - [5974] = {.count = 1, .reusable = true}, SHIFT(2615), - [5976] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2284), - [5979] = {.count = 1, .reusable = false}, SHIFT(2616), - [5981] = {.count = 1, .reusable = true}, SHIFT(2617), - [5983] = {.count = 1, .reusable = false}, SHIFT(2618), - [5985] = {.count = 1, .reusable = true}, SHIFT(2619), - [5987] = {.count = 1, .reusable = true}, SHIFT(2621), - [5989] = {.count = 1, .reusable = true}, SHIFT(2622), - [5991] = {.count = 1, .reusable = false}, SHIFT(2624), - [5993] = {.count = 1, .reusable = true}, SHIFT(2624), - [5995] = {.count = 1, .reusable = true}, SHIFT(2623), - [5997] = {.count = 1, .reusable = false}, SHIFT(2626), - [5999] = {.count = 1, .reusable = true}, SHIFT(2626), - [6001] = {.count = 1, .reusable = true}, SHIFT(2625), - [6003] = {.count = 1, .reusable = true}, SHIFT(2627), - [6005] = {.count = 1, .reusable = true}, SHIFT(2628), - [6007] = {.count = 1, .reusable = true}, SHIFT(2629), - [6009] = {.count = 1, .reusable = true}, SHIFT(2630), - [6011] = {.count = 1, .reusable = false}, SHIFT(2631), - [6013] = {.count = 1, .reusable = true}, SHIFT(2631), - [6015] = {.count = 1, .reusable = false}, SHIFT(2632), - [6017] = {.count = 1, .reusable = true}, SHIFT(2632), - [6019] = {.count = 1, .reusable = true}, SHIFT(2633), - [6021] = {.count = 1, .reusable = false}, SHIFT(2634), - [6023] = {.count = 1, .reusable = true}, SHIFT(2634), - [6025] = {.count = 1, .reusable = true}, SHIFT(2635), - [6027] = {.count = 1, .reusable = true}, SHIFT(2636), - [6029] = {.count = 1, .reusable = false}, SHIFT(2637), - [6031] = {.count = 1, .reusable = true}, SHIFT(2638), - [6033] = {.count = 1, .reusable = true}, SHIFT(2640), - [6035] = {.count = 1, .reusable = true}, SHIFT(2641), - [6037] = {.count = 1, .reusable = true}, SHIFT(2642), - [6039] = {.count = 1, .reusable = true}, SHIFT(2643), - [6041] = {.count = 1, .reusable = false}, SHIFT(2644), - [6043] = {.count = 1, .reusable = true}, SHIFT(2644), - [6045] = {.count = 1, .reusable = false}, SHIFT(2645), - [6047] = {.count = 1, .reusable = true}, SHIFT(2645), - [6049] = {.count = 1, .reusable = true}, SHIFT(2646), - [6051] = {.count = 1, .reusable = true}, SHIFT(2647), - [6053] = {.count = 1, .reusable = true}, SHIFT(2648), - [6055] = {.count = 1, .reusable = false}, SHIFT(2650), - [6057] = {.count = 1, .reusable = false}, SHIFT(2651), - [6059] = {.count = 1, .reusable = true}, SHIFT(2652), - [6061] = {.count = 1, .reusable = true}, SHIFT(2653), - [6063] = {.count = 1, .reusable = true}, SHIFT(2654), - [6065] = {.count = 1, .reusable = false}, SHIFT(2655), - [6067] = {.count = 1, .reusable = true}, SHIFT(2655), - [6069] = {.count = 1, .reusable = true}, SHIFT(2656), - [6071] = {.count = 1, .reusable = false}, SHIFT(2658), - [6073] = {.count = 1, .reusable = true}, SHIFT(2658), - [6075] = {.count = 1, .reusable = true}, SHIFT(2657), - [6077] = {.count = 1, .reusable = true}, SHIFT(2659), - [6079] = {.count = 1, .reusable = false}, SHIFT(2661), - [6081] = {.count = 1, .reusable = true}, SHIFT(2661), - [6083] = {.count = 1, .reusable = true}, SHIFT(2660), - [6085] = {.count = 1, .reusable = false}, SHIFT(2662), - [6087] = {.count = 1, .reusable = true}, SHIFT(2663), - [6089] = {.count = 1, .reusable = true}, SHIFT(2662), - [6091] = {.count = 1, .reusable = false}, SHIFT(2666), - [6093] = {.count = 1, .reusable = true}, SHIFT(2666), - [6095] = {.count = 1, .reusable = false}, SHIFT(2669), - [6097] = {.count = 1, .reusable = true}, SHIFT(2670), - [6099] = {.count = 1, .reusable = true}, SHIFT(2669), - [6101] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 6, .alias_sequence_id = 1), - [6103] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 6, .alias_sequence_id = 1), - [6105] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 6, .alias_sequence_id = 1), - [6107] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 6), - [6109] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 6), - [6111] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 6), - [6113] = {.count = 1, .reusable = true}, SHIFT(2673), - [6115] = {.count = 1, .reusable = true}, SHIFT(2674), - [6117] = {.count = 1, .reusable = true}, SHIFT(2677), - [6119] = {.count = 1, .reusable = true}, SHIFT(2678), - [6121] = {.count = 1, .reusable = true}, SHIFT(2681), - [6123] = {.count = 1, .reusable = true}, SHIFT(2682), - [6125] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2409), - [6128] = {.count = 1, .reusable = false}, SHIFT(2683), - [6130] = {.count = 1, .reusable = true}, SHIFT(2684), - [6132] = {.count = 1, .reusable = false}, SHIFT(2685), - [6134] = {.count = 1, .reusable = true}, SHIFT(2686), - [6136] = {.count = 1, .reusable = true}, SHIFT(2688), - [6138] = {.count = 1, .reusable = true}, SHIFT(2689), - [6140] = {.count = 1, .reusable = false}, SHIFT(2691), - [6142] = {.count = 1, .reusable = true}, SHIFT(2691), - [6144] = {.count = 1, .reusable = true}, SHIFT(2690), - [6146] = {.count = 1, .reusable = false}, SHIFT(2693), - [6148] = {.count = 1, .reusable = true}, SHIFT(2693), - [6150] = {.count = 1, .reusable = true}, SHIFT(2692), - [6152] = {.count = 1, .reusable = true}, SHIFT(2694), - [6154] = {.count = 1, .reusable = true}, SHIFT(2695), - [6156] = {.count = 1, .reusable = true}, SHIFT(2696), - [6158] = {.count = 1, .reusable = true}, SHIFT(2697), - [6160] = {.count = 1, .reusable = false}, SHIFT(2698), - [6162] = {.count = 1, .reusable = true}, SHIFT(2698), - [6164] = {.count = 1, .reusable = false}, SHIFT(2699), - [6166] = {.count = 1, .reusable = true}, SHIFT(2699), - [6168] = {.count = 1, .reusable = true}, SHIFT(2700), - [6170] = {.count = 1, .reusable = false}, SHIFT(2701), - [6172] = {.count = 1, .reusable = true}, SHIFT(2701), - [6174] = {.count = 1, .reusable = true}, SHIFT(2702), - [6176] = {.count = 1, .reusable = true}, SHIFT(2703), - [6178] = {.count = 1, .reusable = true}, SHIFT(2705), - [6180] = {.count = 1, .reusable = true}, SHIFT(2706), - [6182] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2434), - [6185] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2435), - [6188] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2435), - [6191] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2436), - [6194] = {.count = 1, .reusable = true}, SHIFT(2708), - [6196] = {.count = 1, .reusable = true}, SHIFT(2709), - [6198] = {.count = 1, .reusable = true}, SHIFT(2710), - [6200] = {.count = 1, .reusable = false}, SHIFT(2711), - [6202] = {.count = 1, .reusable = true}, SHIFT(2712), - [6204] = {.count = 1, .reusable = true}, SHIFT(2714), - [6206] = {.count = 1, .reusable = true}, SHIFT(2715), - [6208] = {.count = 1, .reusable = true}, SHIFT(2716), - [6210] = {.count = 1, .reusable = true}, SHIFT(2717), - [6212] = {.count = 1, .reusable = false}, SHIFT(2718), - [6214] = {.count = 1, .reusable = true}, SHIFT(2718), - [6216] = {.count = 1, .reusable = false}, SHIFT(2719), - [6218] = {.count = 1, .reusable = true}, SHIFT(2719), - [6220] = {.count = 1, .reusable = true}, SHIFT(2720), - [6222] = {.count = 1, .reusable = true}, SHIFT(2721), - [6224] = {.count = 1, .reusable = true}, SHIFT(2722), - [6226] = {.count = 1, .reusable = true}, SHIFT(2723), - [6228] = {.count = 1, .reusable = false}, SHIFT(2724), - [6230] = {.count = 1, .reusable = true}, SHIFT(2725), - [6232] = {.count = 1, .reusable = true}, SHIFT(2727), - [6234] = {.count = 1, .reusable = true}, SHIFT(2728), - [6236] = {.count = 1, .reusable = true}, SHIFT(2729), - [6238] = {.count = 1, .reusable = true}, SHIFT(2730), - [6240] = {.count = 1, .reusable = false}, SHIFT(2731), - [6242] = {.count = 1, .reusable = true}, SHIFT(2731), - [6244] = {.count = 1, .reusable = false}, SHIFT(2732), - [6246] = {.count = 1, .reusable = true}, SHIFT(2732), - [6248] = {.count = 1, .reusable = true}, SHIFT(2733), - [6250] = {.count = 1, .reusable = true}, SHIFT(2734), - [6252] = {.count = 1, .reusable = true}, SHIFT(2735), - [6254] = {.count = 1, .reusable = true}, SHIFT(2736), - [6256] = {.count = 1, .reusable = true}, SHIFT(2737), - [6258] = {.count = 1, .reusable = false}, SHIFT(2738), - [6260] = {.count = 1, .reusable = true}, SHIFT(2738), - [6262] = {.count = 1, .reusable = false}, SHIFT(2739), - [6264] = {.count = 1, .reusable = true}, SHIFT(2739), - [6266] = {.count = 1, .reusable = true}, SHIFT(2740), - [6268] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2514), - [6271] = {.count = 1, .reusable = false}, SHIFT(2741), - [6273] = {.count = 1, .reusable = true}, SHIFT(2742), - [6275] = {.count = 1, .reusable = false}, SHIFT(2743), - [6277] = {.count = 1, .reusable = true}, SHIFT(2744), - [6279] = {.count = 1, .reusable = true}, SHIFT(2746), - [6281] = {.count = 1, .reusable = true}, SHIFT(2747), - [6283] = {.count = 1, .reusable = false}, SHIFT(2749), - [6285] = {.count = 1, .reusable = true}, SHIFT(2749), - [6287] = {.count = 1, .reusable = true}, SHIFT(2748), - [6289] = {.count = 1, .reusable = false}, SHIFT(2751), - [6291] = {.count = 1, .reusable = true}, SHIFT(2751), - [6293] = {.count = 1, .reusable = true}, SHIFT(2750), - [6295] = {.count = 1, .reusable = true}, SHIFT(2752), - [6297] = {.count = 1, .reusable = true}, SHIFT(2753), - [6299] = {.count = 1, .reusable = true}, SHIFT(2754), - [6301] = {.count = 1, .reusable = true}, SHIFT(2755), - [6303] = {.count = 1, .reusable = false}, SHIFT(2756), - [6305] = {.count = 1, .reusable = true}, SHIFT(2756), - [6307] = {.count = 1, .reusable = false}, SHIFT(2757), - [6309] = {.count = 1, .reusable = true}, SHIFT(2757), - [6311] = {.count = 1, .reusable = true}, SHIFT(2758), - [6313] = {.count = 1, .reusable = false}, SHIFT(2759), - [6315] = {.count = 1, .reusable = true}, SHIFT(2759), - [6317] = {.count = 1, .reusable = true}, SHIFT(2760), - [6319] = {.count = 1, .reusable = true}, SHIFT(2761), - [6321] = {.count = 1, .reusable = true}, SHIFT(2762), - [6323] = {.count = 1, .reusable = true}, SHIFT(2763), - [6325] = {.count = 1, .reusable = false}, SHIFT(2764), - [6327] = {.count = 1, .reusable = true}, SHIFT(2765), - [6329] = {.count = 1, .reusable = true}, SHIFT(2767), - [6331] = {.count = 1, .reusable = true}, SHIFT(2768), - [6333] = {.count = 1, .reusable = true}, SHIFT(2769), - [6335] = {.count = 1, .reusable = true}, SHIFT(2770), - [6337] = {.count = 1, .reusable = false}, SHIFT(2771), - [6339] = {.count = 1, .reusable = true}, SHIFT(2771), - [6341] = {.count = 1, .reusable = false}, SHIFT(2772), - [6343] = {.count = 1, .reusable = true}, SHIFT(2772), - [6345] = {.count = 1, .reusable = true}, SHIFT(2773), - [6347] = {.count = 1, .reusable = true}, SHIFT(2774), - [6349] = {.count = 1, .reusable = true}, SHIFT(2777), - [6351] = {.count = 1, .reusable = true}, SHIFT(2778), - [6353] = {.count = 1, .reusable = true}, SHIFT(2779), - [6355] = {.count = 1, .reusable = false}, SHIFT(2780), - [6357] = {.count = 1, .reusable = true}, SHIFT(2780), - [6359] = {.count = 1, .reusable = false}, SHIFT(2781), - [6361] = {.count = 1, .reusable = true}, SHIFT(2781), - [6363] = {.count = 1, .reusable = true}, SHIFT(2782), - [6365] = {.count = 1, .reusable = true}, SHIFT(2783), - [6367] = {.count = 1, .reusable = true}, SHIFT(2784), - [6369] = {.count = 1, .reusable = true}, SHIFT(2785), - [6371] = {.count = 1, .reusable = false}, SHIFT(2786), - [6373] = {.count = 1, .reusable = true}, SHIFT(2786), - [6375] = {.count = 1, .reusable = false}, SHIFT(2787), - [6377] = {.count = 1, .reusable = true}, SHIFT(2787), - [6379] = {.count = 1, .reusable = true}, SHIFT(2788), - [6381] = {.count = 1, .reusable = true}, SHIFT(2789), - [6383] = {.count = 1, .reusable = true}, SHIFT(2790), - [6385] = {.count = 1, .reusable = true}, SHIFT(2791), - [6387] = {.count = 1, .reusable = true}, SHIFT(2792), - [6389] = {.count = 1, .reusable = false}, SHIFT(2793), - [6391] = {.count = 1, .reusable = true}, SHIFT(2794), - [6393] = {.count = 1, .reusable = true}, SHIFT(2796), - [6395] = {.count = 1, .reusable = true}, SHIFT(2797), - [6397] = {.count = 1, .reusable = true}, SHIFT(2798), - [6399] = {.count = 1, .reusable = true}, SHIFT(2799), - [6401] = {.count = 1, .reusable = false}, SHIFT(2800), - [6403] = {.count = 1, .reusable = true}, SHIFT(2800), - [6405] = {.count = 1, .reusable = false}, SHIFT(2801), - [6407] = {.count = 1, .reusable = true}, SHIFT(2801), - [6409] = {.count = 1, .reusable = true}, SHIFT(2802), - [6411] = {.count = 1, .reusable = true}, SHIFT(2803), - [6413] = {.count = 1, .reusable = true}, SHIFT(2804), - [6415] = {.count = 1, .reusable = true}, SHIFT(2805), - [6417] = {.count = 1, .reusable = true}, SHIFT(2806), - [6419] = {.count = 1, .reusable = false}, SHIFT(2807), - [6421] = {.count = 1, .reusable = true}, SHIFT(2807), - [6423] = {.count = 1, .reusable = false}, SHIFT(2808), - [6425] = {.count = 1, .reusable = true}, SHIFT(2808), - [6427] = {.count = 1, .reusable = true}, SHIFT(2809), - [6429] = {.count = 1, .reusable = true}, SHIFT(2810), - [6431] = {.count = 1, .reusable = true}, SHIFT(2811), - [6433] = {.count = 1, .reusable = true}, SHIFT(2812), - [6435] = {.count = 1, .reusable = true}, SHIFT(2813), - [6437] = {.count = 1, .reusable = true}, SHIFT(2814), - [6439] = {.count = 1, .reusable = true}, SHIFT(2815), - [6441] = {.count = 1, .reusable = true}, SHIFT(2816), - [6443] = {.count = 1, .reusable = false}, SHIFT(2817), - [6445] = {.count = 1, .reusable = true}, SHIFT(2817), - [6447] = {.count = 1, .reusable = false}, SHIFT(2818), - [6449] = {.count = 1, .reusable = true}, SHIFT(2818), - [6451] = {.count = 1, .reusable = true}, SHIFT(2819), - [6453] = {.count = 1, .reusable = true}, SHIFT(2820), - [6455] = {.count = 1, .reusable = true}, SHIFT(2821), - [6457] = {.count = 1, .reusable = true}, SHIFT(2822), - [6459] = {.count = 1, .reusable = true}, SHIFT(2823), + [923] = {.count = 1, .reusable = true}, SHIFT(506), + [925] = {.count = 1, .reusable = true}, SHIFT(507), + [927] = {.count = 1, .reusable = true}, SHIFT(508), + [929] = {.count = 1, .reusable = false}, SHIFT(509), + [931] = {.count = 1, .reusable = true}, SHIFT(509), + [933] = {.count = 1, .reusable = true}, SHIFT(510), + [935] = {.count = 1, .reusable = false}, SHIFT(516), + [937] = {.count = 1, .reusable = true}, SHIFT(517), + [939] = {.count = 1, .reusable = true}, SHIFT(516), + [941] = {.count = 1, .reusable = true}, SHIFT(520), + [943] = {.count = 1, .reusable = true}, REDUCE(sym__terminated_statement, 2), + [945] = {.count = 1, .reusable = true}, REDUCE(sym_program, 2), + [947] = {.count = 1, .reusable = false}, REDUCE(sym__terminated_statement, 2), + [949] = {.count = 1, .reusable = true}, REDUCE(sym_heredoc_body, 1), + [951] = {.count = 1, .reusable = false}, REDUCE(sym_heredoc_body, 1), + [953] = {.count = 1, .reusable = true}, SHIFT(528), + [955] = {.count = 1, .reusable = true}, SHIFT(525), + [957] = {.count = 1, .reusable = false}, SHIFT(526), + [959] = {.count = 1, .reusable = true}, SHIFT(527), + [961] = {.count = 1, .reusable = false}, SHIFT(529), + [963] = {.count = 1, .reusable = true}, SHIFT(529), + [965] = {.count = 1, .reusable = true}, SHIFT(530), + [967] = {.count = 1, .reusable = true}, SHIFT(531), + [969] = {.count = 1, .reusable = true}, SHIFT(532), + [971] = {.count = 1, .reusable = true}, SHIFT(533), + [973] = {.count = 1, .reusable = true}, SHIFT(534), + [975] = {.count = 1, .reusable = true}, SHIFT(536), + [977] = {.count = 1, .reusable = true}, SHIFT(537), + [979] = {.count = 1, .reusable = true}, SHIFT(538), + [981] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat2, 1, .alias_sequence_id = 1), + [983] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat2, 1, .alias_sequence_id = 1), + [985] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat2, 1), + [987] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat2, 1), + [989] = {.count = 1, .reusable = true}, REDUCE(sym_command, 2), + [991] = {.count = 1, .reusable = false}, REDUCE(sym_command, 2), + [993] = {.count = 1, .reusable = false}, SHIFT(544), + [995] = {.count = 1, .reusable = true}, SHIFT(544), + [997] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2), + [1000] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(50), + [1003] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(4), + [1006] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(51), + [1009] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(52), + [1012] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(7), + [1015] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(8), + [1018] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(53), + [1021] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(10), + [1024] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(54), + [1027] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(55), + [1030] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(56), + [1033] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(57), + [1036] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(58), + [1039] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(16), + [1042] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(16), + [1045] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(59), + [1048] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(18), + [1051] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(19), + [1054] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(60), + [1057] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(21), + [1060] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(22), + [1063] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(23), + [1066] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(24), + [1069] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(61), + [1072] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(2), + [1075] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(97), + [1078] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(16), + [1081] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(16), + [1084] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat1, 2), + [1086] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat1, 2), + [1088] = {.count = 1, .reusable = true}, REDUCE(sym_file_redirect, 3, .alias_sequence_id = 4), + [1090] = {.count = 1, .reusable = false}, REDUCE(sym_file_redirect, 3, .alias_sequence_id = 4), + [1092] = {.count = 1, .reusable = true}, REDUCE(sym_file_redirect, 3), + [1094] = {.count = 1, .reusable = false}, REDUCE(sym_file_redirect, 3), + [1096] = {.count = 1, .reusable = true}, SHIFT(548), + [1098] = {.count = 1, .reusable = true}, SHIFT(549), + [1100] = {.count = 1, .reusable = true}, SHIFT(551), + [1102] = {.count = 1, .reusable = true}, SHIFT(552), + [1104] = {.count = 1, .reusable = true}, SHIFT(553), + [1106] = {.count = 1, .reusable = true}, REDUCE(sym_variable_assignment, 3), + [1108] = {.count = 1, .reusable = false}, REDUCE(sym_variable_assignment, 3), + [1110] = {.count = 1, .reusable = true}, SHIFT(554), + [1112] = {.count = 1, .reusable = true}, SHIFT(555), + [1114] = {.count = 1, .reusable = true}, SHIFT(556), + [1116] = {.count = 1, .reusable = false}, SHIFT(557), + [1118] = {.count = 1, .reusable = true}, SHIFT(558), + [1120] = {.count = 1, .reusable = true}, SHIFT(559), + [1122] = {.count = 1, .reusable = true}, SHIFT(560), + [1124] = {.count = 1, .reusable = true}, SHIFT(561), + [1126] = {.count = 1, .reusable = true}, SHIFT(562), + [1128] = {.count = 1, .reusable = true}, REDUCE(sym_variable_assignment, 3, .alias_sequence_id = 4), + [1130] = {.count = 1, .reusable = true}, SHIFT(564), + [1132] = {.count = 1, .reusable = false}, REDUCE(sym_variable_assignment, 3, .alias_sequence_id = 4), + [1134] = {.count = 1, .reusable = false}, SHIFT(566), + [1136] = {.count = 1, .reusable = false}, SHIFT(567), + [1138] = {.count = 1, .reusable = true}, SHIFT(569), + [1140] = {.count = 1, .reusable = true}, SHIFT(570), + [1142] = {.count = 1, .reusable = false}, SHIFT(571), + [1144] = {.count = 1, .reusable = true}, SHIFT(571), + [1146] = {.count = 1, .reusable = true}, SHIFT(572), + [1148] = {.count = 1, .reusable = true}, SHIFT(573), + [1150] = {.count = 1, .reusable = true}, SHIFT(574), + [1152] = {.count = 1, .reusable = false}, SHIFT(575), + [1154] = {.count = 1, .reusable = true}, SHIFT(575), + [1156] = {.count = 1, .reusable = false}, SHIFT(585), + [1158] = {.count = 1, .reusable = true}, SHIFT(585), + [1160] = {.count = 1, .reusable = true}, SHIFT(589), + [1162] = {.count = 1, .reusable = false}, SHIFT(591), + [1164] = {.count = 1, .reusable = false}, SHIFT(592), + [1166] = {.count = 1, .reusable = true}, SHIFT(594), + [1168] = {.count = 1, .reusable = true}, SHIFT(595), + [1170] = {.count = 1, .reusable = false}, SHIFT(596), + [1172] = {.count = 1, .reusable = true}, SHIFT(596), + [1174] = {.count = 1, .reusable = true}, SHIFT(597), + [1176] = {.count = 1, .reusable = true}, SHIFT(598), + [1178] = {.count = 1, .reusable = true}, SHIFT(599), + [1180] = {.count = 1, .reusable = false}, SHIFT(600), + [1182] = {.count = 1, .reusable = true}, SHIFT(600), + [1184] = {.count = 1, .reusable = false}, SHIFT(610), + [1186] = {.count = 1, .reusable = true}, SHIFT(610), + [1188] = {.count = 1, .reusable = true}, SHIFT(611), + [1190] = {.count = 1, .reusable = true}, SHIFT(612), + [1192] = {.count = 1, .reusable = false}, SHIFT(611), + [1194] = {.count = 1, .reusable = true}, SHIFT(613), + [1196] = {.count = 1, .reusable = true}, SHIFT(614), + [1198] = {.count = 1, .reusable = true}, SHIFT(615), + [1200] = {.count = 1, .reusable = false}, SHIFT(616), + [1202] = {.count = 1, .reusable = true}, SHIFT(617), + [1204] = {.count = 1, .reusable = true}, SHIFT(618), + [1206] = {.count = 1, .reusable = true}, SHIFT(619), + [1208] = {.count = 1, .reusable = true}, SHIFT(620), + [1210] = {.count = 1, .reusable = true}, SHIFT(621), + [1212] = {.count = 1, .reusable = true}, SHIFT(623), + [1214] = {.count = 1, .reusable = true}, SHIFT(627), + [1216] = {.count = 1, .reusable = false}, SHIFT(629), + [1218] = {.count = 1, .reusable = false}, SHIFT(630), + [1220] = {.count = 1, .reusable = true}, SHIFT(632), + [1222] = {.count = 1, .reusable = true}, SHIFT(633), + [1224] = {.count = 1, .reusable = false}, SHIFT(634), + [1226] = {.count = 1, .reusable = true}, SHIFT(634), + [1228] = {.count = 1, .reusable = true}, SHIFT(635), + [1230] = {.count = 1, .reusable = true}, SHIFT(636), + [1232] = {.count = 1, .reusable = true}, SHIFT(637), + [1234] = {.count = 1, .reusable = false}, SHIFT(638), + [1236] = {.count = 1, .reusable = true}, SHIFT(638), + [1238] = {.count = 1, .reusable = true}, SHIFT(648), + [1240] = {.count = 1, .reusable = true}, SHIFT(649), + [1242] = {.count = 1, .reusable = true}, SHIFT(650), + [1244] = {.count = 1, .reusable = false}, SHIFT(649), + [1246] = {.count = 1, .reusable = true}, SHIFT(651), + [1248] = {.count = 1, .reusable = true}, REDUCE(sym_unary_expression, 2), + [1250] = {.count = 1, .reusable = true}, SHIFT(652), + [1252] = {.count = 1, .reusable = false}, SHIFT(654), + [1254] = {.count = 1, .reusable = false}, SHIFT(655), + [1256] = {.count = 1, .reusable = true}, SHIFT(656), + [1258] = {.count = 1, .reusable = true}, SHIFT(657), + [1260] = {.count = 1, .reusable = true}, SHIFT(658), + [1262] = {.count = 1, .reusable = false}, SHIFT(659), + [1264] = {.count = 1, .reusable = true}, SHIFT(659), + [1266] = {.count = 1, .reusable = true}, SHIFT(660), + [1268] = {.count = 1, .reusable = false}, SHIFT(662), + [1270] = {.count = 1, .reusable = true}, SHIFT(662), + [1272] = {.count = 1, .reusable = true}, SHIFT(661), + [1274] = {.count = 1, .reusable = true}, SHIFT(663), + [1276] = {.count = 1, .reusable = false}, SHIFT(665), + [1278] = {.count = 1, .reusable = true}, SHIFT(665), + [1280] = {.count = 1, .reusable = true}, SHIFT(664), + [1282] = {.count = 1, .reusable = false}, SHIFT(666), + [1284] = {.count = 1, .reusable = true}, SHIFT(667), + [1286] = {.count = 1, .reusable = true}, SHIFT(666), + [1288] = {.count = 1, .reusable = false}, SHIFT(670), + [1290] = {.count = 1, .reusable = true}, SHIFT(670), + [1292] = {.count = 1, .reusable = false}, SHIFT(673), + [1294] = {.count = 1, .reusable = true}, SHIFT(674), + [1296] = {.count = 1, .reusable = true}, SHIFT(673), + [1298] = {.count = 1, .reusable = true}, SHIFT(677), + [1300] = {.count = 1, .reusable = true}, REDUCE(sym_test_command, 3), + [1302] = {.count = 1, .reusable = false}, REDUCE(sym_test_command, 3), + [1304] = {.count = 1, .reusable = false}, SHIFT(678), + [1306] = {.count = 1, .reusable = true}, SHIFT(678), + [1308] = {.count = 1, .reusable = false}, SHIFT(679), + [1310] = {.count = 1, .reusable = true}, SHIFT(679), + [1312] = {.count = 1, .reusable = true}, SHIFT(680), + [1314] = {.count = 1, .reusable = true}, SHIFT(683), + [1316] = {.count = 1, .reusable = true}, REDUCE(sym_postfix_expression, 2), + [1318] = {.count = 1, .reusable = false}, REDUCE(sym_postfix_expression, 2), + [1320] = {.count = 1, .reusable = true}, SHIFT(684), + [1322] = {.count = 1, .reusable = true}, SHIFT(685), + [1324] = {.count = 1, .reusable = true}, SHIFT(686), + [1326] = {.count = 1, .reusable = true}, SHIFT(688), + [1328] = {.count = 1, .reusable = true}, SHIFT(690), + [1330] = {.count = 1, .reusable = false}, SHIFT(692), + [1332] = {.count = 1, .reusable = false}, SHIFT(694), + [1334] = {.count = 1, .reusable = true}, SHIFT(696), + [1336] = {.count = 1, .reusable = false}, SHIFT(697), + [1338] = {.count = 1, .reusable = true}, REDUCE(sym_while_statement, 3), + [1340] = {.count = 1, .reusable = false}, REDUCE(sym_while_statement, 3), + [1342] = {.count = 1, .reusable = false}, SHIFT(703), + [1344] = {.count = 1, .reusable = true}, SHIFT(703), + [1346] = {.count = 1, .reusable = true}, SHIFT(704), + [1348] = {.count = 1, .reusable = true}, SHIFT(705), + [1350] = {.count = 1, .reusable = true}, SHIFT(706), + [1352] = {.count = 1, .reusable = true}, SHIFT(707), + [1354] = {.count = 1, .reusable = true}, SHIFT(708), + [1356] = {.count = 1, .reusable = true}, SHIFT(709), + [1358] = {.count = 1, .reusable = false}, SHIFT(714), + [1360] = {.count = 1, .reusable = false}, SHIFT(715), + [1362] = {.count = 1, .reusable = false}, SHIFT(716), + [1364] = {.count = 1, .reusable = true}, SHIFT(720), + [1366] = {.count = 1, .reusable = false}, SHIFT(721), + [1368] = {.count = 1, .reusable = true}, SHIFT(721), + [1370] = {.count = 1, .reusable = true}, SHIFT(722), + [1372] = {.count = 1, .reusable = false}, SHIFT(724), + [1374] = {.count = 1, .reusable = false}, SHIFT(725), + [1376] = {.count = 1, .reusable = false}, SHIFT(726), + [1378] = {.count = 1, .reusable = true}, SHIFT(726), + [1380] = {.count = 1, .reusable = true}, SHIFT(727), + [1382] = {.count = 1, .reusable = true}, SHIFT(728), + [1384] = {.count = 1, .reusable = true}, SHIFT(729), + [1386] = {.count = 1, .reusable = true}, SHIFT(730), + [1388] = {.count = 1, .reusable = false}, SHIFT(731), + [1390] = {.count = 1, .reusable = true}, SHIFT(731), + [1392] = {.count = 1, .reusable = true}, SHIFT(732), + [1394] = {.count = 1, .reusable = false}, SHIFT(734), + [1396] = {.count = 1, .reusable = true}, SHIFT(734), + [1398] = {.count = 1, .reusable = true}, SHIFT(733), + [1400] = {.count = 1, .reusable = true}, SHIFT(735), + [1402] = {.count = 1, .reusable = false}, SHIFT(737), + [1404] = {.count = 1, .reusable = true}, SHIFT(737), + [1406] = {.count = 1, .reusable = true}, SHIFT(736), + [1408] = {.count = 1, .reusable = false}, SHIFT(738), + [1410] = {.count = 1, .reusable = true}, SHIFT(739), + [1412] = {.count = 1, .reusable = true}, SHIFT(738), + [1414] = {.count = 1, .reusable = false}, SHIFT(742), + [1416] = {.count = 1, .reusable = true}, SHIFT(742), + [1418] = {.count = 1, .reusable = false}, SHIFT(745), + [1420] = {.count = 1, .reusable = true}, SHIFT(746), + [1422] = {.count = 1, .reusable = true}, SHIFT(745), + [1424] = {.count = 1, .reusable = true}, SHIFT(749), + [1426] = {.count = 1, .reusable = true}, SHIFT(750), + [1428] = {.count = 1, .reusable = true}, SHIFT(754), + [1430] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 3), + [1432] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 3), + [1434] = {.count = 1, .reusable = false}, SHIFT(755), + [1436] = {.count = 1, .reusable = true}, SHIFT(755), + [1438] = {.count = 1, .reusable = true}, SHIFT(757), + [1440] = {.count = 1, .reusable = true}, SHIFT(758), + [1442] = {.count = 1, .reusable = true}, SHIFT(759), + [1444] = {.count = 1, .reusable = true}, SHIFT(761), + [1446] = {.count = 1, .reusable = true}, SHIFT(763), + [1448] = {.count = 1, .reusable = false}, SHIFT(765), + [1450] = {.count = 1, .reusable = false}, SHIFT(767), + [1452] = {.count = 1, .reusable = true}, SHIFT(769), + [1454] = {.count = 1, .reusable = true}, SHIFT(770), + [1456] = {.count = 1, .reusable = true}, REDUCE(sym_subshell, 3), + [1458] = {.count = 1, .reusable = false}, REDUCE(sym_subshell, 3), + [1460] = {.count = 1, .reusable = false}, SHIFT(773), + [1462] = {.count = 1, .reusable = true}, SHIFT(773), + [1464] = {.count = 1, .reusable = true}, SHIFT(774), + [1466] = {.count = 1, .reusable = true}, SHIFT(775), + [1468] = {.count = 1, .reusable = true}, SHIFT(776), + [1470] = {.count = 1, .reusable = true}, SHIFT(777), + [1472] = {.count = 1, .reusable = true}, SHIFT(778), + [1474] = {.count = 1, .reusable = true}, SHIFT(779), + [1476] = {.count = 1, .reusable = false}, SHIFT(783), + [1478] = {.count = 1, .reusable = true}, SHIFT(783), + [1480] = {.count = 1, .reusable = true}, SHIFT(785), + [1482] = {.count = 1, .reusable = true}, SHIFT(786), + [1484] = {.count = 1, .reusable = true}, SHIFT(787), + [1486] = {.count = 1, .reusable = true}, SHIFT(788), + [1488] = {.count = 1, .reusable = true}, SHIFT(789), + [1490] = {.count = 1, .reusable = true}, SHIFT(790), + [1492] = {.count = 1, .reusable = false}, SHIFT(792), + [1494] = {.count = 1, .reusable = false}, SHIFT(793), + [1496] = {.count = 1, .reusable = true}, SHIFT(794), + [1498] = {.count = 1, .reusable = true}, SHIFT(795), + [1500] = {.count = 1, .reusable = true}, SHIFT(796), + [1502] = {.count = 1, .reusable = false}, SHIFT(797), + [1504] = {.count = 1, .reusable = true}, SHIFT(797), + [1506] = {.count = 1, .reusable = true}, SHIFT(798), + [1508] = {.count = 1, .reusable = false}, SHIFT(800), + [1510] = {.count = 1, .reusable = true}, SHIFT(800), + [1512] = {.count = 1, .reusable = true}, SHIFT(799), + [1514] = {.count = 1, .reusable = true}, SHIFT(801), + [1516] = {.count = 1, .reusable = false}, SHIFT(803), + [1518] = {.count = 1, .reusable = true}, SHIFT(803), + [1520] = {.count = 1, .reusable = true}, SHIFT(802), + [1522] = {.count = 1, .reusable = false}, SHIFT(804), + [1524] = {.count = 1, .reusable = true}, SHIFT(805), + [1526] = {.count = 1, .reusable = true}, SHIFT(804), + [1528] = {.count = 1, .reusable = false}, SHIFT(808), + [1530] = {.count = 1, .reusable = true}, SHIFT(808), + [1532] = {.count = 1, .reusable = false}, SHIFT(811), + [1534] = {.count = 1, .reusable = true}, SHIFT(812), + [1536] = {.count = 1, .reusable = true}, SHIFT(811), + [1538] = {.count = 1, .reusable = true}, SHIFT(816), + [1540] = {.count = 1, .reusable = true}, SHIFT(818), + [1542] = {.count = 1, .reusable = true}, SHIFT(819), + [1544] = {.count = 1, .reusable = true}, SHIFT(820), + [1546] = {.count = 1, .reusable = true}, SHIFT(821), + [1548] = {.count = 1, .reusable = true}, SHIFT(822), + [1550] = {.count = 1, .reusable = false}, SHIFT(824), + [1552] = {.count = 1, .reusable = false}, SHIFT(825), + [1554] = {.count = 1, .reusable = true}, SHIFT(826), + [1556] = {.count = 1, .reusable = true}, SHIFT(827), + [1558] = {.count = 1, .reusable = true}, SHIFT(828), + [1560] = {.count = 1, .reusable = false}, SHIFT(829), + [1562] = {.count = 1, .reusable = true}, SHIFT(829), + [1564] = {.count = 1, .reusable = true}, SHIFT(830), + [1566] = {.count = 1, .reusable = false}, SHIFT(832), + [1568] = {.count = 1, .reusable = true}, SHIFT(832), + [1570] = {.count = 1, .reusable = true}, SHIFT(831), + [1572] = {.count = 1, .reusable = true}, SHIFT(833), + [1574] = {.count = 1, .reusable = false}, SHIFT(835), + [1576] = {.count = 1, .reusable = true}, SHIFT(835), + [1578] = {.count = 1, .reusable = true}, SHIFT(834), + [1580] = {.count = 1, .reusable = false}, SHIFT(836), + [1582] = {.count = 1, .reusable = true}, SHIFT(837), + [1584] = {.count = 1, .reusable = true}, SHIFT(836), + [1586] = {.count = 1, .reusable = false}, SHIFT(840), + [1588] = {.count = 1, .reusable = true}, SHIFT(840), + [1590] = {.count = 1, .reusable = false}, SHIFT(843), + [1592] = {.count = 1, .reusable = true}, SHIFT(844), + [1594] = {.count = 1, .reusable = true}, SHIFT(843), + [1596] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(115), + [1599] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), + [1601] = {.count = 1, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), + [1603] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(116), + [1606] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(117), + [1609] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(118), + [1612] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(119), + [1615] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(120), + [1618] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(121), + [1621] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(122), + [1624] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(123), + [1627] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(411), + [1630] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(119), + [1633] = {.count = 1, .reusable = true}, SHIFT(847), + [1635] = {.count = 1, .reusable = false}, SHIFT(849), + [1637] = {.count = 1, .reusable = false}, SHIFT(850), + [1639] = {.count = 1, .reusable = true}, SHIFT(851), + [1641] = {.count = 1, .reusable = true}, SHIFT(852), + [1643] = {.count = 1, .reusable = true}, SHIFT(853), + [1645] = {.count = 1, .reusable = false}, SHIFT(854), + [1647] = {.count = 1, .reusable = true}, SHIFT(854), + [1649] = {.count = 1, .reusable = true}, SHIFT(855), + [1651] = {.count = 1, .reusable = false}, SHIFT(857), + [1653] = {.count = 1, .reusable = true}, SHIFT(857), + [1655] = {.count = 1, .reusable = true}, SHIFT(856), + [1657] = {.count = 1, .reusable = true}, SHIFT(858), + [1659] = {.count = 1, .reusable = false}, SHIFT(860), + [1661] = {.count = 1, .reusable = true}, SHIFT(860), + [1663] = {.count = 1, .reusable = true}, SHIFT(859), + [1665] = {.count = 1, .reusable = false}, SHIFT(861), + [1667] = {.count = 1, .reusable = true}, SHIFT(862), + [1669] = {.count = 1, .reusable = true}, SHIFT(861), + [1671] = {.count = 1, .reusable = false}, SHIFT(865), + [1673] = {.count = 1, .reusable = true}, SHIFT(865), + [1675] = {.count = 1, .reusable = false}, SHIFT(868), + [1677] = {.count = 1, .reusable = true}, SHIFT(869), + [1679] = {.count = 1, .reusable = true}, SHIFT(868), + [1681] = {.count = 1, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), + [1683] = {.count = 1, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), + [1685] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(126), + [1688] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(127), + [1691] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(128), + [1694] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(129), + [1697] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(130), + [1700] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(131), + [1703] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(132), + [1706] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(133), + [1709] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(433), + [1712] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(129), + [1715] = {.count = 1, .reusable = true}, SHIFT(872), + [1717] = {.count = 1, .reusable = false}, SHIFT(874), + [1719] = {.count = 1, .reusable = false}, SHIFT(875), + [1721] = {.count = 1, .reusable = true}, SHIFT(876), + [1723] = {.count = 1, .reusable = true}, SHIFT(877), + [1725] = {.count = 1, .reusable = true}, SHIFT(878), + [1727] = {.count = 1, .reusable = false}, SHIFT(879), + [1729] = {.count = 1, .reusable = true}, SHIFT(879), + [1731] = {.count = 1, .reusable = true}, SHIFT(880), + [1733] = {.count = 1, .reusable = false}, SHIFT(882), + [1735] = {.count = 1, .reusable = true}, SHIFT(882), + [1737] = {.count = 1, .reusable = true}, SHIFT(881), + [1739] = {.count = 1, .reusable = true}, SHIFT(883), + [1741] = {.count = 1, .reusable = false}, SHIFT(885), + [1743] = {.count = 1, .reusable = true}, SHIFT(885), + [1745] = {.count = 1, .reusable = true}, SHIFT(884), + [1747] = {.count = 1, .reusable = false}, SHIFT(886), + [1749] = {.count = 1, .reusable = true}, SHIFT(887), + [1751] = {.count = 1, .reusable = true}, SHIFT(886), + [1753] = {.count = 1, .reusable = false}, SHIFT(890), + [1755] = {.count = 1, .reusable = true}, SHIFT(890), + [1757] = {.count = 1, .reusable = false}, SHIFT(893), + [1759] = {.count = 1, .reusable = true}, SHIFT(894), + [1761] = {.count = 1, .reusable = true}, SHIFT(893), + [1763] = {.count = 1, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), + [1765] = {.count = 1, .reusable = false}, REDUCE(aux_sym_concatenation_repeat1, 2), + [1767] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(144), + [1770] = {.count = 1, .reusable = true}, REDUCE(sym_string, 3), + [1772] = {.count = 1, .reusable = false}, REDUCE(sym_string, 3), + [1774] = {.count = 1, .reusable = true}, SHIFT(897), + [1776] = {.count = 1, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), + [1778] = {.count = 1, .reusable = true}, REDUCE(aux_sym_string_repeat1, 2), + [1780] = {.count = 1, .reusable = true}, SHIFT(898), + [1782] = {.count = 1, .reusable = true}, SHIFT(899), + [1784] = {.count = 1, .reusable = true}, SHIFT(900), + [1786] = {.count = 1, .reusable = false}, SHIFT(901), + [1788] = {.count = 1, .reusable = true}, SHIFT(901), + [1790] = {.count = 1, .reusable = true}, SHIFT(902), + [1792] = {.count = 1, .reusable = false}, SHIFT(904), + [1794] = {.count = 1, .reusable = true}, SHIFT(904), + [1796] = {.count = 1, .reusable = true}, SHIFT(903), + [1798] = {.count = 1, .reusable = true}, SHIFT(905), + [1800] = {.count = 1, .reusable = false}, SHIFT(907), + [1802] = {.count = 1, .reusable = true}, SHIFT(907), + [1804] = {.count = 1, .reusable = true}, SHIFT(906), + [1806] = {.count = 1, .reusable = false}, SHIFT(908), + [1808] = {.count = 1, .reusable = true}, SHIFT(909), + [1810] = {.count = 1, .reusable = true}, SHIFT(908), + [1812] = {.count = 1, .reusable = false}, SHIFT(912), + [1814] = {.count = 1, .reusable = true}, SHIFT(912), + [1816] = {.count = 1, .reusable = false}, SHIFT(915), + [1818] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(916), + [1821] = {.count = 2, .reusable = true}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(148), + [1824] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(149), + [1827] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(150), + [1830] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(151), + [1833] = {.count = 1, .reusable = true}, SHIFT(917), + [1835] = {.count = 1, .reusable = true}, SHIFT(918), + [1837] = {.count = 1, .reusable = true}, SHIFT(920), + [1839] = {.count = 1, .reusable = false}, SHIFT(921), + [1841] = {.count = 1, .reusable = true}, SHIFT(922), + [1843] = {.count = 1, .reusable = false}, SHIFT(923), + [1845] = {.count = 1, .reusable = true}, SHIFT(924), + [1847] = {.count = 1, .reusable = true}, SHIFT(925), + [1849] = {.count = 1, .reusable = true}, SHIFT(926), + [1851] = {.count = 1, .reusable = true}, SHIFT(927), + [1853] = {.count = 1, .reusable = true}, SHIFT(928), + [1855] = {.count = 1, .reusable = true}, SHIFT(930), + [1857] = {.count = 1, .reusable = true}, SHIFT(931), + [1859] = {.count = 1, .reusable = false}, SHIFT(933), + [1861] = {.count = 1, .reusable = true}, SHIFT(933), + [1863] = {.count = 1, .reusable = true}, SHIFT(932), + [1865] = {.count = 1, .reusable = false}, SHIFT(935), + [1867] = {.count = 1, .reusable = true}, SHIFT(935), + [1869] = {.count = 1, .reusable = true}, SHIFT(934), + [1871] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 3, .alias_sequence_id = 3), + [1873] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 3, .alias_sequence_id = 3), + [1875] = {.count = 1, .reusable = true}, SHIFT(936), + [1877] = {.count = 1, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 1, .alias_sequence_id = 1), + [1879] = {.count = 1, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 1, .alias_sequence_id = 1), + [1881] = {.count = 1, .reusable = false}, SHIFT(938), + [1883] = {.count = 1, .reusable = false}, SHIFT(939), + [1885] = {.count = 1, .reusable = true}, SHIFT(941), + [1887] = {.count = 1, .reusable = true}, SHIFT(942), + [1889] = {.count = 1, .reusable = false}, SHIFT(943), + [1891] = {.count = 1, .reusable = true}, SHIFT(943), + [1893] = {.count = 1, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 1), + [1895] = {.count = 1, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 1), + [1897] = {.count = 1, .reusable = true}, SHIFT(944), + [1899] = {.count = 1, .reusable = true}, SHIFT(945), + [1901] = {.count = 1, .reusable = true}, SHIFT(946), + [1903] = {.count = 1, .reusable = false}, SHIFT(947), + [1905] = {.count = 1, .reusable = true}, SHIFT(947), + [1907] = {.count = 1, .reusable = true}, SHIFT(948), + [1909] = {.count = 1, .reusable = true}, SHIFT(949), + [1911] = {.count = 1, .reusable = false}, SHIFT(950), + [1913] = {.count = 1, .reusable = true}, SHIFT(950), + [1915] = {.count = 1, .reusable = false}, SHIFT(960), + [1917] = {.count = 1, .reusable = true}, SHIFT(960), + [1919] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 3), + [1921] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 3), + [1923] = {.count = 1, .reusable = true}, SHIFT(961), + [1925] = {.count = 1, .reusable = true}, SHIFT(962), + [1927] = {.count = 1, .reusable = true}, REDUCE(sym_command_substitution, 3), + [1929] = {.count = 1, .reusable = false}, REDUCE(sym_command_substitution, 3), + [1931] = {.count = 1, .reusable = false}, SHIFT(963), + [1933] = {.count = 1, .reusable = true}, SHIFT(963), + [1935] = {.count = 1, .reusable = true}, SHIFT(964), + [1937] = {.count = 1, .reusable = true}, SHIFT(966), + [1939] = {.count = 1, .reusable = true}, SHIFT(968), + [1941] = {.count = 1, .reusable = false}, SHIFT(972), + [1943] = {.count = 1, .reusable = true}, SHIFT(972), + [1945] = {.count = 1, .reusable = true}, SHIFT(973), + [1947] = {.count = 1, .reusable = true}, SHIFT(974), + [1949] = {.count = 1, .reusable = true}, SHIFT(975), + [1951] = {.count = 1, .reusable = true}, SHIFT(976), + [1953] = {.count = 1, .reusable = false}, SHIFT(979), + [1955] = {.count = 1, .reusable = true}, SHIFT(979), + [1957] = {.count = 1, .reusable = true}, SHIFT(981), + [1959] = {.count = 1, .reusable = true}, REDUCE(sym_process_substitution, 3), + [1961] = {.count = 1, .reusable = false}, REDUCE(sym_process_substitution, 3), + [1963] = {.count = 1, .reusable = false}, SHIFT(982), + [1965] = {.count = 1, .reusable = true}, SHIFT(982), + [1967] = {.count = 1, .reusable = true}, REDUCE(sym_pipeline, 3), + [1969] = {.count = 1, .reusable = false}, REDUCE(sym_pipeline, 3), + [1971] = {.count = 1, .reusable = true}, REDUCE(sym_list, 3), + [1973] = {.count = 1, .reusable = false}, REDUCE(sym_list, 3), + [1975] = {.count = 1, .reusable = true}, REDUCE(sym_heredoc_body, 2), + [1977] = {.count = 1, .reusable = false}, REDUCE(sym_heredoc_body, 2), + [1979] = {.count = 1, .reusable = true}, SHIFT(984), + [1981] = {.count = 1, .reusable = false}, SHIFT(985), + [1983] = {.count = 1, .reusable = true}, SHIFT(985), + [1985] = {.count = 1, .reusable = true}, SHIFT(986), + [1987] = {.count = 1, .reusable = true}, SHIFT(987), + [1989] = {.count = 1, .reusable = true}, SHIFT(988), + [1991] = {.count = 1, .reusable = false}, SHIFT(989), + [1993] = {.count = 1, .reusable = true}, SHIFT(989), + [1995] = {.count = 1, .reusable = true}, SHIFT(991), + [1997] = {.count = 1, .reusable = true}, SHIFT(990), + [1999] = {.count = 1, .reusable = true}, SHIFT(992), + [2001] = {.count = 1, .reusable = true}, SHIFT(993), + [2003] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), + [2005] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), + [2007] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2, .alias_sequence_id = 2), + [2009] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2, .alias_sequence_id = 2), + [2011] = {.count = 1, .reusable = true}, REDUCE(sym_heredoc_redirect, 2), + [2013] = {.count = 1, .reusable = false}, REDUCE(sym_heredoc_redirect, 2), + [2015] = {.count = 1, .reusable = true}, REDUCE(sym_herestring_redirect, 2, .alias_sequence_id = 2), + [2017] = {.count = 1, .reusable = false}, REDUCE(sym_herestring_redirect, 2, .alias_sequence_id = 2), + [2019] = {.count = 1, .reusable = true}, REDUCE(sym_herestring_redirect, 2), + [2021] = {.count = 1, .reusable = false}, REDUCE(sym_herestring_redirect, 2), + [2023] = {.count = 1, .reusable = true}, REDUCE(sym_command, 3), + [2025] = {.count = 1, .reusable = false}, REDUCE(sym_command, 3), + [2027] = {.count = 1, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), + [2029] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(186), + [2032] = {.count = 1, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), + [2034] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(188), + [2037] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(188), + [2040] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(189), + [2043] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(189), + [2046] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(190), + [2049] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(187), + [2052] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(191), + [2055] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(18), + [2058] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(19), + [2061] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(192), + [2064] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(21), + [2067] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(22), + [2070] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(23), + [2073] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(24), + [2076] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(192), + [2079] = {.count = 1, .reusable = true}, REDUCE(sym_program, 3), + [2081] = {.count = 1, .reusable = false}, SHIFT(997), + [2083] = {.count = 1, .reusable = true}, SHIFT(997), + [2085] = {.count = 1, .reusable = true}, SHIFT(999), + [2087] = {.count = 1, .reusable = false}, SHIFT(790), + [2089] = {.count = 1, .reusable = true}, SHIFT(1000), + [2091] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 4, .alias_sequence_id = 4), + [2093] = {.count = 1, .reusable = true}, SHIFT(1002), + [2095] = {.count = 1, .reusable = true}, SHIFT(1003), + [2097] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 4), + [2099] = {.count = 1, .reusable = true}, REDUCE(sym_array, 2), + [2101] = {.count = 1, .reusable = false}, REDUCE(sym_array, 2), + [2103] = {.count = 1, .reusable = true}, SHIFT(1004), + [2105] = {.count = 1, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 1, .alias_sequence_id = 1), + [2107] = {.count = 1, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 1, .alias_sequence_id = 1), + [2109] = {.count = 1, .reusable = false}, SHIFT(1006), + [2111] = {.count = 1, .reusable = false}, SHIFT(1007), + [2113] = {.count = 1, .reusable = true}, SHIFT(1009), + [2115] = {.count = 1, .reusable = true}, SHIFT(1010), + [2117] = {.count = 1, .reusable = false}, SHIFT(1011), + [2119] = {.count = 1, .reusable = true}, SHIFT(1011), + [2121] = {.count = 1, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 1), + [2123] = {.count = 1, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 1), + [2125] = {.count = 1, .reusable = true}, SHIFT(1012), + [2127] = {.count = 1, .reusable = true}, SHIFT(1013), + [2129] = {.count = 1, .reusable = true}, SHIFT(1014), + [2131] = {.count = 1, .reusable = false}, SHIFT(1015), + [2133] = {.count = 1, .reusable = true}, SHIFT(1015), + [2135] = {.count = 1, .reusable = true}, SHIFT(1025), + [2137] = {.count = 1, .reusable = true}, SHIFT(1027), + [2139] = {.count = 1, .reusable = false}, SHIFT(1029), + [2141] = {.count = 1, .reusable = false}, SHIFT(1030), + [2143] = {.count = 1, .reusable = true}, SHIFT(1031), + [2145] = {.count = 1, .reusable = true}, SHIFT(1032), + [2147] = {.count = 1, .reusable = true}, SHIFT(1033), + [2149] = {.count = 1, .reusable = false}, SHIFT(1034), + [2151] = {.count = 1, .reusable = true}, SHIFT(1034), + [2153] = {.count = 1, .reusable = true}, SHIFT(1035), + [2155] = {.count = 1, .reusable = false}, SHIFT(1037), + [2157] = {.count = 1, .reusable = true}, SHIFT(1037), + [2159] = {.count = 1, .reusable = true}, SHIFT(1036), + [2161] = {.count = 1, .reusable = true}, SHIFT(1038), + [2163] = {.count = 1, .reusable = false}, SHIFT(1040), + [2165] = {.count = 1, .reusable = true}, SHIFT(1040), + [2167] = {.count = 1, .reusable = true}, SHIFT(1039), + [2169] = {.count = 1, .reusable = false}, SHIFT(1041), + [2171] = {.count = 1, .reusable = true}, SHIFT(1042), + [2173] = {.count = 1, .reusable = true}, SHIFT(1041), + [2175] = {.count = 1, .reusable = false}, SHIFT(1045), + [2177] = {.count = 1, .reusable = true}, SHIFT(1045), + [2179] = {.count = 1, .reusable = false}, SHIFT(1048), + [2181] = {.count = 1, .reusable = true}, SHIFT(1049), + [2183] = {.count = 1, .reusable = true}, SHIFT(1048), + [2185] = {.count = 1, .reusable = true}, SHIFT(1052), + [2187] = {.count = 1, .reusable = false}, SHIFT(1054), + [2189] = {.count = 1, .reusable = true}, SHIFT(1054), + [2191] = {.count = 1, .reusable = true}, SHIFT(1055), + [2193] = {.count = 1, .reusable = false}, REDUCE(sym_unary_expression, 2), + [2195] = {.count = 1, .reusable = true}, SHIFT(1056), + [2197] = {.count = 1, .reusable = false}, SHIFT(1058), + [2199] = {.count = 1, .reusable = false}, SHIFT(1059), + [2201] = {.count = 1, .reusable = true}, SHIFT(1060), + [2203] = {.count = 1, .reusable = true}, SHIFT(1061), + [2205] = {.count = 1, .reusable = true}, SHIFT(1062), + [2207] = {.count = 1, .reusable = false}, SHIFT(1063), + [2209] = {.count = 1, .reusable = true}, SHIFT(1063), + [2211] = {.count = 1, .reusable = true}, SHIFT(1064), + [2213] = {.count = 1, .reusable = false}, SHIFT(1066), + [2215] = {.count = 1, .reusable = true}, SHIFT(1066), + [2217] = {.count = 1, .reusable = true}, SHIFT(1065), + [2219] = {.count = 1, .reusable = true}, SHIFT(1067), + [2221] = {.count = 1, .reusable = false}, SHIFT(1069), + [2223] = {.count = 1, .reusable = true}, SHIFT(1069), + [2225] = {.count = 1, .reusable = true}, SHIFT(1068), + [2227] = {.count = 1, .reusable = false}, SHIFT(1070), + [2229] = {.count = 1, .reusable = true}, SHIFT(1071), + [2231] = {.count = 1, .reusable = true}, SHIFT(1070), + [2233] = {.count = 1, .reusable = false}, SHIFT(1074), + [2235] = {.count = 1, .reusable = true}, SHIFT(1074), + [2237] = {.count = 1, .reusable = false}, SHIFT(1077), + [2239] = {.count = 1, .reusable = true}, SHIFT(1078), + [2241] = {.count = 1, .reusable = true}, SHIFT(1077), + [2243] = {.count = 1, .reusable = true}, SHIFT(1083), + [2245] = {.count = 1, .reusable = true}, SHIFT(1084), + [2247] = {.count = 1, .reusable = false}, SHIFT(1086), + [2249] = {.count = 1, .reusable = false}, SHIFT(1087), + [2251] = {.count = 1, .reusable = true}, SHIFT(1089), + [2253] = {.count = 1, .reusable = true}, SHIFT(1090), + [2255] = {.count = 1, .reusable = false}, SHIFT(1091), + [2257] = {.count = 1, .reusable = true}, SHIFT(1091), + [2259] = {.count = 1, .reusable = true}, SHIFT(1092), + [2261] = {.count = 1, .reusable = true}, SHIFT(1093), + [2263] = {.count = 1, .reusable = true}, SHIFT(1094), + [2265] = {.count = 1, .reusable = false}, SHIFT(1095), + [2267] = {.count = 1, .reusable = true}, SHIFT(1095), + [2269] = {.count = 1, .reusable = false}, SHIFT(1105), + [2271] = {.count = 1, .reusable = true}, SHIFT(1105), + [2273] = {.count = 1, .reusable = false}, SHIFT(617), + [2275] = {.count = 1, .reusable = false}, SHIFT(1107), + [2277] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 4), + [2279] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 4), + [2281] = {.count = 1, .reusable = true}, SHIFT(1109), + [2283] = {.count = 1, .reusable = true}, SHIFT(1110), + [2285] = {.count = 1, .reusable = false}, SHIFT(1112), + [2287] = {.count = 1, .reusable = false}, SHIFT(1113), + [2289] = {.count = 1, .reusable = true}, SHIFT(1114), + [2291] = {.count = 1, .reusable = true}, SHIFT(1115), + [2293] = {.count = 1, .reusable = true}, SHIFT(1116), + [2295] = {.count = 1, .reusable = false}, SHIFT(1117), + [2297] = {.count = 1, .reusable = true}, SHIFT(1117), + [2299] = {.count = 1, .reusable = true}, SHIFT(1118), + [2301] = {.count = 1, .reusable = false}, SHIFT(1120), + [2303] = {.count = 1, .reusable = true}, SHIFT(1120), + [2305] = {.count = 1, .reusable = true}, SHIFT(1119), + [2307] = {.count = 1, .reusable = true}, SHIFT(1121), + [2309] = {.count = 1, .reusable = false}, SHIFT(1123), + [2311] = {.count = 1, .reusable = true}, SHIFT(1123), + [2313] = {.count = 1, .reusable = true}, SHIFT(1122), + [2315] = {.count = 1, .reusable = false}, SHIFT(1124), + [2317] = {.count = 1, .reusable = true}, SHIFT(1125), + [2319] = {.count = 1, .reusable = true}, SHIFT(1124), + [2321] = {.count = 1, .reusable = false}, SHIFT(1128), + [2323] = {.count = 1, .reusable = true}, SHIFT(1128), + [2325] = {.count = 1, .reusable = false}, SHIFT(1131), + [2327] = {.count = 1, .reusable = true}, SHIFT(1132), + [2329] = {.count = 1, .reusable = true}, SHIFT(1131), + [2331] = {.count = 1, .reusable = true}, REDUCE(sym_parenthesized_expression, 3), + [2333] = {.count = 1, .reusable = false}, REDUCE(sym_parenthesized_expression, 3), + [2335] = {.count = 1, .reusable = true}, SHIFT(1136), + [2337] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(243), + [2340] = {.count = 1, .reusable = false}, SHIFT(1137), + [2342] = {.count = 1, .reusable = true}, SHIFT(1138), + [2344] = {.count = 1, .reusable = false}, SHIFT(1139), + [2346] = {.count = 1, .reusable = true}, SHIFT(1140), + [2348] = {.count = 1, .reusable = true}, SHIFT(1142), + [2350] = {.count = 1, .reusable = true}, SHIFT(1143), + [2352] = {.count = 1, .reusable = false}, SHIFT(1145), + [2354] = {.count = 1, .reusable = true}, SHIFT(1145), + [2356] = {.count = 1, .reusable = true}, SHIFT(1144), + [2358] = {.count = 1, .reusable = false}, SHIFT(1147), + [2360] = {.count = 1, .reusable = true}, SHIFT(1147), + [2362] = {.count = 1, .reusable = true}, SHIFT(1146), + [2364] = {.count = 1, .reusable = true}, SHIFT(1148), + [2366] = {.count = 1, .reusable = true}, SHIFT(1149), + [2368] = {.count = 1, .reusable = false}, SHIFT(1150), + [2370] = {.count = 1, .reusable = true}, SHIFT(1150), + [2372] = {.count = 1, .reusable = true}, SHIFT(1151), + [2374] = {.count = 1, .reusable = true}, SHIFT(1152), + [2376] = {.count = 1, .reusable = false}, SHIFT(1153), + [2378] = {.count = 1, .reusable = true}, SHIFT(1153), + [2380] = {.count = 1, .reusable = false}, SHIFT(1154), + [2382] = {.count = 1, .reusable = true}, SHIFT(1154), + [2384] = {.count = 1, .reusable = true}, SHIFT(1155), + [2386] = {.count = 1, .reusable = false}, SHIFT(1156), + [2388] = {.count = 1, .reusable = true}, SHIFT(1156), + [2390] = {.count = 1, .reusable = false}, SHIFT(1157), + [2392] = {.count = 1, .reusable = true}, SHIFT(1157), + [2394] = {.count = 1, .reusable = true}, SHIFT(1158), + [2396] = {.count = 1, .reusable = true}, SHIFT(1159), + [2398] = {.count = 1, .reusable = false}, SHIFT(1160), + [2400] = {.count = 1, .reusable = true}, SHIFT(1161), + [2402] = {.count = 1, .reusable = true}, SHIFT(1162), + [2404] = {.count = 1, .reusable = true}, SHIFT(1163), + [2406] = {.count = 1, .reusable = true}, SHIFT(1164), + [2408] = {.count = 1, .reusable = true}, SHIFT(1165), + [2410] = {.count = 1, .reusable = true}, SHIFT(1167), + [2412] = {.count = 1, .reusable = true}, SHIFT(1168), + [2414] = {.count = 1, .reusable = true}, SHIFT(1169), + [2416] = {.count = 1, .reusable = true}, REDUCE(sym_test_command, 4), + [2418] = {.count = 1, .reusable = false}, REDUCE(sym_test_command, 4), + [2420] = {.count = 1, .reusable = true}, REDUCE(sym_binary_expression, 3), + [2422] = {.count = 1, .reusable = false}, REDUCE(sym_binary_expression, 3), + [2424] = {.count = 1, .reusable = true}, SHIFT(1173), + [2426] = {.count = 1, .reusable = false}, SHIFT(1174), + [2428] = {.count = 1, .reusable = true}, SHIFT(1174), + [2430] = {.count = 1, .reusable = true}, SHIFT(1175), + [2432] = {.count = 1, .reusable = true}, SHIFT(1178), + [2434] = {.count = 1, .reusable = true}, SHIFT(1179), + [2436] = {.count = 1, .reusable = false}, SHIFT(1180), + [2438] = {.count = 1, .reusable = true}, SHIFT(1180), + [2440] = {.count = 1, .reusable = true}, SHIFT(1181), + [2442] = {.count = 1, .reusable = true}, SHIFT(1182), + [2444] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(274), + [2447] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(275), + [2450] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(276), + [2453] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(692), + [2456] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(276), + [2459] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(279), + [2462] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(280), + [2465] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(694), + [2468] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(280), + [2471] = {.count = 1, .reusable = true}, REDUCE(sym_do_group, 2), + [2473] = {.count = 1, .reusable = false}, REDUCE(sym_do_group, 2), + [2475] = {.count = 1, .reusable = false}, SHIFT(1186), + [2477] = {.count = 1, .reusable = true}, REDUCE(sym_while_statement, 4), + [2479] = {.count = 1, .reusable = false}, REDUCE(sym_while_statement, 4), + [2481] = {.count = 1, .reusable = true}, SHIFT(1189), + [2483] = {.count = 1, .reusable = true}, SHIFT(1190), + [2485] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(289), + [2488] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(291), + [2491] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(291), + [2494] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(292), + [2497] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(290), + [2500] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(293), + [2503] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(294), + [2506] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(294), + [2509] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 4), + [2511] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 4), + [2513] = {.count = 1, .reusable = false}, REDUCE(sym_else_clause, 1), + [2515] = {.count = 1, .reusable = true}, SHIFT(1195), + [2517] = {.count = 1, .reusable = false}, SHIFT(1195), + [2519] = {.count = 1, .reusable = true}, SHIFT(715), + [2521] = {.count = 1, .reusable = true}, SHIFT(716), + [2523] = {.count = 1, .reusable = false}, SHIFT(1200), + [2525] = {.count = 1, .reusable = true}, SHIFT(1201), + [2527] = {.count = 1, .reusable = true}, SHIFT(1202), + [2529] = {.count = 1, .reusable = false}, SHIFT(1202), + [2531] = {.count = 1, .reusable = false}, SHIFT(1206), + [2533] = {.count = 1, .reusable = true}, SHIFT(1206), + [2535] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(299), + [2538] = {.count = 1, .reusable = false}, SHIFT(1207), + [2540] = {.count = 1, .reusable = false}, SHIFT(1208), + [2542] = {.count = 1, .reusable = false}, SHIFT(1211), + [2544] = {.count = 1, .reusable = true}, SHIFT(1211), + [2546] = {.count = 1, .reusable = true}, SHIFT(1212), + [2548] = {.count = 1, .reusable = false}, SHIFT(1213), + [2550] = {.count = 1, .reusable = true}, SHIFT(1214), + [2552] = {.count = 1, .reusable = true}, SHIFT(1216), + [2554] = {.count = 1, .reusable = true}, SHIFT(1217), + [2556] = {.count = 1, .reusable = false}, SHIFT(1219), + [2558] = {.count = 1, .reusable = true}, SHIFT(1219), + [2560] = {.count = 1, .reusable = true}, SHIFT(1218), + [2562] = {.count = 1, .reusable = false}, SHIFT(1221), + [2564] = {.count = 1, .reusable = true}, SHIFT(1221), + [2566] = {.count = 1, .reusable = true}, SHIFT(1220), + [2568] = {.count = 1, .reusable = true}, SHIFT(1222), + [2570] = {.count = 1, .reusable = true}, SHIFT(1223), + [2572] = {.count = 1, .reusable = false}, SHIFT(1224), + [2574] = {.count = 1, .reusable = true}, SHIFT(1224), + [2576] = {.count = 1, .reusable = true}, SHIFT(1225), + [2578] = {.count = 1, .reusable = true}, SHIFT(1226), + [2580] = {.count = 1, .reusable = false}, SHIFT(1227), + [2582] = {.count = 1, .reusable = true}, SHIFT(1227), + [2584] = {.count = 1, .reusable = false}, SHIFT(1228), + [2586] = {.count = 1, .reusable = true}, SHIFT(1228), + [2588] = {.count = 1, .reusable = true}, SHIFT(1229), + [2590] = {.count = 1, .reusable = false}, SHIFT(1230), + [2592] = {.count = 1, .reusable = true}, SHIFT(1230), + [2594] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 2), + [2596] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 2), + [2598] = {.count = 1, .reusable = false}, SHIFT(1232), + [2600] = {.count = 1, .reusable = true}, SHIFT(1232), + [2602] = {.count = 1, .reusable = true}, SHIFT(1233), + [2604] = {.count = 1, .reusable = false}, SHIFT(1235), + [2606] = {.count = 1, .reusable = true}, SHIFT(1235), + [2608] = {.count = 1, .reusable = true}, SHIFT(1236), + [2610] = {.count = 1, .reusable = true}, SHIFT(1237), + [2612] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 4), + [2614] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 4), + [2616] = {.count = 1, .reusable = true}, SHIFT(1240), + [2618] = {.count = 1, .reusable = false}, SHIFT(1241), + [2620] = {.count = 1, .reusable = true}, SHIFT(1241), + [2622] = {.count = 1, .reusable = true}, SHIFT(1242), + [2624] = {.count = 1, .reusable = true}, SHIFT(1245), + [2626] = {.count = 1, .reusable = true}, SHIFT(1246), + [2628] = {.count = 1, .reusable = false}, SHIFT(1247), + [2630] = {.count = 1, .reusable = true}, SHIFT(1247), + [2632] = {.count = 1, .reusable = true}, SHIFT(1248), + [2634] = {.count = 1, .reusable = true}, SHIFT(1249), + [2636] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(333), + [2639] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(334), + [2642] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(335), + [2645] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(765), + [2648] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(335), + [2651] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(338), + [2654] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(339), + [2657] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(767), + [2660] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(339), + [2663] = {.count = 1, .reusable = true}, REDUCE(sym_subshell, 4), + [2665] = {.count = 1, .reusable = false}, REDUCE(sym_subshell, 4), + [2667] = {.count = 1, .reusable = true}, SHIFT(1253), + [2669] = {.count = 1, .reusable = true}, SHIFT(1254), + [2671] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(347), + [2674] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(349), + [2677] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(349), + [2680] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(350), + [2683] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(348), + [2686] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(351), + [2689] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(352), + [2692] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(352), + [2695] = {.count = 1, .reusable = true}, SHIFT(1256), + [2697] = {.count = 1, .reusable = true}, SHIFT(1258), + [2699] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(361), + [2702] = {.count = 1, .reusable = false}, SHIFT(1260), + [2704] = {.count = 1, .reusable = true}, SHIFT(1261), + [2706] = {.count = 1, .reusable = false}, SHIFT(1262), + [2708] = {.count = 1, .reusable = true}, SHIFT(1263), + [2710] = {.count = 1, .reusable = true}, SHIFT(1265), + [2712] = {.count = 1, .reusable = true}, SHIFT(1266), + [2714] = {.count = 1, .reusable = false}, SHIFT(1268), + [2716] = {.count = 1, .reusable = true}, SHIFT(1268), + [2718] = {.count = 1, .reusable = true}, SHIFT(1267), + [2720] = {.count = 1, .reusable = false}, SHIFT(1270), + [2722] = {.count = 1, .reusable = true}, SHIFT(1270), + [2724] = {.count = 1, .reusable = true}, SHIFT(1269), + [2726] = {.count = 1, .reusable = true}, SHIFT(1271), + [2728] = {.count = 1, .reusable = true}, SHIFT(1272), + [2730] = {.count = 1, .reusable = false}, SHIFT(1273), + [2732] = {.count = 1, .reusable = true}, SHIFT(1273), + [2734] = {.count = 1, .reusable = true}, SHIFT(1274), + [2736] = {.count = 1, .reusable = true}, SHIFT(1275), + [2738] = {.count = 1, .reusable = false}, SHIFT(1276), + [2740] = {.count = 1, .reusable = true}, SHIFT(1276), + [2742] = {.count = 1, .reusable = false}, SHIFT(1277), + [2744] = {.count = 1, .reusable = true}, SHIFT(1277), + [2746] = {.count = 1, .reusable = true}, SHIFT(1278), + [2748] = {.count = 1, .reusable = false}, SHIFT(1279), + [2750] = {.count = 1, .reusable = true}, SHIFT(1279), + [2752] = {.count = 1, .reusable = true}, SHIFT(1280), + [2754] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(390), + [2757] = {.count = 1, .reusable = false}, SHIFT(1282), + [2759] = {.count = 1, .reusable = true}, SHIFT(1283), + [2761] = {.count = 1, .reusable = false}, SHIFT(1284), + [2763] = {.count = 1, .reusable = true}, SHIFT(1285), + [2765] = {.count = 1, .reusable = true}, SHIFT(1287), + [2767] = {.count = 1, .reusable = true}, SHIFT(1288), + [2769] = {.count = 1, .reusable = false}, SHIFT(1290), + [2771] = {.count = 1, .reusable = true}, SHIFT(1290), + [2773] = {.count = 1, .reusable = true}, SHIFT(1289), + [2775] = {.count = 1, .reusable = false}, SHIFT(1292), + [2777] = {.count = 1, .reusable = true}, SHIFT(1292), + [2779] = {.count = 1, .reusable = true}, SHIFT(1291), + [2781] = {.count = 1, .reusable = true}, SHIFT(1293), + [2783] = {.count = 1, .reusable = true}, SHIFT(1294), + [2785] = {.count = 1, .reusable = false}, SHIFT(1295), + [2787] = {.count = 1, .reusable = true}, SHIFT(1295), + [2789] = {.count = 1, .reusable = true}, SHIFT(1296), + [2791] = {.count = 1, .reusable = true}, SHIFT(1297), + [2793] = {.count = 1, .reusable = false}, SHIFT(1298), + [2795] = {.count = 1, .reusable = true}, SHIFT(1298), + [2797] = {.count = 1, .reusable = false}, SHIFT(1299), + [2799] = {.count = 1, .reusable = true}, SHIFT(1299), + [2801] = {.count = 1, .reusable = true}, SHIFT(1300), + [2803] = {.count = 1, .reusable = false}, SHIFT(1301), + [2805] = {.count = 1, .reusable = true}, SHIFT(1301), + [2807] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(412), + [2810] = {.count = 1, .reusable = false}, SHIFT(1302), + [2812] = {.count = 1, .reusable = true}, SHIFT(1303), + [2814] = {.count = 1, .reusable = false}, SHIFT(1304), + [2816] = {.count = 1, .reusable = true}, SHIFT(1305), + [2818] = {.count = 1, .reusable = true}, SHIFT(1307), + [2820] = {.count = 1, .reusable = true}, SHIFT(1308), + [2822] = {.count = 1, .reusable = false}, SHIFT(1310), + [2824] = {.count = 1, .reusable = true}, SHIFT(1310), + [2826] = {.count = 1, .reusable = true}, SHIFT(1309), + [2828] = {.count = 1, .reusable = false}, SHIFT(1312), + [2830] = {.count = 1, .reusable = true}, SHIFT(1312), + [2832] = {.count = 1, .reusable = true}, SHIFT(1311), + [2834] = {.count = 1, .reusable = true}, SHIFT(1313), + [2836] = {.count = 1, .reusable = true}, SHIFT(1314), + [2838] = {.count = 1, .reusable = false}, SHIFT(1315), + [2840] = {.count = 1, .reusable = true}, SHIFT(1315), + [2842] = {.count = 1, .reusable = true}, SHIFT(1316), + [2844] = {.count = 1, .reusable = true}, SHIFT(1317), + [2846] = {.count = 1, .reusable = false}, SHIFT(1318), + [2848] = {.count = 1, .reusable = true}, SHIFT(1318), + [2850] = {.count = 1, .reusable = false}, SHIFT(1319), + [2852] = {.count = 1, .reusable = true}, SHIFT(1319), + [2854] = {.count = 1, .reusable = true}, SHIFT(1320), + [2856] = {.count = 1, .reusable = false}, SHIFT(1321), + [2858] = {.count = 1, .reusable = true}, SHIFT(1321), + [2860] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(434), + [2863] = {.count = 1, .reusable = false}, SHIFT(1322), + [2865] = {.count = 1, .reusable = true}, SHIFT(1323), + [2867] = {.count = 1, .reusable = false}, SHIFT(1324), + [2869] = {.count = 1, .reusable = true}, SHIFT(1325), + [2871] = {.count = 1, .reusable = true}, SHIFT(1327), + [2873] = {.count = 1, .reusable = true}, SHIFT(1328), + [2875] = {.count = 1, .reusable = false}, SHIFT(1330), + [2877] = {.count = 1, .reusable = true}, SHIFT(1330), + [2879] = {.count = 1, .reusable = true}, SHIFT(1329), + [2881] = {.count = 1, .reusable = false}, SHIFT(1332), + [2883] = {.count = 1, .reusable = true}, SHIFT(1332), + [2885] = {.count = 1, .reusable = true}, SHIFT(1331), + [2887] = {.count = 1, .reusable = true}, SHIFT(1333), + [2889] = {.count = 1, .reusable = true}, SHIFT(1334), + [2891] = {.count = 1, .reusable = false}, SHIFT(1335), + [2893] = {.count = 1, .reusable = true}, SHIFT(1335), + [2895] = {.count = 1, .reusable = true}, SHIFT(1336), + [2897] = {.count = 1, .reusable = true}, SHIFT(1337), + [2899] = {.count = 1, .reusable = false}, SHIFT(1338), + [2901] = {.count = 1, .reusable = true}, SHIFT(1338), + [2903] = {.count = 1, .reusable = false}, SHIFT(1339), + [2905] = {.count = 1, .reusable = true}, SHIFT(1339), + [2907] = {.count = 1, .reusable = true}, SHIFT(1340), + [2909] = {.count = 1, .reusable = false}, SHIFT(1341), + [2911] = {.count = 1, .reusable = true}, SHIFT(1341), + [2913] = {.count = 1, .reusable = false}, REDUCE(aux_sym_string_repeat1, 3), + [2915] = {.count = 1, .reusable = true}, REDUCE(aux_sym_string_repeat1, 3), + [2917] = {.count = 1, .reusable = true}, SHIFT(1342), + [2919] = {.count = 1, .reusable = false}, SHIFT(1343), + [2921] = {.count = 1, .reusable = true}, SHIFT(1344), + [2923] = {.count = 1, .reusable = true}, SHIFT(1346), + [2925] = {.count = 1, .reusable = true}, SHIFT(1347), + [2927] = {.count = 1, .reusable = false}, SHIFT(1349), + [2929] = {.count = 1, .reusable = true}, SHIFT(1349), + [2931] = {.count = 1, .reusable = true}, SHIFT(1348), + [2933] = {.count = 1, .reusable = false}, SHIFT(1351), + [2935] = {.count = 1, .reusable = true}, SHIFT(1351), + [2937] = {.count = 1, .reusable = true}, SHIFT(1350), + [2939] = {.count = 1, .reusable = true}, SHIFT(1352), + [2941] = {.count = 1, .reusable = true}, SHIFT(1353), + [2943] = {.count = 1, .reusable = false}, SHIFT(1354), + [2945] = {.count = 1, .reusable = true}, SHIFT(1354), + [2947] = {.count = 1, .reusable = true}, SHIFT(1355), + [2949] = {.count = 1, .reusable = true}, SHIFT(1356), + [2951] = {.count = 1, .reusable = false}, SHIFT(1357), + [2953] = {.count = 1, .reusable = true}, SHIFT(1357), + [2955] = {.count = 1, .reusable = false}, SHIFT(1358), + [2957] = {.count = 1, .reusable = true}, SHIFT(1358), + [2959] = {.count = 1, .reusable = true}, REDUCE(sym_string, 4), + [2961] = {.count = 1, .reusable = false}, REDUCE(sym_string, 4), + [2963] = {.count = 1, .reusable = true}, SHIFT(1359), + [2965] = {.count = 1, .reusable = true}, SHIFT(1360), + [2967] = {.count = 1, .reusable = true}, SHIFT(1361), + [2969] = {.count = 1, .reusable = true}, SHIFT(1362), + [2971] = {.count = 1, .reusable = true}, SHIFT(1363), + [2973] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4), + [2975] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4), + [2977] = {.count = 1, .reusable = true}, SHIFT(1364), + [2979] = {.count = 1, .reusable = true}, SHIFT(1365), + [2981] = {.count = 1, .reusable = false}, SHIFT(1367), + [2983] = {.count = 1, .reusable = false}, SHIFT(1368), + [2985] = {.count = 1, .reusable = true}, SHIFT(1370), + [2987] = {.count = 1, .reusable = true}, SHIFT(1371), + [2989] = {.count = 1, .reusable = false}, SHIFT(1372), + [2991] = {.count = 1, .reusable = true}, SHIFT(1372), + [2993] = {.count = 1, .reusable = true}, SHIFT(1373), + [2995] = {.count = 1, .reusable = true}, SHIFT(1374), + [2997] = {.count = 1, .reusable = true}, SHIFT(1375), + [2999] = {.count = 1, .reusable = true}, SHIFT(1376), + [3001] = {.count = 1, .reusable = false}, SHIFT(1377), + [3003] = {.count = 1, .reusable = true}, SHIFT(1377), + [3005] = {.count = 1, .reusable = false}, SHIFT(1387), + [3007] = {.count = 1, .reusable = true}, SHIFT(1388), + [3009] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 5), + [3011] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 5), + [3013] = {.count = 1, .reusable = true}, SHIFT(1390), + [3015] = {.count = 1, .reusable = true}, SHIFT(1391), + [3017] = {.count = 1, .reusable = false}, SHIFT(1392), + [3019] = {.count = 1, .reusable = true}, SHIFT(1392), + [3021] = {.count = 1, .reusable = true}, SHIFT(1393), + [3023] = {.count = 1, .reusable = false}, SHIFT(1394), + [3025] = {.count = 1, .reusable = true}, SHIFT(1394), + [3027] = {.count = 1, .reusable = true}, SHIFT(1395), + [3029] = {.count = 1, .reusable = false}, SHIFT(1397), + [3031] = {.count = 1, .reusable = false}, SHIFT(1398), + [3033] = {.count = 1, .reusable = true}, SHIFT(1399), + [3035] = {.count = 1, .reusable = true}, SHIFT(1400), + [3037] = {.count = 1, .reusable = true}, SHIFT(1401), + [3039] = {.count = 1, .reusable = false}, SHIFT(1402), + [3041] = {.count = 1, .reusable = true}, SHIFT(1402), + [3043] = {.count = 1, .reusable = true}, SHIFT(1403), + [3045] = {.count = 1, .reusable = false}, SHIFT(1405), + [3047] = {.count = 1, .reusable = true}, SHIFT(1405), + [3049] = {.count = 1, .reusable = true}, SHIFT(1404), + [3051] = {.count = 1, .reusable = true}, SHIFT(1406), + [3053] = {.count = 1, .reusable = false}, SHIFT(1408), + [3055] = {.count = 1, .reusable = true}, SHIFT(1408), + [3057] = {.count = 1, .reusable = true}, SHIFT(1407), + [3059] = {.count = 1, .reusable = true}, SHIFT(1409), + [3061] = {.count = 1, .reusable = false}, SHIFT(1410), + [3063] = {.count = 1, .reusable = true}, SHIFT(1410), + [3065] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 3), + [3067] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 3), + [3069] = {.count = 1, .reusable = false}, SHIFT(1411), + [3071] = {.count = 1, .reusable = true}, SHIFT(1412), + [3073] = {.count = 1, .reusable = true}, SHIFT(1411), + [3075] = {.count = 1, .reusable = false}, SHIFT(1415), + [3077] = {.count = 1, .reusable = true}, SHIFT(1415), + [3079] = {.count = 1, .reusable = false}, SHIFT(1418), + [3081] = {.count = 1, .reusable = true}, SHIFT(1419), + [3083] = {.count = 1, .reusable = true}, SHIFT(1418), + [3085] = {.count = 1, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), + [3087] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(960), + [3090] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(480), + [3093] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(481), + [3096] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(482), + [3099] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(483), + [3102] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(960), + [3105] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(484), + [3108] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(486), + [3111] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(487), + [3114] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(488), + [3117] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(483), + [3120] = {.count = 1, .reusable = true}, REDUCE(sym_command_substitution, 4), + [3122] = {.count = 1, .reusable = false}, REDUCE(sym_command_substitution, 4), + [3124] = {.count = 1, .reusable = true}, SHIFT(1422), + [3126] = {.count = 1, .reusable = true}, SHIFT(1423), + [3128] = {.count = 1, .reusable = false}, SHIFT(1424), + [3130] = {.count = 1, .reusable = true}, SHIFT(1424), + [3132] = {.count = 1, .reusable = true}, SHIFT(1425), + [3134] = {.count = 1, .reusable = true}, SHIFT(1428), + [3136] = {.count = 1, .reusable = true}, SHIFT(1429), + [3138] = {.count = 1, .reusable = false}, SHIFT(1430), + [3140] = {.count = 1, .reusable = true}, SHIFT(1430), + [3142] = {.count = 1, .reusable = true}, SHIFT(1432), + [3144] = {.count = 1, .reusable = true}, SHIFT(1433), + [3146] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(508), + [3149] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(509), + [3152] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(509), + [3155] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(510), + [3158] = {.count = 1, .reusable = true}, REDUCE(sym_process_substitution, 4), + [3160] = {.count = 1, .reusable = false}, REDUCE(sym_process_substitution, 4), + [3162] = {.count = 1, .reusable = true}, SHIFT(1436), + [3164] = {.count = 1, .reusable = true}, SHIFT(1438), + [3166] = {.count = 1, .reusable = true}, SHIFT(1439), + [3168] = {.count = 1, .reusable = true}, SHIFT(1440), + [3170] = {.count = 1, .reusable = false}, SHIFT(1441), + [3172] = {.count = 1, .reusable = true}, SHIFT(1441), + [3174] = {.count = 1, .reusable = true}, SHIFT(1442), + [3176] = {.count = 1, .reusable = false}, SHIFT(1444), + [3178] = {.count = 1, .reusable = true}, SHIFT(1444), + [3180] = {.count = 1, .reusable = true}, SHIFT(1443), + [3182] = {.count = 1, .reusable = true}, SHIFT(1445), + [3184] = {.count = 1, .reusable = false}, SHIFT(1447), + [3186] = {.count = 1, .reusable = true}, SHIFT(1447), + [3188] = {.count = 1, .reusable = true}, SHIFT(1446), + [3190] = {.count = 1, .reusable = true}, REDUCE(sym_heredoc_body, 3), + [3192] = {.count = 1, .reusable = false}, REDUCE(sym_heredoc_body, 3), + [3194] = {.count = 2, .reusable = true}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(991), + [3197] = {.count = 1, .reusable = true}, REDUCE(aux_sym_heredoc_body_repeat1, 2), + [3199] = {.count = 2, .reusable = false}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(526), + [3202] = {.count = 2, .reusable = true}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(527), + [3205] = {.count = 1, .reusable = true}, REDUCE(sym_command, 4), + [3207] = {.count = 1, .reusable = false}, REDUCE(sym_command, 4), + [3209] = {.count = 1, .reusable = true}, SHIFT(1450), + [3211] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 5, .alias_sequence_id = 4), + [3213] = {.count = 1, .reusable = true}, SHIFT(1451), + [3215] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 5), + [3217] = {.count = 1, .reusable = true}, SHIFT(1452), + [3219] = {.count = 1, .reusable = false}, SHIFT(1454), + [3221] = {.count = 1, .reusable = false}, SHIFT(1455), + [3223] = {.count = 1, .reusable = true}, SHIFT(1456), + [3225] = {.count = 1, .reusable = true}, SHIFT(1457), + [3227] = {.count = 1, .reusable = true}, SHIFT(1458), + [3229] = {.count = 1, .reusable = false}, SHIFT(1459), + [3231] = {.count = 1, .reusable = true}, SHIFT(1459), + [3233] = {.count = 1, .reusable = true}, SHIFT(1460), + [3235] = {.count = 1, .reusable = false}, SHIFT(1462), + [3237] = {.count = 1, .reusable = true}, SHIFT(1462), + [3239] = {.count = 1, .reusable = true}, SHIFT(1461), + [3241] = {.count = 1, .reusable = true}, SHIFT(1463), + [3243] = {.count = 1, .reusable = false}, SHIFT(1465), + [3245] = {.count = 1, .reusable = true}, SHIFT(1465), + [3247] = {.count = 1, .reusable = true}, SHIFT(1464), + [3249] = {.count = 1, .reusable = false}, SHIFT(1466), + [3251] = {.count = 1, .reusable = true}, SHIFT(1467), + [3253] = {.count = 1, .reusable = true}, SHIFT(1466), + [3255] = {.count = 1, .reusable = false}, SHIFT(1470), + [3257] = {.count = 1, .reusable = true}, SHIFT(1470), + [3259] = {.count = 1, .reusable = false}, SHIFT(1473), + [3261] = {.count = 1, .reusable = true}, SHIFT(1474), + [3263] = {.count = 1, .reusable = true}, SHIFT(1473), + [3265] = {.count = 1, .reusable = true}, REDUCE(sym_array, 3), + [3267] = {.count = 1, .reusable = false}, REDUCE(sym_array, 3), + [3269] = {.count = 1, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), + [3271] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(555), + [3274] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(556), + [3277] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(557), + [3280] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(558), + [3283] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(559), + [3286] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(560), + [3289] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(561), + [3292] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(562), + [3295] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(564), + [3298] = {.count = 1, .reusable = false}, SHIFT(1477), + [3300] = {.count = 1, .reusable = true}, SHIFT(1478), + [3302] = {.count = 1, .reusable = false}, SHIFT(1479), + [3304] = {.count = 1, .reusable = true}, SHIFT(1480), + [3306] = {.count = 1, .reusable = true}, SHIFT(1482), + [3308] = {.count = 1, .reusable = true}, SHIFT(1483), + [3310] = {.count = 1, .reusable = false}, SHIFT(1485), + [3312] = {.count = 1, .reusable = true}, SHIFT(1485), + [3314] = {.count = 1, .reusable = true}, SHIFT(1484), + [3316] = {.count = 1, .reusable = false}, SHIFT(1487), + [3318] = {.count = 1, .reusable = true}, SHIFT(1487), + [3320] = {.count = 1, .reusable = true}, SHIFT(1486), + [3322] = {.count = 1, .reusable = true}, SHIFT(1488), + [3324] = {.count = 1, .reusable = true}, SHIFT(1489), + [3326] = {.count = 1, .reusable = false}, SHIFT(1490), + [3328] = {.count = 1, .reusable = true}, SHIFT(1490), + [3330] = {.count = 1, .reusable = true}, SHIFT(1491), + [3332] = {.count = 1, .reusable = true}, SHIFT(1492), + [3334] = {.count = 1, .reusable = false}, SHIFT(1493), + [3336] = {.count = 1, .reusable = true}, SHIFT(1493), + [3338] = {.count = 1, .reusable = false}, SHIFT(1494), + [3340] = {.count = 1, .reusable = true}, SHIFT(1494), + [3342] = {.count = 1, .reusable = true}, SHIFT(1495), + [3344] = {.count = 1, .reusable = false}, SHIFT(1496), + [3346] = {.count = 1, .reusable = true}, SHIFT(1496), + [3348] = {.count = 1, .reusable = true}, SHIFT(1497), + [3350] = {.count = 1, .reusable = true}, SHIFT(1498), + [3352] = {.count = 1, .reusable = true}, SHIFT(1500), + [3354] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(589), + [3357] = {.count = 1, .reusable = false}, SHIFT(1502), + [3359] = {.count = 1, .reusable = true}, SHIFT(1503), + [3361] = {.count = 1, .reusable = false}, SHIFT(1504), + [3363] = {.count = 1, .reusable = true}, SHIFT(1505), + [3365] = {.count = 1, .reusable = true}, SHIFT(1507), + [3367] = {.count = 1, .reusable = true}, SHIFT(1508), + [3369] = {.count = 1, .reusable = false}, SHIFT(1510), + [3371] = {.count = 1, .reusable = true}, SHIFT(1510), + [3373] = {.count = 1, .reusable = true}, SHIFT(1509), + [3375] = {.count = 1, .reusable = false}, SHIFT(1512), + [3377] = {.count = 1, .reusable = true}, SHIFT(1512), + [3379] = {.count = 1, .reusable = true}, SHIFT(1511), + [3381] = {.count = 1, .reusable = true}, SHIFT(1513), + [3383] = {.count = 1, .reusable = true}, SHIFT(1514), + [3385] = {.count = 1, .reusable = false}, SHIFT(1515), + [3387] = {.count = 1, .reusable = true}, SHIFT(1515), + [3389] = {.count = 1, .reusable = true}, SHIFT(1516), + [3391] = {.count = 1, .reusable = true}, SHIFT(1517), + [3393] = {.count = 1, .reusable = false}, SHIFT(1518), + [3395] = {.count = 1, .reusable = true}, SHIFT(1518), + [3397] = {.count = 1, .reusable = false}, SHIFT(1519), + [3399] = {.count = 1, .reusable = true}, SHIFT(1519), + [3401] = {.count = 1, .reusable = true}, SHIFT(1520), + [3403] = {.count = 1, .reusable = false}, SHIFT(1521), + [3405] = {.count = 1, .reusable = true}, SHIFT(1521), + [3407] = {.count = 1, .reusable = false}, SHIFT(1522), + [3409] = {.count = 1, .reusable = true}, SHIFT(1522), + [3411] = {.count = 1, .reusable = true}, SHIFT(1523), + [3413] = {.count = 1, .reusable = false}, SHIFT(1525), + [3415] = {.count = 1, .reusable = false}, SHIFT(1526), + [3417] = {.count = 1, .reusable = true}, SHIFT(1527), + [3419] = {.count = 1, .reusable = true}, SHIFT(1528), + [3421] = {.count = 1, .reusable = true}, SHIFT(1529), + [3423] = {.count = 1, .reusable = false}, SHIFT(1530), + [3425] = {.count = 1, .reusable = true}, SHIFT(1530), + [3427] = {.count = 1, .reusable = true}, SHIFT(1531), + [3429] = {.count = 1, .reusable = false}, SHIFT(1533), + [3431] = {.count = 1, .reusable = true}, SHIFT(1533), + [3433] = {.count = 1, .reusable = true}, SHIFT(1532), + [3435] = {.count = 1, .reusable = true}, SHIFT(1534), + [3437] = {.count = 1, .reusable = false}, SHIFT(1536), + [3439] = {.count = 1, .reusable = true}, SHIFT(1536), + [3441] = {.count = 1, .reusable = true}, SHIFT(1535), + [3443] = {.count = 1, .reusable = false}, SHIFT(1537), + [3445] = {.count = 1, .reusable = true}, SHIFT(1538), + [3447] = {.count = 1, .reusable = true}, SHIFT(1537), + [3449] = {.count = 1, .reusable = false}, SHIFT(1541), + [3451] = {.count = 1, .reusable = true}, SHIFT(1541), + [3453] = {.count = 1, .reusable = false}, SHIFT(1544), + [3455] = {.count = 1, .reusable = true}, SHIFT(1545), + [3457] = {.count = 1, .reusable = true}, SHIFT(1544), + [3459] = {.count = 1, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), + [3461] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(614), + [3464] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(615), + [3467] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(616), + [3470] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(617), + [3473] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(618), + [3476] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(619), + [3479] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(620), + [3482] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(621), + [3485] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(617), + [3488] = {.count = 1, .reusable = false}, SHIFT(1549), + [3490] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(627), + [3493] = {.count = 1, .reusable = false}, SHIFT(1550), + [3495] = {.count = 1, .reusable = true}, SHIFT(1551), + [3497] = {.count = 1, .reusable = false}, SHIFT(1552), + [3499] = {.count = 1, .reusable = true}, SHIFT(1553), + [3501] = {.count = 1, .reusable = true}, SHIFT(1555), + [3503] = {.count = 1, .reusable = true}, SHIFT(1556), + [3505] = {.count = 1, .reusable = false}, SHIFT(1558), + [3507] = {.count = 1, .reusable = true}, SHIFT(1558), + [3509] = {.count = 1, .reusable = true}, SHIFT(1557), + [3511] = {.count = 1, .reusable = false}, SHIFT(1560), + [3513] = {.count = 1, .reusable = true}, SHIFT(1560), + [3515] = {.count = 1, .reusable = true}, SHIFT(1559), + [3517] = {.count = 1, .reusable = true}, SHIFT(1561), + [3519] = {.count = 1, .reusable = true}, SHIFT(1562), + [3521] = {.count = 1, .reusable = false}, SHIFT(1563), + [3523] = {.count = 1, .reusable = true}, SHIFT(1563), + [3525] = {.count = 1, .reusable = true}, SHIFT(1564), + [3527] = {.count = 1, .reusable = true}, SHIFT(1565), + [3529] = {.count = 1, .reusable = false}, SHIFT(1566), + [3531] = {.count = 1, .reusable = true}, SHIFT(1566), + [3533] = {.count = 1, .reusable = false}, SHIFT(1567), + [3535] = {.count = 1, .reusable = true}, SHIFT(1567), + [3537] = {.count = 1, .reusable = true}, SHIFT(1568), + [3539] = {.count = 1, .reusable = false}, SHIFT(1569), + [3541] = {.count = 1, .reusable = true}, SHIFT(1569), + [3543] = {.count = 1, .reusable = true}, SHIFT(1570), + [3545] = {.count = 1, .reusable = true}, SHIFT(1571), + [3547] = {.count = 1, .reusable = false}, SHIFT(1572), + [3549] = {.count = 1, .reusable = true}, SHIFT(1573), + [3551] = {.count = 1, .reusable = true}, SHIFT(1575), + [3553] = {.count = 1, .reusable = true}, SHIFT(1576), + [3555] = {.count = 1, .reusable = false}, SHIFT(1577), + [3557] = {.count = 1, .reusable = true}, SHIFT(1577), + [3559] = {.count = 1, .reusable = true}, SHIFT(1578), + [3561] = {.count = 1, .reusable = false}, SHIFT(1579), + [3563] = {.count = 1, .reusable = true}, SHIFT(1579), + [3565] = {.count = 1, .reusable = true}, SHIFT(1580), + [3567] = {.count = 1, .reusable = false}, SHIFT(1581), + [3569] = {.count = 1, .reusable = true}, SHIFT(1581), + [3571] = {.count = 1, .reusable = true}, SHIFT(1582), + [3573] = {.count = 1, .reusable = true}, SHIFT(1583), + [3575] = {.count = 1, .reusable = true}, SHIFT(1584), + [3577] = {.count = 1, .reusable = true}, SHIFT(1585), + [3579] = {.count = 1, .reusable = true}, SHIFT(1587), + [3581] = {.count = 1, .reusable = false}, SHIFT(1589), + [3583] = {.count = 1, .reusable = false}, SHIFT(1590), + [3585] = {.count = 1, .reusable = true}, SHIFT(1592), + [3587] = {.count = 1, .reusable = true}, SHIFT(1593), + [3589] = {.count = 1, .reusable = false}, SHIFT(1594), + [3591] = {.count = 1, .reusable = true}, SHIFT(1594), + [3593] = {.count = 1, .reusable = true}, SHIFT(1595), + [3595] = {.count = 1, .reusable = true}, SHIFT(1596), + [3597] = {.count = 1, .reusable = true}, SHIFT(1597), + [3599] = {.count = 1, .reusable = false}, SHIFT(1598), + [3601] = {.count = 1, .reusable = true}, SHIFT(1598), + [3603] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(677), + [3606] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(678), + [3609] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(678), + [3612] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(679), + [3615] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(679), + [3618] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(680), + [3621] = {.count = 1, .reusable = false}, SHIFT(1609), + [3623] = {.count = 1, .reusable = true}, SHIFT(1609), + [3625] = {.count = 1, .reusable = true}, SHIFT(1610), + [3627] = {.count = 1, .reusable = true}, SHIFT(1611), + [3629] = {.count = 1, .reusable = true}, SHIFT(1612), + [3631] = {.count = 1, .reusable = true}, SHIFT(1613), + [3633] = {.count = 1, .reusable = false}, SHIFT(1616), + [3635] = {.count = 1, .reusable = true}, SHIFT(1616), + [3637] = {.count = 1, .reusable = true}, SHIFT(1617), + [3639] = {.count = 1, .reusable = true}, SHIFT(1618), + [3641] = {.count = 1, .reusable = true}, REDUCE(sym_do_group, 3), + [3643] = {.count = 1, .reusable = false}, REDUCE(sym_do_group, 3), + [3645] = {.count = 1, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), + [3647] = {.count = 1, .reusable = true}, REDUCE(sym_while_statement, 5), + [3649] = {.count = 1, .reusable = false}, REDUCE(sym_while_statement, 5), + [3651] = {.count = 1, .reusable = true}, SHIFT(1620), + [3653] = {.count = 1, .reusable = false}, REDUCE(sym_else_clause, 2), + [3655] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 5), + [3657] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 5), + [3659] = {.count = 1, .reusable = true}, SHIFT(1622), + [3661] = {.count = 1, .reusable = true}, REDUCE(aux_sym_if_statement_repeat1, 2), + [3663] = {.count = 2, .reusable = true}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(715), + [3666] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 5, .alias_sequence_id = 2), + [3668] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 5, .alias_sequence_id = 2), + [3670] = {.count = 1, .reusable = true}, SHIFT(1624), + [3672] = {.count = 1, .reusable = true}, SHIFT(1625), + [3674] = {.count = 1, .reusable = true}, SHIFT(1628), + [3676] = {.count = 1, .reusable = true}, SHIFT(1630), + [3678] = {.count = 1, .reusable = false}, SHIFT(1630), + [3680] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 5), + [3682] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 5), + [3684] = {.count = 1, .reusable = true}, SHIFT(1634), + [3686] = {.count = 1, .reusable = false}, SHIFT(1634), + [3688] = {.count = 1, .reusable = true}, SHIFT(1637), + [3690] = {.count = 1, .reusable = true}, SHIFT(1638), + [3692] = {.count = 1, .reusable = false}, SHIFT(1639), + [3694] = {.count = 1, .reusable = true}, SHIFT(1640), + [3696] = {.count = 1, .reusable = true}, SHIFT(1642), + [3698] = {.count = 1, .reusable = true}, SHIFT(1643), + [3700] = {.count = 1, .reusable = false}, SHIFT(1644), + [3702] = {.count = 1, .reusable = true}, SHIFT(1644), + [3704] = {.count = 1, .reusable = true}, SHIFT(1645), + [3706] = {.count = 1, .reusable = false}, SHIFT(1646), + [3708] = {.count = 1, .reusable = true}, SHIFT(1646), + [3710] = {.count = 1, .reusable = true}, SHIFT(1647), + [3712] = {.count = 1, .reusable = false}, SHIFT(1648), + [3714] = {.count = 1, .reusable = true}, SHIFT(1648), + [3716] = {.count = 1, .reusable = true}, SHIFT(1649), + [3718] = {.count = 1, .reusable = true}, SHIFT(1650), + [3720] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 5), + [3722] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 5), + [3724] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 3), + [3726] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 3), + [3728] = {.count = 1, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), + [3730] = {.count = 1, .reusable = true}, SHIFT(1652), + [3732] = {.count = 1, .reusable = true}, SHIFT(1653), + [3734] = {.count = 1, .reusable = false}, SHIFT(1657), + [3736] = {.count = 1, .reusable = true}, SHIFT(1657), + [3738] = {.count = 1, .reusable = true}, SHIFT(1658), + [3740] = {.count = 1, .reusable = true}, SHIFT(1659), + [3742] = {.count = 1, .reusable = true}, SHIFT(1660), + [3744] = {.count = 1, .reusable = true}, SHIFT(1661), + [3746] = {.count = 1, .reusable = false}, SHIFT(1664), + [3748] = {.count = 1, .reusable = true}, SHIFT(1664), + [3750] = {.count = 1, .reusable = true}, SHIFT(1665), + [3752] = {.count = 1, .reusable = true}, SHIFT(1666), + [3754] = {.count = 1, .reusable = true}, REDUCE(sym_subshell, 5), + [3756] = {.count = 1, .reusable = false}, REDUCE(sym_subshell, 5), + [3758] = {.count = 1, .reusable = true}, SHIFT(1668), + [3760] = {.count = 1, .reusable = true}, SHIFT(1669), + [3762] = {.count = 1, .reusable = true}, SHIFT(1670), + [3764] = {.count = 1, .reusable = false}, SHIFT(1671), + [3766] = {.count = 1, .reusable = true}, SHIFT(1672), + [3768] = {.count = 1, .reusable = true}, SHIFT(1674), + [3770] = {.count = 1, .reusable = true}, SHIFT(1675), + [3772] = {.count = 1, .reusable = false}, SHIFT(1676), + [3774] = {.count = 1, .reusable = true}, SHIFT(1676), + [3776] = {.count = 1, .reusable = true}, SHIFT(1677), + [3778] = {.count = 1, .reusable = false}, SHIFT(1678), + [3780] = {.count = 1, .reusable = true}, SHIFT(1678), + [3782] = {.count = 1, .reusable = true}, SHIFT(1679), + [3784] = {.count = 1, .reusable = false}, SHIFT(1680), + [3786] = {.count = 1, .reusable = true}, SHIFT(1680), + [3788] = {.count = 1, .reusable = true}, SHIFT(1681), + [3790] = {.count = 1, .reusable = true}, SHIFT(1682), + [3792] = {.count = 1, .reusable = true}, SHIFT(1683), + [3794] = {.count = 1, .reusable = true}, SHIFT(1684), + [3796] = {.count = 1, .reusable = true}, SHIFT(1685), + [3798] = {.count = 1, .reusable = false}, SHIFT(1686), + [3800] = {.count = 1, .reusable = true}, SHIFT(1687), + [3802] = {.count = 1, .reusable = true}, SHIFT(1689), + [3804] = {.count = 1, .reusable = true}, SHIFT(1690), + [3806] = {.count = 1, .reusable = false}, SHIFT(1691), + [3808] = {.count = 1, .reusable = true}, SHIFT(1691), + [3810] = {.count = 1, .reusable = true}, SHIFT(1692), + [3812] = {.count = 1, .reusable = false}, SHIFT(1693), + [3814] = {.count = 1, .reusable = true}, SHIFT(1693), + [3816] = {.count = 1, .reusable = true}, SHIFT(1694), + [3818] = {.count = 1, .reusable = false}, SHIFT(1695), + [3820] = {.count = 1, .reusable = true}, SHIFT(1695), + [3822] = {.count = 1, .reusable = true}, SHIFT(1696), + [3824] = {.count = 1, .reusable = true}, SHIFT(1697), + [3826] = {.count = 1, .reusable = true}, SHIFT(1698), + [3828] = {.count = 1, .reusable = true}, SHIFT(1699), + [3830] = {.count = 1, .reusable = false}, SHIFT(1700), + [3832] = {.count = 1, .reusable = true}, SHIFT(1701), + [3834] = {.count = 1, .reusable = true}, SHIFT(1703), + [3836] = {.count = 1, .reusable = true}, SHIFT(1704), + [3838] = {.count = 1, .reusable = false}, SHIFT(1705), + [3840] = {.count = 1, .reusable = true}, SHIFT(1705), + [3842] = {.count = 1, .reusable = true}, SHIFT(1706), + [3844] = {.count = 1, .reusable = false}, SHIFT(1707), + [3846] = {.count = 1, .reusable = true}, SHIFT(1707), + [3848] = {.count = 1, .reusable = true}, SHIFT(1708), + [3850] = {.count = 1, .reusable = false}, SHIFT(1709), + [3852] = {.count = 1, .reusable = true}, SHIFT(1709), + [3854] = {.count = 1, .reusable = true}, SHIFT(1710), + [3856] = {.count = 1, .reusable = true}, SHIFT(1711), + [3858] = {.count = 1, .reusable = true}, SHIFT(1712), + [3860] = {.count = 1, .reusable = true}, SHIFT(1713), + [3862] = {.count = 1, .reusable = false}, SHIFT(1714), + [3864] = {.count = 1, .reusable = true}, SHIFT(1715), + [3866] = {.count = 1, .reusable = true}, SHIFT(1717), + [3868] = {.count = 1, .reusable = true}, SHIFT(1718), + [3870] = {.count = 1, .reusable = false}, SHIFT(1719), + [3872] = {.count = 1, .reusable = true}, SHIFT(1719), + [3874] = {.count = 1, .reusable = true}, SHIFT(1720), + [3876] = {.count = 1, .reusable = false}, SHIFT(1721), + [3878] = {.count = 1, .reusable = true}, SHIFT(1721), + [3880] = {.count = 1, .reusable = true}, SHIFT(1722), + [3882] = {.count = 1, .reusable = false}, SHIFT(1723), + [3884] = {.count = 1, .reusable = true}, SHIFT(1723), + [3886] = {.count = 1, .reusable = true}, SHIFT(1724), + [3888] = {.count = 1, .reusable = true}, SHIFT(1725), + [3890] = {.count = 1, .reusable = true}, SHIFT(1726), + [3892] = {.count = 1, .reusable = true}, SHIFT(1727), + [3894] = {.count = 1, .reusable = false}, SHIFT(1728), + [3896] = {.count = 1, .reusable = true}, SHIFT(1729), + [3898] = {.count = 1, .reusable = true}, SHIFT(1731), + [3900] = {.count = 1, .reusable = true}, SHIFT(1732), + [3902] = {.count = 1, .reusable = false}, SHIFT(1733), + [3904] = {.count = 1, .reusable = true}, SHIFT(1733), + [3906] = {.count = 1, .reusable = true}, SHIFT(1734), + [3908] = {.count = 1, .reusable = false}, SHIFT(1735), + [3910] = {.count = 1, .reusable = true}, SHIFT(1735), + [3912] = {.count = 1, .reusable = true}, SHIFT(1736), + [3914] = {.count = 1, .reusable = false}, SHIFT(1737), + [3916] = {.count = 1, .reusable = true}, SHIFT(1737), + [3918] = {.count = 1, .reusable = true}, SHIFT(1738), + [3920] = {.count = 1, .reusable = true}, SHIFT(1739), + [3922] = {.count = 1, .reusable = true}, SHIFT(1740), + [3924] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 4, .alias_sequence_id = 4), + [3926] = {.count = 1, .reusable = true}, SHIFT(1741), + [3928] = {.count = 1, .reusable = true}, SHIFT(1742), + [3930] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 4), + [3932] = {.count = 1, .reusable = true}, SHIFT(1743), + [3934] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 6), + [3936] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 6), + [3938] = {.count = 1, .reusable = false}, SHIFT(1745), + [3940] = {.count = 1, .reusable = false}, SHIFT(1746), + [3942] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5), + [3944] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5), + [3946] = {.count = 1, .reusable = true}, SHIFT(1747), + [3948] = {.count = 1, .reusable = true}, SHIFT(1748), + [3950] = {.count = 1, .reusable = true}, SHIFT(1749), + [3952] = {.count = 1, .reusable = false}, SHIFT(1750), + [3954] = {.count = 1, .reusable = true}, SHIFT(1750), + [3956] = {.count = 1, .reusable = true}, SHIFT(1751), + [3958] = {.count = 1, .reusable = false}, SHIFT(1753), + [3960] = {.count = 1, .reusable = true}, SHIFT(1753), + [3962] = {.count = 1, .reusable = true}, SHIFT(1752), + [3964] = {.count = 1, .reusable = true}, SHIFT(1754), + [3966] = {.count = 1, .reusable = false}, SHIFT(1756), + [3968] = {.count = 1, .reusable = true}, SHIFT(1756), + [3970] = {.count = 1, .reusable = true}, SHIFT(1755), + [3972] = {.count = 1, .reusable = false}, SHIFT(1757), + [3974] = {.count = 1, .reusable = true}, SHIFT(1758), + [3976] = {.count = 1, .reusable = true}, SHIFT(1757), + [3978] = {.count = 1, .reusable = false}, SHIFT(1761), + [3980] = {.count = 1, .reusable = true}, SHIFT(1761), + [3982] = {.count = 1, .reusable = false}, SHIFT(1764), + [3984] = {.count = 1, .reusable = true}, SHIFT(1765), + [3986] = {.count = 1, .reusable = true}, SHIFT(1764), + [3988] = {.count = 1, .reusable = true}, SHIFT(1768), + [3990] = {.count = 1, .reusable = true}, SHIFT(1769), + [3992] = {.count = 1, .reusable = true}, SHIFT(1770), + [3994] = {.count = 1, .reusable = false}, SHIFT(1771), + [3996] = {.count = 1, .reusable = true}, SHIFT(1771), + [3998] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 5), + [4000] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 5), + [4002] = {.count = 1, .reusable = false}, SHIFT(1772), + [4004] = {.count = 1, .reusable = true}, SHIFT(1772), + [4006] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(936), + [4009] = {.count = 1, .reusable = false}, SHIFT(1773), + [4011] = {.count = 1, .reusable = true}, SHIFT(1774), + [4013] = {.count = 1, .reusable = false}, SHIFT(1775), + [4015] = {.count = 1, .reusable = true}, SHIFT(1776), + [4017] = {.count = 1, .reusable = true}, SHIFT(1778), + [4019] = {.count = 1, .reusable = true}, SHIFT(1779), + [4021] = {.count = 1, .reusable = false}, SHIFT(1781), + [4023] = {.count = 1, .reusable = true}, SHIFT(1781), + [4025] = {.count = 1, .reusable = true}, SHIFT(1780), + [4027] = {.count = 1, .reusable = false}, SHIFT(1783), + [4029] = {.count = 1, .reusable = true}, SHIFT(1783), + [4031] = {.count = 1, .reusable = true}, SHIFT(1782), + [4033] = {.count = 1, .reusable = true}, SHIFT(1784), + [4035] = {.count = 1, .reusable = true}, SHIFT(1785), + [4037] = {.count = 1, .reusable = false}, SHIFT(1786), + [4039] = {.count = 1, .reusable = true}, SHIFT(1786), + [4041] = {.count = 1, .reusable = true}, SHIFT(1787), + [4043] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 3), + [4045] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 3), + [4047] = {.count = 1, .reusable = true}, SHIFT(1788), + [4049] = {.count = 1, .reusable = true}, SHIFT(1789), + [4051] = {.count = 1, .reusable = false}, SHIFT(1790), + [4053] = {.count = 1, .reusable = true}, SHIFT(1790), + [4055] = {.count = 1, .reusable = false}, SHIFT(1791), + [4057] = {.count = 1, .reusable = true}, SHIFT(1791), + [4059] = {.count = 1, .reusable = true}, SHIFT(1792), + [4061] = {.count = 1, .reusable = false}, SHIFT(1793), + [4063] = {.count = 1, .reusable = true}, SHIFT(1793), + [4065] = {.count = 1, .reusable = true}, REDUCE(sym_command_substitution, 5), + [4067] = {.count = 1, .reusable = false}, REDUCE(sym_command_substitution, 5), + [4069] = {.count = 1, .reusable = false}, SHIFT(1794), + [4071] = {.count = 1, .reusable = true}, SHIFT(1794), + [4073] = {.count = 1, .reusable = true}, SHIFT(1795), + [4075] = {.count = 1, .reusable = true}, SHIFT(1796), + [4077] = {.count = 1, .reusable = true}, SHIFT(1797), + [4079] = {.count = 1, .reusable = true}, SHIFT(1798), + [4081] = {.count = 1, .reusable = false}, SHIFT(1801), + [4083] = {.count = 1, .reusable = true}, SHIFT(1801), + [4085] = {.count = 1, .reusable = true}, SHIFT(1802), + [4087] = {.count = 1, .reusable = true}, SHIFT(1803), + [4089] = {.count = 1, .reusable = true}, REDUCE(sym_process_substitution, 5), + [4091] = {.count = 1, .reusable = false}, REDUCE(sym_process_substitution, 5), + [4093] = {.count = 1, .reusable = true}, SHIFT(1805), + [4095] = {.count = 1, .reusable = false}, SHIFT(1806), + [4097] = {.count = 1, .reusable = true}, SHIFT(1807), + [4099] = {.count = 1, .reusable = true}, SHIFT(1809), + [4101] = {.count = 1, .reusable = true}, SHIFT(1810), + [4103] = {.count = 1, .reusable = false}, SHIFT(1812), + [4105] = {.count = 1, .reusable = true}, SHIFT(1812), + [4107] = {.count = 1, .reusable = true}, SHIFT(1811), + [4109] = {.count = 1, .reusable = false}, SHIFT(1814), + [4111] = {.count = 1, .reusable = true}, SHIFT(1814), + [4113] = {.count = 1, .reusable = true}, SHIFT(1813), + [4115] = {.count = 1, .reusable = true}, SHIFT(1815), + [4117] = {.count = 1, .reusable = true}, SHIFT(1816), + [4119] = {.count = 1, .reusable = false}, SHIFT(1817), + [4121] = {.count = 1, .reusable = true}, SHIFT(1817), + [4123] = {.count = 1, .reusable = true}, SHIFT(1818), + [4125] = {.count = 1, .reusable = true}, REDUCE(sym_command, 5), + [4127] = {.count = 1, .reusable = false}, REDUCE(sym_command, 5), + [4129] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 6, .alias_sequence_id = 4), + [4131] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 6), + [4133] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1004), + [4136] = {.count = 1, .reusable = false}, SHIFT(1819), + [4138] = {.count = 1, .reusable = true}, SHIFT(1820), + [4140] = {.count = 1, .reusable = false}, SHIFT(1821), + [4142] = {.count = 1, .reusable = true}, SHIFT(1822), + [4144] = {.count = 1, .reusable = true}, SHIFT(1824), + [4146] = {.count = 1, .reusable = true}, SHIFT(1825), + [4148] = {.count = 1, .reusable = false}, SHIFT(1827), + [4150] = {.count = 1, .reusable = true}, SHIFT(1827), + [4152] = {.count = 1, .reusable = true}, SHIFT(1826), + [4154] = {.count = 1, .reusable = false}, SHIFT(1829), + [4156] = {.count = 1, .reusable = true}, SHIFT(1829), + [4158] = {.count = 1, .reusable = true}, SHIFT(1828), + [4160] = {.count = 1, .reusable = true}, SHIFT(1830), + [4162] = {.count = 1, .reusable = true}, SHIFT(1831), + [4164] = {.count = 1, .reusable = false}, SHIFT(1832), + [4166] = {.count = 1, .reusable = true}, SHIFT(1832), + [4168] = {.count = 1, .reusable = true}, SHIFT(1833), + [4170] = {.count = 1, .reusable = true}, SHIFT(1834), + [4172] = {.count = 1, .reusable = false}, SHIFT(1835), + [4174] = {.count = 1, .reusable = true}, SHIFT(1835), + [4176] = {.count = 1, .reusable = false}, SHIFT(1836), + [4178] = {.count = 1, .reusable = true}, SHIFT(1836), + [4180] = {.count = 1, .reusable = true}, SHIFT(1837), + [4182] = {.count = 1, .reusable = false}, SHIFT(1838), + [4184] = {.count = 1, .reusable = true}, SHIFT(1838), + [4186] = {.count = 1, .reusable = true}, SHIFT(1839), + [4188] = {.count = 1, .reusable = true}, SHIFT(1840), + [4190] = {.count = 1, .reusable = false}, SHIFT(1841), + [4192] = {.count = 1, .reusable = true}, SHIFT(1842), + [4194] = {.count = 1, .reusable = true}, SHIFT(1844), + [4196] = {.count = 1, .reusable = true}, SHIFT(1845), + [4198] = {.count = 1, .reusable = false}, SHIFT(1846), + [4200] = {.count = 1, .reusable = true}, SHIFT(1846), + [4202] = {.count = 1, .reusable = true}, SHIFT(1847), + [4204] = {.count = 1, .reusable = false}, SHIFT(1848), + [4206] = {.count = 1, .reusable = true}, SHIFT(1848), + [4208] = {.count = 1, .reusable = true}, SHIFT(1849), + [4210] = {.count = 1, .reusable = false}, SHIFT(1850), + [4212] = {.count = 1, .reusable = true}, SHIFT(1850), + [4214] = {.count = 1, .reusable = true}, SHIFT(1851), + [4216] = {.count = 1, .reusable = true}, SHIFT(1852), + [4218] = {.count = 1, .reusable = true}, SHIFT(1854), + [4220] = {.count = 1, .reusable = true}, REDUCE(sym_c_style_for_statement, 6), + [4222] = {.count = 1, .reusable = false}, REDUCE(sym_c_style_for_statement, 6), + [4224] = {.count = 1, .reusable = true}, SHIFT(1856), + [4226] = {.count = 1, .reusable = true}, SHIFT(1857), + [4228] = {.count = 1, .reusable = true}, SHIFT(1858), + [4230] = {.count = 1, .reusable = true}, SHIFT(1859), + [4232] = {.count = 1, .reusable = false}, SHIFT(1860), + [4234] = {.count = 1, .reusable = true}, SHIFT(1861), + [4236] = {.count = 1, .reusable = true}, SHIFT(1863), + [4238] = {.count = 1, .reusable = true}, SHIFT(1864), + [4240] = {.count = 1, .reusable = false}, SHIFT(1865), + [4242] = {.count = 1, .reusable = true}, SHIFT(1865), + [4244] = {.count = 1, .reusable = true}, SHIFT(1866), + [4246] = {.count = 1, .reusable = false}, SHIFT(1867), + [4248] = {.count = 1, .reusable = true}, SHIFT(1867), + [4250] = {.count = 1, .reusable = true}, SHIFT(1868), + [4252] = {.count = 1, .reusable = false}, SHIFT(1869), + [4254] = {.count = 1, .reusable = true}, SHIFT(1869), + [4256] = {.count = 1, .reusable = true}, SHIFT(1870), + [4258] = {.count = 1, .reusable = true}, SHIFT(1871), + [4260] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1084), + [4263] = {.count = 1, .reusable = false}, SHIFT(1873), + [4265] = {.count = 1, .reusable = true}, SHIFT(1874), + [4267] = {.count = 1, .reusable = false}, SHIFT(1875), + [4269] = {.count = 1, .reusable = true}, SHIFT(1876), + [4271] = {.count = 1, .reusable = true}, SHIFT(1878), + [4273] = {.count = 1, .reusable = true}, SHIFT(1879), + [4275] = {.count = 1, .reusable = false}, SHIFT(1881), + [4277] = {.count = 1, .reusable = true}, SHIFT(1881), + [4279] = {.count = 1, .reusable = true}, SHIFT(1880), + [4281] = {.count = 1, .reusable = false}, SHIFT(1883), + [4283] = {.count = 1, .reusable = true}, SHIFT(1883), + [4285] = {.count = 1, .reusable = true}, SHIFT(1882), + [4287] = {.count = 1, .reusable = true}, SHIFT(1884), + [4289] = {.count = 1, .reusable = true}, SHIFT(1885), + [4291] = {.count = 1, .reusable = false}, SHIFT(1886), + [4293] = {.count = 1, .reusable = true}, SHIFT(1886), + [4295] = {.count = 1, .reusable = true}, SHIFT(1887), + [4297] = {.count = 1, .reusable = true}, SHIFT(1888), + [4299] = {.count = 1, .reusable = false}, SHIFT(1889), + [4301] = {.count = 1, .reusable = true}, SHIFT(1889), + [4303] = {.count = 1, .reusable = false}, SHIFT(1890), + [4305] = {.count = 1, .reusable = true}, SHIFT(1890), + [4307] = {.count = 1, .reusable = true}, SHIFT(1891), + [4309] = {.count = 1, .reusable = false}, SHIFT(1892), + [4311] = {.count = 1, .reusable = true}, SHIFT(1892), + [4313] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 6), + [4315] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 6), + [4317] = {.count = 1, .reusable = true}, SHIFT(1893), + [4319] = {.count = 1, .reusable = true}, SHIFT(1894), + [4321] = {.count = 1, .reusable = false}, SHIFT(1895), + [4323] = {.count = 1, .reusable = true}, SHIFT(1896), + [4325] = {.count = 1, .reusable = true}, SHIFT(1898), + [4327] = {.count = 1, .reusable = true}, SHIFT(1899), + [4329] = {.count = 1, .reusable = false}, SHIFT(1900), + [4331] = {.count = 1, .reusable = true}, SHIFT(1900), + [4333] = {.count = 1, .reusable = true}, SHIFT(1901), + [4335] = {.count = 1, .reusable = false}, SHIFT(1902), + [4337] = {.count = 1, .reusable = true}, SHIFT(1902), + [4339] = {.count = 1, .reusable = true}, SHIFT(1903), + [4341] = {.count = 1, .reusable = false}, SHIFT(1904), + [4343] = {.count = 1, .reusable = true}, SHIFT(1904), + [4345] = {.count = 1, .reusable = true}, SHIFT(1905), + [4347] = {.count = 1, .reusable = true}, SHIFT(1906), + [4349] = {.count = 1, .reusable = true}, SHIFT(1907), + [4351] = {.count = 1, .reusable = true}, SHIFT(1908), + [4353] = {.count = 1, .reusable = true}, SHIFT(1909), + [4355] = {.count = 1, .reusable = false}, SHIFT(1910), + [4357] = {.count = 1, .reusable = true}, SHIFT(1910), + [4359] = {.count = 1, .reusable = false}, SHIFT(1911), + [4361] = {.count = 1, .reusable = true}, SHIFT(1911), + [4363] = {.count = 1, .reusable = true}, SHIFT(1912), + [4365] = {.count = 1, .reusable = true}, SHIFT(1913), + [4367] = {.count = 1, .reusable = false}, SHIFT(1915), + [4369] = {.count = 1, .reusable = false}, SHIFT(1916), + [4371] = {.count = 1, .reusable = true}, SHIFT(1917), + [4373] = {.count = 1, .reusable = true}, SHIFT(1918), + [4375] = {.count = 1, .reusable = true}, SHIFT(1919), + [4377] = {.count = 1, .reusable = false}, SHIFT(1920), + [4379] = {.count = 1, .reusable = true}, SHIFT(1920), + [4381] = {.count = 1, .reusable = true}, SHIFT(1921), + [4383] = {.count = 1, .reusable = false}, SHIFT(1923), + [4385] = {.count = 1, .reusable = true}, SHIFT(1923), + [4387] = {.count = 1, .reusable = true}, SHIFT(1922), + [4389] = {.count = 1, .reusable = true}, SHIFT(1924), + [4391] = {.count = 1, .reusable = false}, SHIFT(1926), + [4393] = {.count = 1, .reusable = true}, SHIFT(1926), + [4395] = {.count = 1, .reusable = true}, SHIFT(1925), + [4397] = {.count = 1, .reusable = false}, SHIFT(1927), + [4399] = {.count = 1, .reusable = true}, SHIFT(1928), + [4401] = {.count = 1, .reusable = true}, SHIFT(1927), + [4403] = {.count = 1, .reusable = false}, SHIFT(1931), + [4405] = {.count = 1, .reusable = true}, SHIFT(1931), + [4407] = {.count = 1, .reusable = false}, SHIFT(1934), + [4409] = {.count = 1, .reusable = true}, SHIFT(1935), + [4411] = {.count = 1, .reusable = true}, SHIFT(1934), + [4413] = {.count = 1, .reusable = true}, SHIFT(1938), + [4415] = {.count = 1, .reusable = true}, SHIFT(1939), + [4417] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1173), + [4420] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1174), + [4423] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1174), + [4426] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1175), + [4429] = {.count = 1, .reusable = true}, SHIFT(1941), + [4431] = {.count = 1, .reusable = true}, SHIFT(1942), + [4433] = {.count = 1, .reusable = false}, REDUCE(sym_elif_clause, 3), + [4435] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 6), + [4437] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 6), + [4439] = {.count = 1, .reusable = true}, SHIFT(1945), + [4441] = {.count = 1, .reusable = true}, SHIFT(1946), + [4443] = {.count = 1, .reusable = true}, SHIFT(1947), + [4445] = {.count = 1, .reusable = true}, SHIFT(1949), + [4447] = {.count = 1, .reusable = true}, SHIFT(1950), + [4449] = {.count = 1, .reusable = false}, SHIFT(1951), + [4451] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 2, .alias_sequence_id = 1), + [4453] = {.count = 1, .reusable = true}, SHIFT(1952), + [4455] = {.count = 1, .reusable = false}, SHIFT(1953), + [4457] = {.count = 1, .reusable = false}, SHIFT(1954), + [4459] = {.count = 1, .reusable = false}, SHIFT(1955), + [4461] = {.count = 1, .reusable = true}, SHIFT(1956), + [4463] = {.count = 1, .reusable = false}, SHIFT(1957), + [4465] = {.count = 1, .reusable = false}, SHIFT(1958), + [4467] = {.count = 1, .reusable = false}, SHIFT(1959), + [4469] = {.count = 1, .reusable = true}, SHIFT(1960), + [4471] = {.count = 1, .reusable = false}, SHIFT(1961), + [4473] = {.count = 1, .reusable = true}, SHIFT(1962), + [4475] = {.count = 1, .reusable = true}, SHIFT(1963), + [4477] = {.count = 1, .reusable = true}, SHIFT(1964), + [4479] = {.count = 1, .reusable = true}, SHIFT(1965), + [4481] = {.count = 1, .reusable = true}, SHIFT(1966), + [4483] = {.count = 1, .reusable = false}, SHIFT(1967), + [4485] = {.count = 1, .reusable = true}, SHIFT(1975), + [4487] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 2), + [4489] = {.count = 1, .reusable = true}, SHIFT(1978), + [4491] = {.count = 1, .reusable = true}, SHIFT(1982), + [4493] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 2), + [4495] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 2), + [4497] = {.count = 1, .reusable = true}, SHIFT(1983), + [4499] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1984), + [4502] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(234), + [4505] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(235), + [4508] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1985), + [4511] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(237), + [4514] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(238), + [4517] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(239), + [4520] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(240), + [4523] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 6), + [4525] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 6), + [4527] = {.count = 1, .reusable = true}, SHIFT(1988), + [4529] = {.count = 1, .reusable = true}, SHIFT(1990), + [4531] = {.count = 1, .reusable = true}, SHIFT(1991), + [4533] = {.count = 1, .reusable = true}, SHIFT(1992), + [4535] = {.count = 1, .reusable = false}, SHIFT(1993), + [4537] = {.count = 1, .reusable = true}, SHIFT(1993), + [4539] = {.count = 1, .reusable = false}, SHIFT(1994), + [4541] = {.count = 1, .reusable = true}, SHIFT(1994), + [4543] = {.count = 1, .reusable = true}, SHIFT(1995), + [4545] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 6), + [4547] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 6), + [4549] = {.count = 1, .reusable = true}, SHIFT(1997), + [4551] = {.count = 1, .reusable = true}, SHIFT(1998), + [4553] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1240), + [4556] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1241), + [4559] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1241), + [4562] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1242), + [4565] = {.count = 1, .reusable = true}, SHIFT(2000), + [4567] = {.count = 1, .reusable = true}, SHIFT(2001), + [4569] = {.count = 1, .reusable = true}, SHIFT(2003), + [4571] = {.count = 1, .reusable = true}, SHIFT(2004), + [4573] = {.count = 1, .reusable = true}, SHIFT(2005), + [4575] = {.count = 1, .reusable = false}, SHIFT(2006), + [4577] = {.count = 1, .reusable = true}, SHIFT(2006), + [4579] = {.count = 1, .reusable = false}, SHIFT(2007), + [4581] = {.count = 1, .reusable = true}, SHIFT(2007), + [4583] = {.count = 1, .reusable = true}, SHIFT(2008), + [4585] = {.count = 1, .reusable = true}, SHIFT(2009), + [4587] = {.count = 1, .reusable = true}, SHIFT(2010), + [4589] = {.count = 1, .reusable = true}, SHIFT(2011), + [4591] = {.count = 1, .reusable = false}, SHIFT(2012), + [4593] = {.count = 1, .reusable = true}, SHIFT(2012), + [4595] = {.count = 1, .reusable = false}, SHIFT(2013), + [4597] = {.count = 1, .reusable = true}, SHIFT(2013), + [4599] = {.count = 1, .reusable = true}, SHIFT(2014), + [4601] = {.count = 1, .reusable = true}, SHIFT(2015), + [4603] = {.count = 1, .reusable = true}, SHIFT(2016), + [4605] = {.count = 1, .reusable = true}, SHIFT(2017), + [4607] = {.count = 1, .reusable = false}, SHIFT(2018), + [4609] = {.count = 1, .reusable = true}, SHIFT(2018), + [4611] = {.count = 1, .reusable = false}, SHIFT(2019), + [4613] = {.count = 1, .reusable = true}, SHIFT(2019), + [4615] = {.count = 1, .reusable = true}, SHIFT(2020), + [4617] = {.count = 1, .reusable = true}, SHIFT(2021), + [4619] = {.count = 1, .reusable = true}, SHIFT(2022), + [4621] = {.count = 1, .reusable = true}, SHIFT(2023), + [4623] = {.count = 1, .reusable = false}, SHIFT(2024), + [4625] = {.count = 1, .reusable = true}, SHIFT(2024), + [4627] = {.count = 1, .reusable = false}, SHIFT(2025), + [4629] = {.count = 1, .reusable = true}, SHIFT(2025), + [4631] = {.count = 1, .reusable = true}, SHIFT(2026), + [4633] = {.count = 1, .reusable = true}, SHIFT(2027), + [4635] = {.count = 1, .reusable = true}, SHIFT(2028), + [4637] = {.count = 1, .reusable = true}, SHIFT(2029), + [4639] = {.count = 1, .reusable = false}, SHIFT(2030), + [4641] = {.count = 1, .reusable = true}, SHIFT(2030), + [4643] = {.count = 1, .reusable = false}, SHIFT(2031), + [4645] = {.count = 1, .reusable = true}, SHIFT(2031), + [4647] = {.count = 1, .reusable = true}, SHIFT(2032), + [4649] = {.count = 1, .reusable = true}, SHIFT(2033), + [4651] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 5, .alias_sequence_id = 4), + [4653] = {.count = 1, .reusable = true}, SHIFT(2034), + [4655] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 5), + [4657] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1364), + [4660] = {.count = 1, .reusable = false}, SHIFT(2035), + [4662] = {.count = 1, .reusable = true}, SHIFT(2036), + [4664] = {.count = 1, .reusable = false}, SHIFT(2037), + [4666] = {.count = 1, .reusable = true}, SHIFT(2038), + [4668] = {.count = 1, .reusable = true}, SHIFT(2040), + [4670] = {.count = 1, .reusable = true}, SHIFT(2041), + [4672] = {.count = 1, .reusable = false}, SHIFT(2043), + [4674] = {.count = 1, .reusable = true}, SHIFT(2043), + [4676] = {.count = 1, .reusable = true}, SHIFT(2042), + [4678] = {.count = 1, .reusable = false}, SHIFT(2045), + [4680] = {.count = 1, .reusable = true}, SHIFT(2045), + [4682] = {.count = 1, .reusable = true}, SHIFT(2044), + [4684] = {.count = 1, .reusable = true}, SHIFT(2046), + [4686] = {.count = 1, .reusable = true}, SHIFT(2047), + [4688] = {.count = 1, .reusable = false}, SHIFT(2048), + [4690] = {.count = 1, .reusable = true}, SHIFT(2048), + [4692] = {.count = 1, .reusable = true}, SHIFT(2049), + [4694] = {.count = 1, .reusable = true}, SHIFT(2050), + [4696] = {.count = 1, .reusable = false}, SHIFT(2051), + [4698] = {.count = 1, .reusable = true}, SHIFT(2051), + [4700] = {.count = 1, .reusable = false}, SHIFT(2052), + [4702] = {.count = 1, .reusable = true}, SHIFT(2052), + [4704] = {.count = 1, .reusable = true}, SHIFT(2053), + [4706] = {.count = 1, .reusable = false}, SHIFT(2054), + [4708] = {.count = 1, .reusable = true}, SHIFT(2054), + [4710] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 7), + [4712] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 7), + [4714] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6), + [4716] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6), + [4718] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 5), + [4720] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 5), + [4722] = {.count = 1, .reusable = true}, SHIFT(2055), + [4724] = {.count = 1, .reusable = true}, SHIFT(2056), + [4726] = {.count = 1, .reusable = true}, SHIFT(2057), + [4728] = {.count = 1, .reusable = true}, SHIFT(2058), + [4730] = {.count = 1, .reusable = false}, SHIFT(2059), + [4732] = {.count = 1, .reusable = true}, SHIFT(2060), + [4734] = {.count = 1, .reusable = true}, SHIFT(2062), + [4736] = {.count = 1, .reusable = true}, SHIFT(2063), + [4738] = {.count = 1, .reusable = false}, SHIFT(2064), + [4740] = {.count = 1, .reusable = true}, SHIFT(2064), + [4742] = {.count = 1, .reusable = true}, SHIFT(2065), + [4744] = {.count = 1, .reusable = false}, SHIFT(2066), + [4746] = {.count = 1, .reusable = true}, SHIFT(2066), + [4748] = {.count = 1, .reusable = true}, SHIFT(2067), + [4750] = {.count = 1, .reusable = false}, SHIFT(2068), + [4752] = {.count = 1, .reusable = true}, SHIFT(2068), + [4754] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 3), + [4756] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 3), + [4758] = {.count = 1, .reusable = true}, SHIFT(2069), + [4760] = {.count = 1, .reusable = true}, SHIFT(2070), + [4762] = {.count = 1, .reusable = true}, SHIFT(2071), + [4764] = {.count = 1, .reusable = true}, SHIFT(2072), + [4766] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1423), + [4769] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1424), + [4772] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1424), + [4775] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1425), + [4778] = {.count = 1, .reusable = true}, SHIFT(2074), + [4780] = {.count = 1, .reusable = true}, SHIFT(2075), + [4782] = {.count = 1, .reusable = true}, SHIFT(2077), + [4784] = {.count = 1, .reusable = true}, SHIFT(2078), + [4786] = {.count = 1, .reusable = false}, SHIFT(2079), + [4788] = {.count = 1, .reusable = true}, SHIFT(2080), + [4790] = {.count = 1, .reusable = true}, SHIFT(2082), + [4792] = {.count = 1, .reusable = true}, SHIFT(2083), + [4794] = {.count = 1, .reusable = false}, SHIFT(2084), + [4796] = {.count = 1, .reusable = true}, SHIFT(2084), + [4798] = {.count = 1, .reusable = true}, SHIFT(2085), + [4800] = {.count = 1, .reusable = false}, SHIFT(2086), + [4802] = {.count = 1, .reusable = true}, SHIFT(2086), + [4804] = {.count = 1, .reusable = true}, SHIFT(2087), + [4806] = {.count = 1, .reusable = false}, SHIFT(2088), + [4808] = {.count = 1, .reusable = true}, SHIFT(2088), + [4810] = {.count = 1, .reusable = true}, SHIFT(2089), + [4812] = {.count = 1, .reusable = true}, SHIFT(2090), + [4814] = {.count = 1, .reusable = false}, SHIFT(2091), + [4816] = {.count = 1, .reusable = true}, SHIFT(2092), + [4818] = {.count = 1, .reusable = true}, SHIFT(2094), + [4820] = {.count = 1, .reusable = true}, SHIFT(2095), + [4822] = {.count = 1, .reusable = false}, SHIFT(2096), + [4824] = {.count = 1, .reusable = true}, SHIFT(2096), + [4826] = {.count = 1, .reusable = true}, SHIFT(2097), + [4828] = {.count = 1, .reusable = false}, SHIFT(2098), + [4830] = {.count = 1, .reusable = true}, SHIFT(2098), + [4832] = {.count = 1, .reusable = true}, SHIFT(2099), + [4834] = {.count = 1, .reusable = false}, SHIFT(2100), + [4836] = {.count = 1, .reusable = true}, SHIFT(2100), + [4838] = {.count = 1, .reusable = true}, SHIFT(2101), + [4840] = {.count = 1, .reusable = true}, SHIFT(2102), + [4842] = {.count = 1, .reusable = true}, SHIFT(2103), + [4844] = {.count = 1, .reusable = true}, SHIFT(2104), + [4846] = {.count = 1, .reusable = true}, SHIFT(2105), + [4848] = {.count = 1, .reusable = false}, SHIFT(2106), + [4850] = {.count = 1, .reusable = true}, SHIFT(2106), + [4852] = {.count = 1, .reusable = false}, SHIFT(2107), + [4854] = {.count = 1, .reusable = true}, SHIFT(2107), + [4856] = {.count = 1, .reusable = true}, SHIFT(2108), + [4858] = {.count = 1, .reusable = true}, REDUCE(sym_c_style_for_statement, 7), + [4860] = {.count = 1, .reusable = false}, REDUCE(sym_c_style_for_statement, 7), + [4862] = {.count = 1, .reusable = true}, SHIFT(2109), + [4864] = {.count = 1, .reusable = true}, SHIFT(2111), + [4866] = {.count = 1, .reusable = true}, SHIFT(2112), + [4868] = {.count = 1, .reusable = true}, SHIFT(2113), + [4870] = {.count = 1, .reusable = true}, SHIFT(2114), + [4872] = {.count = 1, .reusable = false}, SHIFT(2115), + [4874] = {.count = 1, .reusable = true}, SHIFT(2115), + [4876] = {.count = 1, .reusable = false}, SHIFT(2116), + [4878] = {.count = 1, .reusable = true}, SHIFT(2116), + [4880] = {.count = 1, .reusable = true}, SHIFT(2117), + [4882] = {.count = 1, .reusable = true}, SHIFT(2118), + [4884] = {.count = 1, .reusable = true}, SHIFT(2119), + [4886] = {.count = 1, .reusable = true}, SHIFT(2120), + [4888] = {.count = 1, .reusable = false}, SHIFT(2121), + [4890] = {.count = 1, .reusable = true}, SHIFT(2122), + [4892] = {.count = 1, .reusable = true}, SHIFT(2124), + [4894] = {.count = 1, .reusable = true}, SHIFT(2125), + [4896] = {.count = 1, .reusable = false}, SHIFT(2126), + [4898] = {.count = 1, .reusable = true}, SHIFT(2126), + [4900] = {.count = 1, .reusable = true}, SHIFT(2127), + [4902] = {.count = 1, .reusable = false}, SHIFT(2128), + [4904] = {.count = 1, .reusable = true}, SHIFT(2128), + [4906] = {.count = 1, .reusable = true}, SHIFT(2129), + [4908] = {.count = 1, .reusable = false}, SHIFT(2130), + [4910] = {.count = 1, .reusable = true}, SHIFT(2130), + [4912] = {.count = 1, .reusable = true}, SHIFT(2131), + [4914] = {.count = 1, .reusable = true}, SHIFT(2132), + [4916] = {.count = 1, .reusable = true}, SHIFT(2133), + [4918] = {.count = 1, .reusable = true}, SHIFT(2134), + [4920] = {.count = 1, .reusable = true}, SHIFT(2135), + [4922] = {.count = 1, .reusable = false}, SHIFT(2136), + [4924] = {.count = 1, .reusable = true}, SHIFT(2136), + [4926] = {.count = 1, .reusable = false}, SHIFT(2137), + [4928] = {.count = 1, .reusable = true}, SHIFT(2137), + [4930] = {.count = 1, .reusable = true}, SHIFT(2138), + [4932] = {.count = 1, .reusable = true}, SHIFT(2139), + [4934] = {.count = 1, .reusable = true}, SHIFT(2140), + [4936] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1587), + [4939] = {.count = 1, .reusable = false}, SHIFT(2141), + [4941] = {.count = 1, .reusable = true}, SHIFT(2142), + [4943] = {.count = 1, .reusable = false}, SHIFT(2143), + [4945] = {.count = 1, .reusable = true}, SHIFT(2144), + [4947] = {.count = 1, .reusable = true}, SHIFT(2146), + [4949] = {.count = 1, .reusable = true}, SHIFT(2147), + [4951] = {.count = 1, .reusable = false}, SHIFT(2149), + [4953] = {.count = 1, .reusable = true}, SHIFT(2149), + [4955] = {.count = 1, .reusable = true}, SHIFT(2148), + [4957] = {.count = 1, .reusable = false}, SHIFT(2151), + [4959] = {.count = 1, .reusable = true}, SHIFT(2151), + [4961] = {.count = 1, .reusable = true}, SHIFT(2150), + [4963] = {.count = 1, .reusable = true}, SHIFT(2152), + [4965] = {.count = 1, .reusable = true}, SHIFT(2153), + [4967] = {.count = 1, .reusable = false}, SHIFT(2154), + [4969] = {.count = 1, .reusable = true}, SHIFT(2154), + [4971] = {.count = 1, .reusable = true}, SHIFT(2155), + [4973] = {.count = 1, .reusable = true}, SHIFT(2156), + [4975] = {.count = 1, .reusable = false}, SHIFT(2157), + [4977] = {.count = 1, .reusable = true}, SHIFT(2157), + [4979] = {.count = 1, .reusable = false}, SHIFT(2158), + [4981] = {.count = 1, .reusable = true}, SHIFT(2158), + [4983] = {.count = 1, .reusable = true}, SHIFT(2159), + [4985] = {.count = 1, .reusable = false}, SHIFT(2160), + [4987] = {.count = 1, .reusable = true}, SHIFT(2160), + [4989] = {.count = 1, .reusable = false}, REDUCE(sym_elif_clause, 4), + [4991] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 7), + [4993] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 7), + [4995] = {.count = 1, .reusable = true}, REDUCE(aux_sym_case_item_repeat1, 2, .alias_sequence_id = 2), + [4997] = {.count = 1, .reusable = true}, REDUCE(aux_sym_case_item_repeat1, 2), + [4999] = {.count = 1, .reusable = true}, SHIFT(2163), + [5001] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 3, .alias_sequence_id = 1), + [5003] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 3, .alias_sequence_id = 1), + [5005] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 3, .alias_sequence_id = 1), + [5007] = {.count = 1, .reusable = true}, SHIFT(2166), + [5009] = {.count = 1, .reusable = true}, SHIFT(2169), + [5011] = {.count = 1, .reusable = true}, SHIFT(2170), + [5013] = {.count = 1, .reusable = true}, SHIFT(2171), + [5015] = {.count = 1, .reusable = false}, SHIFT(2172), + [5017] = {.count = 1, .reusable = true}, SHIFT(2173), + [5019] = {.count = 1, .reusable = true}, SHIFT(2174), + [5021] = {.count = 1, .reusable = true}, SHIFT(2175), + [5023] = {.count = 1, .reusable = true}, SHIFT(2176), + [5025] = {.count = 1, .reusable = true}, SHIFT(2177), + [5027] = {.count = 1, .reusable = false}, SHIFT(2179), + [5029] = {.count = 1, .reusable = false}, SHIFT(2173), + [5031] = {.count = 1, .reusable = true}, SHIFT(2180), + [5033] = {.count = 1, .reusable = true}, SHIFT(2181), + [5035] = {.count = 1, .reusable = false}, SHIFT(2182), + [5037] = {.count = 1, .reusable = true}, SHIFT(2183), + [5039] = {.count = 1, .reusable = true}, SHIFT(2184), + [5041] = {.count = 1, .reusable = true}, SHIFT(2185), + [5043] = {.count = 1, .reusable = true}, SHIFT(2186), + [5045] = {.count = 1, .reusable = true}, SHIFT(2187), + [5047] = {.count = 1, .reusable = false}, SHIFT(2188), + [5049] = {.count = 1, .reusable = false}, SHIFT(2183), + [5051] = {.count = 1, .reusable = true}, SHIFT(2189), + [5053] = {.count = 1, .reusable = false}, SHIFT(2191), + [5055] = {.count = 1, .reusable = false}, SHIFT(2192), + [5057] = {.count = 1, .reusable = true}, SHIFT(2194), + [5059] = {.count = 1, .reusable = true}, SHIFT(2195), + [5061] = {.count = 1, .reusable = false}, SHIFT(2196), + [5063] = {.count = 1, .reusable = true}, SHIFT(2196), + [5065] = {.count = 1, .reusable = true}, SHIFT(2197), + [5067] = {.count = 1, .reusable = true}, SHIFT(2198), + [5069] = {.count = 1, .reusable = true}, SHIFT(2199), + [5071] = {.count = 1, .reusable = false}, SHIFT(2200), + [5073] = {.count = 1, .reusable = true}, SHIFT(2200), + [5075] = {.count = 1, .reusable = true}, SHIFT(2210), + [5077] = {.count = 1, .reusable = false}, SHIFT(2211), + [5079] = {.count = 1, .reusable = true}, REDUCE(sym_last_case_item, 3, .alias_sequence_id = 1), + [5081] = {.count = 1, .reusable = false}, SHIFT(2212), + [5083] = {.count = 1, .reusable = true}, SHIFT(2213), + [5085] = {.count = 1, .reusable = true}, SHIFT(2212), + [5087] = {.count = 1, .reusable = true}, SHIFT(2214), + [5089] = {.count = 1, .reusable = true}, SHIFT(2211), + [5091] = {.count = 1, .reusable = true}, SHIFT(2215), + [5093] = {.count = 1, .reusable = false}, SHIFT(2216), + [5095] = {.count = 1, .reusable = false}, SHIFT(2217), + [5097] = {.count = 1, .reusable = true}, SHIFT(2217), + [5099] = {.count = 1, .reusable = true}, SHIFT(2218), + [5101] = {.count = 1, .reusable = true}, SHIFT(2219), + [5103] = {.count = 1, .reusable = true}, SHIFT(2220), + [5105] = {.count = 1, .reusable = false}, SHIFT(2220), + [5107] = {.count = 1, .reusable = true}, SHIFT(2223), + [5109] = {.count = 1, .reusable = true}, SHIFT(1959), + [5111] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_item_repeat1, 2), SHIFT_REPEAT(1624), + [5114] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 3), + [5116] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 3), + [5118] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 3), + [5120] = {.count = 1, .reusable = true}, REDUCE(sym_last_case_item, 3), + [5122] = {.count = 1, .reusable = true}, SHIFT(2229), + [5124] = {.count = 1, .reusable = true}, SHIFT(2230), + [5126] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 2), + [5128] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 2), + [5130] = {.count = 1, .reusable = true}, SHIFT(2234), + [5132] = {.count = 1, .reusable = true}, SHIFT(2236), + [5134] = {.count = 1, .reusable = true}, SHIFT(2238), + [5136] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 7), + [5138] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 7), + [5140] = {.count = 1, .reusable = true}, SHIFT(2239), + [5142] = {.count = 1, .reusable = true}, SHIFT(2240), + [5144] = {.count = 1, .reusable = true}, SHIFT(2241), + [5146] = {.count = 1, .reusable = true}, SHIFT(2244), + [5148] = {.count = 1, .reusable = true}, SHIFT(2245), + [5150] = {.count = 1, .reusable = true}, SHIFT(2246), + [5152] = {.count = 1, .reusable = true}, SHIFT(2247), + [5154] = {.count = 1, .reusable = true}, SHIFT(2248), + [5156] = {.count = 1, .reusable = true}, SHIFT(2249), + [5158] = {.count = 1, .reusable = true}, SHIFT(2250), + [5160] = {.count = 1, .reusable = true}, SHIFT(2251), + [5162] = {.count = 1, .reusable = true}, SHIFT(2252), + [5164] = {.count = 1, .reusable = true}, SHIFT(2253), + [5166] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 6, .alias_sequence_id = 4), + [5168] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 6), + [5170] = {.count = 1, .reusable = true}, SHIFT(2254), + [5172] = {.count = 1, .reusable = true}, SHIFT(2255), + [5174] = {.count = 1, .reusable = false}, SHIFT(2256), + [5176] = {.count = 1, .reusable = true}, SHIFT(2257), + [5178] = {.count = 1, .reusable = true}, SHIFT(2259), + [5180] = {.count = 1, .reusable = true}, SHIFT(2260), + [5182] = {.count = 1, .reusable = false}, SHIFT(2261), + [5184] = {.count = 1, .reusable = true}, SHIFT(2261), + [5186] = {.count = 1, .reusable = true}, SHIFT(2262), + [5188] = {.count = 1, .reusable = false}, SHIFT(2263), + [5190] = {.count = 1, .reusable = true}, SHIFT(2263), + [5192] = {.count = 1, .reusable = true}, SHIFT(2264), + [5194] = {.count = 1, .reusable = false}, SHIFT(2265), + [5196] = {.count = 1, .reusable = true}, SHIFT(2265), + [5198] = {.count = 1, .reusable = true}, SHIFT(2266), + [5200] = {.count = 1, .reusable = true}, SHIFT(2267), + [5202] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 7, .alias_sequence_id = 5), + [5204] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 5), + [5206] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 7), + [5208] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 7), + [5210] = {.count = 1, .reusable = true}, SHIFT(2268), + [5212] = {.count = 1, .reusable = true}, SHIFT(2269), + [5214] = {.count = 1, .reusable = true}, SHIFT(2270), + [5216] = {.count = 1, .reusable = false}, SHIFT(2271), + [5218] = {.count = 1, .reusable = true}, SHIFT(2271), + [5220] = {.count = 1, .reusable = false}, SHIFT(2272), + [5222] = {.count = 1, .reusable = true}, SHIFT(2272), + [5224] = {.count = 1, .reusable = true}, SHIFT(2273), + [5226] = {.count = 1, .reusable = true}, SHIFT(2276), + [5228] = {.count = 1, .reusable = true}, SHIFT(2277), + [5230] = {.count = 1, .reusable = true}, SHIFT(2278), + [5232] = {.count = 1, .reusable = false}, SHIFT(2279), + [5234] = {.count = 1, .reusable = true}, SHIFT(2279), + [5236] = {.count = 1, .reusable = false}, SHIFT(2280), + [5238] = {.count = 1, .reusable = true}, SHIFT(2280), + [5240] = {.count = 1, .reusable = true}, SHIFT(2281), + [5242] = {.count = 1, .reusable = true}, SHIFT(2282), + [5244] = {.count = 1, .reusable = true}, SHIFT(2283), + [5246] = {.count = 1, .reusable = true}, SHIFT(2284), + [5248] = {.count = 1, .reusable = false}, SHIFT(2285), + [5250] = {.count = 1, .reusable = true}, SHIFT(2285), + [5252] = {.count = 1, .reusable = false}, SHIFT(2286), + [5254] = {.count = 1, .reusable = true}, SHIFT(2286), + [5256] = {.count = 1, .reusable = true}, SHIFT(2287), + [5258] = {.count = 1, .reusable = true}, SHIFT(2288), + [5260] = {.count = 1, .reusable = true}, SHIFT(2289), + [5262] = {.count = 1, .reusable = true}, REDUCE(sym_c_style_for_statement, 8), + [5264] = {.count = 1, .reusable = false}, REDUCE(sym_c_style_for_statement, 8), + [5266] = {.count = 1, .reusable = true}, SHIFT(2291), + [5268] = {.count = 1, .reusable = true}, SHIFT(2292), + [5270] = {.count = 1, .reusable = true}, SHIFT(2293), + [5272] = {.count = 1, .reusable = true}, SHIFT(2294), + [5274] = {.count = 1, .reusable = true}, SHIFT(2295), + [5276] = {.count = 1, .reusable = true}, SHIFT(2296), + [5278] = {.count = 1, .reusable = false}, SHIFT(2297), + [5280] = {.count = 1, .reusable = true}, SHIFT(2297), + [5282] = {.count = 1, .reusable = false}, SHIFT(2298), + [5284] = {.count = 1, .reusable = true}, SHIFT(2298), + [5286] = {.count = 1, .reusable = true}, SHIFT(2299), + [5288] = {.count = 1, .reusable = true}, SHIFT(2300), + [5290] = {.count = 1, .reusable = true}, SHIFT(2301), + [5292] = {.count = 1, .reusable = true}, SHIFT(2302), + [5294] = {.count = 1, .reusable = true}, SHIFT(2303), + [5296] = {.count = 1, .reusable = false}, SHIFT(2304), + [5298] = {.count = 1, .reusable = true}, SHIFT(2305), + [5300] = {.count = 1, .reusable = true}, SHIFT(2307), + [5302] = {.count = 1, .reusable = true}, SHIFT(2308), + [5304] = {.count = 1, .reusable = false}, SHIFT(2309), + [5306] = {.count = 1, .reusable = true}, SHIFT(2309), + [5308] = {.count = 1, .reusable = true}, SHIFT(2310), + [5310] = {.count = 1, .reusable = false}, SHIFT(2311), + [5312] = {.count = 1, .reusable = true}, SHIFT(2311), + [5314] = {.count = 1, .reusable = true}, SHIFT(2312), + [5316] = {.count = 1, .reusable = false}, SHIFT(2313), + [5318] = {.count = 1, .reusable = true}, SHIFT(2313), + [5320] = {.count = 1, .reusable = true}, SHIFT(2314), + [5322] = {.count = 1, .reusable = true}, SHIFT(2315), + [5324] = {.count = 1, .reusable = true}, SHIFT(2316), + [5326] = {.count = 1, .reusable = true}, SHIFT(2317), + [5328] = {.count = 1, .reusable = true}, SHIFT(2318), + [5330] = {.count = 1, .reusable = true}, SHIFT(2319), + [5332] = {.count = 1, .reusable = false}, SHIFT(2320), + [5334] = {.count = 1, .reusable = true}, SHIFT(2321), + [5336] = {.count = 1, .reusable = true}, SHIFT(2322), + [5338] = {.count = 1, .reusable = true}, SHIFT(2323), + [5340] = {.count = 1, .reusable = true}, SHIFT(2324), + [5342] = {.count = 1, .reusable = true}, SHIFT(2325), + [5344] = {.count = 1, .reusable = true}, SHIFT(2326), + [5346] = {.count = 1, .reusable = true}, SHIFT(2328), + [5348] = {.count = 1, .reusable = true}, SHIFT(2330), + [5350] = {.count = 1, .reusable = true}, SHIFT(2331), + [5352] = {.count = 1, .reusable = false}, SHIFT(2333), + [5354] = {.count = 1, .reusable = false}, SHIFT(2334), + [5356] = {.count = 1, .reusable = true}, SHIFT(2336), + [5358] = {.count = 1, .reusable = true}, SHIFT(2337), + [5360] = {.count = 1, .reusable = false}, SHIFT(2338), + [5362] = {.count = 1, .reusable = true}, SHIFT(2338), + [5364] = {.count = 1, .reusable = true}, SHIFT(2339), + [5366] = {.count = 1, .reusable = true}, SHIFT(2340), + [5368] = {.count = 1, .reusable = true}, SHIFT(2341), + [5370] = {.count = 1, .reusable = false}, SHIFT(2342), + [5372] = {.count = 1, .reusable = true}, SHIFT(2342), + [5374] = {.count = 1, .reusable = false}, SHIFT(2352), + [5376] = {.count = 1, .reusable = true}, SHIFT(2353), + [5378] = {.count = 1, .reusable = false}, SHIFT(2355), + [5380] = {.count = 1, .reusable = false}, SHIFT(2356), + [5382] = {.count = 1, .reusable = true}, SHIFT(2358), + [5384] = {.count = 1, .reusable = true}, SHIFT(2359), + [5386] = {.count = 1, .reusable = false}, SHIFT(2360), + [5388] = {.count = 1, .reusable = true}, SHIFT(2360), + [5390] = {.count = 1, .reusable = true}, SHIFT(2361), + [5392] = {.count = 1, .reusable = true}, SHIFT(2362), + [5394] = {.count = 1, .reusable = true}, SHIFT(2363), + [5396] = {.count = 1, .reusable = false}, SHIFT(2364), + [5398] = {.count = 1, .reusable = true}, SHIFT(2364), + [5400] = {.count = 1, .reusable = false}, SHIFT(2374), + [5402] = {.count = 1, .reusable = true}, SHIFT(2375), + [5404] = {.count = 1, .reusable = false}, SHIFT(2377), + [5406] = {.count = 1, .reusable = false}, SHIFT(2378), + [5408] = {.count = 1, .reusable = true}, SHIFT(2379), + [5410] = {.count = 1, .reusable = true}, SHIFT(2380), + [5412] = {.count = 1, .reusable = true}, SHIFT(2381), + [5414] = {.count = 1, .reusable = false}, SHIFT(2382), + [5416] = {.count = 1, .reusable = true}, SHIFT(2382), + [5418] = {.count = 1, .reusable = true}, SHIFT(2383), + [5420] = {.count = 1, .reusable = false}, SHIFT(2385), + [5422] = {.count = 1, .reusable = true}, SHIFT(2385), + [5424] = {.count = 1, .reusable = true}, SHIFT(2384), + [5426] = {.count = 1, .reusable = true}, SHIFT(2386), + [5428] = {.count = 1, .reusable = false}, SHIFT(2388), + [5430] = {.count = 1, .reusable = true}, SHIFT(2388), + [5432] = {.count = 1, .reusable = true}, SHIFT(2387), + [5434] = {.count = 1, .reusable = false}, SHIFT(2389), + [5436] = {.count = 1, .reusable = true}, SHIFT(2390), + [5438] = {.count = 1, .reusable = true}, SHIFT(2389), + [5440] = {.count = 1, .reusable = false}, SHIFT(2393), + [5442] = {.count = 1, .reusable = true}, SHIFT(2393), + [5444] = {.count = 1, .reusable = false}, SHIFT(2396), + [5446] = {.count = 1, .reusable = true}, SHIFT(2397), + [5448] = {.count = 1, .reusable = true}, SHIFT(2396), + [5450] = {.count = 1, .reusable = true}, SHIFT(2400), + [5452] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 4, .alias_sequence_id = 1), + [5454] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 4, .alias_sequence_id = 1), + [5456] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 4, .alias_sequence_id = 1), + [5458] = {.count = 1, .reusable = false}, SHIFT(2404), + [5460] = {.count = 1, .reusable = true}, SHIFT(2404), + [5462] = {.count = 1, .reusable = true}, SHIFT(2405), + [5464] = {.count = 1, .reusable = true}, SHIFT(2406), + [5466] = {.count = 1, .reusable = true}, SHIFT(2407), + [5468] = {.count = 1, .reusable = true}, SHIFT(2408), + [5470] = {.count = 1, .reusable = true}, SHIFT(2409), + [5472] = {.count = 1, .reusable = false}, SHIFT(2410), + [5474] = {.count = 1, .reusable = true}, SHIFT(2411), + [5476] = {.count = 1, .reusable = true}, SHIFT(2412), + [5478] = {.count = 1, .reusable = true}, SHIFT(2413), + [5480] = {.count = 1, .reusable = true}, SHIFT(2414), + [5482] = {.count = 1, .reusable = true}, SHIFT(2415), + [5484] = {.count = 1, .reusable = true}, SHIFT(2416), + [5486] = {.count = 1, .reusable = true}, SHIFT(2417), + [5488] = {.count = 1, .reusable = true}, REDUCE(sym_last_case_item, 4, .alias_sequence_id = 1), + [5490] = {.count = 1, .reusable = true}, SHIFT(2421), + [5492] = {.count = 1, .reusable = true}, SHIFT(2425), + [5494] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 4), + [5496] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 4), + [5498] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 4), + [5500] = {.count = 1, .reusable = true}, REDUCE(sym_last_case_item, 4), + [5502] = {.count = 1, .reusable = true}, SHIFT(2428), + [5504] = {.count = 1, .reusable = true}, SHIFT(2429), + [5506] = {.count = 1, .reusable = true}, SHIFT(2432), + [5508] = {.count = 1, .reusable = true}, SHIFT(2436), + [5510] = {.count = 1, .reusable = true}, SHIFT(2437), + [5512] = {.count = 1, .reusable = true}, SHIFT(2441), + [5514] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 8, .alias_sequence_id = 2), + [5516] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 8, .alias_sequence_id = 2), + [5518] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 8), + [5520] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 8), + [5522] = {.count = 1, .reusable = true}, SHIFT(2442), + [5524] = {.count = 1, .reusable = true}, SHIFT(2443), + [5526] = {.count = 1, .reusable = true}, SHIFT(2444), + [5528] = {.count = 1, .reusable = false}, SHIFT(2445), + [5530] = {.count = 1, .reusable = true}, SHIFT(2445), + [5532] = {.count = 1, .reusable = false}, SHIFT(2446), + [5534] = {.count = 1, .reusable = true}, SHIFT(2446), + [5536] = {.count = 1, .reusable = true}, SHIFT(2447), + [5538] = {.count = 1, .reusable = true}, SHIFT(2448), + [5540] = {.count = 1, .reusable = true}, SHIFT(2449), + [5542] = {.count = 1, .reusable = true}, SHIFT(2450), + [5544] = {.count = 1, .reusable = true}, SHIFT(2451), + [5546] = {.count = 1, .reusable = true}, SHIFT(2452), + [5548] = {.count = 1, .reusable = true}, SHIFT(2453), + [5550] = {.count = 1, .reusable = true}, REDUCE(sym_c_style_for_statement, 9), + [5552] = {.count = 1, .reusable = false}, REDUCE(sym_c_style_for_statement, 9), + [5554] = {.count = 1, .reusable = true}, SHIFT(2455), + [5556] = {.count = 1, .reusable = true}, SHIFT(2456), + [5558] = {.count = 1, .reusable = true}, SHIFT(2457), + [5560] = {.count = 1, .reusable = true}, SHIFT(2458), + [5562] = {.count = 1, .reusable = true}, SHIFT(2459), + [5564] = {.count = 1, .reusable = false}, SHIFT(2460), + [5566] = {.count = 1, .reusable = true}, SHIFT(2460), + [5568] = {.count = 1, .reusable = false}, SHIFT(2461), + [5570] = {.count = 1, .reusable = true}, SHIFT(2461), + [5572] = {.count = 1, .reusable = true}, SHIFT(2462), + [5574] = {.count = 1, .reusable = true}, SHIFT(2463), + [5576] = {.count = 1, .reusable = true}, SHIFT(2465), + [5578] = {.count = 1, .reusable = false}, SHIFT(2467), + [5580] = {.count = 1, .reusable = false}, SHIFT(2468), + [5582] = {.count = 1, .reusable = true}, SHIFT(2470), + [5584] = {.count = 1, .reusable = true}, SHIFT(2471), + [5586] = {.count = 1, .reusable = false}, SHIFT(2472), + [5588] = {.count = 1, .reusable = true}, SHIFT(2472), + [5590] = {.count = 1, .reusable = true}, SHIFT(2473), + [5592] = {.count = 1, .reusable = true}, SHIFT(2474), + [5594] = {.count = 1, .reusable = true}, SHIFT(2475), + [5596] = {.count = 1, .reusable = false}, SHIFT(2476), + [5598] = {.count = 1, .reusable = true}, SHIFT(2476), + [5600] = {.count = 1, .reusable = true}, SHIFT(2486), + [5602] = {.count = 1, .reusable = false}, SHIFT(2487), + [5604] = {.count = 1, .reusable = true}, SHIFT(2487), + [5606] = {.count = 1, .reusable = true}, SHIFT(2488), + [5608] = {.count = 1, .reusable = true}, SHIFT(2491), + [5610] = {.count = 1, .reusable = true}, SHIFT(2492), + [5612] = {.count = 1, .reusable = false}, SHIFT(2493), + [5614] = {.count = 1, .reusable = true}, SHIFT(2493), + [5616] = {.count = 1, .reusable = true}, SHIFT(2494), + [5618] = {.count = 1, .reusable = true}, SHIFT(2495), + [5620] = {.count = 1, .reusable = true}, SHIFT(2496), + [5622] = {.count = 1, .reusable = true}, SHIFT(2497), + [5624] = {.count = 1, .reusable = true}, SHIFT(2498), + [5626] = {.count = 1, .reusable = false}, SHIFT(2500), + [5628] = {.count = 1, .reusable = false}, SHIFT(2501), + [5630] = {.count = 1, .reusable = true}, SHIFT(2502), + [5632] = {.count = 1, .reusable = true}, SHIFT(2503), + [5634] = {.count = 1, .reusable = true}, SHIFT(2504), + [5636] = {.count = 1, .reusable = false}, SHIFT(2505), + [5638] = {.count = 1, .reusable = true}, SHIFT(2505), + [5640] = {.count = 1, .reusable = true}, SHIFT(2506), + [5642] = {.count = 1, .reusable = false}, SHIFT(2508), + [5644] = {.count = 1, .reusable = true}, SHIFT(2508), + [5646] = {.count = 1, .reusable = true}, SHIFT(2507), + [5648] = {.count = 1, .reusable = true}, SHIFT(2509), + [5650] = {.count = 1, .reusable = false}, SHIFT(2511), + [5652] = {.count = 1, .reusable = true}, SHIFT(2511), + [5654] = {.count = 1, .reusable = true}, SHIFT(2510), + [5656] = {.count = 1, .reusable = false}, SHIFT(2512), + [5658] = {.count = 1, .reusable = true}, SHIFT(2513), + [5660] = {.count = 1, .reusable = true}, SHIFT(2512), + [5662] = {.count = 1, .reusable = false}, SHIFT(2516), + [5664] = {.count = 1, .reusable = true}, SHIFT(2516), + [5666] = {.count = 1, .reusable = false}, SHIFT(2519), + [5668] = {.count = 1, .reusable = true}, SHIFT(2520), + [5670] = {.count = 1, .reusable = true}, SHIFT(2519), + [5672] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2169), + [5675] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2170), + [5678] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2171), + [5681] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2172), + [5684] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2173), + [5687] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2174), + [5690] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2175), + [5693] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2176), + [5696] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2177), + [5699] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2352), + [5702] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2173), + [5705] = {.count = 1, .reusable = true}, SHIFT(2523), + [5707] = {.count = 1, .reusable = false}, SHIFT(2525), + [5709] = {.count = 1, .reusable = false}, SHIFT(2526), + [5711] = {.count = 1, .reusable = true}, SHIFT(2527), + [5713] = {.count = 1, .reusable = true}, SHIFT(2528), + [5715] = {.count = 1, .reusable = true}, SHIFT(2529), + [5717] = {.count = 1, .reusable = false}, SHIFT(2530), + [5719] = {.count = 1, .reusable = true}, SHIFT(2530), + [5721] = {.count = 1, .reusable = true}, SHIFT(2531), + [5723] = {.count = 1, .reusable = false}, SHIFT(2533), + [5725] = {.count = 1, .reusable = true}, SHIFT(2533), + [5727] = {.count = 1, .reusable = true}, SHIFT(2532), + [5729] = {.count = 1, .reusable = true}, SHIFT(2534), + [5731] = {.count = 1, .reusable = false}, SHIFT(2536), + [5733] = {.count = 1, .reusable = true}, SHIFT(2536), + [5735] = {.count = 1, .reusable = true}, SHIFT(2535), + [5737] = {.count = 1, .reusable = false}, SHIFT(2537), + [5739] = {.count = 1, .reusable = true}, SHIFT(2538), + [5741] = {.count = 1, .reusable = true}, SHIFT(2537), + [5743] = {.count = 1, .reusable = false}, SHIFT(2541), + [5745] = {.count = 1, .reusable = true}, SHIFT(2541), + [5747] = {.count = 1, .reusable = false}, SHIFT(2544), + [5749] = {.count = 1, .reusable = true}, SHIFT(2545), + [5751] = {.count = 1, .reusable = true}, SHIFT(2544), + [5753] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2180), + [5756] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2181), + [5759] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2182), + [5762] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2183), + [5765] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2184), + [5768] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2185), + [5771] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2186), + [5774] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2187), + [5777] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2374), + [5780] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2183), + [5783] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2189), + [5786] = {.count = 1, .reusable = false}, SHIFT(2548), + [5788] = {.count = 1, .reusable = true}, SHIFT(2549), + [5790] = {.count = 1, .reusable = false}, SHIFT(2550), + [5792] = {.count = 1, .reusable = true}, SHIFT(2551), + [5794] = {.count = 1, .reusable = true}, SHIFT(2553), + [5796] = {.count = 1, .reusable = true}, SHIFT(2554), + [5798] = {.count = 1, .reusable = false}, SHIFT(2556), + [5800] = {.count = 1, .reusable = true}, SHIFT(2556), + [5802] = {.count = 1, .reusable = true}, SHIFT(2555), + [5804] = {.count = 1, .reusable = false}, SHIFT(2558), + [5806] = {.count = 1, .reusable = true}, SHIFT(2558), + [5808] = {.count = 1, .reusable = true}, SHIFT(2557), + [5810] = {.count = 1, .reusable = true}, SHIFT(2559), + [5812] = {.count = 1, .reusable = true}, SHIFT(2560), + [5814] = {.count = 1, .reusable = false}, SHIFT(2561), + [5816] = {.count = 1, .reusable = true}, SHIFT(2561), + [5818] = {.count = 1, .reusable = true}, SHIFT(2562), + [5820] = {.count = 1, .reusable = true}, SHIFT(2563), + [5822] = {.count = 1, .reusable = false}, SHIFT(2564), + [5824] = {.count = 1, .reusable = true}, SHIFT(2564), + [5826] = {.count = 1, .reusable = false}, SHIFT(2565), + [5828] = {.count = 1, .reusable = true}, SHIFT(2565), + [5830] = {.count = 1, .reusable = true}, SHIFT(2566), + [5832] = {.count = 1, .reusable = false}, SHIFT(2567), + [5834] = {.count = 1, .reusable = true}, SHIFT(2567), + [5836] = {.count = 1, .reusable = true}, SHIFT(2569), + [5838] = {.count = 1, .reusable = true}, SHIFT(2570), + [5840] = {.count = 1, .reusable = true}, SHIFT(2571), + [5842] = {.count = 1, .reusable = false}, SHIFT(2573), + [5844] = {.count = 1, .reusable = false}, SHIFT(2574), + [5846] = {.count = 1, .reusable = true}, SHIFT(2576), + [5848] = {.count = 1, .reusable = true}, SHIFT(2577), + [5850] = {.count = 1, .reusable = false}, SHIFT(2578), + [5852] = {.count = 1, .reusable = true}, SHIFT(2578), + [5854] = {.count = 1, .reusable = true}, SHIFT(2579), + [5856] = {.count = 1, .reusable = true}, SHIFT(2580), + [5858] = {.count = 1, .reusable = true}, SHIFT(2581), + [5860] = {.count = 1, .reusable = false}, SHIFT(2582), + [5862] = {.count = 1, .reusable = true}, SHIFT(2582), + [5864] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2215), + [5867] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2217), + [5870] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2217), + [5873] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2218), + [5876] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2216), + [5879] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2219), + [5882] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(1960), + [5885] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(1961), + [5888] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2220), + [5891] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(1963), + [5894] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(1964), + [5897] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(1965), + [5900] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(1966), + [5903] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2220), + [5906] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 5, .alias_sequence_id = 1), + [5908] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 5, .alias_sequence_id = 1), + [5910] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 5, .alias_sequence_id = 1), + [5912] = {.count = 1, .reusable = true}, REDUCE(sym_last_case_item, 5, .alias_sequence_id = 1), + [5914] = {.count = 1, .reusable = true}, SHIFT(2593), + [5916] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 5), + [5918] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 5), + [5920] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 5), + [5922] = {.count = 1, .reusable = true}, REDUCE(sym_last_case_item, 5), + [5924] = {.count = 1, .reusable = true}, SHIFT(2594), + [5926] = {.count = 1, .reusable = true}, SHIFT(2595), + [5928] = {.count = 1, .reusable = true}, SHIFT(2596), + [5930] = {.count = 1, .reusable = true}, SHIFT(2601), + [5932] = {.count = 1, .reusable = true}, SHIFT(2602), + [5934] = {.count = 1, .reusable = true}, SHIFT(2606), + [5936] = {.count = 1, .reusable = true}, SHIFT(2607), + [5938] = {.count = 1, .reusable = true}, REDUCE(sym_c_style_for_statement, 10), + [5940] = {.count = 1, .reusable = false}, REDUCE(sym_c_style_for_statement, 10), + [5942] = {.count = 1, .reusable = true}, SHIFT(2608), + [5944] = {.count = 1, .reusable = true}, SHIFT(2609), + [5946] = {.count = 1, .reusable = true}, SHIFT(2610), + [5948] = {.count = 1, .reusable = true}, SHIFT(2611), + [5950] = {.count = 1, .reusable = false}, SHIFT(2613), + [5952] = {.count = 1, .reusable = false}, SHIFT(2614), + [5954] = {.count = 1, .reusable = true}, SHIFT(2615), + [5956] = {.count = 1, .reusable = true}, SHIFT(2616), + [5958] = {.count = 1, .reusable = true}, SHIFT(2617), + [5960] = {.count = 1, .reusable = false}, SHIFT(2618), + [5962] = {.count = 1, .reusable = true}, SHIFT(2618), + [5964] = {.count = 1, .reusable = true}, SHIFT(2619), + [5966] = {.count = 1, .reusable = false}, SHIFT(2621), + [5968] = {.count = 1, .reusable = true}, SHIFT(2621), + [5970] = {.count = 1, .reusable = true}, SHIFT(2620), + [5972] = {.count = 1, .reusable = true}, SHIFT(2622), + [5974] = {.count = 1, .reusable = false}, SHIFT(2624), + [5976] = {.count = 1, .reusable = true}, SHIFT(2624), + [5978] = {.count = 1, .reusable = true}, SHIFT(2623), + [5980] = {.count = 1, .reusable = false}, SHIFT(2625), + [5982] = {.count = 1, .reusable = true}, SHIFT(2626), + [5984] = {.count = 1, .reusable = true}, SHIFT(2625), + [5986] = {.count = 1, .reusable = false}, SHIFT(2629), + [5988] = {.count = 1, .reusable = true}, SHIFT(2629), + [5990] = {.count = 1, .reusable = false}, SHIFT(2632), + [5992] = {.count = 1, .reusable = true}, SHIFT(2633), + [5994] = {.count = 1, .reusable = true}, SHIFT(2632), + [5996] = {.count = 1, .reusable = false}, SHIFT(2636), + [5998] = {.count = 1, .reusable = true}, SHIFT(2636), + [6000] = {.count = 1, .reusable = true}, SHIFT(2637), + [6002] = {.count = 1, .reusable = true}, SHIFT(2638), + [6004] = {.count = 1, .reusable = true}, SHIFT(2639), + [6006] = {.count = 1, .reusable = true}, SHIFT(2640), + [6008] = {.count = 1, .reusable = false}, SHIFT(2643), + [6010] = {.count = 1, .reusable = true}, SHIFT(2643), + [6012] = {.count = 1, .reusable = true}, SHIFT(2644), + [6014] = {.count = 1, .reusable = true}, SHIFT(2645), + [6016] = {.count = 1, .reusable = true}, SHIFT(2646), + [6018] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2331), + [6021] = {.count = 1, .reusable = false}, SHIFT(2648), + [6023] = {.count = 1, .reusable = true}, SHIFT(2649), + [6025] = {.count = 1, .reusable = false}, SHIFT(2650), + [6027] = {.count = 1, .reusable = true}, SHIFT(2651), + [6029] = {.count = 1, .reusable = true}, SHIFT(2653), + [6031] = {.count = 1, .reusable = true}, SHIFT(2654), + [6033] = {.count = 1, .reusable = false}, SHIFT(2656), + [6035] = {.count = 1, .reusable = true}, SHIFT(2656), + [6037] = {.count = 1, .reusable = true}, SHIFT(2655), + [6039] = {.count = 1, .reusable = false}, SHIFT(2658), + [6041] = {.count = 1, .reusable = true}, SHIFT(2658), + [6043] = {.count = 1, .reusable = true}, SHIFT(2657), + [6045] = {.count = 1, .reusable = true}, SHIFT(2659), + [6047] = {.count = 1, .reusable = true}, SHIFT(2660), + [6049] = {.count = 1, .reusable = false}, SHIFT(2661), + [6051] = {.count = 1, .reusable = true}, SHIFT(2661), + [6053] = {.count = 1, .reusable = true}, SHIFT(2662), + [6055] = {.count = 1, .reusable = true}, SHIFT(2663), + [6057] = {.count = 1, .reusable = false}, SHIFT(2664), + [6059] = {.count = 1, .reusable = true}, SHIFT(2664), + [6061] = {.count = 1, .reusable = false}, SHIFT(2665), + [6063] = {.count = 1, .reusable = true}, SHIFT(2665), + [6065] = {.count = 1, .reusable = true}, SHIFT(2666), + [6067] = {.count = 1, .reusable = false}, SHIFT(2667), + [6069] = {.count = 1, .reusable = true}, SHIFT(2667), + [6071] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2353), + [6074] = {.count = 1, .reusable = false}, SHIFT(2668), + [6076] = {.count = 1, .reusable = true}, SHIFT(2669), + [6078] = {.count = 1, .reusable = false}, SHIFT(2670), + [6080] = {.count = 1, .reusable = true}, SHIFT(2671), + [6082] = {.count = 1, .reusable = true}, SHIFT(2673), + [6084] = {.count = 1, .reusable = true}, SHIFT(2674), + [6086] = {.count = 1, .reusable = false}, SHIFT(2676), + [6088] = {.count = 1, .reusable = true}, SHIFT(2676), + [6090] = {.count = 1, .reusable = true}, SHIFT(2675), + [6092] = {.count = 1, .reusable = false}, SHIFT(2678), + [6094] = {.count = 1, .reusable = true}, SHIFT(2678), + [6096] = {.count = 1, .reusable = true}, SHIFT(2677), + [6098] = {.count = 1, .reusable = true}, SHIFT(2679), + [6100] = {.count = 1, .reusable = true}, SHIFT(2680), + [6102] = {.count = 1, .reusable = false}, SHIFT(2681), + [6104] = {.count = 1, .reusable = true}, SHIFT(2681), + [6106] = {.count = 1, .reusable = true}, SHIFT(2682), + [6108] = {.count = 1, .reusable = true}, SHIFT(2683), + [6110] = {.count = 1, .reusable = false}, SHIFT(2684), + [6112] = {.count = 1, .reusable = true}, SHIFT(2684), + [6114] = {.count = 1, .reusable = false}, SHIFT(2685), + [6116] = {.count = 1, .reusable = true}, SHIFT(2685), + [6118] = {.count = 1, .reusable = true}, SHIFT(2686), + [6120] = {.count = 1, .reusable = false}, SHIFT(2687), + [6122] = {.count = 1, .reusable = true}, SHIFT(2687), + [6124] = {.count = 1, .reusable = true}, SHIFT(2688), + [6126] = {.count = 1, .reusable = true}, SHIFT(2689), + [6128] = {.count = 1, .reusable = false}, SHIFT(2690), + [6130] = {.count = 1, .reusable = true}, SHIFT(2691), + [6132] = {.count = 1, .reusable = true}, SHIFT(2693), + [6134] = {.count = 1, .reusable = true}, SHIFT(2694), + [6136] = {.count = 1, .reusable = false}, SHIFT(2695), + [6138] = {.count = 1, .reusable = true}, SHIFT(2695), + [6140] = {.count = 1, .reusable = true}, SHIFT(2696), + [6142] = {.count = 1, .reusable = false}, SHIFT(2697), + [6144] = {.count = 1, .reusable = true}, SHIFT(2697), + [6146] = {.count = 1, .reusable = true}, SHIFT(2698), + [6148] = {.count = 1, .reusable = false}, SHIFT(2699), + [6150] = {.count = 1, .reusable = true}, SHIFT(2699), + [6152] = {.count = 1, .reusable = true}, SHIFT(2700), + [6154] = {.count = 1, .reusable = true}, SHIFT(2701), + [6156] = {.count = 1, .reusable = true}, SHIFT(2702), + [6158] = {.count = 1, .reusable = false}, SHIFT(2704), + [6160] = {.count = 1, .reusable = false}, SHIFT(2705), + [6162] = {.count = 1, .reusable = true}, SHIFT(2706), + [6164] = {.count = 1, .reusable = true}, SHIFT(2707), + [6166] = {.count = 1, .reusable = true}, SHIFT(2708), + [6168] = {.count = 1, .reusable = false}, SHIFT(2709), + [6170] = {.count = 1, .reusable = true}, SHIFT(2709), + [6172] = {.count = 1, .reusable = true}, SHIFT(2710), + [6174] = {.count = 1, .reusable = false}, SHIFT(2712), + [6176] = {.count = 1, .reusable = true}, SHIFT(2712), + [6178] = {.count = 1, .reusable = true}, SHIFT(2711), + [6180] = {.count = 1, .reusable = true}, SHIFT(2713), + [6182] = {.count = 1, .reusable = false}, SHIFT(2715), + [6184] = {.count = 1, .reusable = true}, SHIFT(2715), + [6186] = {.count = 1, .reusable = true}, SHIFT(2714), + [6188] = {.count = 1, .reusable = false}, SHIFT(2716), + [6190] = {.count = 1, .reusable = true}, SHIFT(2717), + [6192] = {.count = 1, .reusable = true}, SHIFT(2716), + [6194] = {.count = 1, .reusable = false}, SHIFT(2720), + [6196] = {.count = 1, .reusable = true}, SHIFT(2720), + [6198] = {.count = 1, .reusable = false}, SHIFT(2723), + [6200] = {.count = 1, .reusable = true}, SHIFT(2724), + [6202] = {.count = 1, .reusable = true}, SHIFT(2723), + [6204] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 6, .alias_sequence_id = 1), + [6206] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 6, .alias_sequence_id = 1), + [6208] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 6, .alias_sequence_id = 1), + [6210] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 6), + [6212] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 6), + [6214] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 6), + [6216] = {.count = 1, .reusable = true}, SHIFT(2727), + [6218] = {.count = 1, .reusable = true}, SHIFT(2728), + [6220] = {.count = 1, .reusable = true}, SHIFT(2731), + [6222] = {.count = 1, .reusable = true}, SHIFT(2732), + [6224] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2465), + [6227] = {.count = 1, .reusable = false}, SHIFT(2735), + [6229] = {.count = 1, .reusable = true}, SHIFT(2736), + [6231] = {.count = 1, .reusable = false}, SHIFT(2737), + [6233] = {.count = 1, .reusable = true}, SHIFT(2738), + [6235] = {.count = 1, .reusable = true}, SHIFT(2740), + [6237] = {.count = 1, .reusable = true}, SHIFT(2741), + [6239] = {.count = 1, .reusable = false}, SHIFT(2743), + [6241] = {.count = 1, .reusable = true}, SHIFT(2743), + [6243] = {.count = 1, .reusable = true}, SHIFT(2742), + [6245] = {.count = 1, .reusable = false}, SHIFT(2745), + [6247] = {.count = 1, .reusable = true}, SHIFT(2745), + [6249] = {.count = 1, .reusable = true}, SHIFT(2744), + [6251] = {.count = 1, .reusable = true}, SHIFT(2746), + [6253] = {.count = 1, .reusable = true}, SHIFT(2747), + [6255] = {.count = 1, .reusable = false}, SHIFT(2748), + [6257] = {.count = 1, .reusable = true}, SHIFT(2748), + [6259] = {.count = 1, .reusable = true}, SHIFT(2749), + [6261] = {.count = 1, .reusable = true}, SHIFT(2750), + [6263] = {.count = 1, .reusable = false}, SHIFT(2751), + [6265] = {.count = 1, .reusable = true}, SHIFT(2751), + [6267] = {.count = 1, .reusable = false}, SHIFT(2752), + [6269] = {.count = 1, .reusable = true}, SHIFT(2752), + [6271] = {.count = 1, .reusable = true}, SHIFT(2753), + [6273] = {.count = 1, .reusable = false}, SHIFT(2754), + [6275] = {.count = 1, .reusable = true}, SHIFT(2754), + [6277] = {.count = 1, .reusable = true}, SHIFT(2755), + [6279] = {.count = 1, .reusable = true}, SHIFT(2756), + [6281] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2486), + [6284] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2487), + [6287] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2487), + [6290] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2488), + [6293] = {.count = 1, .reusable = true}, SHIFT(2758), + [6295] = {.count = 1, .reusable = true}, SHIFT(2759), + [6297] = {.count = 1, .reusable = true}, SHIFT(2761), + [6299] = {.count = 1, .reusable = true}, SHIFT(2762), + [6301] = {.count = 1, .reusable = true}, SHIFT(2763), + [6303] = {.count = 1, .reusable = false}, SHIFT(2764), + [6305] = {.count = 1, .reusable = true}, SHIFT(2765), + [6307] = {.count = 1, .reusable = true}, SHIFT(2767), + [6309] = {.count = 1, .reusable = true}, SHIFT(2768), + [6311] = {.count = 1, .reusable = false}, SHIFT(2769), + [6313] = {.count = 1, .reusable = true}, SHIFT(2769), + [6315] = {.count = 1, .reusable = true}, SHIFT(2770), + [6317] = {.count = 1, .reusable = false}, SHIFT(2771), + [6319] = {.count = 1, .reusable = true}, SHIFT(2771), + [6321] = {.count = 1, .reusable = true}, SHIFT(2772), + [6323] = {.count = 1, .reusable = false}, SHIFT(2773), + [6325] = {.count = 1, .reusable = true}, SHIFT(2773), + [6327] = {.count = 1, .reusable = true}, SHIFT(2774), + [6329] = {.count = 1, .reusable = true}, SHIFT(2775), + [6331] = {.count = 1, .reusable = true}, SHIFT(2776), + [6333] = {.count = 1, .reusable = true}, SHIFT(2777), + [6335] = {.count = 1, .reusable = false}, SHIFT(2778), + [6337] = {.count = 1, .reusable = true}, SHIFT(2779), + [6339] = {.count = 1, .reusable = true}, SHIFT(2781), + [6341] = {.count = 1, .reusable = true}, SHIFT(2782), + [6343] = {.count = 1, .reusable = false}, SHIFT(2783), + [6345] = {.count = 1, .reusable = true}, SHIFT(2783), + [6347] = {.count = 1, .reusable = true}, SHIFT(2784), + [6349] = {.count = 1, .reusable = false}, SHIFT(2785), + [6351] = {.count = 1, .reusable = true}, SHIFT(2785), + [6353] = {.count = 1, .reusable = true}, SHIFT(2786), + [6355] = {.count = 1, .reusable = false}, SHIFT(2787), + [6357] = {.count = 1, .reusable = true}, SHIFT(2787), + [6359] = {.count = 1, .reusable = true}, SHIFT(2788), + [6361] = {.count = 1, .reusable = true}, SHIFT(2789), + [6363] = {.count = 1, .reusable = true}, SHIFT(2790), + [6365] = {.count = 1, .reusable = true}, SHIFT(2791), + [6367] = {.count = 1, .reusable = true}, SHIFT(2792), + [6369] = {.count = 1, .reusable = false}, SHIFT(2793), + [6371] = {.count = 1, .reusable = true}, SHIFT(2793), + [6373] = {.count = 1, .reusable = false}, SHIFT(2794), + [6375] = {.count = 1, .reusable = true}, SHIFT(2794), + [6377] = {.count = 1, .reusable = true}, SHIFT(2795), + [6379] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2571), + [6382] = {.count = 1, .reusable = false}, SHIFT(2796), + [6384] = {.count = 1, .reusable = true}, SHIFT(2797), + [6386] = {.count = 1, .reusable = false}, SHIFT(2798), + [6388] = {.count = 1, .reusable = true}, SHIFT(2799), + [6390] = {.count = 1, .reusable = true}, SHIFT(2801), + [6392] = {.count = 1, .reusable = true}, SHIFT(2802), + [6394] = {.count = 1, .reusable = false}, SHIFT(2804), + [6396] = {.count = 1, .reusable = true}, SHIFT(2804), + [6398] = {.count = 1, .reusable = true}, SHIFT(2803), + [6400] = {.count = 1, .reusable = false}, SHIFT(2806), + [6402] = {.count = 1, .reusable = true}, SHIFT(2806), + [6404] = {.count = 1, .reusable = true}, SHIFT(2805), + [6406] = {.count = 1, .reusable = true}, SHIFT(2807), + [6408] = {.count = 1, .reusable = true}, SHIFT(2808), + [6410] = {.count = 1, .reusable = false}, SHIFT(2809), + [6412] = {.count = 1, .reusable = true}, SHIFT(2809), + [6414] = {.count = 1, .reusable = true}, SHIFT(2810), + [6416] = {.count = 1, .reusable = true}, SHIFT(2811), + [6418] = {.count = 1, .reusable = false}, SHIFT(2812), + [6420] = {.count = 1, .reusable = true}, SHIFT(2812), + [6422] = {.count = 1, .reusable = false}, SHIFT(2813), + [6424] = {.count = 1, .reusable = true}, SHIFT(2813), + [6426] = {.count = 1, .reusable = true}, SHIFT(2814), + [6428] = {.count = 1, .reusable = false}, SHIFT(2815), + [6430] = {.count = 1, .reusable = true}, SHIFT(2815), + [6432] = {.count = 1, .reusable = true}, SHIFT(2816), + [6434] = {.count = 1, .reusable = true}, SHIFT(2817), + [6436] = {.count = 1, .reusable = true}, SHIFT(2818), + [6438] = {.count = 1, .reusable = true}, SHIFT(2819), + [6440] = {.count = 1, .reusable = false}, SHIFT(2820), + [6442] = {.count = 1, .reusable = true}, SHIFT(2821), + [6444] = {.count = 1, .reusable = true}, SHIFT(2823), + [6446] = {.count = 1, .reusable = true}, SHIFT(2824), + [6448] = {.count = 1, .reusable = false}, SHIFT(2825), + [6450] = {.count = 1, .reusable = true}, SHIFT(2825), + [6452] = {.count = 1, .reusable = true}, SHIFT(2826), + [6454] = {.count = 1, .reusable = false}, SHIFT(2827), + [6456] = {.count = 1, .reusable = true}, SHIFT(2827), + [6458] = {.count = 1, .reusable = true}, SHIFT(2828), + [6460] = {.count = 1, .reusable = false}, SHIFT(2829), + [6462] = {.count = 1, .reusable = true}, SHIFT(2829), + [6464] = {.count = 1, .reusable = true}, SHIFT(2830), + [6466] = {.count = 1, .reusable = true}, SHIFT(2831), + [6468] = {.count = 1, .reusable = true}, SHIFT(2834), + [6470] = {.count = 1, .reusable = true}, SHIFT(2835), + [6472] = {.count = 1, .reusable = true}, SHIFT(2836), + [6474] = {.count = 1, .reusable = false}, SHIFT(2837), + [6476] = {.count = 1, .reusable = true}, SHIFT(2837), + [6478] = {.count = 1, .reusable = false}, SHIFT(2838), + [6480] = {.count = 1, .reusable = true}, SHIFT(2838), + [6482] = {.count = 1, .reusable = true}, SHIFT(2839), + [6484] = {.count = 1, .reusable = true}, SHIFT(2840), + [6486] = {.count = 1, .reusable = true}, SHIFT(2841), + [6488] = {.count = 1, .reusable = true}, SHIFT(2842), + [6490] = {.count = 1, .reusable = false}, SHIFT(2843), + [6492] = {.count = 1, .reusable = true}, SHIFT(2843), + [6494] = {.count = 1, .reusable = false}, SHIFT(2844), + [6496] = {.count = 1, .reusable = true}, SHIFT(2844), + [6498] = {.count = 1, .reusable = true}, SHIFT(2845), + [6500] = {.count = 1, .reusable = true}, SHIFT(2846), + [6502] = {.count = 1, .reusable = true}, SHIFT(2847), + [6504] = {.count = 1, .reusable = true}, SHIFT(2848), + [6506] = {.count = 1, .reusable = true}, SHIFT(2849), + [6508] = {.count = 1, .reusable = false}, SHIFT(2850), + [6510] = {.count = 1, .reusable = true}, SHIFT(2851), + [6512] = {.count = 1, .reusable = true}, SHIFT(2853), + [6514] = {.count = 1, .reusable = true}, SHIFT(2854), + [6516] = {.count = 1, .reusable = false}, SHIFT(2855), + [6518] = {.count = 1, .reusable = true}, SHIFT(2855), + [6520] = {.count = 1, .reusable = true}, SHIFT(2856), + [6522] = {.count = 1, .reusable = false}, SHIFT(2857), + [6524] = {.count = 1, .reusable = true}, SHIFT(2857), + [6526] = {.count = 1, .reusable = true}, SHIFT(2858), + [6528] = {.count = 1, .reusable = false}, SHIFT(2859), + [6530] = {.count = 1, .reusable = true}, SHIFT(2859), + [6532] = {.count = 1, .reusable = true}, SHIFT(2860), + [6534] = {.count = 1, .reusable = true}, SHIFT(2861), + [6536] = {.count = 1, .reusable = true}, SHIFT(2862), + [6538] = {.count = 1, .reusable = true}, SHIFT(2863), + [6540] = {.count = 1, .reusable = true}, SHIFT(2864), + [6542] = {.count = 1, .reusable = false}, SHIFT(2865), + [6544] = {.count = 1, .reusable = true}, SHIFT(2865), + [6546] = {.count = 1, .reusable = false}, SHIFT(2866), + [6548] = {.count = 1, .reusable = true}, SHIFT(2866), + [6550] = {.count = 1, .reusable = true}, SHIFT(2867), + [6552] = {.count = 1, .reusable = true}, SHIFT(2868), + [6554] = {.count = 1, .reusable = true}, SHIFT(2869), + [6556] = {.count = 1, .reusable = true}, SHIFT(2870), + [6558] = {.count = 1, .reusable = true}, SHIFT(2871), + [6560] = {.count = 1, .reusable = true}, SHIFT(2872), + [6562] = {.count = 1, .reusable = true}, SHIFT(2873), + [6564] = {.count = 1, .reusable = true}, SHIFT(2874), + [6566] = {.count = 1, .reusable = false}, SHIFT(2875), + [6568] = {.count = 1, .reusable = true}, SHIFT(2875), + [6570] = {.count = 1, .reusable = false}, SHIFT(2876), + [6572] = {.count = 1, .reusable = true}, SHIFT(2876), + [6574] = {.count = 1, .reusable = true}, SHIFT(2877), + [6576] = {.count = 1, .reusable = true}, SHIFT(2878), + [6578] = {.count = 1, .reusable = true}, SHIFT(2879), + [6580] = {.count = 1, .reusable = true}, SHIFT(2880), + [6582] = {.count = 1, .reusable = true}, SHIFT(2881), }; void *tree_sitter_bash_external_scanner_create(); diff --git a/src/scanner.cc b/src/scanner.cc index ff06efc..eb392d7 100644 --- a/src/scanner.cc +++ b/src/scanner.cc @@ -16,6 +16,7 @@ enum TokenType { EMPTY_VALUE, CONCAT, VARIABLE_NAME, + REGEX, CLOSING_BRACE, CLOSING_BRACKET, NEWLINE, @@ -202,6 +203,63 @@ struct Scanner { return false; } + if (valid_symbols[REGEX]) { + while (iswspace(lexer->lookahead)) skip(lexer); + + if ( + lexer->lookahead != '"' && + lexer->lookahead != '\'' && + lexer->lookahead != '$' + ) { + struct State { + bool done; + uint32_t paren_depth; + uint32_t bracket_depth; + uint32_t brace_depth; + }; + + lexer->mark_end(lexer); + + State state = {false, 0, 0, 0}; + while (!state.done) { + switch (lexer->lookahead) { + case '\0': + return false; + case '(': + state.paren_depth++; + break; + case '[': + state.bracket_depth++; + break; + case '{': + state.bracket_depth++; + break; + case ')': + if (state.paren_depth == 0) state.done = true; + state.paren_depth--; + break; + case ']': + if (state.bracket_depth == 0) state.done = true; + state.bracket_depth--; + break; + case '}': + if (state.brace_depth == 0) state.done = true; + state.brace_depth--; + break; + } + + if (!state.done) { + bool was_space = iswspace(lexer->lookahead); + advance(lexer); + if (!was_space) lexer->mark_end(lexer); + } + } + + lexer->result_symbol = REGEX; + return true; + } + } + return false; }